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

com.pulumi.azure.network.kotlin.outputs.VpnServerConfigurationPolicyGroupPolicy.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @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 VpnServerConfigurationPolicyGroupPolicy(
    public val name: String,
    public val type: String,
    public val `value`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.network.outputs.VpnServerConfigurationPolicyGroupPolicy): VpnServerConfigurationPolicyGroupPolicy = VpnServerConfigurationPolicyGroupPolicy(
            name = javaType.name(),
            type = javaType.type(),
            `value` = javaType.`value`(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy