com.pulumi.azure.batch.kotlin.outputs.GetPoolStartTaskContainerRegistry.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 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 GetPoolStartTaskContainerRegistry(
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.GetPoolStartTaskContainerRegistry):
GetPoolStartTaskContainerRegistry = GetPoolStartTaskContainerRegistry(
password = javaType.password(),
registryServer = javaType.registryServer(),
userAssignedIdentityId = javaType.userAssignedIdentityId(),
userName = javaType.userName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy