ApplicationUpgradeState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the state of the application upgrade.
public enum ApplicationUpgradeState
type ApplicationUpgradeState =
Public Enum ApplicationUpgradeState
- Inheritance
-
ApplicationUpgradeState
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | Indicates that the type is not valid. All Service Fabric enumerations have an invalid type. |
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. |
RollingBackCompleted | 2 | Indicates that the rollback of the upgrade is completed. The completed rollback indicates that upgrade to the target version has failed. |
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. |
RollingForwardInProgress | 4 | Indicates that the upgrade to the target application type version is in progress. |
RollingForwardCompleted | 5 | Indicates that the upgrade to the target application type version is completed. |
Failed | 6 | Indicates that the upgrade has failed. |
RollingBackPending | 7 | Indicates that the rollback of the upgrade is pending client input. MoveNextApplicationUpgradeDomainAsync(ApplicationUpgradeProgress) is used to continue the rollback. |
Applies to
Azure SDK for .NET