com.pulumi.gcp.integrationconnectors.kotlin.inputs.ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs.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.integrationconnectors.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.integrationconnectors.inputs.ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property kmsKeyName The [KMS key name] with which the content of the Operation is encrypted. The expected
* format: projects/*/locations/*/keyRings/*/cryptoKeys/*.
* Will be empty string if google managed.
* @property type Type of Encryption Key
* Possible values are: `GOOGLE_MANAGED`, `CUSTOMER_MANAGED`.
* */*/*/*/
*/
public data class ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs(
public val kmsKeyName: Output? = null,
public val type: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.integrationconnectors.inputs.ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs =
com.pulumi.gcp.integrationconnectors.inputs.ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs.builder()
.kmsKeyName(kmsKeyName?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs].
*/
@PulumiTagMarker
public class ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgsBuilder internal constructor() {
private var kmsKeyName: Output? = null
private var type: Output? = null
/**
* @param value The [KMS key name] with which the content of the Operation is encrypted. The expected
* format: projects/*/locations/*/keyRings/*/cryptoKeys/*.
* Will be empty string if google managed.
* */*/*/*/
*/
@JvmName("jhqtfhdirftfapyr")
public suspend fun kmsKeyName(`value`: Output) {
this.kmsKeyName = value
}
/**
* @param value Type of Encryption Key
* Possible values are: `GOOGLE_MANAGED`, `CUSTOMER_MANAGED`.
*/
@JvmName("vfdqjymdvxukhlfx")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The [KMS key name] with which the content of the Operation is encrypted. The expected
* format: projects/*/locations/*/keyRings/*/cryptoKeys/*.
* Will be empty string if google managed.
* */*/*/*/
*/
@JvmName("mxixvgfuknrfgtap")
public suspend fun kmsKeyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.kmsKeyName = mapped
}
/**
* @param value Type of Encryption Key
* Possible values are: `GOOGLE_MANAGED`, `CUSTOMER_MANAGED`.
*/
@JvmName("coajjtgaepwhvuym")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs =
ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs(
kmsKeyName = kmsKeyName,
type = type,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy