Class: Fog::HP::Network::Ports

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/hp/models/network/ports.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Ports

Returns a new instance of Ports.



14
15
16
17
# File 'lib/fog/hp/models/network/ports.rb', line 14

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



19
20
21
22
23
# File 'lib/fog/hp/models/network/ports.rb', line 19

def all(filters = filters)
  self.filters = filters
  non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters)
  load(service.list_ports(non_aliased_filters).body['ports'])
end

#get(port_id) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/fog/hp/models/network/ports.rb', line 25

def get(port_id)
  if port = service.get_port(port_id).body['port']
    new(port)
  end
rescue Fog::HP::Network::NotFound
  nil
end