
com.pulumi.azurenative.network.kotlin.inputs.VngClientConnectionConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.VngClientConnectionConfigurationArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* A vpn client connection configuration for client connection configuration.
* @property id Resource ID.
* @property name The name of the resource that is unique within a resource group. This name can be used to access the resource.
* @property virtualNetworkGatewayPolicyGroups List of references to virtualNetworkGatewayPolicyGroups
* @property vpnClientAddressPool The reference to the address space resource which represents Address space for P2S VpnClient.
*/
public data class VngClientConnectionConfigurationArgs(
public val id: Output? = null,
public val name: Output? = null,
public val virtualNetworkGatewayPolicyGroups: Output>,
public val vpnClientAddressPool: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.VngClientConnectionConfigurationArgs = com.pulumi.azurenative.network.inputs.VngClientConnectionConfigurationArgs.builder()
.id(id?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.virtualNetworkGatewayPolicyGroups(
virtualNetworkGatewayPolicyGroups.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.vpnClientAddressPool(
vpnClientAddressPool.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [VngClientConnectionConfigurationArgs].
*/
@PulumiTagMarker
public class VngClientConnectionConfigurationArgsBuilder internal constructor() {
private var id: Output? = null
private var name: Output? = null
private var virtualNetworkGatewayPolicyGroups: Output>? = null
private var vpnClientAddressPool: Output? = null
/**
* @param value Resource ID.
*/
@JvmName("bepebeejggfptxao")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value The name of the resource that is unique within a resource group. This name can be used to access the resource.
*/
@JvmName("xoecyjmdvoicquof")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value List of references to virtualNetworkGatewayPolicyGroups
*/
@JvmName("bqprlgvnhgvutoro")
public suspend fun virtualNetworkGatewayPolicyGroups(`value`: Output>) {
this.virtualNetworkGatewayPolicyGroups = value
}
@JvmName("rwrrltquuukrseli")
public suspend fun virtualNetworkGatewayPolicyGroups(vararg values: Output) {
this.virtualNetworkGatewayPolicyGroups = Output.all(values.asList())
}
/**
* @param values List of references to virtualNetworkGatewayPolicyGroups
*/
@JvmName("jkfdaxxdrmkawphf")
public suspend fun virtualNetworkGatewayPolicyGroups(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy