Class WorkflowInvocation (0.4.1)

WorkflowInvocation(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represents a single invocation of a compilation result.

Attributes

NameDescription
name str
Output only. The workflow invocation's name.
compilation_result str
Immutable. The name of the compilation result to compile. Must be in the format projects/*/locations/*/repositories/*/compilationResults/*.
invocation_config google.cloud.dataform_v1beta1.types.WorkflowInvocation.InvocationConfig
Immutable. If left unset, a default InvocationConfig will be used.
state google.cloud.dataform_v1beta1.types.WorkflowInvocation.State
Output only. This workflow invocation's current state.
invocation_timing google.type.interval_pb2.Interval
Output only. This workflow invocation's timing details.

Classes

InvocationConfig

InvocationConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Includes various configuration options for this workflow invocation. If both included_targets and included_tags are unset, all actions will be included.

State

State(value)

Represents the current state of a workflow invocation.

Values: STATE_UNSPECIFIED (0): Default value. This value is unused. RUNNING (1): The workflow invocation is currently running. SUCCEEDED (2): The workflow invocation succeeded. A terminal state. CANCELLED (3): The workflow invocation was cancelled. A terminal state. FAILED (4): The workflow invocation failed. A terminal state. CANCELING (5): The workflow invocation is being cancelled, but some actions are still running.