com.pulumi.gcp.pubsub.kotlin.inputs.LiteTopicReservationConfigArgs.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.pubsub.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.pubsub.inputs.LiteTopicReservationConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property throughputReservation The Reservation to use for this topic's throughput capacity.
*/
public data class LiteTopicReservationConfigArgs(
public val throughputReservation: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.pubsub.inputs.LiteTopicReservationConfigArgs =
com.pulumi.gcp.pubsub.inputs.LiteTopicReservationConfigArgs.builder()
.throughputReservation(throughputReservation?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LiteTopicReservationConfigArgs].
*/
@PulumiTagMarker
public class LiteTopicReservationConfigArgsBuilder internal constructor() {
private var throughputReservation: Output? = null
/**
* @param value The Reservation to use for this topic's throughput capacity.
*/
@JvmName("vxgjmuwyjjxklhih")
public suspend fun throughputReservation(`value`: Output) {
this.throughputReservation = value
}
/**
* @param value The Reservation to use for this topic's throughput capacity.
*/
@JvmName("cucucakoswrsegxc")
public suspend fun throughputReservation(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.throughputReservation = mapped
}
internal fun build(): LiteTopicReservationConfigArgs = LiteTopicReservationConfigArgs(
throughputReservation = throughputReservation,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy