AutoScaleRun Constructors

Definition

Overloads

AutoScaleRun()

Initializes a new instance of the AutoScaleRun class.

AutoScaleRun(DateTime, String, AutoScaleRunError)

Initializes a new instance of the AutoScaleRun class.

AutoScaleRun()

Source:
AutoScaleRun.cs

Initializes a new instance of the AutoScaleRun class.

public AutoScaleRun ();
Public Sub New ()

Applies to

AutoScaleRun(DateTime, String, AutoScaleRunError)

Source:
AutoScaleRun.cs

Initializes a new instance of the AutoScaleRun class.

public AutoScaleRun (DateTime timestamp, string results = default, Microsoft.Azure.Batch.Protocol.Models.AutoScaleRunError error = default);
new Microsoft.Azure.Batch.Protocol.Models.AutoScaleRun : DateTime * string * Microsoft.Azure.Batch.Protocol.Models.AutoScaleRunError -> Microsoft.Azure.Batch.Protocol.Models.AutoScaleRun
Public Sub New (timestamp As DateTime, Optional results As String = Nothing, Optional error As AutoScaleRunError = Nothing)

Parameters

timestamp
DateTime

The time at which the autoscale formula was last evaluated.

results
String

The final values of all variables used in the evaluation of the autoscale formula.

error
AutoScaleRunError

Details of the error encountered evaluating the autoscale formula on the Pool, if the evaluation was unsuccessful.

Applies to