Sha256: dda904ca66fb829da653c93afe5f60fbf260b001f0d08c96cef8606d5e04aa58
Contents?: true
Size: 607 Bytes
Versions: 66
Compression:
Stored size: 607 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get details of the firewall policy # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#firewall_policy_get_firewall_policy # def get_firewall_policy(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/firewall_policies/#{identifier}", [200]) end end end end end
Version data entries
66 entries across 66 versions & 4 rubygems