RepairTaskState 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.
Specifies the workflow state of a repair task.
This type supports the Service Fabric platform; it is not meant to be used directly from your code.
public enum RepairTaskState
type RepairTaskState =
Public Enum RepairTaskState
- Inheritance
-
RepairTaskState
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | Indicates that the repair task state is invalid. |
Created | 1 | Indicates that the repair task has been created. |
Claimed | 2 | Indicates that the repair task has been claimed by a repair executor. |
Preparing | 4 | Indicates that the Repair Manager is preparing the system to handle the impact of the repair task, usually by taking resources offline gracefully. |
Approved | 8 | Indicates that the repair task has been approved by the Repair Manager and is safe to execute. |
Executing | 16 | Indicates that execution of the repair task is in progress. |
Restoring | 32 | Indicates that the Repair Manager is restoring the system to its pre-repair state, usually by bringing resources back online. |
Completed | 64 | Indicates that the repair task has completed, and no further state changes will occur. |
Applies to
Azure SDK for .NET