Fog::Collection
# File lib/fog/ninefold/models/compute/addresses.rb, line 12 def all data = service.list_public_ip_addresses load(data) end
# File lib/fog/ninefold/models/compute/addresses.rb, line 17 def get(identifier) return nil if identifier.nil? || identifier == "" data = service.list_public_ip_addresses(:id => identifier) if data.empty? nil else new(data[0]) end end
[Validate]
Generated with the Darkfish Rdoc Generator 2.