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