Class: Fog::Network::OpenStack::Routers

Inherits:
OpenStack::Collection show all
Defined in:
lib/fog/openstack/models/network/routers.rb

Instance Attribute Summary

Attributes inherited from OpenStack::Collection

#response

Instance Method Summary collapse

Methods inherited from OpenStack::Collection

#destroy, #load_response, #summary

Constructor Details

#initialize(attributes) ⇒ Routers

Returns a new instance of Routers.



12
13
14
15
# File 'lib/fog/openstack/models/network/routers.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/openstack/models/network/routers.rb', line 17

def all(filters_arg = filters)
  filters = filters_arg
  load_response(service.list_routers(filters), 'routers')
end

#get(router_id) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/fog/openstack/models/network/routers.rb', line 22

def get(router_id)
  if router = service.get_router(router_id).body['router']
    new(router)
  end
rescue Fog::Network::OpenStack::NotFound
  nil
end