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

com.pulumi.googlenative.iap.v1.kotlin.inputs.GetV1IamPolicyPlainArgs.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.iap.v1.kotlin.inputs

import com.pulumi.googlenative.iap.v1.inputs.GetV1IamPolicyPlainArgs.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

/**
 *
 * @property v1Id
 */
public data class GetV1IamPolicyPlainArgs(
    public val v1Id: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.googlenative.iap.v1.inputs.GetV1IamPolicyPlainArgs =
        com.pulumi.googlenative.iap.v1.inputs.GetV1IamPolicyPlainArgs.builder()
            .v1Id(v1Id.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetV1IamPolicyPlainArgs].
 */
@PulumiTagMarker
public class GetV1IamPolicyPlainArgsBuilder internal constructor() {
    private var v1Id: String? = null

    /**
     * @param value
     */
    @JvmName("rqoelaosgngfjnne")
    public suspend fun v1Id(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.v1Id = mapped
    }

    internal fun build(): GetV1IamPolicyPlainArgs = GetV1IamPolicyPlainArgs(
        v1Id = v1Id ?: throw PulumiNullFieldException("v1Id"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy