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

com.pulumi.gcp.sql.kotlin.outputs.GetTiersTier.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: 8.12.0.0
Show newest version
@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