com.pulumi.gcp.diagflow.kotlin.inputs.CxPageEntryFulfillmentSetParameterActionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.diagflow.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.diagflow.inputs.CxPageEntryFulfillmentSetParameterActionArgs.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 CxPageEntryFulfillmentSetParameterActionArgs(
public val parameter: Output? = null,
public val `value`: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxPageEntryFulfillmentSetParameterActionArgs = com.pulumi.gcp.diagflow.inputs.CxPageEntryFulfillmentSetParameterActionArgs.builder()
.parameter(parameter?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CxPageEntryFulfillmentSetParameterActionArgs].
*/
@PulumiTagMarker
public class CxPageEntryFulfillmentSetParameterActionArgsBuilder internal constructor() {
private var parameter: Output? = null
private var `value`: Output? = null
/**
* @param value Display name of the parameter.
*/
@JvmName("kbtrngqpopuqvulh")
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("pesymfheiluleusx")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value Display name of the parameter.
*/
@JvmName("eqncqxefydgsyvqu")
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("raeefplvackkbtdp")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): CxPageEntryFulfillmentSetParameterActionArgs =
CxPageEntryFulfillmentSetParameterActionArgs(
parameter = parameter,
`value` = `value`,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy