Sha256: e68449653f7e3e538837a611e5b6b359464380509132c4c7cfd7da34a7d97c62
Contents?: true
Size: 759 Bytes
Versions: 23
Compression:
Stored size: 759 Bytes
Contents
module Fog module Brightbox class Compute class Real # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @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 # # @see https://api.gb1.brightbox.com/1.0/#load_balancer_unlock_resource_load_balancer # def unlock_resource_load_balancer(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("put", "/1.0/load_balancers/#{identifier}/unlock_resource", [200], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems