mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
987 B
Ruby
24 lines
987 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class Vsphere
|
||
|
class Real
|
||
|
def vm_reconfig_memory(options = {})
|
||
|
raise ArgumentError, "memory is a required parameter" unless options.has_key? 'memory'
|
||
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
||
|
hardware_spec={'memoryMB' => options['memory']}
|
||
|
vm_reconfig_hardware('instance_uuid' => options['instance_uuid'], 'hardware_spec' => hardware_spec )
|
||
|
end
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
def vm_reconfig_memory(options = {})
|
||
|
raise ArgumentError, "memory is a required parameter" unless options.has_key? 'memory'
|
||
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
||
|
hardware_spec={'memoryMB' => options['memory']}
|
||
|
vm_reconfig_hardware('instance_uuid' => options['instance_uuid'], 'hardware_spec' => hardware_spec )
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|