![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.RegistryTaskRegistryCredential.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.Suppress
import kotlin.collections.List
/**
*
* @property customs One or more `custom` blocks as defined above.
* @property source One `source` block as defined below.
*/
public data class RegistryTaskRegistryCredential(
public val customs: List? = null,
public val source: RegistryTaskRegistryCredentialSource? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.RegistryTaskRegistryCredential): RegistryTaskRegistryCredential = RegistryTaskRegistryCredential(
customs = javaType.customs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.containerservice.kotlin.outputs.RegistryTaskRegistryCredentialCustom.Companion.toKotlin(args0)
})
}),
source = javaType.source().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.containerservice.kotlin.outputs.RegistryTaskRegistryCredentialSource.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy