Sha256: 6ce7456d2e5cc5f3ff71ae8ede37fae8f5c25cbe214c8d793b121bdb10d6f01a
Contents?: true
Size: 869 Bytes
Versions: 28
Compression:
Stored size: 869 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Reboots a virtual machine. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/rebootVirtualMachine.html] def reboot_virtual_machine(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'rebootVirtualMachine') else options.merge!('command' => 'rebootVirtualMachine', 'id' => args[0]) end 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
28 entries across 26 versions & 4 rubygems