runtime_entity_schemas
Creates, updates, deletes, gets or lists a runtime_entity_schemas
resource.
Overview
Name | runtime_entity_schemas |
Type | Resource |
Id | google.integrations.runtime_entity_schemas |
Fields
Name | Datatype | Description |
---|---|---|
arrayFieldSchema | string | The above schema, but for an array of the associated entity. |
entity | string | Name of the entity. |
fieldSchema | string | List of fields in the entity. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_connections_runtime_entity_schemas_list | SELECT | connectionsId, locationsId, projectsId | Lists the JSON schemas for the properties of runtime entities, filtered by entity name. |
SELECT
examples
Lists the JSON schemas for the properties of runtime entities, filtered by entity name.
SELECT
arrayFieldSchema,
entity,
fieldSchema
FROM google.integrations.runtime_entity_schemas
WHERE connectionsId = '{{ connectionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';