com.pulumi.azure.billing.kotlin.inputs.GetMpaAccountScopePlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.billing.kotlin.inputs
import com.pulumi.azure.billing.inputs.GetMpaAccountScopePlainArgs.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 getMpaAccountScope.
* @property billingAccountName The Billing Account Name of the MPA account.
* @property customerName The Customer Name in the above Billing Account.
*/
public data class GetMpaAccountScopePlainArgs(
public val billingAccountName: String,
public val customerName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.billing.inputs.GetMpaAccountScopePlainArgs =
com.pulumi.azure.billing.inputs.GetMpaAccountScopePlainArgs.builder()
.billingAccountName(billingAccountName.let({ args0 -> args0 }))
.customerName(customerName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetMpaAccountScopePlainArgs].
*/
@PulumiTagMarker
public class GetMpaAccountScopePlainArgsBuilder internal constructor() {
private var billingAccountName: String? = null
private var customerName: String? = null
/**
* @param value The Billing Account Name of the MPA account.
*/
@JvmName("oagofrdhdhaqonyf")
public suspend fun billingAccountName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.billingAccountName = mapped
}
/**
* @param value The Customer Name in the above Billing Account.
*/
@JvmName("tgbbetwqmnsxiguk")
public suspend fun customerName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.customerName = mapped
}
internal fun build(): GetMpaAccountScopePlainArgs = GetMpaAccountScopePlainArgs(
billingAccountName = billingAccountName ?: throw PulumiNullFieldException("billingAccountName"),
customerName = customerName ?: throw PulumiNullFieldException("customerName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy