Udostępnij za pośrednictwem


PoolEnableAutoScaleParameter Constructors

Definition

Overloads

PoolEnableAutoScaleParameter()

Initializes a new instance of the PoolEnableAutoScaleParameter class.

PoolEnableAutoScaleParameter(String, Nullable<TimeSpan>)

Initializes a new instance of the PoolEnableAutoScaleParameter class.

PoolEnableAutoScaleParameter()

Source:
PoolEnableAutoScaleParameter.cs

Initializes a new instance of the PoolEnableAutoScaleParameter class.

public PoolEnableAutoScaleParameter ();
Public Sub New ()

Applies to

PoolEnableAutoScaleParameter(String, Nullable<TimeSpan>)

Source:
PoolEnableAutoScaleParameter.cs

Initializes a new instance of the PoolEnableAutoScaleParameter class.

public PoolEnableAutoScaleParameter (string autoScaleFormula = default, TimeSpan? autoScaleEvaluationInterval = default);
new Microsoft.Azure.Batch.Protocol.Models.PoolEnableAutoScaleParameter : string * Nullable<TimeSpan> -> Microsoft.Azure.Batch.Protocol.Models.PoolEnableAutoScaleParameter
Public Sub New (Optional autoScaleFormula As String = Nothing, Optional autoScaleEvaluationInterval As Nullable(Of TimeSpan) = Nothing)

Parameters

autoScaleFormula
String

The formula for the desired number of Compute Nodes in the Pool.

autoScaleEvaluationInterval
Nullable<TimeSpan>

The time interval at which to automatically adjust the Pool size according to the autoscale formula.

Applies to