![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.media.kotlin.enums.SecurityLevel.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.media.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The security level.
*/
public enum class SecurityLevel(
public val javaValue: com.pulumi.azurenative.media.enums.SecurityLevel,
) : ConvertibleToJava {
/**
* Represents a SecurityLevel that is unavailable in current API version.
*/
Unknown(com.pulumi.azurenative.media.enums.SecurityLevel.Unknown),
/**
* For clients under development or test. No protection against unauthorized use.
*/
SL150(com.pulumi.azurenative.media.enums.SecurityLevel.SL150),
/**
* For hardened devices and applications consuming commercial content. Software or hardware protection.
*/
SL2000(com.pulumi.azurenative.media.enums.SecurityLevel.SL2000),
/**
* For hardened devices only. Hardware protection.
*/
SL3000(com.pulumi.azurenative.media.enums.SecurityLevel.SL3000),
;
override fun toJava(): com.pulumi.azurenative.media.enums.SecurityLevel = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.media.enums.SecurityLevel): SecurityLevel =
SecurityLevel.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy