LoadBalancerPoolOriginArgs

data class LoadBalancerPoolOriginArgs(val address: Output<String>, val enabled: Output<Boolean>? = null, val headers: Output<List<LoadBalancerPoolOriginHeaderArgs>>? = null, val name: Output<String>, val weight: Output<Double>? = null) : ConvertibleToJava<LoadBalancerPoolOriginArgs>

Constructors

Link copied to clipboard
constructor(address: Output<String>, enabled: Output<Boolean>? = null, headers: Output<List<LoadBalancerPoolOriginHeaderArgs>>? = null, name: Output<String>, weight: Output<Double>? = null)

Properties

Link copied to clipboard
val address: Output<String>

The IP address (IPv4 or IPv6) of the origin, or the publicly addressable hostname.

Link copied to clipboard
val enabled: Output<Boolean>? = null

Whether this origin is enabled. Disabled origins will not receive traffic and are excluded from health checks. Defaults to true.

Link copied to clipboard

HTTP request headers.

Link copied to clipboard
val name: Output<String>

A human-identifiable name for the origin.

Link copied to clipboard
val weight: Output<Double>? = null

The weight (0.01 - 1.00) of this origin, relative to other origins in the pool. Equal values mean equal weighting. A weight of 0 means traffic will not be sent to this origin, but health is still checked. Defaults to 1.

Functions

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