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

com.pulumi.azurenative.web.kotlin.inputs.CapabilityArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.web.kotlin.inputs

import com.pulumi.azurenative.web.inputs.CapabilityArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Describes the capabilities/features allowed for a specific SKU.
 * @property name Name of the SKU capability.
 * @property reason Reason of the SKU capability.
 * @property value Value of the SKU capability.
 */
public data class CapabilityArgs(
    public val name: Output? = null,
    public val reason: Output? = null,
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.web.inputs.CapabilityArgs =
        com.pulumi.azurenative.web.inputs.CapabilityArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .reason(reason?.applyValue({ args0 -> args0 }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

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

    private var reason: Output? = null

    private var `value`: Output? = null

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

    /**
     * @param value Reason of the SKU capability.
     */
    @JvmName("cawrnosthjnwmgix")
    public suspend fun reason(`value`: Output) {
        this.reason = value
    }

    /**
     * @param value Value of the SKU capability.
     */
    @JvmName("mwjrogcjbxlowudo")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

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

    /**
     * @param value Reason of the SKU capability.
     */
    @JvmName("bhwhiaannebpppca")
    public suspend fun reason(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.reason = mapped
    }

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

    internal fun build(): CapabilityArgs = CapabilityArgs(
        name = name,
        reason = reason,
        `value` = `value`,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy