DisableJobOption Enum

Definition

Defines values for DisableJobOption.

[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public enum DisableJobOption
[<Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))>]
type DisableJobOption = 
Public Enum DisableJobOption
Inheritance
DisableJobOption
Attributes
Newtonsoft.Json.JsonConverterAttribute

Fields

Requeue 0

Terminate running Tasks and requeue them. The Tasks will run again when the Job is enabled.

Terminate 1

Terminate running Tasks. The Tasks will be completed with failureInfo indicating that they were terminated, and will not run again.

Wait 2

Allow currently running Tasks to complete.

Applies to