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

com.pulumi.gcp.kms.kotlin.inputs.GetKMSCryptoKeyVersionPlainArgs.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.kms.kotlin.inputs

import com.pulumi.gcp.kms.inputs.GetKMSCryptoKeyVersionPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getKMSCryptoKeyVersion.
 * @property cryptoKey The `id` of the Google Cloud Platform CryptoKey to which the key version belongs. This is also the `id` field of the
 * `gcp.kms.CryptoKey` resource/datasource.
 * @property version The version number for this CryptoKeyVersion. Defaults to `1`.
 */
public data class GetKMSCryptoKeyVersionPlainArgs(
    public val cryptoKey: String,
    public val version: Int? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.kms.inputs.GetKMSCryptoKeyVersionPlainArgs =
        com.pulumi.gcp.kms.inputs.GetKMSCryptoKeyVersionPlainArgs.builder()
            .cryptoKey(cryptoKey.let({ args0 -> args0 }))
            .version(version?.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetKMSCryptoKeyVersionPlainArgs].
 */
@PulumiTagMarker
public class GetKMSCryptoKeyVersionPlainArgsBuilder internal constructor() {
    private var cryptoKey: String? = null

    private var version: Int? = null

    /**
     * @param value The `id` of the Google Cloud Platform CryptoKey to which the key version belongs. This is also the `id` field of the
     * `gcp.kms.CryptoKey` resource/datasource.
     */
    @JvmName("skkhjxyuiixxtmsa")
    public suspend fun cryptoKey(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.cryptoKey = mapped
    }

    /**
     * @param value The version number for this CryptoKeyVersion. Defaults to `1`.
     */
    @JvmName("ncvoyvycglhdratk")
    public suspend fun version(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.version = mapped
    }

    internal fun build(): GetKMSCryptoKeyVersionPlainArgs = GetKMSCryptoKeyVersionPlainArgs(
        cryptoKey = cryptoKey ?: throw PulumiNullFieldException("cryptoKey"),
        version = version,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy