Load Balancing Rule Args
data class LoadBalancingRuleArgs(val backendPort: Output<Int>, val frontendPort: Output<Int>, val loadDistribution: Output<String>? = null, val probePort: Output<Int>? = null, val probeProtocol: Output<Either<String, ProbeProtocol>>, val probeRequestPath: Output<String>? = null, val protocol: Output<Either<String, Protocol>>) : ConvertibleToJava<LoadBalancingRuleArgs>
Describes a load balancing rule.
Properties
Link copied to clipboard
The port used for internal connections on the endpoint. Acceptable values are between 1 and 65535.
Link copied to clipboard
The port for the external endpoint. Port numbers for each rule must be unique within the Load Balancer. Acceptable values are between 1 and 65534.
Link copied to clipboard
The load distribution policy for this rule.
Link copied to clipboard
the reference to the load balancer probe used by the load balancing rule.
Link copied to clipboard
The probe request path. Only supported for HTTP/HTTPS probes.