Get desktop application:
View/edit binary Protocol Buffers messages
Executions is used to start and manage running instances of [Workflows][google.cloud.workflows.v1beta.Workflow] called executions.
Returns a list of executions which belong to the workflow with the given name. The method returns executions of all workflow revisions. Returned executions are ordered by their start time (newest first).
Request for the [ListExecutions][google.cloud.workflows.executions.v1beta.Executions.ListExecutions] method.
Required. Name of the workflow for which the executions should be listed. Format: projects/{project}/locations/{location}/workflows/{workflow}
Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 10000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it.
A page token, received from a previous `ListExecutions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListExecutions` must match the call that provided the page token.
Optional. A view defining which fields should be filled in the returned executions. The API will default to the BASIC view.
Response for the [ListExecutions][google.cloud.workflows.executions.v1beta.Executions.ListExecutions] method.
The executions which match the request.
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
Creates a new execution using the latest revision of the given workflow.
Request for the [CreateExecution][google.cloud.workflows.executions.v1beta.Executions.CreateExecution] method.
Required. Name of the workflow for which an execution should be created. Format: projects/{project}/locations/{location}/workflows/{workflow} The latest revision of the workflow will be used.
Required. Execution to be created.
Returns an execution of the given name.
Request for the [GetExecution][google.cloud.workflows.executions.v1beta.Executions.GetExecution] method.
Required. Name of the execution to be retrieved. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
Optional. A view defining which fields should be filled in the returned execution. The API will default to the FULL view.
Cancels an execution of the given name.
Request for the [CancelExecution][google.cloud.workflows.executions.v1beta.Executions.CancelExecution] method.
Required. Name of the execution to be cancelled. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
A running instance of a [Workflow][google.cloud.workflows.v1beta.Workflow].
Used as response type in: Executions.CancelExecution, Executions.CreateExecution, Executions.GetExecution
Used as field type in:
,Output only. The resource name of the execution. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
Output only. Marks the beginning of execution.
Output only. Marks the end of execution, successful or not.
Output only. Current state of the execution.
Input parameters of the execution represented as a JSON string. The size limit is 32KB.
Output only. Output of the execution represented as a JSON string. The value can only be present if the execution's state is `SUCCEEDED`.
Output only. The error which caused the execution to finish prematurely. The value is only present if the execution's state is `FAILED` or `CANCELLED`.
Output only. Revision of the workflow this execution is using.
Error describes why the execution was abnormally terminated.
Used in:
Error payload returned by the execution, represented as a JSON string.
Human readable error context, helpful for debugging purposes.
Describes the current state of the execution. More states may be added in the future.
Used in:
Invalid state.
The execution is in progress.
The execution finished successfully.
The execution failed with an error.
The execution was stopped intentionally.
Defines possible views for execution resource.
Used in:
,The default / unset value.
Includes only basic metadata about the execution. Following fields are returned: name, start_time, end_time, state and workflow_revision_id.
Includes all data.