state property

String? state
getter/setter pair

State of this work item. Possible string values are:

  • "EXECUTION_STATE_UNKNOWN" : The component state is unknown or unspecified.
  • "EXECUTION_STATE_NOT_STARTED" : The component is not yet running.
  • "EXECUTION_STATE_RUNNING" : The component is currently running.
  • "EXECUTION_STATE_SUCCEEDED" : The component succeeded.
  • "EXECUTION_STATE_FAILED" : The component failed.
  • "EXECUTION_STATE_CANCELLED" : Execution of the component was cancelled.

Implementation

core.String? state;