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
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_connections_runtime_action_schemas_list | SELECT | connectionsId, locationsId, projectsId | Lists the JSON schemas for the inputs and outputs of actions, filtered by action name. |
SELECT
examples
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 connectionsId = '{{ connectionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';