
com.pulumi.azurenative.fluidrelay.kotlin.outputs.EncryptionPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.fluidrelay.kotlin.outputs
import kotlin.Suppress
/**
* All encryption configuration for a resource.
* @property customerManagedKeyEncryption All Customer-managed key encryption properties for the resource.
*/
public data class EncryptionPropertiesResponse(
public val customerManagedKeyEncryption: CustomerManagedKeyEncryptionPropertiesResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.fluidrelay.outputs.EncryptionPropertiesResponse): EncryptionPropertiesResponse = EncryptionPropertiesResponse(
customerManagedKeyEncryption = javaType.customerManagedKeyEncryption().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.fluidrelay.kotlin.outputs.CustomerManagedKeyEncryptionPropertiesResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy