runtime_action_schemas
Creates, updates, deletes, gets or lists a runtime_action_schemas
resource.
Overview
Name | runtime_action_schemas |
Type | Resource |
Id | google.integrations.runtime_action_schemas |
Fields
The following fields are returned by SELECT
queries:
- projects_locations_connections_runtime_action_schemas_list
Successful response
Name | Datatype | Description |
---|---|---|
action | string | Name of the action. |
inputSchema | string | Input parameter schema for the action. |
outputSchema | string | Output parameter schema for the action. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_connections_runtime_action_schemas_list | select | projectsId , locationsId , connectionsId | pageSize , pageToken , filter | Lists the JSON schemas for the inputs and outputs of actions, filtered by action 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_action_schemas_list
Lists the JSON schemas for the inputs and outputs of actions, filtered by action name.
SELECT
action,
inputSchema,
outputSchema
FROM google.integrations.runtime_action_schemas
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND connectionsId = '{{ connectionsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}';