
com.pulumi.googlenative.compute.beta.kotlin.enums.DiskInterface.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.beta.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
*/
public enum class DiskInterface(
public val javaValue: com.pulumi.googlenative.compute.beta.enums.DiskInterface,
) : ConvertibleToJava {
Nvme(com.pulumi.googlenative.compute.beta.enums.DiskInterface.Nvme),
Scsi(com.pulumi.googlenative.compute.beta.enums.DiskInterface.Scsi),
Unspecified(com.pulumi.googlenative.compute.beta.enums.DiskInterface.Unspecified),
;
override fun toJava(): com.pulumi.googlenative.compute.beta.enums.DiskInterface = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.compute.beta.enums.DiskInterface): DiskInterface = DiskInterface.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy