17.55. JobStatus
Status of a job.
enum JobStatus {
// The job is unknown or in an unknown status.
JOB_STATUS_UNKNOWN = 0;
// The job is healthy; if stopped, it has completed successfully.
JOB_STATUS_HEALTHY = 1;
// The job has encountered a terminal error.
JOB_STATUS_FAULTED = 2;
// The job has been cancelled.
JOB_STATUS_CANCELED = 3;
}
See also [JobState] for additional information.