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