com.pulumi.gcp.dataproc.kotlin.outputs.MetastoreServiceEncryptionConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.dataproc.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property kmsKey The fully qualified customer provided Cloud KMS key name to use for customer data encryption.
* Use the following format: `projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`
*/
public data class MetastoreServiceEncryptionConfig(
public val kmsKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataproc.outputs.MetastoreServiceEncryptionConfig): MetastoreServiceEncryptionConfig = MetastoreServiceEncryptionConfig(
kmsKey = javaType.kmsKey(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy