module Fog module Compute class Cloudstack class Real # Lists all egress firewall rules for network id. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listEgressFirewallRules.html] def list_egress_firewall_rules(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listEgressFirewallRules') else options.merge!('command' => 'listEgressFirewallRules') end # add project id if we have one @cloudstack_project_id ? options.merge!('projectid' => @cloudstack_project_id) : nil request(options) end end class Mock def list_egress_firewall_rules(*arg) firewall_rules = self.data[:egress_firewall_rules] { "listegressfirewallrulesresponse" => { "count"=> firewall_rules.count, "firewallrule"=> firewall_rules.values } } end end end end end