Class: Fog::Network::OpenStack::FloatingIps

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/openstack/models/network/floating_ips.rb

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #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

#initialize(attributes) ⇒ FloatingIps

Returns a new instance of FloatingIps.



13
14
15
16
# File 'lib/fog/openstack/models/network/floating_ips.rb', line 13

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



18
19
20
21
# 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) ⇒ Object



23
24
25
26
27
28
29
# 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