All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.containerservice.kotlin.outputs.RegistryEncryption.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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