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