Skip to main content

entity_types

Creates, updates, deletes, gets or lists a entity_types resource.

Overview

Nameentity_types
TypeResource
Idgoogle.connectors.entity_types

Fields

NameDatatypeDescription
namestringThe name of the entity type.
fieldsarrayList containing metadata information about each field of the entity type.
jsonSchemaobjectJsonSchema representation of schema metadata
operationsarray

Methods

NameAccessible byRequired ParamsDescription
getSELECTconnectionsId, entityTypesId, locationsId, projectsIdGets metadata of given entity type
listSELECTconnectionsId, locationsId, projectsIdLists 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 }}';