Methods

Class/Module Index [+]

Quicksearch

Fog::Network::OpenStack::FloatingIps

Public Class Methods

new(attributes) click to toggle source
# File lib/fog/openstack/models/network/floating_ips.rb, line 13
def initialize(attributes)
  self.filters ||= {}
  super
end

Public Instance Methods

all(filters = filters) click to toggle source
# File lib/fog/openstack/models/network/floating_ips.rb, line 18
def all(filters = filters)
  self.filters = filters
  load(service.list_floating_ips(filters).body['floatingips'])
end
get(floating_network_id) click to toggle source
# File lib/fog/openstack/models/network/floating_ips.rb, line 23
def get(floating_network_id)
  if floating_ip = connection.get_floating_ip(floating_network_id).body['floatingip']
    new(floating_ip)
  end
rescue Fog::Network::OpenStack::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.