Skip to main content

executions_execution_history

Creates, updates, deletes, gets or lists an executions_execution_history resource.

Overview

Nameexecutions_execution_history
TypeResource
Idgoogle.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:

NameAccessible byRequired ParamsOptional ParamsDescription
delete_execution_historydeleteprojectsId, locationsId, workflowsId, executionsIdDeletes 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.

NameDatatypeDescription
executionsIdstring
locationsIdstring
projectsIdstring
workflowsIdstring

DELETE examples

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;