Sha256: b050e2a0284592a0531b11e8b0862dfdbf984ba50c2d5e02584c40388868aa45
Contents?: true
Size: 601 Bytes
Versions: 28
Compression:
Stored size: 601 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.4/root_admin/startSystemVm.html] def start_system_vm(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'startSystemVm') else options.merge!('command' => 'startSystemVm', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems