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