FixedScaleSettings Constructors

Definition

Overloads

FixedScaleSettings()

Initializes a new instance of the FixedScaleSettings class.

FixedScaleSettings(Nullable<TimeSpan>, Nullable<Int32>, Nullable<Int32>, Nullable<ComputeNodeDeallocationOption>)

Initializes a new instance of the FixedScaleSettings class.

FixedScaleSettings()

Initializes a new instance of the FixedScaleSettings class.

public FixedScaleSettings ();
Public Sub New ()

Applies to

FixedScaleSettings(Nullable<TimeSpan>, Nullable<Int32>, Nullable<Int32>, Nullable<ComputeNodeDeallocationOption>)

Initializes a new instance of the FixedScaleSettings class.

public FixedScaleSettings (TimeSpan? resizeTimeout = default, int? targetDedicatedNodes = default, int? targetLowPriorityNodes = default, Microsoft.Azure.Management.Batch.Models.ComputeNodeDeallocationOption? nodeDeallocationOption = default);
new Microsoft.Azure.Management.Batch.Models.FixedScaleSettings : Nullable<TimeSpan> * Nullable<int> * Nullable<int> * Nullable<Microsoft.Azure.Management.Batch.Models.ComputeNodeDeallocationOption> -> Microsoft.Azure.Management.Batch.Models.FixedScaleSettings
Public Sub New (Optional resizeTimeout As Nullable(Of TimeSpan) = Nothing, Optional targetDedicatedNodes As Nullable(Of Integer) = Nothing, Optional targetLowPriorityNodes As Nullable(Of Integer) = Nothing, Optional nodeDeallocationOption As Nullable(Of ComputeNodeDeallocationOption) = Nothing)

Parameters

resizeTimeout
Nullable<TimeSpan>

The timeout for allocation of compute nodes to the pool.

targetDedicatedNodes
Nullable<Int32>

The desired number of dedicated compute nodes in the pool.

targetLowPriorityNodes
Nullable<Int32>

The desired number of Spot/low-priority compute nodes in the pool.

nodeDeallocationOption
Nullable<ComputeNodeDeallocationOption>

Determines what to do with a node and its running task(s) if the pool size is decreasing.

Applies to