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

com.pulumi.googlenative.bigtableadmin.v2.kotlin.inputs.GetInstanceTableIamPolicyPlainArgs.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.bigtableadmin.v2.kotlin.inputs

import com.pulumi.googlenative.bigtableadmin.v2.inputs.GetInstanceTableIamPolicyPlainArgs.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 instanceId
 * @property project
 * @property tableId
 */
public data class GetInstanceTableIamPolicyPlainArgs(
    public val instanceId: String,
    public val project: String? = null,
    public val tableId: String,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.googlenative.bigtableadmin.v2.inputs.GetInstanceTableIamPolicyPlainArgs =
        com.pulumi.googlenative.bigtableadmin.v2.inputs.GetInstanceTableIamPolicyPlainArgs.builder()
            .instanceId(instanceId.let({ args0 -> args0 }))
            .project(project?.let({ args0 -> args0 }))
            .tableId(tableId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetInstanceTableIamPolicyPlainArgs].
 */
@PulumiTagMarker
public class GetInstanceTableIamPolicyPlainArgsBuilder internal constructor() {
    private var instanceId: String? = null

    private var project: String? = null

    private var tableId: String? = null

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

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

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

    internal fun build(): GetInstanceTableIamPolicyPlainArgs = GetInstanceTableIamPolicyPlainArgs(
        instanceId = instanceId ?: throw PulumiNullFieldException("instanceId"),
        project = project,
        tableId = tableId ?: throw PulumiNullFieldException("tableId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy