Class RollingUpgradeRunningStatus
Information about the current running state of the overall upgrade.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class RollingUpgradeRunningStatus
Constructors
RollingUpgradeRunningStatus()
Initializes a new instance of the RollingUpgradeRunningStatus class.
Declaration
public RollingUpgradeRunningStatus ();
RollingUpgradeRunningStatus(Nullable<RollingUpgradeStatusCode>, Nullable<DateTime>, Nullable<RollingUpgradeActionType>, Nullable<DateTime>)
Initializes a new instance of the RollingUpgradeRunningStatus class.
Declaration
public RollingUpgradeRunningStatus (Nullable<Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode> code = null, Nullable<DateTime> startTime = null, Nullable<Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType> lastAction = null, Nullable<DateTime> lastActionTime = null);
Parameters
|
Nullable<RollingUpgradeStatusCode>
code
Code indicating the current status of the upgrade. Possible values include: 'RollingForward', 'Cancelled', 'Completed', 'Faulted' |
|
Nullable<DateTime>
startTime
Start time of the upgrade. |
|
Nullable<RollingUpgradeActionType>
lastAction
The last action performed on the rolling upgrade. Possible values include: 'Start', 'Cancel' |
|
Nullable<DateTime>
lastActionTime
Last action time of the upgrade. |
Properties
Code
Gets code indicating the current status of the upgrade. Possible values include: 'RollingForward', 'Cancelled', 'Completed', 'Faulted'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="code")]
public Nullable<Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode> Code { get; }
Property Value
|
Nullable<RollingUpgradeStatusCode>
|
LastAction
Gets the last action performed on the rolling upgrade. Possible values include: 'Start', 'Cancel'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="lastAction")]
public Nullable<Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType> LastAction { get; }
Property Value
|
Nullable<RollingUpgradeActionType>
|
LastActionTime
Gets last action time of the upgrade.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="lastActionTime")]
public Nullable<DateTime> LastActionTime { get; }
Property Value
|
Nullable<DateTime>
|