com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppSiteConfigApplicationStack.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
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.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property dotnetVersion The version of .Net to use.
* @property javaVersion The version of Java to use.
* @property nodeVersion The version of Node to use.
* @property powershellCoreVersion The version of PowerShell Core to use.
* @property useCustomRuntime Is the Windows Function App using a custom runtime?.
* @property useDotnetIsolatedRuntime
*/
public data class GetWindowsFunctionAppSiteConfigApplicationStack(
public val dotnetVersion: String,
public val javaVersion: String,
public val nodeVersion: String,
public val powershellCoreVersion: String,
public val useCustomRuntime: Boolean,
public val useDotnetIsolatedRuntime: Boolean,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetWindowsFunctionAppSiteConfigApplicationStack):
GetWindowsFunctionAppSiteConfigApplicationStack =
GetWindowsFunctionAppSiteConfigApplicationStack(
dotnetVersion = javaType.dotnetVersion(),
javaVersion = javaType.javaVersion(),
nodeVersion = javaType.nodeVersion(),
powershellCoreVersion = javaType.powershellCoreVersion(),
useCustomRuntime = javaType.useCustomRuntime(),
useDotnetIsolatedRuntime = javaType.useDotnetIsolatedRuntime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy