# File lib/fog/network/openstack/models/lb_pools.rb, line 12 def initialize(attributes) self.filters ||= {} super end
# File lib/fog/network/openstack/models/lb_pools.rb, line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_lb_pools(filters), 'pools') end
# File lib/fog/network/openstack/models/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