Sha256: cbfe6e927fc92c2367ee3db9f971330f8dd4e78c5b8cd3d231779614c9ab3e2f
Contents?: true
Size: 583 Bytes
Versions: 8
Compression:
Stored size: 583 Bytes
Contents
module Fog module Compute class Brightbox class Real # @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/#load_balancer_unlock_resource_load_balancer # def unlock_resource_load_balancer(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("put", "/1.0/load_balancers/#{identifier}/unlock_resource", [200]) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems