class Fog::OpenStack::Network::Routers
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
# File lib/fog/openstack/network/models/routers.rb, line 12 def initialize(attributes) self.filters ||= {} super end
Public Instance Methods
all(filters_arg = filters)
click to toggle source
# File lib/fog/openstack/network/models/routers.rb, line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_routers(filters), 'routers') end
get(router_id)
click to toggle source
# File lib/fog/openstack/network/models/routers.rb, line 22 def get(router_id) if router = service.get_router(router_id).body['router'] new(router) end rescue Fog::OpenStack::Network::NotFound nil end