Class: Fog::Rackspace::LoadBalancers::VirtualIps
- Inherits:
-
Collection
- Object
- Collection
- Fog::Rackspace::LoadBalancers::VirtualIps
- Defined in:
- lib/fog/rackspace/models/load_balancers/virtual_ips.rb
Instance Attribute Summary collapse
-
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
Instance Method Summary collapse
- #all ⇒ Object
-
#get(virtual_ip_id) ⇒ Object
HACK - This method is somewhat hacky since there isn’t a way to retrieve a single virtual IP.
Instance Attribute Details
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
10 11 12 |
# File 'lib/fog/rackspace/models/load_balancers/virtual_ips.rb', line 10 def load_balancer @load_balancer end |
Instance Method Details
#all ⇒ Object
12 13 14 15 |
# File 'lib/fog/rackspace/models/load_balancers/virtual_ips.rb', line 12 def all data = all_raw load(data) end |
#get(virtual_ip_id) ⇒ Object
HACK - This method is somewhat hacky since there isn’t a way to retrieve a single virtual IP. Hopefully long term a method will be added that allows a single virtual IP to be returned
19 20 21 22 |
# File 'lib/fog/rackspace/models/load_balancers/virtual_ips.rb', line 19 def get(virtual_ip_id) data = all_raw.select { |virtual_ip| virtual_ip['id'] == virtual_ip_id }.first data && new(data) end |