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

com.pulumi.gcp.appengine.kotlin.outputs.FlexibleAppVersionManualScaling.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.10.0.0
Show newest version
@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