# File lib/fog/rackspace/models/load_balancers/virtual_ips.rb, line 12 def all data = all_raw load(data) end
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
# 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
Generated with the Darkfish Rdoc Generator 2.