All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.tpu.kotlin.inputs.NodeSchedulingConfigArgs.kt Maven / Gradle / Ivy

@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.NodeSchedulingConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property preemptible Defines whether the TPU instance is preemptible.
 */
public data class NodeSchedulingConfigArgs(
    public val preemptible: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.tpu.inputs.NodeSchedulingConfigArgs =
        com.pulumi.gcp.tpu.inputs.NodeSchedulingConfigArgs.builder()
            .preemptible(preemptible.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [NodeSchedulingConfigArgs].
 */
@PulumiTagMarker
public class NodeSchedulingConfigArgsBuilder internal constructor() {
    private var preemptible: Output? = null

    /**
     * @param value Defines whether the TPU instance is preemptible.
     */
    @JvmName("rhpbyidfsfipjtek")
    public suspend fun preemptible(`value`: Output) {
        this.preemptible = value
    }

    /**
     * @param value Defines whether the TPU instance is preemptible.
     */
    @JvmName("fsruqgydtujjbfqb")
    public suspend fun preemptible(`value`: Boolean) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.preemptible = mapped
    }

    internal fun build(): NodeSchedulingConfigArgs = NodeSchedulingConfigArgs(
        preemptible = preemptible ?: throw PulumiNullFieldException("preemptible"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy