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

com.pulumi.azurenative.engagementfabric.kotlin.inputs.SKUArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.engagementfabric.kotlin.inputs

import com.pulumi.azurenative.engagementfabric.inputs.SKUArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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

/**
 * The EngagementFabric SKU
 * @property name The name of the SKU
 * @property tier The price tier of the SKU
 */
public data class SKUArgs(
    public val name: Output,
    public val tier: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.engagementfabric.inputs.SKUArgs =
        com.pulumi.azurenative.engagementfabric.inputs.SKUArgs.builder()
            .name(name.applyValue({ args0 -> args0 }))
            .tier(tier?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SKUArgs].
 */
@PulumiTagMarker
public class SKUArgsBuilder internal constructor() {
    private var name: Output? = null

    private var tier: Output? = null

    /**
     * @param value The name of the SKU
     */
    @JvmName("lsdclkebxhottuwt")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The price tier of the SKU
     */
    @JvmName("iiddyxlmysibvhpk")
    public suspend fun tier(`value`: Output) {
        this.tier = value
    }

    /**
     * @param value The name of the SKU
     */
    @JvmName("kmljdwbynqoxtgke")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The price tier of the SKU
     */
    @JvmName("imuimifdexfdwcme")
    public suspend fun tier(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tier = mapped
    }

    internal fun build(): SKUArgs = SKUArgs(
        name = name ?: throw PulumiNullFieldException("name"),
        tier = tier,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy