Skip to main content

runtime_action_schemas

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

Overview

Nameruntime_action_schemas
TypeResource
Idgoogle.integrations.runtime_action_schemas

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
actionstringName of the action.
inputSchemastringInput parameter schema for the action.
outputSchemastringOutput parameter schema for the action.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_connections_runtime_action_schemas_listselectprojectsId, locationsId, connectionsIdpageSize, pageToken, filterLists 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.

NameDatatypeDescription
connectionsIdstring
locationsIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND connectionsId = '{{ connectionsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}';