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

com.pulumi.azure.network.kotlin.inputs.ExpressRouteCircuitSkuArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.inputs

import com.pulumi.azure.network.inputs.ExpressRouteCircuitSkuArgs.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

/**
 *
 * @property family The billing mode for bandwidth. Possible values are `MeteredData` or `UnlimitedData`.
 * > **NOTE:** You can migrate from `MeteredData` to `UnlimitedData`, but not the other way around.
 * @property tier The service tier. Possible values are `Basic`, `Local`, `Standard` or `Premium`.
 */
public data class ExpressRouteCircuitSkuArgs(
    public val family: Output,
    public val tier: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.network.inputs.ExpressRouteCircuitSkuArgs =
        com.pulumi.azure.network.inputs.ExpressRouteCircuitSkuArgs.builder()
            .family(family.applyValue({ args0 -> args0 }))
            .tier(tier.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ExpressRouteCircuitSkuArgs].
 */
@PulumiTagMarker
public class ExpressRouteCircuitSkuArgsBuilder internal constructor() {
    private var family: Output? = null

    private var tier: Output? = null

    /**
     * @param value The billing mode for bandwidth. Possible values are `MeteredData` or `UnlimitedData`.
     * > **NOTE:** You can migrate from `MeteredData` to `UnlimitedData`, but not the other way around.
     */
    @JvmName("qfcalfcyvhphanvd")
    public suspend fun family(`value`: Output) {
        this.family = value
    }

    /**
     * @param value The service tier. Possible values are `Basic`, `Local`, `Standard` or `Premium`.
     */
    @JvmName("busosvfclogxutnx")
    public suspend fun tier(`value`: Output) {
        this.tier = value
    }

    /**
     * @param value The billing mode for bandwidth. Possible values are `MeteredData` or `UnlimitedData`.
     * > **NOTE:** You can migrate from `MeteredData` to `UnlimitedData`, but not the other way around.
     */
    @JvmName("sglpggxmicjywvhr")
    public suspend fun family(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.family = mapped
    }

    /**
     * @param value The service tier. Possible values are `Basic`, `Local`, `Standard` or `Premium`.
     */
    @JvmName("dnlcbvvfnewinyow")
    public suspend fun tier(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tier = mapped
    }

    internal fun build(): ExpressRouteCircuitSkuArgs = ExpressRouteCircuitSkuArgs(
        family = family ?: throw PulumiNullFieldException("family"),
        tier = tier ?: throw PulumiNullFieldException("tier"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy