class Fog::Network::OpenStack::LbVips
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
Fog::Collection::new
# File lib/fog/openstack/models/network/lb_vips.rb, line 13 def initialize(attributes) self.filters ||= {} super end
Public Instance Methods
all(filters = filters)
click to toggle source
# File lib/fog/openstack/models/network/lb_vips.rb, line 18 def all(filters = filters) self.filters = filters load(service.list_lb_vips(filters).body['vips']) end
get(vip_id)
click to toggle source
# File lib/fog/openstack/models/network/lb_vips.rb, line 23 def get(vip_id) if vip = service.get_lb_vip(vip_id).body['vip'] new(vip) end rescue Fog::Network::OpenStack::NotFound nil end