Class: Fog::Network::OpenStack::LbPools
- Inherits:
-
Collection
- Object
- Collection
- Fog::Network::OpenStack::LbPools
- Defined in:
- lib/fog/openstack/models/network/lb_pools.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(pool_id) ⇒ Object
-
#initialize(attributes) ⇒ LbPools
constructor
A new instance of LbPools.
Constructor Details
#initialize(attributes) ⇒ LbPools
Returns a new instance of LbPools.
12 13 14 15 |
# File 'lib/fog/openstack/models/network/lb_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/models/network/lb_pools.rb', line 17 def all(filters_arg = filters) filters = filters_arg load(service.list_lb_pools(filters).body['pools']) end |
#get(pool_id) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/openstack/models/network/lb_pools.rb', line 22 def get(pool_id) if pool = service.get_lb_pool(pool_id).body['pool'] new(pool) end rescue Fog::Network::OpenStack::NotFound nil end |