![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.enums.EncryptionAlgorithm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.logic.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The encryption algorithm.
*/
public enum class EncryptionAlgorithm(
public val javaValue: com.pulumi.azurenative.logic.enums.EncryptionAlgorithm,
) : ConvertibleToJava {
NotSpecified(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.NotSpecified),
None(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.None),
DES3(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.DES3),
RC2(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.RC2),
AES128(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.AES128),
AES192(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.AES192),
AES256(com.pulumi.azurenative.logic.enums.EncryptionAlgorithm.AES256),
;
override fun toJava(): com.pulumi.azurenative.logic.enums.EncryptionAlgorithm = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.logic.enums.EncryptionAlgorithm): EncryptionAlgorithm = EncryptionAlgorithm.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy