VMware vSphere Automation SDK for .NET 7.0.0.1
vmware::appliance::Shutdown Interface Reference

Shutdown interface provides methods Performs reboot/shutdown operations on appliance. More...

Inherited by vmware::appliance::ShutdownStub.

List of all members.

Public Member Functions

void Cancel ()
 Cancel pending shutdown action.
void Cancel (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Cancel pending shutdown action.
global::System.Threading.Tasks.Task CancelAsync ()
 Cancel pending shutdown action.
global::System.Threading.Tasks.Task CancelAsync (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Cancel pending shutdown action.
void Poweroff (long delay, string reason)
 Power off the appliance.
void Poweroff (long delay, string reason, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Power off the appliance.
global::System.Threading.Tasks.Task PoweroffAsync (long delay, string reason)
 Power off the appliance.
global::System.Threading.Tasks.Task PoweroffAsync (long delay, string reason, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Power off the appliance.
void Reboot (long delay, string reason)
 Reboot the appliance.
void Reboot (long delay, string reason, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Reboot the appliance.
global::System.Threading.Tasks.Task RebootAsync (long delay, string reason)
 Reboot the appliance.
global::System.Threading.Tasks.Task RebootAsync (long delay, string reason, global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Reboot the appliance.
vmware.appliance.ShutdownTypes.ShutdownConfig Get ()
 Get details about the pending shutdown action.
vmware.appliance.ShutdownTypes.ShutdownConfig Get (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Get details about the pending shutdown action.
global::System.Threading.Tasks.Task
< vmware.appliance.ShutdownTypes.ShutdownConfig
GetAsync ()
 Get details about the pending shutdown action.
global::System.Threading.Tasks.Task
< vmware.appliance.ShutdownTypes.ShutdownConfig
GetAsync (global::System.Action< vmware.vapi.std.Progress > _progress, vmware.vapi.bindings.client.InvocationConfig _invocationConfig)
 Get details about the pending shutdown action.

Detailed Description

Shutdown interface provides methods Performs reboot/shutdown operations on appliance.

This interface was added in vSphere API 6.7.


Member Function Documentation

void vmware::appliance::Shutdown::Cancel ( )

Cancel pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error

Implemented in vmware::appliance::ShutdownStub.

void vmware::appliance::Shutdown::Cancel ( global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Cancel pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task vmware::appliance::Shutdown::CancelAsync ( global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Cancel pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task vmware::appliance::Shutdown::CancelAsync ( )

Cancel pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error

Implemented in vmware::appliance::ShutdownStub.

vmware.appliance.ShutdownTypes.ShutdownConfig vmware::appliance::Shutdown::Get ( )

Get details about the pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Returns:
Configuration of pending shutdown action.

Implemented in vmware::appliance::ShutdownStub.

vmware.appliance.ShutdownTypes.ShutdownConfig vmware::appliance::Shutdown::Get ( global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Get details about the pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Returns:
Configuration of pending shutdown action.

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task<vmware.appliance.ShutdownTypes.ShutdownConfig> vmware::appliance::Shutdown::GetAsync ( )

Get details about the pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Returns:
Configuration of pending shutdown action.

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task<vmware.appliance.ShutdownTypes.ShutdownConfig> vmware::appliance::Shutdown::GetAsync ( global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Get details about the pending shutdown action.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Returns:
Configuration of pending shutdown action.

Implemented in vmware::appliance::ShutdownStub.

void vmware::appliance::Shutdown::Poweroff ( long  delay,
string  reason 
)

Power off the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which poweroff should start. If 0 is specified, poweroff will start immediately.
reasonReason for peforming poweroff.

Implemented in vmware::appliance::ShutdownStub.

void vmware::appliance::Shutdown::Poweroff ( long  delay,
string  reason,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Power off the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which poweroff should start. If 0 is specified, poweroff will start immediately.
reasonReason for peforming poweroff.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task vmware::appliance::Shutdown::PoweroffAsync ( long  delay,
string  reason,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Power off the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which poweroff should start. If 0 is specified, poweroff will start immediately.
reasonReason for peforming poweroff.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task vmware::appliance::Shutdown::PoweroffAsync ( long  delay,
string  reason 
)

Power off the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which poweroff should start. If 0 is specified, poweroff will start immediately.
reasonReason for peforming poweroff.

Implemented in vmware::appliance::ShutdownStub.

void vmware::appliance::Shutdown::Reboot ( long  delay,
string  reason,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Reboot the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which reboot should start. If 0 is specified, reboot will start immediately.
reasonReason for peforming reboot.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation

Implemented in vmware::appliance::ShutdownStub.

void vmware::appliance::Shutdown::Reboot ( long  delay,
string  reason 
)

Reboot the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which reboot should start. If 0 is specified, reboot will start immediately.
reasonReason for peforming reboot.

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task vmware::appliance::Shutdown::RebootAsync ( long  delay,
string  reason,
global::System.Action< vmware.vapi.std.Progress >  _progress,
vmware.vapi.bindings.client.InvocationConfig  _invocationConfig 
)

Reboot the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which reboot should start. If 0 is specified, reboot will start immediately.
reasonReason for peforming reboot.
_progressProgress notification call back
_invocationConfigConfiguration for the method invocation

Implemented in vmware::appliance::ShutdownStub.

global::System.Threading.Tasks.Task vmware::appliance::Shutdown::RebootAsync ( long  delay,
string  reason 
)

Reboot the appliance.

This method was added in vSphere API 6.7.

Exceptions:
vmware.vapi.std.errors.ErrorGeneric error
Parameters:
delayMinutes after which reboot should start. If 0 is specified, reboot will start immediately.
reasonReason for peforming reboot.

Implemented in vmware::appliance::ShutdownStub.


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