Sha256: 4a32e025ee8c9ac037578f5a7f158418cbb56b58fe274a41b4d3ee50e4fbdef5
Contents?: true
Size: 778 Bytes
Versions: 13
Compression:
Stored size: 778 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get full details of the load balancer. # # @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_get_load_balancer # def get_load_balancer(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/load_balancers/#{identifier}", [200], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems