Class: Fog::Network::OpenStack::LbHealthMonitors
- Inherits:
-
OpenStack::Collection
- Object
- Collection
- OpenStack::Collection
- Fog::Network::OpenStack::LbHealthMonitors
- Defined in:
- lib/fog/network/openstack/models/lb_health_monitors.rb
Instance Attribute Summary
Attributes inherited from OpenStack::Collection
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(health_monitor_id) ⇒ Object
-
#initialize(attributes) ⇒ LbHealthMonitors
constructor
A new instance of LbHealthMonitors.
Methods inherited from OpenStack::Collection
#destroy, #find_by_id, #load_response, #summary
Constructor Details
#initialize(attributes) ⇒ LbHealthMonitors
Returns a new instance of LbHealthMonitors.
12 13 14 15 |
# File 'lib/fog/network/openstack/models/lb_health_monitors.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 |
# File 'lib/fog/network/openstack/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) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/network/openstack/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::Network::OpenStack::NotFound nil end |