![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.SkuArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.SkuArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Any
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The pricing tier of the web application firewall policy.
* @property name Name of the pricing tier.
*/
public data class SkuArgs(
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.SkuArgs =
com.pulumi.azurenative.network.inputs.SkuArgs.builder()
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SkuArgs].
*/
@PulumiTagMarker
public class SkuArgsBuilder internal constructor() {
private var name: Output? = null
/**
* @param value Name of the pricing tier.
*/
@JvmName("vjwckkhlaspgbrjx")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Name of the pricing tier.
*/
@JvmName("apsxreotbrjfqvlp")
public suspend fun name(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): SkuArgs = SkuArgs(
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy