class Fog::OpenStack::Network::LbHealthMonitor

Public Instance Methods

associate_to_pool(pool_id) click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitor.rb, line 43
def associate_to_pool(pool_id)
  requires :id
  service.associate_lb_health_monitor(pool_id, id)
  true
end
create() click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitor.rb, line 20
def create
  requires :type, :delay, :timeout, :max_retries
  merge_attributes(service.create_lb_health_monitor(type,
                                                    delay,
                                                    timeout,
                                                    max_retries,
                                                    attributes).body['health_monitor'])
  self
end
destroy() click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitor.rb, line 37
def destroy
  requires :id
  service.delete_lb_health_monitor(id)
  true
end
disassociate_from_pool(pool_id) click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitor.rb, line 49
def disassociate_from_pool(pool_id)
  requires :id
  service.disassociate_lb_health_monitor(pool_id, id)
  true
end
update() click to toggle source
# File lib/fog/openstack/network/models/lb_health_monitor.rb, line 30
def update
  requires :id, :type, :delay, :timeout, :max_retries
  merge_attributes(service.update_lb_health_monitor(id,
                                                    attributes).body['health_monitor'])
  self
end