
com.pulumi.azurenative.customerinsights.kotlin.inputs.HubBillingInfoFormatArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.customerinsights.kotlin.inputs
import com.pulumi.azurenative.customerinsights.inputs.HubBillingInfoFormatArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Hub billing info.
* @property maxUnits The maximum number of units can be used. One unit is 10,000 Profiles and 100,000 Interactions.
* @property minUnits The minimum number of units will be billed. One unit is 10,000 Profiles and 100,000 Interactions.
* @property skuName The sku name.
*/
public data class HubBillingInfoFormatArgs(
public val maxUnits: Output? = null,
public val minUnits: Output? = null,
public val skuName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.customerinsights.inputs.HubBillingInfoFormatArgs =
com.pulumi.azurenative.customerinsights.inputs.HubBillingInfoFormatArgs.builder()
.maxUnits(maxUnits?.applyValue({ args0 -> args0 }))
.minUnits(minUnits?.applyValue({ args0 -> args0 }))
.skuName(skuName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HubBillingInfoFormatArgs].
*/
@PulumiTagMarker
public class HubBillingInfoFormatArgsBuilder internal constructor() {
private var maxUnits: Output? = null
private var minUnits: Output? = null
private var skuName: Output? = null
/**
* @param value The maximum number of units can be used. One unit is 10,000 Profiles and 100,000 Interactions.
*/
@JvmName("bqwofqxkdelucwyw")
public suspend fun maxUnits(`value`: Output) {
this.maxUnits = value
}
/**
* @param value The minimum number of units will be billed. One unit is 10,000 Profiles and 100,000 Interactions.
*/
@JvmName("gcjduoxtiwmdbuyg")
public suspend fun minUnits(`value`: Output) {
this.minUnits = value
}
/**
* @param value The sku name.
*/
@JvmName("ulbxjjuooqvlrumo")
public suspend fun skuName(`value`: Output) {
this.skuName = value
}
/**
* @param value The maximum number of units can be used. One unit is 10,000 Profiles and 100,000 Interactions.
*/
@JvmName("eohxgeivpafaxgkw")
public suspend fun maxUnits(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.maxUnits = mapped
}
/**
* @param value The minimum number of units will be billed. One unit is 10,000 Profiles and 100,000 Interactions.
*/
@JvmName("kpkfroywwnbnutbg")
public suspend fun minUnits(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.minUnits = mapped
}
/**
* @param value The sku name.
*/
@JvmName("nfwkubgfkneoagxm")
public suspend fun skuName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.skuName = mapped
}
internal fun build(): HubBillingInfoFormatArgs = HubBillingInfoFormatArgs(
maxUnits = maxUnits,
minUnits = minUnits,
skuName = skuName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy