UDPHealthCheckArgs

data class UDPHealthCheckArgs(val port: Output<Int>? = null, val portName: Output<String>? = null, val request: Output<String>? = null, val response: Output<String>? = null) : ConvertibleToJava<UDPHealthCheckArgs>

Constructors

Link copied to clipboard
fun UDPHealthCheckArgs(port: Output<Int>? = null, portName: Output<String>? = null, request: Output<String>? = null, response: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): UDPHealthCheckArgs

Properties

Link copied to clipboard
val port: Output<Int>? = null

The UDP port number to which the health check prober sends packets. Valid values are 1 through 65535.

Link copied to clipboard
val portName: Output<String>? = null

Not supported.

Link copied to clipboard
val request: Output<String>? = null

Raw data of request to send in payload of UDP packet. It is an error if this is empty. The request data can only be ASCII.

Link copied to clipboard
val response: Output<String>? = null

The bytes to match against the beginning of the response data. It is an error if this is empty. The response data can only be ASCII.