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