executions_execution_history
Creates, updates, deletes, gets or lists an executions_execution_history resource.
Overview
| Name | executions_execution_history |
| Type | Resource |
| Id | google.workflowexecutions.executions_execution_history |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
delete_execution_history | delete | projectsId, locationsId, workflowsId, executionsId | Deletes all step entries for an execution. |
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.
| Name | Datatype | Description |
|---|---|---|
executionsId | string | |
locationsId | string | |
projectsId | string | |
workflowsId | string |
DELETE examples
- delete_execution_history
Deletes all step entries for an execution.
DELETE FROM google.workflowexecutions.executions_execution_history
WHERE projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND workflowsId = '{{ workflowsId }}' --required
AND executionsId = '{{ executionsId }}' --required
;