|
VMware vSphere Automation SDK for .NET 7.0.0.1
|
The Status enumerated type defines the status values that can be reported for an operation.
More...
Public Types | |
| enum | Values { _UNKNOWN, PENDING, RUNNING, BLOCKED, SUCCEEDED, FAILED } |
| C# enum whose values can be used in switch statements. More... | |
Public Member Functions | |
| bool | IsUnknown () |
| Values | GetEnumValue () |
Static Public Member Functions | |
| static Status[] | GetValues () |
| static Status | ValueOf (string name) |
Static Public Attributes | |
| static readonly Status | PENDING = new Status("PENDING", Values.PENDING) |
| The operation is in pending state. | |
| static readonly Status | RUNNING = new Status("RUNNING", Values.RUNNING) |
| The operation is in progress. | |
| static readonly Status | BLOCKED = new Status("BLOCKED", Values.BLOCKED) |
| The operation is blocked. | |
| static readonly Status | SUCCEEDED = new Status("SUCCEEDED", Values.SUCCEEDED) |
| The operation completed successfully. | |
| static readonly Status | FAILED = new Status("FAILED", Values.FAILED) |
| The operation failed. | |
The Status enumerated type defines the status values that can be reported for an operation.
This enumeration was added in vSphere API 6.7.
C# enum whose values can be used in switch statements.
Ordinals have no semantic meaning (your code should not rely on them).
| Values vmware::cis::task::Status::GetEnumValue | ( | ) | [inline] |
| static Status [] vmware::cis::task::Status::GetValues | ( | ) | [inline, static] |
| bool vmware::cis::task::Status::IsUnknown | ( | ) | [inline] |
| static Status vmware::cis::task::Status::ValueOf | ( | string | name | ) | [inline, static] |
readonly Status vmware::cis::task::Status::BLOCKED = new Status("BLOCKED", Values.BLOCKED) [static] |
The operation is blocked.
This constant was added in vSphere API 6.7.
readonly Status vmware::cis::task::Status::FAILED = new Status("FAILED", Values.FAILED) [static] |
The operation failed.
This constant was added in vSphere API 6.7.
readonly Status vmware::cis::task::Status::PENDING = new Status("PENDING", Values.PENDING) [static] |
The operation is in pending state.
This constant was added in vSphere API 6.7.
readonly Status vmware::cis::task::Status::RUNNING = new Status("RUNNING", Values.RUNNING) [static] |
The operation is in progress.
This constant was added in vSphere API 6.7.
readonly Status vmware::cis::task::Status::SUCCEEDED = new Status("SUCCEEDED", Values.SUCCEEDED) [static] |
The operation completed successfully.
This constant was added in vSphere API 6.7.