entity_types
Creates, updates, deletes, gets or lists a entity_types
resource.
Overview
Name | entity_types |
Type | Resource |
Id | google.connectors.entity_types |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the entity type. |
fields | array | List containing metadata information about each field of the entity type. |
jsonSchema | object | JsonSchema representation of schema metadata |
operations | array |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | connectionsId, entityTypesId, locationsId, projectsId | Gets metadata of given entity type |
list | SELECT | connectionsId, locationsId, projectsId | Lists metadata related to all entity types present in the external system. |
SELECT
examples
Lists metadata related to all entity types present in the external system.
SELECT
name,
fields,
jsonSchema,
operations
FROM google.connectors.entity_types
WHERE connectionsId = '{{ connectionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';