# File lib/fog/network/openstack/models/lb_vips.rb, line 12 def initialize(attributes) self.filters ||= {} super end
# File lib/fog/network/openstack/models/lb_vips.rb, line 17 def all(filters_arg = filters) filters = filters_arg load_response(service.list_lb_vips(filters), 'vips') end
# File lib/fog/network/openstack/models/lb_vips.rb, line 22 def get(vip_id) if vip = service.get_lb_vip(vip_id).body['vip'] new(vip) end rescue Fog::Network::OpenStack::NotFound nil end