Sha256: a62a2fc4173d071cfbf0ff61fc9ad08259f2789f33131faaf900cd6bbe57e329
Contents?: true
Size: 587 Bytes
Versions: 5
Compression:
Stored size: 587 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get full details of 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_get_firewall_rule # def get_firewall_rule(identifier) return nil if identifier.nil? || identifier == "" request("get", "/1.0/firewall_rules/#{identifier}", [200]) end end end end end
Version data entries
5 entries across 5 versions & 4 rubygems