Class: Fog::Network::OpenStack::LbVips

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/openstack/models/network/lb_vips.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ LbVips

Returns a new instance of LbVips.



12
13
14
15
# File 'lib/fog/openstack/models/network/lb_vips.rb', line 12

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



17
18
19
20
# File 'lib/fog/openstack/models/network/lb_vips.rb', line 17

def all(filters = filters)
  self.filters = filters
  load(service.list_lb_vips(filters).body['vips'])
end

#get(vip_id) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/fog/openstack/models/network/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