
com.pulumi.azurenative.cache.kotlin.outputs.ClusterPropertiesResponseEncryption.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.cache.kotlin.outputs
import kotlin.Suppress
/**
* Encryption-at-rest configuration for the cluster.
* @property customerManagedKeyEncryption All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
*/
public data class ClusterPropertiesResponseEncryption(
public val customerManagedKeyEncryption: ClusterPropertiesResponseCustomerManagedKeyEncryption? =
null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.cache.outputs.ClusterPropertiesResponseEncryption): ClusterPropertiesResponseEncryption = ClusterPropertiesResponseEncryption(
customerManagedKeyEncryption = javaType.customerManagedKeyEncryption().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.cache.kotlin.outputs.ClusterPropertiesResponseCustomerManagedKeyEncryption.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy