com.pulumi.alicloud.ess.kotlin.inputs.EciScalingConfigurationContainerEnvironmentVarArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-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.alicloud.ess.kotlin.inputs
import com.pulumi.alicloud.ess.inputs.EciScalingConfigurationContainerEnvironmentVarArgs.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
/**
*
* @property fieldRefFieldPath
* @property key
* @property value
*/
public data class EciScalingConfigurationContainerEnvironmentVarArgs(
public val fieldRefFieldPath: Output? = null,
public val key: Output? = null,
public val `value`: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.alicloud.ess.inputs.EciScalingConfigurationContainerEnvironmentVarArgs =
com.pulumi.alicloud.ess.inputs.EciScalingConfigurationContainerEnvironmentVarArgs.builder()
.fieldRefFieldPath(fieldRefFieldPath?.applyValue({ args0 -> args0 }))
.key(key?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EciScalingConfigurationContainerEnvironmentVarArgs].
*/
@PulumiTagMarker
public class EciScalingConfigurationContainerEnvironmentVarArgsBuilder internal constructor() {
private var fieldRefFieldPath: Output? = null
private var key: Output? = null
private var `value`: Output? = null
/**
* @param value
*/
@JvmName("wpmdofryfuirltce")
public suspend fun fieldRefFieldPath(`value`: Output) {
this.fieldRefFieldPath = value
}
/**
* @param value
*/
@JvmName("renvtmmrvgofueos")
public suspend fun key(`value`: Output) {
this.key = value
}
/**
* @param value
*/
@JvmName("tqtuvhyayruffhjp")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value
*/
@JvmName("pvuorsdgvcmcogyy")
public suspend fun fieldRefFieldPath(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fieldRefFieldPath = mapped
}
/**
* @param value
*/
@JvmName("elbkmoskyxtmpjaf")
public suspend fun key(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.key = mapped
}
/**
* @param value
*/
@JvmName("bquahiqkkyxbafuo")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): EciScalingConfigurationContainerEnvironmentVarArgs =
EciScalingConfigurationContainerEnvironmentVarArgs(
fieldRefFieldPath = fieldRefFieldPath,
key = key,
`value` = `value`,
)
}