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

com.pulumi.gcp.billing.kotlin.inputs.GetAccountIamPolicyPlainArgs.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.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.billing.kotlin.inputs

import com.pulumi.gcp.billing.inputs.GetAccountIamPolicyPlainArgs.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 getAccountIamPolicy.
 * @property billingAccountId The billing account id.
 */
public data class GetAccountIamPolicyPlainArgs(
    public val billingAccountId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.billing.inputs.GetAccountIamPolicyPlainArgs =
        com.pulumi.gcp.billing.inputs.GetAccountIamPolicyPlainArgs.builder()
            .billingAccountId(billingAccountId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetAccountIamPolicyPlainArgs].
 */
@PulumiTagMarker
public class GetAccountIamPolicyPlainArgsBuilder internal constructor() {
    private var billingAccountId: String? = null

    /**
     * @param value The billing account id.
     */
    @JvmName("hgsdowahqfjcydtc")
    public suspend fun billingAccountId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.billingAccountId = mapped
    }

    internal fun build(): GetAccountIamPolicyPlainArgs = GetAccountIamPolicyPlainArgs(
        billingAccountId = billingAccountId ?: throw PulumiNullFieldException("billingAccountId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy