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