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

com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppSiteConfigApplicationStack.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: 6.14.0.0
Show newest version
@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