![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.RegistryTaskRegistryCredentialCustom.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 identity The managed identity assigned to this custom credential. For user assigned identity, the value is the client ID of the identity. For system assigned identity, the value is `[system]`.
* @property loginServer The login server of the custom Container Registry.
* @property password The password for logging into the custom Container Registry. It can be either a plain text of password, or a Keyvault Secret ID.
* @property username The username for logging into the custom Container Registry. It can be either a plain text of username, or a Keyvault Secret ID.
*/
public data class RegistryTaskRegistryCredentialCustom(
public val identity: String? = null,
public val loginServer: String,
public val password: String? = null,
public val username: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.RegistryTaskRegistryCredentialCustom): RegistryTaskRegistryCredentialCustom = RegistryTaskRegistryCredentialCustom(
identity = javaType.identity().map({ args0 -> args0 }).orElse(null),
loginServer = javaType.loginServer(),
password = javaType.password().map({ args0 -> args0 }).orElse(null),
username = javaType.username().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy