VMware vSphere Automation SDK for .NET 7.0.0.1
|
The WindowsConfiguration.RebootOption
enumerated type specifies what should be done to the guest after the customization.
More...
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. |
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.
C# enum whose values can be used in switch statements.
Ordinals have no semantic meaning (your code should not rely on them).
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] |
readonly RebootOption vmware::vcenter::guest::WindowsConfiguration::RebootOption::NO_REBOOT = new RebootOption("NO_REBOOT", Values.NO_REBOOT) [static] |
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.
readonly RebootOption vmware::vcenter::guest::WindowsConfiguration::RebootOption::REBOOT = new RebootOption("REBOOT", Values.REBOOT) [static] |
Reboot the guest after customization.
This constant was added in vSphere API 7.0.0.
readonly RebootOption vmware::vcenter::guest::WindowsConfiguration::RebootOption::SHUTDOWN = new RebootOption("SHUTDOWN", Values.SHUTDOWN) [static] |
Shutdown the guest after customization.
This constant was added in vSphere API 7.0.0.