mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
469 B
Ruby
21 lines
469 B
Ruby
|
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_capacity(options={})
|
||
|
options.merge!(
|
||
|
'command' => 'listCapacity'
|
||
|
)
|
||
|
|
||
|
request(options)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|