class Fog::Rackspace::NetworkingV2::Ports

Public Instance Methods

all() click to toggle source
# File lib/fog/rackspace/models/networking_v2/ports.rb, line 9
def all
  data = service.list_ports.body['ports']
  load(data)
end
get(id) click to toggle source
# File lib/fog/rackspace/models/networking_v2/ports.rb, line 14
def get(id)
  data = service.show_port(id).body['port']
  new(data)
rescue Fog::Rackspace::NetworkingV2::NotFound
  nil
end