# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 53 def associate_to_pool(pool_id) requires :id service.associate_lb_health_monitor(pool_id, self.id) true end
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 30 def create requires :type, :delay, :timeout, :max_retries merge_attributes(service.create_lb_health_monitor(self.type, self.delay, self.timeout, self.max_retries, self.attributes).body['health_monitor']) self end
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 47 def destroy requires :id service.delete_lb_health_monitor(self.id) true end
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 59 def disassociate_from_pool(pool_id) requires :id service.disassociate_lb_health_monitor(pool_id, self.id) true end
Generated with the Darkfish Rdoc Generator 2.