Sha256: dcbe548bc7e4965d925336207780ecc0903b653a849c543bcee50cab6e4bbc35
Contents?: true
Size: 578 Bytes
Versions: 1
Compression:
Stored size: 578 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Creates a egress firewall rule for a given network # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/createEgressFirewallRule.html] def create_egress_firewall_rule(protocol, networkid, options={}) options.merge!( 'command' => 'createEgressFirewallRule', 'protocol' => protocol, 'networkid' => networkid ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/create_egress_firewall_rule.rb |