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