Enum JobStatus
Represents the status of a job.
public enum JobStatus
Fields
CompletedSuccessfully = 5
The job has been completed successfully.
CompletedWithFailures = 6
The job has completed with failures.
Failed = 8
The job has failed and can't recover.
None = 0
Represents an unset status.
PreparingJob = 1
The job has been started and is preparing itself.
PreparingSteps = 2
The job has been started and is currently preparing and starting all job steps.
Removing = 9
The job is scheduled to be removed.
Running = 4
The job has been started and is running.
StartingSteps = 3
The job has been started and is currently trying to start all job steps.
Stopped = 7
The job has been stopped and can be resumed later.