com.pulumi.azure.batch.kotlin.outputs.GetAccountEncryption.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property keyVaultKeyId The full URL path of the Key Vault Key used to encrypt data for this Batch account.
*/
public data class GetAccountEncryption(
public val keyVaultKeyId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetAccountEncryption): GetAccountEncryption = GetAccountEncryption(
keyVaultKeyId = javaType.keyVaultKeyId(),
)
}
}