1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb
Marc Grimme e8f71c671d [vSphere] Implemented feature to specify a socket cpu layout as specified in vmware API. If not used numCoresPerSocket is left out and default VMware behaviour is used.
[vSphere] also fixed bug in vm_reconfig_memory: wrong memory value passed to reconfig_hardware (memory in bytes instead of memory in MB).
2013-10-21 15:07:24 +02:00

23 lines
1 KiB
Ruby

module Fog
module Compute
class Vsphere
class Real
def vm_reconfig_cpus(options = {})
raise ArgumentError, "cpus is a required parameter" unless options.has_key? 'cpus'
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
hardware_spec={'numCPUs' => options['cpus'], 'numCoresPerSocket' => options['corespersocket']}
vm_reconfig_hardware('instance_uuid' => options['instance_uuid'], 'hardware_spec' => hardware_spec )
end
end
class Mock
def vm_reconfig_cpus(options = {})
raise ArgumentError, "cpus is a required parameter" unless options.has_key? 'cpus'
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
hardware_spec={'numCPUs' => options['cpus'], 'numCoresPerSocket' => options['corespersocket']}
vm_reconfig_hardware('instance_uuid' => options['instance_uuid'], 'hardware_spec' => hardware_spec )
end
end
end
end
end