Sha256: 7ef18a21074547b91220a7a0f175304e0ec8536b2d68d157934e3f3686dbae01
Contents?: true
Size: 1.01 KB
Versions: 22
Compression:
Stored size: 1.01 KB
Contents
module Fog module Brightbox class Compute class Real # Updates details of the firewall policy # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [String] :name Editable label # @option options [String] :description Longer editable description # @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 # @return [NilClass] if no options were passed # # @see https://api.gb1.brightbox.com/1.0/#firewall_policy_update_firewall_policy # def update_firewall_policy(identifier, options) return nil if identifier.nil? || identifier == "" return nil if options.empty? || options.nil? wrapped_request("put", "/1.0/firewall_policies/#{identifier}", [200], options) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems