step_entries
Creates, updates, deletes, gets or lists a step_entries
resource.
Overview
Name | step_entries |
Type | Resource |
Id | google.workflowexecutions.step_entries |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The full resource name of the step entry. Each step entry has a unique entry ID, which is a monotonically increasing counter. Step entry names have the format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/stepEntries/{step_entry} . |
createTime | string | Output only. The creation time of the step entry. |
entryId | string | Output only. The numeric ID of this step entry, used for navigation. |
exception | object | Exception describes why the step entry failed. |
navigationInfo | object | NavigationInfo describes what steps if any come before or after this step, or what steps are parents or children of this step. |
routine | string | Output only. The name of the routine this step entry belongs to. A routine name is the subworkflow name defined in the YAML source code. The top level routine name is main . |
state | string | Output only. The state of the step entry. |
step | string | Output only. The name of the step this step entry belongs to. |
stepEntryMetadata | object | StepEntryMetadata contains metadata information about this step. |
stepType | string | Output only. The type of the step this step entry belongs to. |
updateTime | string | Output only. The most recently updated time of the step entry. |
variableData | object | VariableData contains the variable data for this step. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | executionsId, locationsId, projectsId, stepEntriesId, workflowsId | Gets a step entry. |
list | SELECT | executionsId, locationsId, projectsId, workflowsId | Lists step entries for the corresponding workflow execution. Returned entries are ordered by their create_time. |
SELECT
examples
Lists step entries for the corresponding workflow execution. Returned entries are ordered by their create_time.
SELECT
name,
createTime,
entryId,
exception,
navigationInfo,
routine,
state,
step,
stepEntryMetadata,
stepType,
updateTime,
variableData
FROM google.workflowexecutions.step_entries
WHERE executionsId = '{{ executionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND workflowsId = '{{ workflowsId }}';