VMware vSphere Automation SDK for .NET 7.0.0.1
vmware::cis::task::Status Class Reference

The Status enumerated type defines the status values that can be reported for an operation. More...

List of all members.

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.

Detailed Description

The Status enumerated type defines the status values that can be reported for an operation.

This enumeration was added in vSphere API 6.7.


Member Enumeration Documentation

C# enum whose values can be used in switch statements.

Ordinals have no semantic meaning (your code should not rely on them).

Enumerator:
_UNKNOWN 

Special enumeration constant which is used to represent constants that do not exist in the current enum binding.

For example if a client sends a new constant to an older server, the server code will see this special constant, because its enum binding lacks the new constant.

PENDING 

The operation is in pending state.

This constant was added in vSphere API 6.7.

RUNNING 

The operation is in progress.

This constant was added in vSphere API 6.7.

BLOCKED 

The operation is blocked.

This constant was added in vSphere API 6.7.

SUCCEEDED 

The operation completed successfully.

This constant was added in vSphere API 6.7.

FAILED 

The operation failed.

This constant was added in vSphere API 6.7.


Member Function Documentation

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]

Member Data Documentation

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.


The documentation for this class was generated from the following file: