Sha256: 7535d32752d309339056f970a0798344ba9d3d070fbe8ee574b054175a1aa7b4
Contents?: true
Size: 594 Bytes
Versions: 12
Compression:
Stored size: 594 Bytes
Contents
module Fog module Compute class Brightbox class Real # Destroy the firewall rule. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] The JSON response parsed to a Hash # # @see https://api.gb1.brightbox.com/1.0/#firewall_rule_destroy_firewall_rule # def destroy_firewall_rule(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/firewall_rules/#{identifier}", [202]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems