Methods

Class/Module Index [+]

Quicksearch

Fog::Network::OpenStack::Ports

Public Class Methods

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

Public Instance Methods

all(filters = filters) click to toggle source
# File lib/fog/openstack/models/network/ports.rb, line 18
def all(filters = filters)
  self.filters = filters
  load(service.list_ports(filters).body['ports'])
end
get(port_id) click to toggle source
# File lib/fog/openstack/models/network/ports.rb, line 23
def get(port_id)
  if port = service.get_port(port_id).body['port']
    new(port)
  end
rescue Fog::Network::OpenStack::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.