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

com.pulumi.azure.domainservices.kotlin.outputs.GetServiceSecurity.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.15.0.0
Show newest version
@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