Sha256: 7b33d04687db1d36115b3da65c3b2a4d64fce2f2ac8d1d9e65a7250cb5b23b0a
Contents?: true
Size: 482 Bytes
Versions: 1
Compression:
Stored size: 482 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Deletes an ip forwarding rule # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/deleteIpForwardingRule.html] def delete_ip_forwarding_rule(id, options={}) options.merge!( 'command' => 'deleteIpForwardingRule', 'id' => id ) 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/delete_ip_forwarding_rule.rb |