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