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

com.pulumi.azure.billing.kotlin.inputs.GetMcaAccountScopePlainArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.billing.kotlin.inputs

import com.pulumi.azure.billing.inputs.GetMcaAccountScopePlainArgs.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 getMcaAccountScope.
 * @property billingAccountName The Billing Account Name of the MCA account.
 * @property billingProfileName The Billing Profile Name in the above Billing Account.
 * @property invoiceSectionName The Invoice Section Name in the above Billing Profile.
 */
public data class GetMcaAccountScopePlainArgs(
    public val billingAccountName: String,
    public val billingProfileName: String,
    public val invoiceSectionName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.billing.inputs.GetMcaAccountScopePlainArgs =
        com.pulumi.azure.billing.inputs.GetMcaAccountScopePlainArgs.builder()
            .billingAccountName(billingAccountName.let({ args0 -> args0 }))
            .billingProfileName(billingProfileName.let({ args0 -> args0 }))
            .invoiceSectionName(invoiceSectionName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetMcaAccountScopePlainArgs].
 */
@PulumiTagMarker
public class GetMcaAccountScopePlainArgsBuilder internal constructor() {
    private var billingAccountName: String? = null

    private var billingProfileName: String? = null

    private var invoiceSectionName: String? = null

    /**
     * @param value The Billing Account Name of the MCA account.
     */
    @JvmName("purcychavkdpyjvf")
    public suspend fun billingAccountName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.billingAccountName = mapped
    }

    /**
     * @param value The Billing Profile Name in the above Billing Account.
     */
    @JvmName("pqailjkqhbohiumt")
    public suspend fun billingProfileName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.billingProfileName = mapped
    }

    /**
     * @param value The Invoice Section Name in the above Billing Profile.
     */
    @JvmName("dlcrrmufjgakidvi")
    public suspend fun invoiceSectionName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.invoiceSectionName = mapped
    }

    internal fun build(): GetMcaAccountScopePlainArgs = GetMcaAccountScopePlainArgs(
        billingAccountName = billingAccountName ?: throw PulumiNullFieldException("billingAccountName"),
        billingProfileName = billingProfileName ?: throw PulumiNullFieldException("billingProfileName"),
        invoiceSectionName = invoiceSectionName ?: throw PulumiNullFieldException("invoiceSectionName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy