Class: Fog::Network::OpenStack::Subnets
- Inherits:
-
Collection
- Object
- Collection
- Fog::Network::OpenStack::Subnets
- Defined in:
- lib/fog/openstack/models/network/subnets.rb
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #get(subnet_id) ⇒ Object
-
#initialize(attributes) ⇒ Subnets
constructor
A new instance of Subnets.
Constructor Details
#initialize(attributes) ⇒ Subnets
Returns a new instance of Subnets.
12 13 14 15 |
# File 'lib/fog/openstack/models/network/subnets.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/subnets.rb', line 17 def all(filters = filters) self.filters = filters load(service.list_subnets(filters).body['subnets']) end |