GetHealthCheckHttpHealthCheck

data class GetHealthCheckHttpHealthCheck(val host: String, val port: Int, val portName: String, val portSpecification: String, val proxyHeader: String, val requestPath: String, val response: String)

Constructors

Link copied to clipboard
constructor(host: String, port: Int, portName: String, portSpecification: String, proxyHeader: String, requestPath: String, response: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The value of the host header in the HTTP health check request. If left empty (default value), the public IP on behalf of which this health check is performed will be used.

Link copied to clipboard
val port: Int

The TCP port number for the HTTP health check request. The default value is 80.

Link copied to clipboard

Port name as defined in InstanceGroup#NamedPort#name. If both port and port_name are defined, port takes precedence.

Link copied to clipboard

Specifies how port is selected for health checking, can be one of the following values:

Link copied to clipboard

Specifies the type of proxy header to append before sending data to the backend. Default value: "NONE" Possible values: "NONE", "PROXY_V1"

Link copied to clipboard

The request path of the HTTP health check request. The default value is /.

Link copied to clipboard

The bytes to match against the beginning of the response data. If left empty (the default value), any response will indicate health. The response data can only be ASCII.