mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
6716f37c5f
Done with `rubocop --auto-correct --only DeprecatedHashMethods`
23 lines
971 B
Ruby
23 lines
971 B
Ruby
module Fog
|
|
module Compute
|
|
class Vsphere
|
|
class Real
|
|
def vm_reconfig_memory(options = {})
|
|
raise ArgumentError, "memory is a required parameter" unless options.key? 'memory'
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.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.key? 'memory'
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.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
|