class Fog::OpenStack::Network::LbPools
Public Class Methods
Source
# File lib/fog/openstack/network/models/lb_pools.rb, line 12 def initialize(attributes) self.filters ||= {} super end
Calls superclass method
Public Instance Methods
Source
# File lib/fog/openstack/network/models/lb_pools.rb, line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_lb_pools(filters), 'pools') end
Source
# File lib/fog/openstack/network/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::OpenStack::Network::NotFound nil end