Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.storage.kotlin.inputs
import com.pulumi.azure.storage.inputs.AccountSharePropertiesSmbArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 AccountSharePropertiesSmbArgs(
public val authenticationTypes: Output>? = null,
public val channelEncryptionTypes: Output>? = null,
public val kerberosTicketEncryptionTypes: Output>? = null,
public val multichannelEnabled: Output? = null,
public val versions: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.storage.inputs.AccountSharePropertiesSmbArgs =
com.pulumi.azure.storage.inputs.AccountSharePropertiesSmbArgs.builder()
.authenticationTypes(authenticationTypes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.channelEncryptionTypes(
channelEncryptionTypes?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.kerberosTicketEncryptionTypes(
kerberosTicketEncryptionTypes?.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.multichannelEnabled(multichannelEnabled?.applyValue({ args0 -> args0 }))
.versions(versions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AccountSharePropertiesSmbArgs].
*/
@PulumiTagMarker
public class AccountSharePropertiesSmbArgsBuilder internal constructor() {
private var authenticationTypes: Output>? = null
private var channelEncryptionTypes: Output>? = null
private var kerberosTicketEncryptionTypes: Output>? = null
private var multichannelEnabled: Output? = null
private var versions: Output>? = null
/**
* @param value A set of SMB authentication methods. Possible values are `NTLMv2`, and `Kerberos`.
*/
@JvmName("giqyhqpjyyxfvyph")
public suspend fun authenticationTypes(`value`: Output>) {
this.authenticationTypes = value
}
@JvmName("ohjfuhouiwnegish")
public suspend fun authenticationTypes(vararg values: Output) {
this.authenticationTypes = Output.all(values.asList())
}
/**
* @param values A set of SMB authentication methods. Possible values are `NTLMv2`, and `Kerberos`.
*/
@JvmName("oexxknbkajolhtlk")
public suspend fun authenticationTypes(values: List