Class: Fog::HP::LB::LoadBalancers

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/hp/models/lb/load_balancers.rb

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
# File 'lib/fog/hp/models/lb/load_balancers.rb', line 10

def all
  data = service.list_load_balancers.body['loadBalancers']
  load(data)
end

#get(lb_id) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/fog/hp/models/lb/load_balancers.rb', line 15

def get(lb_id)
  ### Inconsistent API - does not return a 'loadBalancer'
  lb = service.get_load_balancer(lb_id).body
  new(lb)
rescue Fog::HP::LB::NotFound
  nil
end