com.pulumi.azure.hdinsight.kotlin.inputs.HadoopClusterDiskEncryptionArgs.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.hdinsight.kotlin.inputs
import com.pulumi.azure.hdinsight.inputs.HadoopClusterDiskEncryptionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @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 HadoopClusterDiskEncryptionArgs(
public val encryptionAlgorithm: Output? = null,
public val encryptionAtHostEnabled: Output? = null,
public val keyVaultKeyId: Output? = null,
public val keyVaultManagedIdentityId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.hdinsight.inputs.HadoopClusterDiskEncryptionArgs =
com.pulumi.azure.hdinsight.inputs.HadoopClusterDiskEncryptionArgs.builder()
.encryptionAlgorithm(encryptionAlgorithm?.applyValue({ args0 -> args0 }))
.encryptionAtHostEnabled(encryptionAtHostEnabled?.applyValue({ args0 -> args0 }))
.keyVaultKeyId(keyVaultKeyId?.applyValue({ args0 -> args0 }))
.keyVaultManagedIdentityId(keyVaultManagedIdentityId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HadoopClusterDiskEncryptionArgs].
*/
@PulumiTagMarker
public class HadoopClusterDiskEncryptionArgsBuilder internal constructor() {
private var encryptionAlgorithm: Output? = null
private var encryptionAtHostEnabled: Output? = null
private var keyVaultKeyId: Output? = null
private var keyVaultManagedIdentityId: Output? = null
/**
* @param value This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
*/
@JvmName("pwtbqailtotmynfm")
public suspend fun encryptionAlgorithm(`value`: Output) {
this.encryptionAlgorithm = value
}
/**
* @param value This is indicator to show whether resource disk encryption is enabled.
*/
@JvmName("xiavxybpvgnlsahy")
public suspend fun encryptionAtHostEnabled(`value`: Output) {
this.encryptionAtHostEnabled = value
}
/**
* @param value The ID of the key vault key.
*/
@JvmName("invpbwjywwqnxkta")
public suspend fun keyVaultKeyId(`value`: Output) {
this.keyVaultKeyId = value
}
/**
* @param value This is the resource ID of Managed Identity used to access the key vault.
*/
@JvmName("fcckelkuibgjywbx")
public suspend fun keyVaultManagedIdentityId(`value`: Output) {
this.keyVaultManagedIdentityId = value
}
/**
* @param value This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
*/
@JvmName("bjdftxhabqwfabmj")
public suspend fun encryptionAlgorithm(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.encryptionAlgorithm = mapped
}
/**
* @param value This is indicator to show whether resource disk encryption is enabled.
*/
@JvmName("rjboxrtvkiybddts")
public suspend fun encryptionAtHostEnabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.encryptionAtHostEnabled = mapped
}
/**
* @param value The ID of the key vault key.
*/
@JvmName("wuyxggpymsiglodh")
public suspend fun keyVaultKeyId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVaultKeyId = mapped
}
/**
* @param value This is the resource ID of Managed Identity used to access the key vault.
*/
@JvmName("faixcguddigriymr")
public suspend fun keyVaultManagedIdentityId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVaultManagedIdentityId = mapped
}
internal fun build(): HadoopClusterDiskEncryptionArgs = HadoopClusterDiskEncryptionArgs(
encryptionAlgorithm = encryptionAlgorithm,
encryptionAtHostEnabled = encryptionAtHostEnabled,
keyVaultKeyId = keyVaultKeyId,
keyVaultManagedIdentityId = keyVaultManagedIdentityId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy