actions
Creates, updates, deletes, gets or lists a actions
resource.
Overview
Name | actions |
Type | Resource |
Id | google.connectors.actions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the action. |
description | string | Brief Description of action |
displayName | string | Display Name of action to be shown on client side |
inputJsonSchema | object | JsonSchema representation of schema metadata |
inputParameters | array | List containing input parameter metadata. |
resultJsonSchema | object | JsonSchema representation of schema metadata |
resultMetadata | array | List containing the metadata of result fields. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | actionsId, connectionsId, locationsId, projectsId | Gets the schema of the given action. |
list | SELECT | connectionsId, locationsId, projectsId | Gets the schema of all the actions supported by the connector. |
execute | EXEC | actionsId, connectionsId, locationsId, projectsId | Executes an action with the name specified in the request. The input parameters for executing the action are passed through the body of the ExecuteAction request. |
SELECT
examples
Gets the schema of all the actions supported by the connector.
SELECT
name,
description,
displayName,
inputJsonSchema,
inputParameters,
resultJsonSchema,
resultMetadata
FROM google.connectors.actions
WHERE connectionsId = '{{ connectionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';