com.pulumi.azure.network.kotlin.inputs.PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.inputs
import com.pulumi.azure.network.inputs.PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property addressPrefixes A list of CIDR Ranges which should be used as Address Prefixes.
*/
public data class PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgs(
public val addressPrefixes: Output>,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.network.inputs.PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgs =
com.pulumi.azure.network.inputs.PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgs.builder()
.addressPrefixes(addressPrefixes.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgs].
*/
@PulumiTagMarker
public class PointToPointVpnGatewayConnectionConfigurationVpnClientAddressPoolArgsBuilder internal
constructor() {
private var addressPrefixes: Output>? = null
/**
* @param value A list of CIDR Ranges which should be used as Address Prefixes.
*/
@JvmName("rmacklvshvfugnph")
public suspend fun addressPrefixes(`value`: Output>) {
this.addressPrefixes = value
}
@JvmName("ysmabinelnaxwxal")
public suspend fun addressPrefixes(vararg values: Output) {
this.addressPrefixes = Output.all(values.asList())
}
/**
* @param values A list of CIDR Ranges which should be used as Address Prefixes.
*/
@JvmName("nijkivepqrtykcor")
public suspend fun addressPrefixes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy