state property

String? state
getter/setter pair

The state of this Execution.

This is a property of the Execution, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines) and the system does not prescribe or check the validity of state transitions. Possible string values are:

  • "STATE_UNSPECIFIED" : Unspecified Execution state
  • "NEW" : The Execution is new
  • "RUNNING" : The Execution is running
  • "COMPLETE" : The Execution has finished running
  • "FAILED" : The Execution has failed
  • "CACHED" : The Execution completed through Cache hit.
  • "CANCELLED" : The Execution was cancelled.

Implementation

core.String? state;