Sha256: 41e5c333d1428032dc91274dcc71831a64036519f2af7f26e5101e0538b060df
Contents?: true
Size: 596 Bytes
Versions: 28
Compression:
Stored size: 596 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Lists domains and provides detailed information for listed domains # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listDomains.html] def list_domains(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listDomains') else options.merge!('command' => 'listDomains') end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems