Sha256: e781f09db692bf299a6c835f62ac1b40526eac5a1fb275107631e0c61bd8ae79
Contents?: true
Size: 624 Bytes
Versions: 28
Compression:
Stored size: 624 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Lists project's accounts # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listProjectAccounts.html] def list_project_accounts(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listProjectAccounts') else options.merge!('command' => 'listProjectAccounts', 'projectid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems