ApplicationUpgradeState Enum

Definition

Enumerates the state of the application upgrade.

public enum ApplicationUpgradeState
type ApplicationUpgradeState = 
Public Enum ApplicationUpgradeState
Inheritance
ApplicationUpgradeState

Fields

Failed 6

Indicates that the upgrade has failed.

Invalid 0

Indicates that the type is not valid. All Service Fabric enumerations have an invalid type.

RollingBackCompleted 2

Indicates that the rollback of the upgrade is completed. The completed rollback indicates that upgrade to the target version has failed.

RollingBackInProgress 1

Indicates that the upgrade is in the process of rolling back. This indicates that upgrade to the target version has failed. Note that this state can also be observed temporarily if the upgrade is interrupted to start a new upgrade.

RollingBackPending 7

Indicates that the rollback of the upgrade is pending client input. MoveNextApplicationUpgradeDomainAsync(ApplicationUpgradeProgress) is used to continue the rollback.

RollingForwardCompleted 5

Indicates that the upgrade to the target application type version is completed.

RollingForwardInProgress 4

Indicates that the upgrade to the target application type version is in progress.

RollingForwardPending 3

Indicates that the upgrade to the target application type version is pending client input. MoveNextApplicationUpgradeDomainAsync(ApplicationUpgradeProgress) is used to move the upgrade forward.

Applies to