Enum JobStepStatus
Represents the status of a job step.
public enum JobStepStatus
Fields
CompletedSuccessfully = 3The job step is completed successfully.
CompletedWithFailure = 4The job step completed with failure.
Failed = 6The job step failed internally.
Removing = 7The job step is being removed.
Running = 2The job step is running.
Scheduled = 1The job step has been scheduled to start.
Stopped = 5The job step has been stopped execution.
Unknown = 0Represents an unset status.