Class: Fog::Network::OpenStack::FloatingIps
- Inherits:
-
OpenStack::Collection
- Object
- Collection
- OpenStack::Collection
- Fog::Network::OpenStack::FloatingIps
- Defined in:
- lib/fog/network/openstack/models/floating_ips.rb
Instance Attribute Summary
Attributes inherited from OpenStack::Collection
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(floating_network_id) ⇒ Object
-
#initialize(attributes) ⇒ FloatingIps
constructor
A new instance of FloatingIps.
Methods inherited from OpenStack::Collection
#destroy, #find_by_id, #load_response, #summary
Constructor Details
#initialize(attributes) ⇒ FloatingIps
Returns a new instance of FloatingIps.
12 13 14 15 |
# File 'lib/fog/network/openstack/models/floating_ips.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 |
# File 'lib/fog/network/openstack/models/floating_ips.rb', line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_floating_ips(filters), 'floatingips') end |
#get(floating_network_id) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/network/openstack/models/floating_ips.rb', line 22 def get(floating_network_id) if floating_ip = service.get_floating_ip(floating_network_id).body['floatingip'] new(floating_ip) end rescue Fog::Network::OpenStack::NotFound nil end |