Sha256: 5c7c17b4c62e1bd83b17d09cbbf309d8e0e8b168e9198407dc5a8f132fe6a424
Contents?: true
Size: 718 Bytes
Versions: 79
Compression:
Stored size: 718 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
79 entries across 79 versions & 12 rubygems