com.pulumi.gcp.appengine.kotlin.outputs.FlexibleAppVersionManualScaling.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.appengine.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property instances Number of instances to assign to the service at the start.
* **Note:** When managing the number of instances at runtime through the App Engine Admin API or the (now deprecated) Python 2
* Modules API set_num_instances() you must use `lifecycle.ignore_changes = ["manual_scaling"[0].instances]` to prevent drift detection.
*/
public data class FlexibleAppVersionManualScaling(
public val instances: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.appengine.outputs.FlexibleAppVersionManualScaling): FlexibleAppVersionManualScaling = FlexibleAppVersionManualScaling(
instances = javaType.instances(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy