2011-09-07 10:00:25 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Cloudstack
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Updates account information for the authenticated user.
|
|
|
|
#
|
|
|
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/rebootVirtualMachine.html]
|
|
|
|
def reboot_virtual_machine(options={})
|
|
|
|
options.merge!(
|
|
|
|
'command' => 'rebootVirtualMachine'
|
|
|
|
)
|
|
|
|
|
|
|
|
request(options)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2012-05-21 19:53:53 -04:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
def reboot_virtual_machine(options={})
|
|
|
|
job_id = Fog::Cloudstack.uuid
|
|
|
|
{
|
|
|
|
"rebootvirtualmachineresponse" => {
|
|
|
|
"jobid" => job_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2011-09-07 10:00:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|