Health Check Args
data class HealthCheckArgs(val checkInterval: Output<String>? = null, val disableHealthCheck: Output<Boolean>? = null, val healthyThreshold: Output<Int>? = null, val host: Output<String>? = null, val restartThreshold: Output<Int>? = null, val timeout: Output<String>? = null, val unhealthyThreshold: Output<Int>? = null) : ConvertibleToJava<HealthCheckArgs>
Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment.
Properties
Link copied to clipboard
Interval between health checks.
Link copied to clipboard
Whether to explicitly disable health checks for this instance.
Link copied to clipboard
Number of consecutive successful health checks required before receiving traffic.
Link copied to clipboard
Number of consecutive failed health checks required before an instance is restarted.
Link copied to clipboard
Number of consecutive failed health checks required before removing traffic.