# File lib/fog/ecloud/models/compute/environment.rb, line 90 def create_firewall_acl(options = {}) options[:uri] = "/cloudapi/ecloud/firewallAcls/environments/#{id}/action/createFirewallAcl" options[:permission] ||= "deny" options[:protocol] ||= "any" data = connection.firewall_acls_create(options).body acl = Fog::Compute::Ecloud::FirewallAcls.new(:connection => connection, :href => data[:href])[0] end