Sha256: a5f7bfe5ffab861d4c87cabb4ba7dac4e07e7fb21c9695f4e039b5419f944978
Contents?: true
Size: 571 Bytes
Versions: 28
Compression:
Stored size: 571 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Lists all the system wide capacities. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listCapacity.html] def list_capacity(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listCapacity') else options.merge!('command' => 'listCapacity') end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems