com.pulumi.gcp.tpu.kotlin.inputs.V2VmSchedulingConfigArgs.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.tpu.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.tpu.inputs.V2VmSchedulingConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property preemptible Defines whether the node is preemptible.
* @property reserved Whether the node is created under a reservation.
*/
public data class V2VmSchedulingConfigArgs(
public val preemptible: Output? = null,
public val reserved: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.tpu.inputs.V2VmSchedulingConfigArgs =
com.pulumi.gcp.tpu.inputs.V2VmSchedulingConfigArgs.builder()
.preemptible(preemptible?.applyValue({ args0 -> args0 }))
.reserved(reserved?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [V2VmSchedulingConfigArgs].
*/
@PulumiTagMarker
public class V2VmSchedulingConfigArgsBuilder internal constructor() {
private var preemptible: Output? = null
private var reserved: Output? = null
/**
* @param value Defines whether the node is preemptible.
*/
@JvmName("bllspecnbcagjucu")
public suspend fun preemptible(`value`: Output) {
this.preemptible = value
}
/**
* @param value Whether the node is created under a reservation.
*/
@JvmName("orituwgdbttoxtbl")
public suspend fun reserved(`value`: Output) {
this.reserved = value
}
/**
* @param value Defines whether the node is preemptible.
*/
@JvmName("qnphddotvqvmhwkm")
public suspend fun preemptible(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.preemptible = mapped
}
/**
* @param value Whether the node is created under a reservation.
*/
@JvmName("gkwhmjnylwhkhilx")
public suspend fun reserved(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.reserved = mapped
}
internal fun build(): V2VmSchedulingConfigArgs = V2VmSchedulingConfigArgs(
preemptible = preemptible,
reserved = reserved,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy