Bagikan melalui


NodeRemoveParameter Constructors

Definition

Overloads

NodeRemoveParameter()

Initializes a new instance of the NodeRemoveParameter class.

NodeRemoveParameter(IList<String>, Nullable<TimeSpan>, Nullable<ComputeNodeDeallocationOption>)

Initializes a new instance of the NodeRemoveParameter class.

NodeRemoveParameter()

Source:
NodeRemoveParameter.cs

Initializes a new instance of the NodeRemoveParameter class.

public NodeRemoveParameter ();
Public Sub New ()

Applies to

NodeRemoveParameter(IList<String>, Nullable<TimeSpan>, Nullable<ComputeNodeDeallocationOption>)

Source:
NodeRemoveParameter.cs

Initializes a new instance of the NodeRemoveParameter class.

public NodeRemoveParameter (System.Collections.Generic.IList<string> nodeList, TimeSpan? resizeTimeout = default, Microsoft.Azure.Batch.Protocol.Models.ComputeNodeDeallocationOption? nodeDeallocationOption = default);
new Microsoft.Azure.Batch.Protocol.Models.NodeRemoveParameter : System.Collections.Generic.IList<string> * Nullable<TimeSpan> * Nullable<Microsoft.Azure.Batch.Protocol.Models.ComputeNodeDeallocationOption> -> Microsoft.Azure.Batch.Protocol.Models.NodeRemoveParameter
Public Sub New (nodeList As IList(Of String), Optional resizeTimeout As Nullable(Of TimeSpan) = Nothing, Optional nodeDeallocationOption As Nullable(Of ComputeNodeDeallocationOption) = Nothing)

Parameters

nodeList
IList<String>

A list containing the IDs of the Compute Nodes to be removed from the specified Pool.

resizeTimeout
Nullable<TimeSpan>

The timeout for removal of Compute Nodes to the Pool.

nodeDeallocationOption
Nullable<ComputeNodeDeallocationOption>

Determines what to do with a Compute Node and its running task(s) after it has been selected for deallocation.

Applies to