Class: Com::Vmware::Vcenter::Vm::HardwareService
- Inherits:
-
VAPI::Bindings::VapiService
- Object
- VAPI::Bindings::VapiService
- Com::Vmware::Vcenter::Vm::HardwareService
- Defined in:
- /build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vcenter/vm.rb
Overview
The ``Com::Vmware::Vcenter::Vm::Hardware`` class provides methods for configuring the virtual hardware of a virtual machine.
Defined Under Namespace
Classes: Info, UpdateSpec, UpgradePolicy, UpgradeStatus, Version
Instance Method Summary (collapse)
-
- (Com::Vmware::Vcenter::Vm::Hardware::Info) get(vm)
Returns the virtual hardware settings of a virtual machine.
-
- (HardwareService) initialize(config)
constructor
Constructs a new instance.
-
- (Void) update(vm, spec)
Updates the virtual hardware settings of a virtual machine.
-
- (Void) upgrade(vm, version = nil)
Upgrades the virtual machine to a newer virtual hardware version.
Constructor Details
- (HardwareService) initialize(config)
Constructs a new instance.
104 105 106 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vcenter/vm.rb', line 104 def initialize(config) super(config, @@service_info) end |
Instance Method Details
- (Com::Vmware::Vcenter::Vm::Hardware::Info) get(vm)
Returns the virtual hardware settings of a virtual machine.
127 128 129 130 131 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vcenter/vm.rb', line 127 def get(vm) invoke_with_info(@@get_info, { 'vm' => vm, }) end |
- (Void) update(vm, spec)
Updates the virtual hardware settings of a virtual machine.
161 162 163 164 165 166 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vcenter/vm.rb', line 161 def update(vm, spec) invoke_with_info(@@update_info, { 'vm' => vm, 'spec' => spec, }) end |
- (Void) upgrade(vm, version = nil)
Upgrades the virtual machine to a newer virtual hardware version.
199 200 201 202 203 204 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/vcenter/vm.rb', line 199 def upgrade(vm, version=nil) invoke_with_info(@@upgrade_info, { 'vm' => vm, 'version' => version, }) end |