VMware vSphere Automation SDK for .NET 7.0.0.1
vmware::vcenter::deployment::CheckStatus Class Reference

The CheckStatus enumerated type defines the status of the checks. More...

List of all members.

Public Types

enum  Values {
  _UNKNOWN,
  SUCCESS,
  FAILED
}
 C# enum whose values can be used in switch statements. More...

Public Member Functions

bool IsUnknown ()
Values GetEnumValue ()

Static Public Member Functions

static CheckStatus[] GetValues ()
static CheckStatus ValueOf (string name)

Static Public Attributes

static readonly CheckStatus SUCCESS = new CheckStatus("SUCCESS", Values.SUCCESS)
 All checks have completed successfully.
static readonly CheckStatus FAILED = new CheckStatus("FAILED", Values.FAILED)
 A fatal error was encountered when running the sanity checks.

Detailed Description

The CheckStatus enumerated type defines the status of the checks.

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.

SUCCESS 

All checks have completed successfully.

This constant was added in vSphere API 6.7.

FAILED 

A fatal error was encountered when running the sanity checks.

This constant was added in vSphere API 6.7.


Member Function Documentation

Values vmware::vcenter::deployment::CheckStatus::GetEnumValue ( ) [inline]
static CheckStatus [] vmware::vcenter::deployment::CheckStatus::GetValues ( ) [inline, static]
bool vmware::vcenter::deployment::CheckStatus::IsUnknown ( ) [inline]
static CheckStatus vmware::vcenter::deployment::CheckStatus::ValueOf ( string  name) [inline, static]

Member Data Documentation

readonly CheckStatus vmware::vcenter::deployment::CheckStatus::FAILED = new CheckStatus("FAILED", Values.FAILED) [static]

A fatal error was encountered when running the sanity checks.

This constant was added in vSphere API 6.7.

readonly CheckStatus vmware::vcenter::deployment::CheckStatus::SUCCESS = new CheckStatus("SUCCESS", Values.SUCCESS) [static]

All checks have completed successfully.

This constant was added in vSphere API 6.7.


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