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

The following fields are returned by SELECT queries:

Successful response

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_connections_runtime_entity_schemas_listselectprojectsId, locationsId, connectionsIdpageSize, pageToken, filterLists the JSON schemas for the properties of runtime entities, filtered by entity name.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
connectionsIdstring
locationsIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND connectionsId = '{{ connectionsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}';