com.pulumi.azurenative.synapse.kotlin.inputs.SkuArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.synapse.kotlin.inputs
import com.pulumi.azurenative.synapse.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* SQL pool SKU
* @property capacity If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
* @property name The SKU name
* @property tier The service tier
*/
public data class SkuArgs(
public val capacity: Output? = null,
public val name: Output? = null,
public val tier: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.synapse.inputs.SkuArgs =
com.pulumi.azurenative.synapse.inputs.SkuArgs.builder()
.capacity(capacity?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.tier(tier?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SkuArgs].
*/
@PulumiTagMarker
public class SkuArgsBuilder internal constructor() {
private var capacity: Output? = null
private var name: Output? = null
private var tier: Output? = null
/**
* @param value If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
*/
@JvmName("lymxoymfdrhmfcwc")
public suspend fun capacity(`value`: Output) {
this.capacity = value
}
/**
* @param value The SKU name
*/
@JvmName("lixeglnfalgixwdc")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The service tier
*/
@JvmName("efbflphhydcqlhqy")
public suspend fun tier(`value`: Output) {
this.tier = value
}
/**
* @param value If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
*/
@JvmName("hthkcqhdqqmgkmel")
public suspend fun capacity(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.capacity = mapped
}
/**
* @param value The SKU name
*/
@JvmName("kbfwwqylpvehecwl")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The service tier
*/
@JvmName("nnnbiugnfqmxrqfv")
public suspend fun tier(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tier = mapped
}
internal fun build(): SkuArgs = SkuArgs(
capacity = capacity,
name = name,
tier = tier,
)
}