Sha256: 281a2dbf0b8bbf2ce18ff7ab34b51d29cc4acdc2adc00287958649fb8d2350d9
Contents?: true
Size: 775 Bytes
Versions: 23
Compression:
Stored size: 775 Bytes
Contents
module Fog module Brightbox class Compute class Real # Destroy the firewall rule. # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#firewall_rule_delete_firewall_rule # def delete_firewall_rule(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/firewall_rules/#{identifier}", [202], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems