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