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

com.pulumi.gcp.diagflow.kotlin.inputs.CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.diagflow.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.diagflow.inputs.CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property parameter Display name of the parameter.
 * @property value The new JSON-encoded value of the parameter. A null value clears the parameter.
 */
public data class CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs(
    public val parameter: Output? = null,
    public val `value`: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs =
        com.pulumi.gcp.diagflow.inputs.CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs.builder()
            .parameter(parameter?.applyValue({ args0 -> args0 }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs].
 */
@PulumiTagMarker
public class CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgsBuilder internal constructor() {
    private var parameter: Output? = null

    private var `value`: Output? = null

    /**
     * @param value Display name of the parameter.
     */
    @JvmName("yslowwdrmwshdqsy")
    public suspend fun parameter(`value`: Output) {
        this.parameter = value
    }

    /**
     * @param value The new JSON-encoded value of the parameter. A null value clears the parameter.
     */
    @JvmName("bummiytjfgdjqvmc")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

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

    /**
     * @param value The new JSON-encoded value of the parameter. A null value clears the parameter.
     */
    @JvmName("kgevfegcelhiteuk")
    public suspend fun `value`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs =
        CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs(
            parameter = parameter,
            `value` = `value`,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy