Sha256: 7c23f6013c28fb950e295e957638628ead57db0529469452ece6255d2a158db3
Contents?: true
Size: 666 Bytes
Versions: 28
Compression:
Stored size: 666 Bytes
Contents
module Fog module Compute class Cloudstack class Real # lists network that are using SRX firewall device # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listSrxFirewallNetworks.html] def list_srx_firewall_networks(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listSrxFirewallNetworks') else options.merge!('command' => 'listSrxFirewallNetworks', 'lbdeviceid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems