
com.pulumi.googlenative.compute.v1.kotlin.inputs.Int64RangeMatchArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.compute.v1.inputs.Int64RangeMatchArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* HttpRouteRuleMatch criteria for field values that must stay within the specified integer range.
* @property rangeEnd The end of the range (exclusive) in signed long integer format.
* @property rangeStart The start of the range (inclusive) in signed long integer format.
*/
public data class Int64RangeMatchArgs(
public val rangeEnd: Output? = null,
public val rangeStart: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.compute.v1.inputs.Int64RangeMatchArgs =
com.pulumi.googlenative.compute.v1.inputs.Int64RangeMatchArgs.builder()
.rangeEnd(rangeEnd?.applyValue({ args0 -> args0 }))
.rangeStart(rangeStart?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [Int64RangeMatchArgs].
*/
@PulumiTagMarker
public class Int64RangeMatchArgsBuilder internal constructor() {
private var rangeEnd: Output? = null
private var rangeStart: Output? = null
/**
* @param value The end of the range (exclusive) in signed long integer format.
*/
@JvmName("wsnkhwssweqhccxg")
public suspend fun rangeEnd(`value`: Output) {
this.rangeEnd = value
}
/**
* @param value The start of the range (inclusive) in signed long integer format.
*/
@JvmName("kjbqjbvjvglbjodv")
public suspend fun rangeStart(`value`: Output) {
this.rangeStart = value
}
/**
* @param value The end of the range (exclusive) in signed long integer format.
*/
@JvmName("sbjykawkryncftaq")
public suspend fun rangeEnd(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.rangeEnd = mapped
}
/**
* @param value The start of the range (inclusive) in signed long integer format.
*/
@JvmName("bquvpiumbqhsjjjg")
public suspend fun rangeStart(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.rangeStart = mapped
}
internal fun build(): Int64RangeMatchArgs = Int64RangeMatchArgs(
rangeEnd = rangeEnd,
rangeStart = rangeStart,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy