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

com.pulumi.gcp.compute.kotlin.inputs.InstanceFromMachineImageReservationAffinityArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.InstanceFromMachineImageReservationAffinityArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property specificReservation Specifies the label selector for the reservation to use.
 * @property type The type of reservation from which this instance can consume resources.
 */
public data class InstanceFromMachineImageReservationAffinityArgs(
    public val specificReservation: Output? = null,
    public val type: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.InstanceFromMachineImageReservationAffinityArgs =
        com.pulumi.gcp.compute.inputs.InstanceFromMachineImageReservationAffinityArgs.builder()
            .specificReservation(
                specificReservation?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .type(type.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InstanceFromMachineImageReservationAffinityArgs].
 */
@PulumiTagMarker
public class InstanceFromMachineImageReservationAffinityArgsBuilder internal constructor() {
    private var specificReservation:
        Output? = null

    private var type: Output? = null

    /**
     * @param value Specifies the label selector for the reservation to use.
     */
    @JvmName("qcpdqikaidttjbbw")
    public suspend fun specificReservation(`value`: Output) {
        this.specificReservation = value
    }

    /**
     * @param value The type of reservation from which this instance can consume resources.
     */
    @JvmName("cxkhgemtmxfaqfel")
    public suspend fun type(`value`: Output) {
        this.type = value
    }

    /**
     * @param value Specifies the label selector for the reservation to use.
     */
    @JvmName("jbvwcigquxalfegg")
    public suspend fun specificReservation(`value`: InstanceFromMachineImageReservationAffinitySpecificReservationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.specificReservation = mapped
    }

    /**
     * @param argument Specifies the label selector for the reservation to use.
     */
    @JvmName("duwijmiifhcomhxb")
    public suspend fun specificReservation(argument: suspend InstanceFromMachineImageReservationAffinitySpecificReservationArgsBuilder.() -> Unit) {
        val toBeMapped =
            InstanceFromMachineImageReservationAffinitySpecificReservationArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.specificReservation = mapped
    }

    /**
     * @param value The type of reservation from which this instance can consume resources.
     */
    @JvmName("gkwetttipduydqod")
    public suspend fun type(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.type = mapped
    }

    internal fun build(): InstanceFromMachineImageReservationAffinityArgs =
        InstanceFromMachineImageReservationAffinityArgs(
            specificReservation = specificReservation,
            type = type ?: throw PulumiNullFieldException("type"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy