2011-09-02 14:04:24 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Vsphere
|
|
|
|
class Real
|
|
|
|
|
2011-09-10 16:27:52 -04:00
|
|
|
def vm_power_off(options = {})
|
|
|
|
options = { 'force' => false }.merge(options)
|
|
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_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.PowerOffVM_Task
|
2011-09-02 14:04:24 -04:00
|
|
|
task.wait_for_completion
|
2011-09-10 16:27:52 -04:00
|
|
|
{ 'task_state' => task.info.result, 'power_off_type' => 'cut_power' }
|
2011-09-02 14:04:24 -04:00
|
|
|
else
|
2011-09-10 16:27:52 -04:00
|
|
|
vm_mob_ref.ShutdownGuest
|
|
|
|
{
|
|
|
|
'task_state' => "running",
|
|
|
|
'power_off_type' => 'shutdown_guest',
|
|
|
|
}
|
2011-09-02 14:04:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
2011-09-10 16:27:52 -04:00
|
|
|
def vm_power_off(options = {})
|
|
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
2013-07-31 08:24:09 -04:00
|
|
|
vm = get_virtual_machine(options['instance_uuid'])
|
|
|
|
vm["power_state"] = "poweredOff"
|
2011-09-10 16:27:52 -04:00
|
|
|
{
|
|
|
|
'task_state' => "running",
|
|
|
|
'power_off_type' => options['force'] ? 'cut_power' : 'shutdown_guest',
|
|
|
|
}
|
2011-09-02 14:04:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|