![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.VpnServerConfigurationPolicyGroupArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.VpnServerConfigurationPolicyGroupArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* VpnServerConfigurationPolicyGroup Resource.
* @property id Resource ID.
* @property isDefault Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
* @property name The name of the resource that is unique within a resource group. This name can be used to access the resource.
* @property policyMembers Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
* @property priority Priority for VpnServerConfigurationPolicyGroup.
*/
public data class VpnServerConfigurationPolicyGroupArgs(
public val id: Output? = null,
public val isDefault: Output? = null,
public val name: Output? = null,
public val policyMembers: Output>? = null,
public val priority: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.VpnServerConfigurationPolicyGroupArgs = com.pulumi.azurenative.network.inputs.VpnServerConfigurationPolicyGroupArgs.builder()
.id(id?.applyValue({ args0 -> args0 }))
.isDefault(isDefault?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.policyMembers(
policyMembers?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.priority(priority?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VpnServerConfigurationPolicyGroupArgs].
*/
@PulumiTagMarker
public class VpnServerConfigurationPolicyGroupArgsBuilder internal constructor() {
private var id: Output? = null
private var isDefault: Output? = null
private var name: Output? = null
private var policyMembers: Output>? = null
private var priority: Output? = null
/**
* @param value Resource ID.
*/
@JvmName("hgrwlkfmewbdcoyi")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
*/
@JvmName("qfnfabklkcarabyk")
public suspend fun isDefault(`value`: Output) {
this.isDefault = 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("bnholtvpuhktvlru")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
*/
@JvmName("spjbhgqiiruhcufv")
public suspend fun policyMembers(`value`: Output>) {
this.policyMembers = value
}
@JvmName("mytrqykxanxrsbqo")
public suspend fun policyMembers(vararg values: Output) {
this.policyMembers = Output.all(values.asList())
}
/**
* @param values Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
*/
@JvmName("rkvhaaiowicdltgm")
public suspend fun policyMembers(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy