com.pulumi.azure.loadtest.kotlin.outputs.LoadTestEncryption.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.loadtest.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property identity An `identity` block as defined below. Changing this forces a new Load Test to be created.
* @property keyUrl The URI specifying the Key vault and key to be used to encrypt data in this resource. The URI should include the key version. Changing this forces a new Load Test to be created.
*/
public data class LoadTestEncryption(
public val identity: LoadTestEncryptionIdentity,
public val keyUrl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.loadtest.outputs.LoadTestEncryption): LoadTestEncryption = LoadTestEncryption(
identity = javaType.identity().let({ args0 ->
com.pulumi.azure.loadtest.kotlin.outputs.LoadTestEncryptionIdentity.Companion.toKotlin(args0)
}),
keyUrl = javaType.keyUrl(),
)
}
}