Share via


BatchNodeDeallocateOption Struct

Definition

BatchNodeDeallocateOption enums.

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

Constructors

BatchNodeDeallocateOption(String)

Initializes a new instance of BatchNodeDeallocateOption.

Properties

Requeue

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

RetainedData

Allow currently running Tasks to complete, then wait for all Task data retention periods to expire. Schedule no new Tasks while waiting. Deallocate the Compute Node when all Task retention periods have expired.

TaskCompletion

Allow currently running Tasks to complete. Schedule no new Tasks while waiting. Deallocate 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. Deallocate the Compute Node as soon as Tasks have been terminated.

Methods

Equals(BatchNodeDeallocateOption)

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

Equality(BatchNodeDeallocateOption, BatchNodeDeallocateOption)

Determines if two BatchNodeDeallocateOption values are the same.

Implicit(String to BatchNodeDeallocateOption)

Converts a String to a BatchNodeDeallocateOption.

Inequality(BatchNodeDeallocateOption, BatchNodeDeallocateOption)

Determines if two BatchNodeDeallocateOption values are not the same.

Applies to