
com.pulumi.azure.appservice.kotlin.outputs.GetLinuxFunctionAppSiteConfigApplicationStack.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property dockers One or more `docker` blocks as defined below.
* @property dotnetVersion The version of .NET used.
* @property javaVersion The Version of Java used.
* @property nodeVersion The version of Node used.
* @property powershellCoreVersion The version of PowerShell Core used.
* @property pythonVersion The version of Python used.
* @property useCustomRuntime Does the Linux Function App use a custom runtime?
* @property useDotnetIsolatedRuntime
*/
public data class GetLinuxFunctionAppSiteConfigApplicationStack(
public val dockers: List,
public val dotnetVersion: String,
public val javaVersion: String,
public val nodeVersion: String,
public val powershellCoreVersion: String,
public val pythonVersion: String,
public val useCustomRuntime: Boolean,
public val useDotnetIsolatedRuntime: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxFunctionAppSiteConfigApplicationStack): GetLinuxFunctionAppSiteConfigApplicationStack =
GetLinuxFunctionAppSiteConfigApplicationStack(
dockers = javaType.dockers().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetLinuxFunctionAppSiteConfigApplicationStackDocker.Companion.toKotlin(args0)
})
}),
dotnetVersion = javaType.dotnetVersion(),
javaVersion = javaType.javaVersion(),
nodeVersion = javaType.nodeVersion(),
powershellCoreVersion = javaType.powershellCoreVersion(),
pythonVersion = javaType.pythonVersion(),
useCustomRuntime = javaType.useCustomRuntime(),
useDotnetIsolatedRuntime = javaType.useDotnetIsolatedRuntime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy