Sha256: c14ced6bdac49017b6e596636dd0d6b26a712e7964eadd194c6775a000bbf165
Contents?: true
Size: 716 Bytes
Versions: 11
Compression:
Stored size: 716 Bytes
Contents
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 class Mock def reboot_virtual_machine(options={}) job_id = Fog::Cloudstack.uuid { "rebootvirtualmachineresponse" => { "jobid" => job_id } } end end end end end
Version data entries
11 entries across 11 versions & 3 rubygems