com.pulumi.gcp.compute.kotlin.inputs.RegionInstanceTemplateReservationAffinityArgs.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.RegionInstanceTemplateReservationAffinityArgs.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..
* Structure is documented below.
* @property type The type of reservation from which this instance can consume resources.
*/
public data class RegionInstanceTemplateReservationAffinityArgs(
public val specificReservation: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.inputs.RegionInstanceTemplateReservationAffinityArgs = com.pulumi.gcp.compute.inputs.RegionInstanceTemplateReservationAffinityArgs.builder()
.specificReservation(
specificReservation?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RegionInstanceTemplateReservationAffinityArgs].
*/
@PulumiTagMarker
public class RegionInstanceTemplateReservationAffinityArgsBuilder internal constructor() {
private var specificReservation:
Output? = null
private var type: Output? = null
/**
* @param value Specifies the label selector for the reservation to use..
* Structure is documented below.
*/
@JvmName("aixmthgvbcppcctj")
public suspend fun specificReservation(`value`: Output) {
this.specificReservation = value
}
/**
* @param value The type of reservation from which this instance can consume resources.
*/
@JvmName("guxfsgsgllpivdpi")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Specifies the label selector for the reservation to use..
* Structure is documented below.
*/
@JvmName("ixhmxaqenbadheev")
public suspend fun specificReservation(`value`: RegionInstanceTemplateReservationAffinitySpecificReservationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.specificReservation = mapped
}
/**
* @param argument Specifies the label selector for the reservation to use..
* Structure is documented below.
*/
@JvmName("lyjcdgtcqgjiiomc")
public suspend fun specificReservation(argument: suspend RegionInstanceTemplateReservationAffinitySpecificReservationArgsBuilder.() -> Unit) {
val toBeMapped =
RegionInstanceTemplateReservationAffinitySpecificReservationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.specificReservation = mapped
}
/**
* @param value The type of reservation from which this instance can consume resources.
*/
@JvmName("jlatqbeipvfjudfm")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): RegionInstanceTemplateReservationAffinityArgs =
RegionInstanceTemplateReservationAffinityArgs(
specificReservation = specificReservation,
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy