1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudstack/requests/compute/list_capabilities.rb
2012-05-16 10:01:19 -07:00

20 lines
490 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Lists configurations and provides detailed account information for listed configurations.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listAccounts.html]
def list_capabilities(options={})
options.merge!(
'command' => 'listCapabilities'
)
request(options)
end
end
end
end
end