![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.RegistryEncryption.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.Boolean
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
/**
*
* @property enabled
* @property identityClientId The client ID of the managed identity associated with the encryption key.
* @property keyVaultKeyId The ID of the Key Vault Key.
*/
public data class RegistryEncryption(
@Deprecated(
message = """
The property `enabled` is deprecated and will be removed in v4.0 of the AzureRM provider.
""",
)
public val enabled: Boolean? = null,
public val identityClientId: String,
public val keyVaultKeyId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.RegistryEncryption): RegistryEncryption = RegistryEncryption(
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
identityClientId = javaType.identityClientId(),
keyVaultKeyId = javaType.keyVaultKeyId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy