com.pulumi.gcp.sql.kotlin.outputs.GetTiersTier.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.sql.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property diskQuota The maximum disk size of this tier in bytes.
* @property ram The maximum ram usage of this tier in bytes.
* @property regions The applicable regions for this tier.
* @property tier An identifier for the machine type, for example, db-custom-1-3840.
*/
public data class GetTiersTier(
public val diskQuota: Int,
public val ram: Int,
public val regions: List,
public val tier: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.GetTiersTier): GetTiersTier =
GetTiersTier(
diskQuota = javaType.diskQuota(),
ram = javaType.ram(),
regions = javaType.regions().map({ args0 -> args0 }),
tier = javaType.tier(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy