All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.batch.kotlin.enums.DiskEncryptionTarget.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@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