Share via


BatchNodeRebootKind Struct

Definition

BatchNodeRebootKind enums.

public readonly struct BatchNodeRebootKind : IEquatable<Azure.Compute.Batch.BatchNodeRebootKind>
type BatchNodeRebootKind = struct
Public Structure BatchNodeRebootKind
Implements IEquatable(Of BatchNodeRebootKind)
Inheritance
BatchNodeRebootKind
Implements

Constructors

Name Description
BatchNodeRebootKind(String)

Initializes a new instance of BatchNodeRebootKind.

Properties

Name Description
Requeue

Terminate running Task processes and requeue the Tasks. The Tasks will run again when a Compute Node is available. Restart the Compute Node as soon as Tasks have been terminated.

RetainedData

Deprecated, we encourage you to upload task data to Azure Storage in your task and use TaskCompletion instead. Allow currently running Tasks to complete, then wait for all Task data retention periods to expire. Schedule no new Tasks while waiting. Restart the Compute Node when all Task retention periods have expired.

TaskCompletion

Allow currently running Tasks to complete. Schedule no new Tasks while waiting. Restart the Compute Node when all Tasks have completed.

Terminate

Terminate running Tasks. The Tasks will be completed with failureInfo indicating that they were terminated, and will not run again. Restart the Compute Node as soon as Tasks have been terminated.

Methods

Name Description
Equals(BatchNodeRebootKind)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Name Description
Equality(BatchNodeRebootKind, BatchNodeRebootKind)

Determines if two BatchNodeRebootKind values are the same.

Implicit(String to BatchNodeRebootKind)

Converts a String to a BatchNodeRebootKind.

Inequality(BatchNodeRebootKind, BatchNodeRebootKind)

Determines if two BatchNodeRebootKind values are not the same.

Applies to