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
The following fields are returned by SELECT
queries:
- projects_locations_connections_runtime_entity_schemas_list
Successful response
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_connections_runtime_entity_schemas_list | select | projectsId , locationsId , connectionsId | pageSize , pageToken , filter | Lists 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.
Name | Datatype | Description |
---|---|---|
connectionsId | string | |
locationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- projects_locations_connections_runtime_entity_schemas_list
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 }}';