com.pulumi.gcp.kms.kotlin.outputs.CryptoKeyVersionTemplate.kt Maven / Gradle / Ivy
@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 CryptoKeyVersionTemplate(
public val algorithm: String,
public val protectionLevel: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.kms.outputs.CryptoKeyVersionTemplate): CryptoKeyVersionTemplate = CryptoKeyVersionTemplate(
algorithm = javaType.algorithm(),
protectionLevel = javaType.protectionLevel().map({ args0 -> args0 }).orElse(null),
)
}
}