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

com.pulumi.gcp.appengine.kotlin.inputs.FlexibleAppVersionFlexibleRuntimeSettingsArgs.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.13.1.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.FlexibleAppVersionFlexibleRuntimeSettingsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property operatingSystem Operating System of the application runtime.
 * @property runtimeVersion The runtime version of an App Engine flexible application.
 */
public data class FlexibleAppVersionFlexibleRuntimeSettingsArgs(
    public val operatingSystem: Output? = null,
    public val runtimeVersion: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.appengine.inputs.FlexibleAppVersionFlexibleRuntimeSettingsArgs =
        com.pulumi.gcp.appengine.inputs.FlexibleAppVersionFlexibleRuntimeSettingsArgs.builder()
            .operatingSystem(operatingSystem?.applyValue({ args0 -> args0 }))
            .runtimeVersion(runtimeVersion?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FlexibleAppVersionFlexibleRuntimeSettingsArgs].
 */
@PulumiTagMarker
public class FlexibleAppVersionFlexibleRuntimeSettingsArgsBuilder internal constructor() {
    private var operatingSystem: Output? = null

    private var runtimeVersion: Output? = null

    /**
     * @param value Operating System of the application runtime.
     */
    @JvmName("thxpexvsgcmxtqjq")
    public suspend fun operatingSystem(`value`: Output) {
        this.operatingSystem = value
    }

    /**
     * @param value The runtime version of an App Engine flexible application.
     */
    @JvmName("atrimtprggvpiohm")
    public suspend fun runtimeVersion(`value`: Output) {
        this.runtimeVersion = value
    }

    /**
     * @param value Operating System of the application runtime.
     */
    @JvmName("bwbftvuqavrichiy")
    public suspend fun operatingSystem(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.operatingSystem = mapped
    }

    /**
     * @param value The runtime version of an App Engine flexible application.
     */
    @JvmName("qcwgcjaojyqwxtfq")
    public suspend fun runtimeVersion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.runtimeVersion = mapped
    }

    internal fun build(): FlexibleAppVersionFlexibleRuntimeSettingsArgs =
        FlexibleAppVersionFlexibleRuntimeSettingsArgs(
            operatingSystem = operatingSystem,
            runtimeVersion = runtimeVersion,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy