![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.appplatform.kotlin.outputs.ContainerRegistryBasicCredentialsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The basic authentication properties for the container registry resource.
* @property server The login server of the Container Registry.
* @property type The credential type of the container registry credentials.
* Expected value is 'BasicAuth'.
* @property username The username of the Container Registry.
*/
public data class ContainerRegistryBasicCredentialsResponse(
public val server: String,
public val type: String,
public val username: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.appplatform.outputs.ContainerRegistryBasicCredentialsResponse): ContainerRegistryBasicCredentialsResponse = ContainerRegistryBasicCredentialsResponse(
server = javaType.server(),
type = javaType.type(),
username = javaType.username(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy