JobState 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.
Defines values for JobState.
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public enum JobState
[<Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))>]
type JobState =
Public Enum JobState
- Inheritance
-
JobState
- Attributes
-
Newtonsoft.Json.JsonConverterAttribute
Fields
Name | Value | Description |
---|---|---|
Active | 0 | The Job is available to have Tasks scheduled. |
Disabling | 1 | A user has requested that the Job be disabled, but the disable operation is still in progress (for example, waiting for Tasks to terminate). |
Disabled | 2 | A user has disabled the Job. No Tasks are running, and no new Tasks will be scheduled. |
Enabling | 3 | A user has requested that the Job be enabled, but the enable operation is still in progress. |
Terminating | 4 | The Job is about to complete, either because a Job Manager Task has completed or because the user has terminated the Job, but the terminate operation is still in progress (for example, because Job Release Tasks are running). |
Completed | 5 | All Tasks have terminated, and the system will not accept any more Tasks or any further changes to the Job. |
Deleting | 6 | A user has requested that the Job be deleted, but the delete operation is still in progress (for example, because the system is still terminating running Tasks). |
Applies to
Azure SDK for .NET