VMware vSphere Automation SDK for .NET 7.0.0.1
vmware::vcenter::guest::WindowsConfiguration::RebootOption Class Reference

The WindowsConfiguration.RebootOption enumerated type specifies what should be done to the guest after the customization. More...

List of all members.

Public Types

enum  Values {
  _UNKNOWN,
  REBOOT,
  NO_REBOOT,
  SHUTDOWN
}
 C# enum whose values can be used in switch statements. More...

Public Member Functions

bool IsUnknown ()
Values GetEnumValue ()

Static Public Member Functions

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

Static Public Attributes

static readonly RebootOption REBOOT = new RebootOption("REBOOT", Values.REBOOT)
 Reboot the guest after customization.
static readonly RebootOption NO_REBOOT = new RebootOption("NO_REBOOT", Values.NO_REBOOT)
 Take no action.
static readonly RebootOption SHUTDOWN = new RebootOption("SHUTDOWN", Values.SHUTDOWN)
 Shutdown the guest after customization.

Detailed Description

The WindowsConfiguration.RebootOption enumerated type specifies what should be done to the guest after the customization.

This enumeration was added in vSphere API 7.0.0.


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.

REBOOT 

Reboot the guest after customization.

This constant was added in vSphere API 7.0.0.

NO_REBOOT 

Take no action.

Leave the guest OS running after customization. This option can be used to look at values for debugging purposes. This constant was added in vSphere API 7.0.0.

SHUTDOWN 

Shutdown the guest after customization.

This constant was added in vSphere API 7.0.0.


Member Function Documentation

Values vmware::vcenter::guest::WindowsConfiguration::RebootOption::GetEnumValue ( ) [inline]
static RebootOption [] vmware::vcenter::guest::WindowsConfiguration::RebootOption::GetValues ( ) [inline, static]
bool vmware::vcenter::guest::WindowsConfiguration::RebootOption::IsUnknown ( ) [inline]
static RebootOption vmware::vcenter::guest::WindowsConfiguration::RebootOption::ValueOf ( string  name) [inline, static]

Member Data Documentation

Take no action.

Leave the guest OS running after customization. This option can be used to look at values for debugging purposes. This constant was added in vSphere API 7.0.0.

Reboot the guest after customization.

This constant was added in vSphere API 7.0.0.

Shutdown the guest after customization.

This constant was added in vSphere API 7.0.0.


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