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