PipelineState 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.
Enumerated type defining the state of the Pipeline.
public enum class PipelineState
public enum PipelineState
type PipelineState =
Public Enum PipelineState
- Inheritance
-
PipelineState
Fields
Name | Value | Description |
---|---|---|
NotStarted | 0 | The pipeline has not been started. |
Running | 1 | The pipeline is executing. |
Stopping | 2 | The pipeline is stoping execution. |
Stopped | 3 | The pipeline is completed due to a stop request. |
Completed | 4 | The pipeline has completed. |
Failed | 5 | The pipeline completed abnormally due to an error. |
Disconnected | 6 | The pipeline is disconnected from remote running command. |