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

com.pulumi.azure.appservice.kotlin.outputs.GetLinuxFunctionAppSiteConfigApplicationStackDocker.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property imageName The name of the Docker image used.
 * @property imageTag The image tag of the image used.
 * @property registryPassword The password for the account to use to connect to the registry.
 * @property registryUrl The URL of the docker registry.
 * @property registryUsername The username used for connections to the registry.
 */
public data class GetLinuxFunctionAppSiteConfigApplicationStackDocker(
    public val imageName: String,
    public val imageTag: String,
    public val registryPassword: String,
    public val registryUrl: String,
    public val registryUsername: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxFunctionAppSiteConfigApplicationStackDocker):
            GetLinuxFunctionAppSiteConfigApplicationStackDocker =
            GetLinuxFunctionAppSiteConfigApplicationStackDocker(
                imageName = javaType.imageName(),
                imageTag = javaType.imageTag(),
                registryPassword = javaType.registryPassword(),
                registryUrl = javaType.registryUrl(),
                registryUsername = javaType.registryUsername(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy