lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb in fog-1.22.1 vs lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb in fog-1.23.0
- old
+ new
@@ -1,29 +1,31 @@
module Fog
module Compute
class Cloudstack
+
class Real
- # Updates account information for the authenticated user.
+ # Reboots a virtual machine.
#
- # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/rebootVirtualMachine.html]
- def reboot_virtual_machine(options={})
+ # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/rebootVirtualMachine.html]
+ def reboot_virtual_machine(id, options={})
options.merge!(
- 'command' => 'rebootVirtualMachine'
+ 'command' => 'rebootVirtualMachine',
+ 'id' => id
)
-
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
end
+