IpAddressPoolArgs

data class IpAddressPoolArgs(val addresses: Output<List<String>>, val autoAssign: Output<Either<String, BfdEnabled>>? = null, val name: Output<String>, val onlyUseHostIps: Output<Either<String, BfdEnabled>>? = null) : ConvertibleToJava<IpAddressPoolArgs>

Constructors

Link copied to clipboard
constructor(addresses: Output<List<String>>, autoAssign: Output<Either<String, BfdEnabled>>? = null, name: Output<String>, onlyUseHostIps: Output<Either<String, BfdEnabled>>? = null)

Properties

Link copied to clipboard
val addresses: Output<List<String>>

The list of IP address ranges. Each range can be a either a subnet in CIDR format or an explicit start-end range of IP addresses. For a BGP service load balancer configuration, only CIDR format is supported and excludes /32 (IPv4) and /128 (IPv6) prefixes.

Link copied to clipboard
val autoAssign: Output<Either<String, BfdEnabled>>? = null

The indicator to determine if automatic allocation from the pool should occur.

Link copied to clipboard
val name: Output<String>

The name used to identify this IP address pool for association with a BGP advertisement.

Link copied to clipboard
val onlyUseHostIps: Output<Either<String, BfdEnabled>>? = null

The indicator to prevent the use of IP addresses ending with .0 and .255 for this pool. Enabling this option will only use IP addresses between .1 and .254 inclusive.

Functions

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