Package version:

Interface RollingUpgradeProgressInfo

Information about the number of virtual machine instances in each upgrade state.

interface RollingUpgradeProgressInfo {
    failedInstanceCount?: number;
    inProgressInstanceCount?: number;
    pendingInstanceCount?: number;
    successfulInstanceCount?: number;
}

Properties

failedInstanceCount?: number

The number of instances that have failed to be upgraded successfully. NOTE: This property will not be serialized. It can only be populated by the server.

inProgressInstanceCount?: number

The number of instances that are currently being upgraded. NOTE: This property will not be serialized. It can only be populated by the server.

pendingInstanceCount?: number

The number of instances that have not yet begun to be upgraded. NOTE: This property will not be serialized. It can only be populated by the server.

successfulInstanceCount?: number

The number of instances that have been successfully upgraded. NOTE: This property will not be serialized. It can only be populated by the server.