com.pulumi.gcp.dataproc.kotlin.outputs.GetMetastoreServiceScalingConfig.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.dataproc.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
/**
*
* @property instanceSize Metastore instance sizes. Possible values: ["EXTRA_SMALL", "SMALL", "MEDIUM", "LARGE", "EXTRA_LARGE"]
* @property scalingFactor Scaling factor, in increments of 0.1 for values less than 1.0, and increments of 1.0 for values greater than 1.0.
*/
public data class GetMetastoreServiceScalingConfig(
public val instanceSize: String,
public val scalingFactor: Double,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataproc.outputs.GetMetastoreServiceScalingConfig): GetMetastoreServiceScalingConfig = GetMetastoreServiceScalingConfig(
instanceSize = javaType.instanceSize(),
scalingFactor = javaType.scalingFactor(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy