Class: Fog::HP::LB::VirtualIps
- Inherits:
-
Collection
- Object
- Collection
- Fog::HP::LB::VirtualIps
- Defined in:
- lib/fog/hp/models/lb/virtual_ips.rb
Instance Attribute Summary collapse
-
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
Instance Method Summary collapse
Instance Attribute Details
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
10 11 12 |
# File 'lib/fog/hp/models/lb/virtual_ips.rb', line 10 def load_balancer @load_balancer end |
Instance Method Details
#all ⇒ Object
12 13 14 15 16 17 |
# File 'lib/fog/hp/models/lb/virtual_ips.rb', line 12 def all requires :load_balancer data = service.list_load_balancer_virtual_ips(load_balancer.id).body['virtualIps'] load(data) end |
#get(vip_id) ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'lib/fog/hp/models/lb/virtual_ips.rb', line 19 def get(vip_id) requires :load_balancer data = service.list_load_balancer_virtual_ips(load_balancer.id).body['virtualIps'] vip = data.find {|vip| vip['id'].to_s == vip_id} new(vip) rescue Fog::HP::LB::NotFound nil end |