# File lib/fog/hp/models/lb/load_balancers.rb, line 10 def all data = service.list_load_balancers.body['loadBalancers'] load(data) end
# 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