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