All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.network.kotlin.inputs.VpnServerConfigurationPolicyGroupPolicyArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.inputs

import com.pulumi.azure.network.inputs.VpnServerConfigurationPolicyGroupPolicyArgs.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.jvm.JvmName

/**
 *
 * @property name The name of the VPN Server Configuration Policy member.
 * @property type The attribute type of the VPN Server Configuration Policy member. Possible values are `AADGroupId`, `CertificateGroupId` and `RadiusAzureGroupId`.
 * @property value The value of the attribute that is used for the VPN Server Configuration Policy member.
 */
public data class VpnServerConfigurationPolicyGroupPolicyArgs(
    public val name: Output,
    public val type: Output,
    public val `value`: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.network.inputs.VpnServerConfigurationPolicyGroupPolicyArgs =
        com.pulumi.azure.network.inputs.VpnServerConfigurationPolicyGroupPolicyArgs.builder()
            .name(name.applyValue({ args0 -> args0 }))
            .type(type.applyValue({ args0 -> args0 }))
            .`value`(`value`.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [VpnServerConfigurationPolicyGroupPolicyArgs].
 */
@PulumiTagMarker
public class VpnServerConfigurationPolicyGroupPolicyArgsBuilder internal constructor() {
    private var name: Output? = null

    private var type: Output? = null

    private var `value`: Output? = null

    /**
     * @param value The name of the VPN Server Configuration Policy member.
     */
    @JvmName("ntfdxyvlytefjlgp")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The attribute type of the VPN Server Configuration Policy member. Possible values are `AADGroupId`, `CertificateGroupId` and `RadiusAzureGroupId`.
     */
    @JvmName("wwdnpdiiitnajfwg")
    public suspend fun type(`value`: Output) {
        this.type = value
    }

    /**
     * @param value The value of the attribute that is used for the VPN Server Configuration Policy member.
     */
    @JvmName("rdjduvukdqvgonke")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The name of the VPN Server Configuration Policy member.
     */
    @JvmName("pcxiqdxsifihktxd")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The attribute type of the VPN Server Configuration Policy member. Possible values are `AADGroupId`, `CertificateGroupId` and `RadiusAzureGroupId`.
     */
    @JvmName("ooyetvtwjckwrpgs")
    public suspend fun type(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.type = mapped
    }

    /**
     * @param value The value of the attribute that is used for the VPN Server Configuration Policy member.
     */
    @JvmName("ifnngrqvaglvmvct")
    public suspend fun `value`(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): VpnServerConfigurationPolicyGroupPolicyArgs =
        VpnServerConfigurationPolicyGroupPolicyArgs(
            name = name ?: throw PulumiNullFieldException("name"),
            type = type ?: throw PulumiNullFieldException("type"),
            `value` = `value` ?: throw PulumiNullFieldException("value"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy