Sha256: 925006bcb498d439db791553d6b5e550e2f94c11e2d099f6318ee1f98b9f0856
Contents?: true
Size: 595 Bytes
Versions: 12
Compression:
Stored size: 595 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 # # @return [Hash] The JSON response parsed to a Hash # # @see https://api.gb1.brightbox.com/1.0/#load_balancer_get_load_balancer # def get_load_balancer(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/load_balancers/#{identifier}", [200]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems