- JSON representation
- OracleObjectIdentifier
- MysqlObjectIdentifier
- PostgresqlObjectIdentifier
- SqlServerObjectIdentifier
- SalesforceObjectIdentifier
- MongodbObjectIdentifier
Represents an identifier of an object in the data source.
| JSON representation |
|---|
{ // Union field |
| Fields | |
|---|---|
Union field source_identifier. The identifier for an object in the data source. source_identifier can be only one of the following: |
|
oracleIdentifier |
Oracle data source object identifier. |
mysqlIdentifier |
Mysql data source object identifier. |
postgresqlIdentifier |
PostgreSQL data source object identifier. |
sqlServerIdentifier |
SQLServer data source object identifier. |
salesforceIdentifier |
Salesforce data source object identifier. |
mongodbIdentifier |
MongoDB data source object identifier. |
OracleObjectIdentifier
Oracle data source object identifier.
| JSON representation |
|---|
{ "schema": string, "table": string } |
| Fields | |
|---|---|
schema |
Required. The schema name. |
table |
Required. The table name. |
MysqlObjectIdentifier
Mysql data source object identifier.
| JSON representation |
|---|
{ "database": string, "table": string } |
| Fields | |
|---|---|
database |
Required. The database name. |
table |
Required. The table name. |
PostgresqlObjectIdentifier
PostgreSQL data source object identifier.
| JSON representation |
|---|
{ "schema": string, "table": string } |
| Fields | |
|---|---|
schema |
Required. The schema name. |
table |
Required. The table name. |
SqlServerObjectIdentifier
SQLServer data source object identifier.
| JSON representation |
|---|
{ "schema": string, "table": string } |
| Fields | |
|---|---|
schema |
Required. The schema name. |
table |
Required. The table name. |
SalesforceObjectIdentifier
Salesforce data source object identifier.
| JSON representation |
|---|
{ "objectName": string } |
| Fields | |
|---|---|
objectName |
Required. The object name. |
MongodbObjectIdentifier
MongoDB data source object identifier.
| JSON representation |
|---|
{ "database": string, "collection": string } |
| Fields | |
|---|---|
database |
Required. The database name. |
collection |
Required. The collection name. |