Class RollingUpgradeProgressInfo
Information about the number of virtual machine instances in each upgrade state.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class RollingUpgradeProgressInfo
Constructors
RollingUpgradeProgressInfo()
Initializes a new instance of the RollingUpgradeProgressInfo class.
Declaration
public RollingUpgradeProgressInfo ();
RollingUpgradeProgressInfo(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)
Initializes a new instance of the RollingUpgradeProgressInfo class.
Declaration
public RollingUpgradeProgressInfo (Nullable<int> successfulInstanceCount = null, Nullable<int> failedInstanceCount = null, Nullable<int> inProgressInstanceCount = null, Nullable<int> pendingInstanceCount = null);
Parameters
|
Nullable<Int32>
successfulInstanceCount
The number of instances that have been successfully upgraded. |
|
Nullable<Int32>
failedInstanceCount
The number of instances that have failed to be upgraded successfully. |
|
Nullable<Int32>
inProgressInstanceCount
The number of instances that are currently being upgraded. |
|
Nullable<Int32>
pendingInstanceCount
The number of instances that have not yet begun to be upgraded. |
Properties
FailedInstanceCount
Gets the number of instances that have failed to be upgraded successfully.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="failedInstanceCount")]
public Nullable<int> FailedInstanceCount { get; }
Property Value
|
Nullable<Int32>
|
InProgressInstanceCount
Gets the number of instances that are currently being upgraded.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="inProgressInstanceCount")]
public Nullable<int> InProgressInstanceCount { get; }
Property Value
|
Nullable<Int32>
|
PendingInstanceCount
Gets the number of instances that have not yet begun to be upgraded.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="pendingInstanceCount")]
public Nullable<int> PendingInstanceCount { get; }
Property Value
|
Nullable<Int32>
|