Skip to main content

connection_schema_metadata

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

Overview

Nameconnection_schema_metadata
TypeResource
Idgoogle.integrations.connection_schema_metadata

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
actionsarrayList of actions.
entitiesarrayList of entity names.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_connections_get_connection_schema_metadataselectprojectsId, locationsId, connectionsIdLists the available entities and actions associated with a Connection.

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

SELECT examples

Lists the available entities and actions associated with a Connection.

SELECT
actions,
entities
FROM google.integrations.connection_schema_metadata
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND connectionsId = '{{ connectionsId }}' -- required;