Sha256: 815f3785cc7d6d78d73797b927a4dbb001bad3a42a58f343ddb3036801ced1e9
Contents?: true
Size: 457 Bytes
Versions: 1
Compression:
Stored size: 457 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Starts a system virtual machine. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/startSystemVm.html] def start_system_vm(id, options={}) options.merge!( 'command' => 'startSystemVm', 'id' => id ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/start_system_vm.rb |