![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.batch.kotlin.outputs.PoolContainerConfigurationContainerRegistry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property password The password to log into the registry server. Changing this forces a new resource to be created.
* @property registryServer The container registry URL. Changing this forces a new resource to be created.
* @property userAssignedIdentityId The reference to the user assigned identity to use to access an Azure Container Registry instead of username and password. Changing this forces a new resource to be created.
* @property userName The user name to log into the registry server. Changing this forces a new resource to be created.
*/
public data class PoolContainerConfigurationContainerRegistry(
public val password: String? = null,
public val registryServer: String,
public val userAssignedIdentityId: String? = null,
public val userName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.PoolContainerConfigurationContainerRegistry): PoolContainerConfigurationContainerRegistry = PoolContainerConfigurationContainerRegistry(
password = javaType.password().map({ args0 -> args0 }).orElse(null),
registryServer = javaType.registryServer(),
userAssignedIdentityId = javaType.userAssignedIdentityId().map({ args0 -> args0 }).orElse(null),
userName = javaType.userName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy