
com.pulumi.azure.hdinsight.kotlin.outputs.InteractiveQueryClusterDiskEncryption.kt Maven / Gradle / Ivy
@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 InteractiveQueryClusterDiskEncryption(
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.InteractiveQueryClusterDiskEncryption): InteractiveQueryClusterDiskEncryption = InteractiveQueryClusterDiskEncryption(
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