Sha256: 8014e38c0d45f7dfb0bb04f87cf3af8a586e07ad55fefb7a5a4e4dd4d199cecd
Contents?: true
Size: 577 Bytes
Versions: 8
Compression:
Stored size: 577 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_lock_resource_load_balancer # def lock_resource_load_balancer(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("put", "/1.0/load_balancers/#{identifier}/lock_resource", [200]) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems