Smb Setting Args
data class SmbSettingArgs(val authenticationMethods: Output<String>? = null, val channelEncryption: Output<String>? = null, val kerberosTicketEncryption: Output<String>? = null, val multichannel: Output<MultichannelArgs>? = null, val versions: Output<String>? = null) : ConvertibleToJava<SmbSettingArgs>
Setting for SMB protocol
Constructors
Link copied to clipboard
constructor(authenticationMethods: Output<String>? = null, channelEncryption: Output<String>? = null, kerberosTicketEncryption: Output<String>? = null, multichannel: Output<MultichannelArgs>? = null, versions: Output<String>? = null)
Properties
Link copied to clipboard
SMB authentication methods supported by server. Valid values are NTLMv2, Kerberos. Should be passed as a string with delimiter ';'.
Link copied to clipboard
SMB channel encryption supported by server. Valid values are AES-128-CCM, AES-128-GCM, AES-256-GCM. Should be passed as a string with delimiter ';'.
Link copied to clipboard
Kerberos ticket encryption supported by server. Valid values are RC4-HMAC, AES-256. Should be passed as a string with delimiter ';'
Link copied to clipboard
Multichannel setting. Applies to Premium FileStorage only.