18.52. JobOperatorStatus
Status of a job operator.
```Protobuf enum JobOperatorStatus {
// The job operator status is unknown. JOB_OPERATOR_STATUS_UNKNOWN = 0;
// The job operator has been initialized and is waiting to begin execution. JOB_OPERATOR_STATUS_PENDING = 1;
// The job operator is currently executing. JOB_OPERATOR_STATUS_RUNNING = 2;
// The job operator has stopped and completed successfully. JOB_OPERATOR_STATUS_COMPLETED = 3;
// The job operator has stopped and is reporting a failure. JOB_OPERATOR_STATUS_FAULTED = 4;