JobScheduleState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The state of a job schedule.
public enum JobScheduleState
type JobScheduleState =
Public Enum JobScheduleState
- Inheritance
-
JobScheduleState
Fields
Name | Value | Description |
---|---|---|
Active | 0 | The job schedule is active and will create jobs as per its schedule. |
Completed | 1 | The schedule has terminated, either by reaching its end time or by the user terminating it explicitly. |
Disabled | 2 | The user has disabled the schedule. The scheduler will not initiate any new jobs will on this schedule, but any existing active job will continue to run. |
Terminating | 3 | The schedule has no more work to do, or has been explicitly terminated by the user, but the termination operation is still in progress. The scheduler will not initiate any new jobs for this schedule, nor is any existing job active. |
Deleting | 4 | The user has requested that the schedule be deleted, but the delete operation is still in progress. The scheduler will not initiate any new jobs for this schedule, but any existing active job will continue to run. The schedule will be deleted when the existing job completes. |
Applies to
Azure SDK for .NET