com.pulumi.azure.appplatform.kotlin.inputs.SpringCloudBuilderStackArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.appplatform.kotlin.inputs
import com.pulumi.azure.appplatform.inputs.SpringCloudBuilderStackArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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 id Specifies the ID of the ClusterStack.
* @property version Specifies the version of the ClusterStack
*/
public data class SpringCloudBuilderStackArgs(
public val id: Output,
public val version: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appplatform.inputs.SpringCloudBuilderStackArgs =
com.pulumi.azure.appplatform.inputs.SpringCloudBuilderStackArgs.builder()
.id(id.applyValue({ args0 -> args0 }))
.version(version.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpringCloudBuilderStackArgs].
*/
@PulumiTagMarker
public class SpringCloudBuilderStackArgsBuilder internal constructor() {
private var id: Output? = null
private var version: Output? = null
/**
* @param value Specifies the ID of the ClusterStack.
*/
@JvmName("ditbhjfbqmajbngi")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value Specifies the version of the ClusterStack
*/
@JvmName("qrgubrqlaiqvrkio")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value Specifies the ID of the ClusterStack.
*/
@JvmName("tdwxrnkyskcmuefx")
public suspend fun id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value Specifies the version of the ClusterStack
*/
@JvmName("prcsrpvmluvntcaq")
public suspend fun version(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): SpringCloudBuilderStackArgs = SpringCloudBuilderStackArgs(
id = id ?: throw PulumiNullFieldException("id"),
version = version ?: throw PulumiNullFieldException("version"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy