![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.domainservices.kotlin.outputs.GetServiceSecurity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.domainservices.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property kerberosArmoringEnabled (Optional) Whether the Kerberos Armoring is enabled.
* @property kerberosRc4EncryptionEnabled (Optional) Whether the Kerberos RC4 Encryption is enabled.
* @property ntlmV1Enabled Whether legacy NTLM v1 support is enabled.
* @property syncKerberosPasswords Whether Kerberos password hashes are synchronized to the managed domain.
* @property syncNtlmPasswords Whether NTLM password hashes are synchronized to the managed domain.
* @property syncOnPremPasswords Whether on-premises password hashes are synchronized to the managed domain.
* @property tlsV1Enabled Whether legacy TLS v1 support is enabled.
*/
public data class GetServiceSecurity(
public val kerberosArmoringEnabled: Boolean,
public val kerberosRc4EncryptionEnabled: Boolean,
public val ntlmV1Enabled: Boolean,
public val syncKerberosPasswords: Boolean,
public val syncNtlmPasswords: Boolean,
public val syncOnPremPasswords: Boolean,
public val tlsV1Enabled: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.domainservices.outputs.GetServiceSecurity): GetServiceSecurity = GetServiceSecurity(
kerberosArmoringEnabled = javaType.kerberosArmoringEnabled(),
kerberosRc4EncryptionEnabled = javaType.kerberosRc4EncryptionEnabled(),
ntlmV1Enabled = javaType.ntlmV1Enabled(),
syncKerberosPasswords = javaType.syncKerberosPasswords(),
syncNtlmPasswords = javaType.syncNtlmPasswords(),
syncOnPremPasswords = javaType.syncOnPremPasswords(),
tlsV1Enabled = javaType.tlsV1Enabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy