ComputeNodeDeallocationOption 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 ComputeNodeDeallocationOption.
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public enum ComputeNodeDeallocationOption
[<Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))>]
type ComputeNodeDeallocationOption =
Public Enum ComputeNodeDeallocationOption
- Inheritance
-
ComputeNodeDeallocationOption
- Attributes
-
Newtonsoft.Json.JsonConverterAttribute
Fields
Name | Value | Description |
---|---|---|
Requeue | 0 | Terminate running Task processes and requeue the Tasks. The Tasks will run again when a Compute Node is available. Remove Compute Nodes as soon as Tasks have been terminated. |
Terminate | 1 | Terminate running Tasks. The Tasks will be completed with failureInfo indicating that they were terminated, and will not run again. Remove Compute Nodes as soon as Tasks have been terminated. |
TaskCompletion | 2 | Allow currently running Tasks to complete. Schedule no new Tasks while waiting. Remove Compute Nodes when all Tasks have completed. |
RetainedData | 3 | Allow currently running Tasks to complete, then wait for all Task data retention periods to expire. Schedule no new Tasks while waiting. Remove Compute Nodes when all Task retention periods have expired. |
Applies to
Azure SDK for .NET