state property
The current state of the job. Possible string values are:
- "STATE_UNSPECIFIED" : The job state isn't specified.
- "STATE_PENDING" : The job is waiting to start execution.
- "STATE_RUNNING" : The job is executing.
- "STATE_DONE" : The job has finished execution successfully.
- "STATE_FAILED" : The job has finished execution with a failure.
- "STATE_CANCELLED" : The job has been terminated upon user request.
Implementation
core.String? state;