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