com.pulumi.gcp.compute.kotlin.inputs.InstanceFromTemplateReservationAffinityArgs.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.compute.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.InstanceFromTemplateReservationAffinityArgs.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 InstanceFromTemplateReservationAffinityArgs(
public val specificReservation: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.inputs.InstanceFromTemplateReservationAffinityArgs =
com.pulumi.gcp.compute.inputs.InstanceFromTemplateReservationAffinityArgs.builder()
.specificReservation(
specificReservation?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [InstanceFromTemplateReservationAffinityArgs].
*/
@PulumiTagMarker
public class InstanceFromTemplateReservationAffinityArgsBuilder internal constructor() {
private var specificReservation:
Output? = null
private var type: Output? = null
/**
* @param value Specifies the label selector for the reservation to use.
*/
@JvmName("dfcedfwjecmefpwd")
public suspend fun specificReservation(`value`: Output) {
this.specificReservation = value
}
/**
* @param value The type of reservation from which this instance can consume resources.
*/
@JvmName("jjtcmbosaaegimrq")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Specifies the label selector for the reservation to use.
*/
@JvmName("ribriyhtxlnukluo")
public suspend fun specificReservation(`value`: InstanceFromTemplateReservationAffinitySpecificReservationArgs?) {
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("gpdrduamomfxsniw")
public suspend fun specificReservation(argument: suspend InstanceFromTemplateReservationAffinitySpecificReservationArgsBuilder.() -> Unit) {
val toBeMapped =
InstanceFromTemplateReservationAffinitySpecificReservationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.specificReservation = mapped
}
/**
* @param value The type of reservation from which this instance can consume resources.
*/
@JvmName("swewbabufdwyqlpa")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): InstanceFromTemplateReservationAffinityArgs =
InstanceFromTemplateReservationAffinityArgs(
specificReservation = specificReservation,
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy