state property

String? state
getter/setter pair

State of the job, such as RUNNING or PENDING.

Output only. Possible string values are:

  • "JOB_STATE_UNSPECIFIED" : Unspecified represents an unknown state and should not be used.
  • "PENDING" : Job is scheduled and pending for run
  • "RUNNING" : Job in progress
  • "SUCCEEDED" : Job has completed with success
  • "FAILED" : Job has completed but with failure

Implementation

core.String? state;