Class: Fog::Network::OpenStack::Ports
- Inherits:
-
Collection
- Object
- Collection
- Fog::Network::OpenStack::Ports
- Defined in:
- lib/fog/openstack/models/network/ports.rb
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #get(port_id) ⇒ Object
-
#initialize(attributes) ⇒ Ports
constructor
A new instance of Ports.
Constructor Details
#initialize(attributes) ⇒ Ports
12 13 14 15 |
# File 'lib/fog/openstack/models/network/ports.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters = filters) ⇒ Object
17 18 19 20 |
# File 'lib/fog/openstack/models/network/ports.rb', line 17 def all(filters = filters) self.filters = filters load(service.list_ports(filters).body['ports']) end |
#get(port_id) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/openstack/models/network/ports.rb', line 22 def get(port_id) if port = service.get_port(port_id).body['port'] new(port) end rescue Fog::Network::OpenStack::NotFound nil end |