FlexibleAppVersionLivenessCheck

data class FlexibleAppVersionLivenessCheck(val checkInterval: String? = null, val failureThreshold: Double? = null, val host: String? = null, val initialDelay: String? = null, val path: String, val successThreshold: Double? = null, val timeout: String? = null)

Constructors

Link copied to clipboard
constructor(checkInterval: String? = null, failureThreshold: Double? = null, host: String? = null, initialDelay: String? = null, path: String, successThreshold: Double? = null, timeout: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val checkInterval: String? = null

Interval between health checks.

Link copied to clipboard

Number of consecutive failed checks required before considering the VM unhealthy. Default: 4.

Link copied to clipboard
val host: String? = null

Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"

Link copied to clipboard
val initialDelay: String? = null

The initial delay before starting to execute the checks. Default: "300s"

Link copied to clipboard

The request path.

Link copied to clipboard

Number of consecutive successful checks required before considering the VM healthy. Default: 2.

Link copied to clipboard
val timeout: String? = null

Time before the check is considered failed. Default: "4s"