![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.batch.kotlin.enums.DiskEncryptionTarget.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.batch.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* If omitted, no disks on the compute nodes in the pool will be encrypted.
*/
public enum class DiskEncryptionTarget(
public val javaValue: com.pulumi.azurenative.batch.enums.DiskEncryptionTarget,
) : ConvertibleToJava {
/**
* The OS Disk on the compute node is encrypted.
*/
OsDisk(com.pulumi.azurenative.batch.enums.DiskEncryptionTarget.OsDisk),
/**
* The temporary disk on the compute node is encrypted. On Linux this encryption applies to other partitions (such as those on mounted data disks) when encryption occurs at boot time.
*/
TemporaryDisk(com.pulumi.azurenative.batch.enums.DiskEncryptionTarget.TemporaryDisk),
;
override fun toJava(): com.pulumi.azurenative.batch.enums.DiskEncryptionTarget = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.batch.enums.DiskEncryptionTarget): DiskEncryptionTarget = DiskEncryptionTarget.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy