connection_schema_metadata
Creates, updates, deletes, gets or lists a connection_schema_metadata resource.
Overview
| Name | connection_schema_metadata |
| Type | Resource |
| Id | google.integrations.connection_schema_metadata |
Fields
The following fields are returned by SELECT queries:
- projects_locations_connections_get_connection_schema_metadata
| Name | Datatype | Description |
|---|---|---|
actions | array | List of actions. |
entities | array | List of entity names. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_connections_get_connection_schema_metadata | select | projectsId, locationsId, connectionsId | Lists 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.
| Name | Datatype | Description |
|---|---|---|
connectionsId | string | |
locationsId | string | |
projectsId | string |
SELECT examples
- projects_locations_connections_get_connection_schema_metadata
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
;