V2Function Custom Health Check Config Args
data class V2FunctionCustomHealthCheckConfigArgs(val failureThreshold: Output<Int>? = null, val httpGetUrl: Output<String>? = null, val initialDelaySeconds: Output<Int>? = null, val periodSeconds: Output<Int>? = null, val successThreshold: Output<Int>? = null, val timeoutSeconds: Output<Int>? = null) : ConvertibleToJava<V2FunctionCustomHealthCheckConfigArgs>
Properties
Link copied to clipboard
The threshold for the number of health check failures. The system considers the check failed after the health check fails.
Link copied to clipboard
Container custom health check URL address.
Link copied to clipboard
Delay from container startup to initiation of health check.
Link copied to clipboard
Health check cycle.
Link copied to clipboard
The threshold for the number of successful health checks. After the health check is reached, the system considers the check successful.
Link copied to clipboard
Health check timeout.