com.pulumi.gcp.diagflow.kotlin.inputs.CxEnvironmentVersionConfigArgs.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.CxEnvironmentVersionConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property version Format: projects/{{project}}/locations/{{location}}/agents/{{agent}}/flows/{{flow}}/versions/{{version}}.
* - - -
*/
public data class CxEnvironmentVersionConfigArgs(
public val version: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxEnvironmentVersionConfigArgs =
com.pulumi.gcp.diagflow.inputs.CxEnvironmentVersionConfigArgs.builder()
.version(version.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CxEnvironmentVersionConfigArgs].
*/
@PulumiTagMarker
public class CxEnvironmentVersionConfigArgsBuilder internal constructor() {
private var version: Output? = null
/**
* @param value Format: projects/{{project}}/locations/{{location}}/agents/{{agent}}/flows/{{flow}}/versions/{{version}}.
* - - -
*/
@JvmName("sywgfmkediniscls")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value Format: projects/{{project}}/locations/{{location}}/agents/{{agent}}/flows/{{flow}}/versions/{{version}}.
* - - -
*/
@JvmName("vrscjgtefflhxanf")
public suspend fun version(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): CxEnvironmentVersionConfigArgs = CxEnvironmentVersionConfigArgs(
version = version ?: throw PulumiNullFieldException("version"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy