OrchestrationRuntimeStatus 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.
Enum describing the runtime status of the orchestration.
public enum OrchestrationRuntimeStatus
type OrchestrationRuntimeStatus =
Public Enum OrchestrationRuntimeStatus
- Inheritance
-
OrchestrationRuntimeStatus
Fields
Name | Value | Description |
---|---|---|
Running | 0 | The orchestration started running. |
Completed | 1 | The orchestration completed normally. |
ContinuedAsNew | 2 | The orchestration is transitioning into a new instance. |
Failed | 3 | The orchestration completed with an unhandled exception. |
Canceled | 4 | The orchestration canceled gracefully. |
Terminated | 5 | The orchestration was abruptly terminated via a management API call. |
Pending | 6 | The orchestration was scheduled but hasn't started running. |
Suspended | 7 | The orchestration is in a suspended state. |