V2FunctionCustomHealthCheckConfig

data class V2FunctionCustomHealthCheckConfig(val failureThreshold: Int? = null, val httpGetUrl: String? = null, val initialDelaySeconds: Int? = null, val periodSeconds: Int? = null, val successThreshold: Int? = null, val timeoutSeconds: Int? = null)

Constructors

Link copied to clipboard
constructor(failureThreshold: Int? = null, httpGetUrl: String? = null, initialDelaySeconds: Int? = null, periodSeconds: Int? = null, successThreshold: Int? = null, timeoutSeconds: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val failureThreshold: Int? = null

The threshold for the number of health check failures. The system considers the check failed after the health check fails.

Link copied to clipboard
val httpGetUrl: String? = null

Container custom health check URL address.

Link copied to clipboard

Delay from container startup to initiation of health check.

Link copied to clipboard
val periodSeconds: Int? = null

Health check cycle.

Link copied to clipboard
val successThreshold: Int? = null

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
val timeoutSeconds: Int? = null

Health check timeout.