# File lib/fog/brightbox/models/compute/firewall_rules.rb, line 12
        def get(identifier)
          return nil if identifier.nil? || identifier == ""
          data = connection.get_firewall_rule(identifier)
          new(data)
        rescue Excon::Errors::NotFound
          nil
        end