All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.integrationconnectors.kotlin.inputs.ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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.ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs.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 ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs(
    public val kmsKeyName: Output? = null,
    public val type: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.integrationconnectors.inputs.ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs =
        com.pulumi.gcp.integrationconnectors.inputs.ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs.builder()
            .kmsKeyName(kmsKeyName?.applyValue({ args0 -> args0 }))
            .type(type?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs].
 */
@PulumiTagMarker
public class ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgsBuilder
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("thafgxufjelncmid")
    public suspend fun kmsKeyName(`value`: Output) {
        this.kmsKeyName = value
    }

    /**
     * @param value Type of Encryption Key
     * Possible values are: `GOOGLE_MANAGED`, `CUSTOMER_MANAGED`.
     */
    @JvmName("nuuljyvuwdjqorwb")
    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("vqnjuduicxfgfrvj")
    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("fsuxcrmfmkxiepxo")
    public suspend fun type(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.type = mapped
    }

    internal fun build(): ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs =
        ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs(
            kmsKeyName = kmsKeyName,
            type = type,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy