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

com.pulumi.azure.hdinsight.kotlin.outputs.KafkaClusterDiskEncryption.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.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.hdinsight.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property encryptionAlgorithm This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
 * @property encryptionAtHostEnabled This is indicator to show whether resource disk encryption is enabled.
 * @property keyVaultKeyId The ID of the key vault key.
 * @property keyVaultManagedIdentityId This is the resource ID of Managed Identity used to access the key vault.
 */
public data class KafkaClusterDiskEncryption(
    public val encryptionAlgorithm: String? = null,
    public val encryptionAtHostEnabled: Boolean? = null,
    public val keyVaultKeyId: String? = null,
    public val keyVaultManagedIdentityId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.hdinsight.outputs.KafkaClusterDiskEncryption):
            KafkaClusterDiskEncryption = KafkaClusterDiskEncryption(
            encryptionAlgorithm = javaType.encryptionAlgorithm().map({ args0 -> args0 }).orElse(null),
            encryptionAtHostEnabled = javaType.encryptionAtHostEnabled().map({ args0 -> args0 }).orElse(null),
            keyVaultKeyId = javaType.keyVaultKeyId().map({ args0 -> args0 }).orElse(null),
            keyVaultManagedIdentityId = javaType.keyVaultManagedIdentityId().map({ args0 ->
                args0
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy