![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.eventhub.kotlin.outputs.EncryptionResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.eventhub.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Properties to configure Encryption
* @property keySource Enumerates the possible value of keySource for Encryption
* @property keyVaultProperties Properties of KeyVault
* @property requireInfrastructureEncryption Enable Infrastructure Encryption (Double Encryption)
*/
public data class EncryptionResponse(
public val keySource: String? = null,
public val keyVaultProperties: List? = null,
public val requireInfrastructureEncryption: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.eventhub.outputs.EncryptionResponse): EncryptionResponse = EncryptionResponse(
keySource = javaType.keySource().map({ args0 -> args0 }).orElse(null),
keyVaultProperties = javaType.keyVaultProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.eventhub.kotlin.outputs.KeyVaultPropertiesResponse.Companion.toKotlin(args0)
})
}),
requireInfrastructureEncryption = javaType.requireInfrastructureEncryption().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy