
com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppSiteConfigApplicationStack.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property dockerImage
* @property dockerImageName The docker image, including tag, used by this Linux Web App.
* @property dockerImageTag
* @property dockerRegistryPassword The User Name to use for authentication against the registry to pull the image.
* @property dockerRegistryUrl The URL of the container registry where the `docker_image_name` is located.
* @property dockerRegistryUsername The User Name to use for authentication against the registry to pull the image.
* @property dotnetVersion The version of .NET in use.
* @property goVersion
* @property javaServer The Java server type.
* @property javaServerVersion The Version of the `java_server` in use.
* @property javaVersion The Version of Java in use.
* @property nodeVersion The version of Node in use.
* @property phpVersion The version of PHP in use.
* @property pythonVersion The version of Python in use.
* @property rubyVersion The version of Ruby in use.
*/
public data class GetLinuxWebAppSiteConfigApplicationStack(
public val dockerImage: String,
public val dockerImageName: String,
public val dockerImageTag: String,
public val dockerRegistryPassword: String,
public val dockerRegistryUrl: String,
public val dockerRegistryUsername: String,
public val dotnetVersion: String,
public val goVersion: String,
public val javaServer: String,
public val javaServerVersion: String,
public val javaVersion: String,
public val nodeVersion: String,
public val phpVersion: String,
public val pythonVersion: String,
public val rubyVersion: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxWebAppSiteConfigApplicationStack): GetLinuxWebAppSiteConfigApplicationStack = GetLinuxWebAppSiteConfigApplicationStack(
dockerImage = javaType.dockerImage(),
dockerImageName = javaType.dockerImageName(),
dockerImageTag = javaType.dockerImageTag(),
dockerRegistryPassword = javaType.dockerRegistryPassword(),
dockerRegistryUrl = javaType.dockerRegistryUrl(),
dockerRegistryUsername = javaType.dockerRegistryUsername(),
dotnetVersion = javaType.dotnetVersion(),
goVersion = javaType.goVersion(),
javaServer = javaType.javaServer(),
javaServerVersion = javaType.javaServerVersion(),
javaVersion = javaType.javaVersion(),
nodeVersion = javaType.nodeVersion(),
phpVersion = javaType.phpVersion(),
pythonVersion = javaType.pythonVersion(),
rubyVersion = javaType.rubyVersion(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy