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.LinuxFunctionAppSlotSiteConfigApplicationStackArgs.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 a `docker` block as detailed below.
* @property dotnetVersion The version of .Net. Possible values are `3.1`, `6.0`, `7.0` and `8.0`.
* @property javaVersion The version of Java to use. Possible values are `8`, `11` & `17` (In-Preview).
* @property nodeVersion The version of Node to use. Possible values include `12`, `14`, `16`, `18` and `20`
* @property powershellCoreVersion The version of PowerShell Core to use. Possibles values are `7` , `7.2`, and `7.4`.
* @property pythonVersion The version of Python to use. 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 LinuxFunctionAppSlotSiteConfigApplicationStackArgs(
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.LinuxFunctionAppSlotSiteConfigApplicationStackArgs =
com.pulumi.azure.appservice.inputs.LinuxFunctionAppSlotSiteConfigApplicationStackArgs.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 [LinuxFunctionAppSlotSiteConfigApplicationStackArgs].
*/
@PulumiTagMarker
public class LinuxFunctionAppSlotSiteConfigApplicationStackArgsBuilder 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 a `docker` block as detailed below.
*/
@JvmName("bjbbgrnoqqsttsyd")
public suspend fun dockers(`value`: Output>) {
this.dockers = value
}
@JvmName("prftaaniuhgjvwpm")
public suspend fun dockers(vararg values: Output) {
this.dockers = Output.all(values.asList())
}
/**
* @param values a `docker` block as detailed below.
*/
@JvmName("lmuapboxcrvdslao")
public suspend fun dockers(values: List