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

com.pulumi.azure.containerapp.kotlin.outputs.GetAppRegistry.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.21.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.containerapp.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property identity Resource ID for the User Assigned Managed identity to use when pulling from the Container Registry.
 * @property passwordSecretName The name of the Secret Reference containing the password value for this user on the Container Registry, `username` must also be supplied.
 * @property server The hostname for the Container Registry.
 * @property username The username to use for this Container Registry, `password_secret_name` must also be supplied..
 */
public data class GetAppRegistry(
    public val identity: String,
    public val passwordSecretName: String,
    public val server: String,
    public val username: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerapp.outputs.GetAppRegistry):
            GetAppRegistry = GetAppRegistry(
            identity = javaType.identity(),
            passwordSecretName = javaType.passwordSecretName(),
            server = javaType.server(),
            username = javaType.username(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy