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

com.pulumi.azure.storage.kotlin.outputs.AccountSharePropertiesSmb.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.storage.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property authenticationTypes A set of SMB authentication methods. Possible values are `NTLMv2`, and `Kerberos`.
 * @property channelEncryptionTypes A set of SMB channel encryption. Possible values are `AES-128-CCM`, `AES-128-GCM`, and `AES-256-GCM`.
 * @property kerberosTicketEncryptionTypes A set of Kerberos ticket encryption. Possible values are `RC4-HMAC`, and `AES-256`.
 * @property multichannelEnabled Indicates whether multichannel is enabled. Defaults to `false`. This is only supported on Premium storage accounts.
 * @property versions A set of SMB protocol versions. Possible values are `SMB2.1`, `SMB3.0`, and `SMB3.1.1`.
 */
public data class AccountSharePropertiesSmb(
    public val authenticationTypes: List? = null,
    public val channelEncryptionTypes: List? = null,
    public val kerberosTicketEncryptionTypes: List? = null,
    public val multichannelEnabled: Boolean? = null,
    public val versions: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.AccountSharePropertiesSmb):
            AccountSharePropertiesSmb = AccountSharePropertiesSmb(
            authenticationTypes = javaType.authenticationTypes().map({ args0 -> args0 }),
            channelEncryptionTypes = javaType.channelEncryptionTypes().map({ args0 -> args0 }),
            kerberosTicketEncryptionTypes = javaType.kerberosTicketEncryptionTypes().map({ args0 -> args0 }),
            multichannelEnabled = javaType.multichannelEnabled().map({ args0 -> args0 }).orElse(null),
            versions = javaType.versions().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy