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_reboot.rb
Paul Thornthwaite 6716f37c5f Replace deprecated Hash methods
Done with `rubocop --auto-correct --only DeprecatedHashMethods`
2014-05-26 16:22:08 +01:00

31 lines
1.1 KiB
Ruby

module Fog
module Compute
class Vsphere
class Real
def vm_reboot(options = {})
options = { 'force' => false }.merge(options)
raise ArgumentError, "instance_uuid is a required parameter" unless options.key? 'instance_uuid'
search_filter = { :uuid => options['instance_uuid'], 'vmSearch' => true, 'instanceUuid' => true }
vm_mob_ref = @connection.searchIndex.FindAllByUuid(search_filter).first
if options['force'] then
task = vm_mob_ref.ResetVM_Task
task.wait_for_completion
{ 'task_state' => task.info.result, 'reboot_type' => 'reset_power' }
else
vm_mob_ref.RebootGuest
{ 'task_state' => "running", 'reboot_type' => 'reboot_guest' }
end
end
end
class Mock
def vm_reboot(options = {})
raise ArgumentError, "instance_uuid is a required parameter" unless options.key? 'instance_uuid'
{ 'task_state' => "running", 'reboot_type' => options['force'] ? 'reset_power' : 'reboot_guest' }
end
end
end
end
end