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

com.pulumi.gcp.kms.kotlin.inputs.GetKeyRingIamPolicyPlainArgs.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.GetKeyRingIamPolicyPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getKeyRingIamPolicy.
 * @property keyRingId The key ring ID, in the form
 * `{project_id}/{location_name}/{key_ring_name}` or
 * `{location_name}/{key_ring_name}`. In the second form, the provider's
 * project setting will be used as a fallback.
 */
public data class GetKeyRingIamPolicyPlainArgs(
    public val keyRingId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.kms.inputs.GetKeyRingIamPolicyPlainArgs =
        com.pulumi.gcp.kms.inputs.GetKeyRingIamPolicyPlainArgs.builder()
            .keyRingId(keyRingId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetKeyRingIamPolicyPlainArgs].
 */
@PulumiTagMarker
public class GetKeyRingIamPolicyPlainArgsBuilder internal constructor() {
    private var keyRingId: String? = null

    /**
     * @param value The key ring ID, in the form
     * `{project_id}/{location_name}/{key_ring_name}` or
     * `{location_name}/{key_ring_name}`. In the second form, the provider's
     * project setting will be used as a fallback.
     */
    @JvmName("csvvqchmnyonsfip")
    public suspend fun keyRingId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.keyRingId = mapped
    }

    internal fun build(): GetKeyRingIamPolicyPlainArgs = GetKeyRingIamPolicyPlainArgs(
        keyRingId = keyRingId ?: throw PulumiNullFieldException("keyRingId"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy