HTTPGetActionArgs

data class HTTPGetActionArgs(val host: Output<String>? = null, val httpHeaders: Output<List<HTTPHeaderArgs>>? = null, val path: Output<String>? = null, val port: Output<Int>? = null, val scheme: Output<String>? = null) : ConvertibleToJava<HTTPGetActionArgs>

HTTPGetAction describes an action based on HTTP Get requests.

Constructors

Link copied to clipboard
fun HTTPGetActionArgs(host: Output<String>? = null, httpHeaders: Output<List<HTTPHeaderArgs>>? = null, path: Output<String>? = null, port: Output<Int>? = null, scheme: Output<String>? = null)

Functions

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

Properties

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

Not supported by Cloud Run.

Link copied to clipboard
val httpHeaders: Output<List<HTTPHeaderArgs>>? = null

Custom headers to set in the request. HTTP allows repeated headers.

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

Path to access on the HTTP server.

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

Port number to access on the container. Number must be in the range 1 to 65535.

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

Not supported by Cloud Run.