com.pulumi.gcp.container.kotlin.outputs.GetClusterClusterAutoscalingResourceLimit.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.container.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property maximum Maximum amount of the resource in the cluster.
* @property minimum Minimum amount of the resource in the cluster.
* @property resourceType The type of the resource. For example, cpu and memory. See the guide to using Node Auto-Provisioning for a list of types.
*/
public data class GetClusterClusterAutoscalingResourceLimit(
public val maximum: Int,
public val minimum: Int,
public val resourceType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterClusterAutoscalingResourceLimit): GetClusterClusterAutoscalingResourceLimit = GetClusterClusterAutoscalingResourceLimit(
maximum = javaType.maximum(),
minimum = javaType.minimum(),
resourceType = javaType.resourceType(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy