Parent

Methods

Class/Module Index [+]

Quicksearch

Fog::HP::Network::Routers

Public Class Methods

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

Public Instance Methods

all(filters = filters) click to toggle source
# File lib/fog/hp/models/network/routers.rb, line 17
def all(filters = filters)
  self.filters = filters
  non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters)
  load(service.list_routers(non_aliased_filters).body['routers'])
end
get(router_id) click to toggle source
# File lib/fog/hp/models/network/routers.rb, line 23
def get(router_id)
  if router = service.get_router(router_id).body['router']
    new(router)
  end
rescue Fog::HP::Network::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.