Sha256: 007f0c0b184347536a65a51c0b033f5f8167b2cdcb13bec2048b1504a65fb61b
Contents?: true
Size: 568 Bytes
Versions: 28
Compression:
Stored size: 568 Bytes
Contents
module Fog module Compute class Cloudstack class Real # List system virtual machines. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listSystemVms.html] def list_system_vms(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listSystemVms') else options.merge!('command' => 'listSystemVms') end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems