Class: Fog::Network::OpenStack::LbHealthMonitors

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes) ⇒ LbHealthMonitors

Returns a new instance of LbHealthMonitors.



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

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

Instance Method Details

#all(filters = filters) ⇒ Object



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

def all(filters = filters)
  self.filters = filters
  load(service.list_lb_health_monitors(filters).body['health_monitors'])
end

#get(health_monitor_id) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/fog/openstack/models/network/lb_health_monitors.rb', line 23

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::Network::OpenStack::NotFound
  nil
end