Class: Fog::OpenStack::Network::SubnetPools

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/openstack/network/models/subnet_pools.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) ⇒ SubnetPools

Returns a new instance of SubnetPools.



12
13
14
15
# File 'lib/fog/openstack/network/models/subnet_pools.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/subnet_pools.rb', line 17

def all(filters_arg = filters)
  filters = filters_arg
  load_response(service.list_subnet_pools(filters), 'subnetpools')
end

#get(subnet_pool_id) ⇒ Object



22
23
24
25
26
27
28
29
# File 'lib/fog/openstack/network/models/subnet_pools.rb', line 22

def get(subnet_pool_id)
  subnet_pool = service.get_subnet_pool(subnet_pool_id).body['subnetpool']
  if subnet_pool
    new(subnet_pool)
  end
rescue Fog::OpenStack::Network::NotFound
  nil
end