Sha256: 41286cf37c4bc6b24d08e58ff933c3599e43e7d84e31108ff2542ab08a67bec1
Contents?: true
Size: 606 Bytes
Versions: 7
Compression:
Stored size: 606 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
7 entries across 7 versions & 2 rubygems