class Fog::OpenStack::Network::LbHealthMonitors

Public Class Methods

new(attributes) click to toggle source
Calls superclass method
# File lib/fog/openstack/network/models/lb_health_monitors.rb, line 12
def initialize(attributes)
  self.filters ||= {}
  super
end

Public Instance Methods

all(filters_arg = filters) click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitors.rb, line 17
def all(filters_arg = filters)
  filters = filters_arg
  load_response(service.list_lb_health_monitors(filters), 'health_monitors')
end
get(health_monitor_id) click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitors.rb, line 22
def get(health_monitor_id)
  if health_monitor = service.get_lb_health_monitor(health_monitor_id).body['health_monitor']
    new(health_monitor)
  end
rescue Fog::OpenStack::Network::NotFound
  nil
end