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