VmwareAddressPoolResponse

data class VmwareAddressPoolResponse(val addresses: List<String>, val avoidBuggyIps: Boolean, val manualAssign: Boolean, val pool: String)

Represents an IP pool used by the load balancer.

Constructors

Link copied to clipboard
fun VmwareAddressPoolResponse(addresses: List<String>, avoidBuggyIps: Boolean, manualAssign: Boolean, pool: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The addresses that are part of this pool. Each address must be either in the CIDR form (1.2.3.0/24) or range form (1.2.3.1-1.2.3.5).

Link copied to clipboard

If true, avoid using IPs ending in .0 or .255. This avoids buggy consumer devices mistakenly dropping IPv4 traffic for those special IP addresses.

Link copied to clipboard

If true, prevent IP addresses from being automatically assigned.

Link copied to clipboard

The name of the address pool.