Skip to main content

runtime_entity_schemas

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

Overview

Nameruntime_entity_schemas
TypeResource
Idgoogle.integrations.runtime_entity_schemas

Fields

NameDatatypeDescription
arrayFieldSchemastringThe above schema, but for an array of the associated entity.
entitystringName of the entity.
fieldSchemastringList of fields in the entity.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_connections_runtime_entity_schemas_listSELECTconnectionsId, locationsId, projectsIdLists 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 }}';