Sha256: 26752c4ff680bdebe0866c0ad2d01a1cedecc03e44e3813478066a27d2c8e0ea
Contents?: true
Size: 1.09 KB
Versions: 23
Compression:
Stored size: 1.09 KB
Contents
module Fog module Vsphere class Compute 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'] 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
Version data entries
23 entries across 23 versions & 1 rubygems