Class: Fog::HP::LB::VirtualIps
- Inherits:
-
Collection
- Object
- Array
- 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.
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Attribute Details
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
11 12 13 |
# File 'lib/fog/hp/models/lb/virtual_ips.rb', line 11 def load_balancer @load_balancer end |
Instance Method Details
#all ⇒ Object
13 14 15 16 17 18 |
# File 'lib/fog/hp/models/lb/virtual_ips.rb', line 13 def all requires :load_balancer data = service.list_load_balancer_virtual_ips(load_balancer.id).body['virtualIps'] load(data) end |
#get(vip_id) ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/fog/hp/models/lb/virtual_ips.rb', line 20 def get(vip_id) requires :load_balancer data = service.list_load_balancer_virtual_ips(load_balancer.id).body['virtualIps'] vip = data.detect {|vip| vip['id'].to_s == vip_id} new(vip) rescue Fog::HP::LB::NotFound nil end |