fog--fog/lib/fog/cloudstack/requests/compute/list_domains.rb

19 lines
455 B
Ruby
Raw Normal View History

module Fog
module Compute
class Cloudstack
class Real
# Lists domains and provides detailed information for listed domains.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listDomains.html]
def list_domains(options={})
options.merge!(
'command' => 'listDomains'
)
2014-02-19 12:30:59 +00:00
request(options)
end
end
end
end
end