ConnectionHealthCheckConfig

data class ConnectionHealthCheckConfig(val dip: String? = null, val enable: Boolean? = null, val interval: Int? = null, val retry: Int? = null, val sip: String? = null)

Constructors

Link copied to clipboard
constructor(dip: String? = null, enable: Boolean? = null, interval: Int? = null, retry: Int? = null, sip: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val dip: String? = null

the destination IP address configured for health checks.

Link copied to clipboard
val enable: Boolean? = null

specifies whether to enable health checks. Valid values: true and false. Default value: false.

Link copied to clipboard
val interval: Int? = null

the time interval of health check retries. Unit: seconds. Default value: 3.

Link copied to clipboard
val retry: Int? = null

the maximum number of health check retries. Default value: 3.

Link copied to clipboard
val sip: String? = null

the source IP address that is used for health checks.