Package version:

Interface RollbackStatusInfo

Information about rollback on failed VM instances after a OS Upgrade operation.

interface RollbackStatusInfo {
    failedRolledbackInstanceCount?: number;
    rollbackError?: ApiError;
    successfullyRolledbackInstanceCount?: number;
}

Properties

failedRolledbackInstanceCount?: number

The number of instances which failed to rollback. NOTE: This property will not be serialized. It can only be populated by the server.

rollbackError?: ApiError

Error details if OS rollback failed. NOTE: This property will not be serialized. It can only be populated by the server.

successfullyRolledbackInstanceCount?: number

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