Share via


RollingUpgradeProgressInfo Constructors

Definition

Overloads

RollingUpgradeProgressInfo()

Initializes a new instance of the RollingUpgradeProgressInfo class.

RollingUpgradeProgressInfo(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the RollingUpgradeProgressInfo class.

RollingUpgradeProgressInfo()

Initializes a new instance of the RollingUpgradeProgressInfo class.

public RollingUpgradeProgressInfo ();
Public Sub New ()

Applies to

RollingUpgradeProgressInfo(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the RollingUpgradeProgressInfo class.

public RollingUpgradeProgressInfo (int? successfulInstanceCount = default, int? failedInstanceCount = default, int? inProgressInstanceCount = default, int? pendingInstanceCount = default);
new Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo
Public Sub New (Optional successfulInstanceCount As Nullable(Of Integer) = Nothing, Optional failedInstanceCount As Nullable(Of Integer) = Nothing, Optional inProgressInstanceCount As Nullable(Of Integer) = Nothing, Optional pendingInstanceCount As Nullable(Of Integer) = Nothing)

Parameters

successfulInstanceCount
Nullable<Int32>

The number of instances that have been successfully upgraded.

failedInstanceCount
Nullable<Int32>

The number of instances that have failed to be upgraded successfully.

inProgressInstanceCount
Nullable<Int32>

The number of instances that are currently being upgraded.

pendingInstanceCount
Nullable<Int32>

The number of instances that have not yet begun to be upgraded.

Applies to