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.
Represents the possible runtime execution status values for an orchestration instance.
public enum OrchestrationRuntimeStatus
type OrchestrationRuntimeStatus =
Public Enum OrchestrationRuntimeStatus
- Inheritance
-
OrchestrationRuntimeStatus
Fields
Name | Value | Description |
---|---|---|
Unknown | -1 | The status of the orchestration could not be determined. |
Running | 0 | The orchestration is running (it may be actively running or waiting for input). |
Completed | 1 | The orchestration ran to completion. |
ContinuedAsNew | 2 | The orchestration completed with ContinueAsNew as is in the process of restarting. |
Failed | 3 | The orchestration failed with an error. |
Canceled | 4 | The orchestration was canceled. |
Terminated | 5 | The orchestration was terminated via an API call. |
Pending | 6 | The orchestration was scheduled but has not yet started. |
Suspended | 7 | The orchestration was suspended |
Applies to
Azure SDK for .NET