Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.06 KB

LoadbalancerHealthCheck.md

File metadata and controls

30 lines (24 loc) · 1.06 KB

VultrRuby::LoadbalancerHealthCheck

Properties

Name Type Description Notes
protocol String The protocol to use for health checks. * HTTPS * HTTP * TCP [optional]
port Integer The port to use for health checks. [optional]
path String HTTP Path to check. Only applies if Protocol is HTTP or HTTPS. [optional]
check_interval Integer Interval between health checks. [optional]
response_timeout Integer Timeout before health check fails. [optional]
unhealthy_threshold Integer Number times a check must fail before becoming unhealthy. [optional]
healthy_threshold Integer Number of times a check must succeed before returning to healthy status. [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::LoadbalancerHealthCheck.new(
  protocol: null,
  port: null,
  path: null,
  check_interval: null,
  response_timeout: null,
  unhealthy_threshold: null,
  healthy_threshold: null
)