executions
Creates, updates, deletes, gets or lists a executions
resource.
Overview
Name | executions |
Type | Resource |
Id | google.integrations.executions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Auto-generated primary key. |
cloudLoggingDetails | object | Cloud Logging details for execution info |
createTime | string | Output only. Created time of the execution. |
directSubExecutions | array | Direct sub executions of the following Execution. |
eventExecutionDetails | object | Contains the details of the execution info of this event: this includes the tasks execution details plus the event execution statistics. Next available id: 12 |
executionDetails | object | Contains the details of the execution info: this includes the tasks execution details plus the event execution statistics. |
executionMethod | string | The ways user posts this event. |
integrationVersionState | string | Output only. State of the integration version |
replayInfo | object | Contains the details of the execution info: this includes the replay reason and replay tree connecting executions in a parent-child relationship |
requestParameters | object | Event parameters come in as part of the request. |
requestParams | array | Event parameters come in as part of the request. |
responseParameters | object | Event parameters returned as part of the response. |
responseParams | array | Event parameters come out as part of the response. |
snapshotNumber | string | Output only. An increasing sequence that is set when a new snapshot is created |
triggerId | string | The trigger id of the integration trigger config. If both trigger_id and client_id is present, the integration is executed from the start tasks provided by the matching trigger config otherwise it is executed from the default start tasks. |
updateTime | string | Output only. Last modified time of the execution. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_integrations_executions_get | SELECT | executionsId, integrationsId, locationsId, projectsId | Get an execution in the specified project. |
projects_locations_integrations_executions_list | SELECT | integrationsId, locationsId, projectsId | Lists the results of all the integration executions. The response includes the same information as the execution log in the Integration UI. |
projects_locations_products_integrations_executions_get | SELECT | executionsId, integrationsId, locationsId, productsId, projectsId | Get an execution in the specified project. |
projects_locations_products_integrations_executions_list | SELECT | integrationsId, locationsId, productsId, projectsId | Lists the results of all the integration executions. The response includes the same information as the execution log in the Integration UI. |
projects_locations_integrations_executions_download | EXEC | executionsId, integrationsId, locationsId, projectsId | Download the execution. |
projects_locations_products_integrations_executions_download | EXEC | executionsId, integrationsId, locationsId, productsId, projectsId | Download the execution. |
SELECT
examples
Lists the results of all the integration executions. The response includes the same information as the execution log in the Integration UI.
SELECT
name,
cloudLoggingDetails,
createTime,
directSubExecutions,
eventExecutionDetails,
executionDetails,
executionMethod,
integrationVersionState,
replayInfo,
requestParameters,
requestParams,
responseParameters,
responseParams,
snapshotNumber,
triggerId,
updateTime
FROM google.integrations.executions
WHERE integrationsId = '{{ integrationsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';