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

com.pulumi.gcp.appengine.kotlin.inputs.StandardAppVersionBasicScalingArgs.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.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.appengine.inputs.StandardAppVersionBasicScalingArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property idleTimeout Duration of time after the last request that an instance must wait before the instance is shut down.
 * A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". Defaults to 900s.
 * @property maxInstances Maximum number of instances to create for this version. Must be in the range [1.0, 200.0].
 */
public data class StandardAppVersionBasicScalingArgs(
    public val idleTimeout: Output? = null,
    public val maxInstances: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.appengine.inputs.StandardAppVersionBasicScalingArgs =
        com.pulumi.gcp.appengine.inputs.StandardAppVersionBasicScalingArgs.builder()
            .idleTimeout(idleTimeout?.applyValue({ args0 -> args0 }))
            .maxInstances(maxInstances.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [StandardAppVersionBasicScalingArgs].
 */
@PulumiTagMarker
public class StandardAppVersionBasicScalingArgsBuilder internal constructor() {
    private var idleTimeout: Output? = null

    private var maxInstances: Output? = null

    /**
     * @param value Duration of time after the last request that an instance must wait before the instance is shut down.
     * A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". Defaults to 900s.
     */
    @JvmName("vngycodjywrqxbpj")
    public suspend fun idleTimeout(`value`: Output) {
        this.idleTimeout = value
    }

    /**
     * @param value Maximum number of instances to create for this version. Must be in the range [1.0, 200.0].
     */
    @JvmName("jotjyxxfsdijppmo")
    public suspend fun maxInstances(`value`: Output) {
        this.maxInstances = value
    }

    /**
     * @param value Duration of time after the last request that an instance must wait before the instance is shut down.
     * A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". Defaults to 900s.
     */
    @JvmName("ewqhmtvuttmuqaqx")
    public suspend fun idleTimeout(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.idleTimeout = mapped
    }

    /**
     * @param value Maximum number of instances to create for this version. Must be in the range [1.0, 200.0].
     */
    @JvmName("kapojgvdifgvswdo")
    public suspend fun maxInstances(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.maxInstances = mapped
    }

    internal fun build(): StandardAppVersionBasicScalingArgs = StandardAppVersionBasicScalingArgs(
        idleTimeout = idleTimeout,
        maxInstances = maxInstances ?: throw PulumiNullFieldException("maxInstances"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy