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

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

Methods

NameAccessible byRequired ParamsDescription
projects_locations_connections_runtime_action_schemas_listSELECTconnectionsId, locationsId, projectsIdLists 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 }}';