
com.pulumi.googlenative.dataflow.v1b3.kotlin.inputs.SdkVersionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.dataflow.v1b3.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.dataflow.v1b3.inputs.SdkVersionArgs.builder
import com.pulumi.googlenative.dataflow.v1b3.kotlin.enums.SdkVersionSdkSupportStatus
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The version of the SDK used to run the job.
* @property sdkSupportStatus The support status for this SDK version.
* @property version The version of the SDK used to run the job.
* @property versionDisplayName A readable string describing the version of the SDK.
*/
public data class SdkVersionArgs(
public val sdkSupportStatus: Output? = null,
public val version: Output? = null,
public val versionDisplayName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.dataflow.v1b3.inputs.SdkVersionArgs =
com.pulumi.googlenative.dataflow.v1b3.inputs.SdkVersionArgs.builder()
.sdkSupportStatus(sdkSupportStatus?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.version(version?.applyValue({ args0 -> args0 }))
.versionDisplayName(versionDisplayName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SdkVersionArgs].
*/
@PulumiTagMarker
public class SdkVersionArgsBuilder internal constructor() {
private var sdkSupportStatus: Output? = null
private var version: Output? = null
private var versionDisplayName: Output? = null
/**
* @param value The support status for this SDK version.
*/
@JvmName("fhmuuawdpegxwefn")
public suspend fun sdkSupportStatus(`value`: Output) {
this.sdkSupportStatus = value
}
/**
* @param value The version of the SDK used to run the job.
*/
@JvmName("xhapknoykyccvlxr")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value A readable string describing the version of the SDK.
*/
@JvmName("qwsdgpxkahlhwyed")
public suspend fun versionDisplayName(`value`: Output) {
this.versionDisplayName = value
}
/**
* @param value The support status for this SDK version.
*/
@JvmName("qbgwqmbojhbxyruj")
public suspend fun sdkSupportStatus(`value`: SdkVersionSdkSupportStatus?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sdkSupportStatus = mapped
}
/**
* @param value The version of the SDK used to run the job.
*/
@JvmName("meegnvxjdtfilver")
public suspend fun version(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.version = mapped
}
/**
* @param value A readable string describing the version of the SDK.
*/
@JvmName("tobtqnjftndvrusv")
public suspend fun versionDisplayName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.versionDisplayName = mapped
}
internal fun build(): SdkVersionArgs = SdkVersionArgs(
sdkSupportStatus = sdkSupportStatus,
version = version,
versionDisplayName = versionDisplayName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy