
com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterWindowsProfileGmsa.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property dnsServer Specifies the DNS server for Windows gMSA. Set this to an empty string if you have configured the DNS server in the VNet which was used to create the managed cluster.
* @property rootDomain Specifies the root domain name for Windows gMSA. Set this to an empty string if you have configured the DNS server in the VNet which was used to create the managed cluster.
* > **Note:** The properties `dns_server` and `root_domain` must both either be set or unset, i.e. empty.
*/
public data class KubernetesClusterWindowsProfileGmsa(
public val dnsServer: String,
public val rootDomain: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterWindowsProfileGmsa): KubernetesClusterWindowsProfileGmsa = KubernetesClusterWindowsProfileGmsa(
dnsServer = javaType.dnsServer(),
rootDomain = javaType.rootDomain(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy