
com.pulumi.googlenative.file.v1.kotlin.enums.InstanceTier.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.`file`.v1.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The service tier of the instance.
*/
public enum class InstanceTier(
public val javaValue: com.pulumi.googlenative.`file`.v1.enums.InstanceTier,
) : ConvertibleToJava {
/**
* Not set.
*/
TierUnspecified(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.TierUnspecified),
/**
* STANDARD tier. BASIC_HDD is the preferred term for this tier.
*/
Standard(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.Standard),
/**
* PREMIUM tier. BASIC_SSD is the preferred term for this tier.
*/
Premium(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.Premium),
/**
* BASIC instances offer a maximum capacity of 63.9 TB. BASIC_HDD is an alias for STANDARD Tier, offering economical performance backed by HDD.
*/
BasicHdd(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.BasicHdd),
/**
* BASIC instances offer a maximum capacity of 63.9 TB. BASIC_SSD is an alias for PREMIUM Tier, and offers improved performance backed by SSD.
*/
BasicSsd(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.BasicSsd),
/**
* HIGH_SCALE instances offer expanded capacity and performance scaling capabilities.
*/
HighScaleSsd(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.HighScaleSsd),
/**
* ENTERPRISE instances offer the features and availability needed for mission-critical workloads.
*/
Enterprise(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.Enterprise),
/**
* ZONAL instances offer expanded capacity and performance scaling capabilities.
*/
Zonal(com.pulumi.googlenative.`file`.v1.enums.InstanceTier.Zonal),
;
override fun toJava(): com.pulumi.googlenative.`file`.v1.enums.InstanceTier = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.`file`.v1.enums.InstanceTier): InstanceTier = InstanceTier.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy