state property

String? state
getter/setter pair

Current state of the execution.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : Invalid state.
  • "ACTIVE" : The execution is in progress.
  • "SUCCEEDED" : The execution finished successfully.
  • "FAILED" : The execution failed with an error.
  • "CANCELLED" : The execution was stopped intentionally.
  • "UNAVAILABLE" : Execution data is unavailable. See the state_error field.
  • "QUEUED" : Request has been placed in the backlog for processing at a later time.

Implementation

core.String? state;