Method: Fog::Compute::Brightbox::LoadBalancers#get

Defined in:
lib/fog/brightbox/models/compute/load_balancers.rb

#get(identifier) ⇒ Object


17
18
19
20
21
22
# File 'lib/fog/brightbox/models/compute/load_balancers.rb', line 17

def get(identifier)
  data = connection.get_load_balancer(identifier)
  new(data)
rescue Excon::Errors::NotFound
  nil
end