GoogleCloudRunV2HTTPGetActionArgs

data class GoogleCloudRunV2HTTPGetActionArgs(val httpHeaders: Output<List<GoogleCloudRunV2HTTPHeaderArgs>>? = null, val path: Output<String>? = null, val port: Output<Int>? = null) : ConvertibleToJava<GoogleCloudRunV2HTTPGetActionArgs>

HTTPGetAction describes an action based on HTTP Get requests.

Constructors

Link copied to clipboard
fun GoogleCloudRunV2HTTPGetActionArgs(httpHeaders: Output<List<GoogleCloudRunV2HTTPHeaderArgs>>? = null, path: Output<String>? = null, port: Output<Int>? = null)

Functions

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

Properties

Link copied to clipboard

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. Defaults to '/'.

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

Port number to access on the container. Must be in the range 1 to 65535. If not specified, defaults to the exposed port of the container, which is the value of container.ports0.containerPort.