state property

String? state
getter/setter pair

This workflow invocation's current state.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : Default value. This value is unused.
  • "RUNNING" : The workflow invocation is currently running.
  • "SUCCEEDED" : The workflow invocation succeeded. A terminal state.
  • "CANCELLED" : The workflow invocation was cancelled. A terminal state.
  • "FAILED" : The workflow invocation failed. A terminal state.
  • "CANCELING" : The workflow invocation is being cancelled, but some actions are still running.

Implementation

core.String? state;