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

com.pulumi.azure.batch.kotlin.outputs.GetPoolContainerConfigurationContainerRegistry.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.batch.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property password The password for the user account.
 * @property registryServer The container registry URL. The default is "docker.io".
 * @property userAssignedIdentityId The reference to the user assigned identity to use to access an Azure Container Registry instead of username and password.
 * @property userName The user to use for authentication against the CIFS file system.
 */
public data class GetPoolContainerConfigurationContainerRegistry(
    public val password: String,
    public val registryServer: String,
    public val userAssignedIdentityId: String,
    public val userName: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolContainerConfigurationContainerRegistry):
            GetPoolContainerConfigurationContainerRegistry =
            GetPoolContainerConfigurationContainerRegistry(
                password = javaType.password(),
                registryServer = javaType.registryServer(),
                userAssignedIdentityId = javaType.userAssignedIdentityId(),
                userName = javaType.userName(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy