state property

String? state
getter/setter pair

The state of the run.

Required. Possible string values are:

  • "UNKNOWN" : The state is unknown. The true state may be any of the below or a different state that is not supported here explicitly.
  • "STARTED" : The run is still executing.
  • "COMPLETED" : The run completed.
  • "FAILED" : The run failed.
  • "ABORTED" : The run aborted.

Implementation

core.String? state;