mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
![Paul Thornthwaite](/assets/img/avatar_default.png)
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
module Fog
|
|
module Compute
|
|
class Vsphere
|
|
class Real
|
|
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
|
|
task.wait_for_completion
|
|
{ 'task_state' => task.info.result, 'power_off_type' => 'cut_power' }
|
|
else
|
|
vm_mob_ref.ShutdownGuest
|
|
{
|
|
'task_state' => "running",
|
|
'power_off_type' => 'shutdown_guest',
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def vm_power_off(options = {})
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
|
vm = get_virtual_machine(options['instance_uuid'])
|
|
vm["power_state"] = "poweredOff"
|
|
{
|
|
'task_state' => "running",
|
|
'power_off_type' => options['force'] ? 'cut_power' : 'shutdown_guest',
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|