state property

String? state
getter/setter pair

The current state of the Job.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The Job has an unspecified state.
  • "PENDING" : The Job is waiting for an earlier Phase(s) or Job(s) to complete.
  • "DISABLED" : The Job is disabled.
  • "IN_PROGRESS" : The Job is in progress.
  • "SUCCEEDED" : The Job succeeded.
  • "FAILED" : The Job failed.
  • "ABORTED" : The Job was aborted.
  • "SKIPPED" : The Job was skipped.
  • "IGNORED" : The Job was ignored.

Implementation

core.String? state;