com.pulumi.gcp.kms.kotlin.outputs.GetKMSCryptoKeyVersionTemplate.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.kms.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property algorithm The algorithm to use when creating a version based on this template.
* See the [algorithm reference](https://cloud.google.com/kms/docs/reference/rest/v1/CryptoKeyVersionAlgorithm) for possible inputs.
* @property protectionLevel The protection level to use when creating a version based on this template. Possible values include "SOFTWARE", "HSM", "EXTERNAL", "EXTERNAL_VPC". Defaults to "SOFTWARE".
*/
public data class GetKMSCryptoKeyVersionTemplate(
public val algorithm: String,
public val protectionLevel: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.kms.outputs.GetKMSCryptoKeyVersionTemplate): GetKMSCryptoKeyVersionTemplate = GetKMSCryptoKeyVersionTemplate(
algorithm = javaType.algorithm(),
protectionLevel = javaType.protectionLevel(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy