![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.GroupImageRegistryCredential.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.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property password The password with which to connect to the registry. Changing this forces a new resource to be created.
* @property server The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
* @property userAssignedIdentityId The identity ID for the private registry. Changing this forces a new resource to be created.
* @property username The username with which to connect to the registry. Changing this forces a new resource to be created.
*/
public data class GroupImageRegistryCredential(
public val password: String? = null,
public val server: String,
public val userAssignedIdentityId: String? = null,
public val username: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GroupImageRegistryCredential): GroupImageRegistryCredential = GroupImageRegistryCredential(
password = javaType.password().map({ args0 -> args0 }).orElse(null),
server = javaType.server(),
userAssignedIdentityId = javaType.userAssignedIdentityId().map({ args0 -> args0 }).orElse(null),
username = javaType.username().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy