Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.azure.appservice.kotlin.inputs
import com.pulumi.azure.appservice.inputs.LinuxFunctionAppSiteConfigApplicationStackArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property dockers One or more `docker` blocks as defined below.
* @property dotnetVersion The version of .NET to use. Possible values include `3.1`, `6.0`, `7.0` and `8.0`.
* @property javaVersion The Version of Java to use. Supported versions include `8`, `11` & `17`.
* @property nodeVersion The version of Node to run. Possible values include `12`, `14`, `16`, `18` and `20`.
* @property powershellCoreVersion The version of PowerShell Core to run. Possible values are `7`, `7.2`, and `7.4`.
* @property pythonVersion The version of Python to run. Possible values are `3.12`, `3.11`, `3.10`, `3.9`, `3.8` and `3.7`.
* @property useCustomRuntime Should the Linux Function App use a custom runtime?
* @property useDotnetIsolatedRuntime Should the DotNet process use an isolated runtime. Defaults to `false`.
*/
public data class LinuxFunctionAppSiteConfigApplicationStackArgs(
public val dockers: Output>? = null,
public val dotnetVersion: Output? = null,
public val javaVersion: Output? = null,
public val nodeVersion: Output? = null,
public val powershellCoreVersion: Output? = null,
public val pythonVersion: Output? = null,
public val useCustomRuntime: Output? = null,
public val useDotnetIsolatedRuntime: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appservice.inputs.LinuxFunctionAppSiteConfigApplicationStackArgs =
com.pulumi.azure.appservice.inputs.LinuxFunctionAppSiteConfigApplicationStackArgs.builder()
.dockers(
dockers?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.dotnetVersion(dotnetVersion?.applyValue({ args0 -> args0 }))
.javaVersion(javaVersion?.applyValue({ args0 -> args0 }))
.nodeVersion(nodeVersion?.applyValue({ args0 -> args0 }))
.powershellCoreVersion(powershellCoreVersion?.applyValue({ args0 -> args0 }))
.pythonVersion(pythonVersion?.applyValue({ args0 -> args0 }))
.useCustomRuntime(useCustomRuntime?.applyValue({ args0 -> args0 }))
.useDotnetIsolatedRuntime(useDotnetIsolatedRuntime?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LinuxFunctionAppSiteConfigApplicationStackArgs].
*/
@PulumiTagMarker
public class LinuxFunctionAppSiteConfigApplicationStackArgsBuilder internal constructor() {
private var dockers: Output>? = null
private var dotnetVersion: Output? = null
private var javaVersion: Output? = null
private var nodeVersion: Output? = null
private var powershellCoreVersion: Output? = null
private var pythonVersion: Output? = null
private var useCustomRuntime: Output? = null
private var useDotnetIsolatedRuntime: Output? = null
/**
* @param value One or more `docker` blocks as defined below.
*/
@JvmName("bepelmgvnrvhvlal")
public suspend fun dockers(`value`: Output>) {
this.dockers = value
}
@JvmName("urcgdtxulexgtjdb")
public suspend fun dockers(vararg values: Output) {
this.dockers = Output.all(values.asList())
}
/**
* @param values One or more `docker` blocks as defined below.
*/
@JvmName("nrjbtjcchiuhmcal")
public suspend fun dockers(values: List