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

com.pulumi.googlenative.compute.v1.kotlin.enums.AttachedDiskInterface.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.compute.v1.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. For most machine types, the default is SCSI. Local SSDs can use either NVME or SCSI. In certain configurations, persistent disks can use NVMe. For more information, see About persistent disks.
 */
public enum class AttachedDiskInterface(
    public val javaValue: com.pulumi.googlenative.compute.v1.enums.AttachedDiskInterface,
) : ConvertibleToJava {
    Nvme(com.pulumi.googlenative.compute.v1.enums.AttachedDiskInterface.Nvme),
    Scsi(com.pulumi.googlenative.compute.v1.enums.AttachedDiskInterface.Scsi),
    ;

    override fun toJava(): com.pulumi.googlenative.compute.v1.enums.AttachedDiskInterface = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.compute.v1.enums.AttachedDiskInterface): AttachedDiskInterface = AttachedDiskInterface.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy