com.pulumi.kubernetes.policy.v1beta1.kotlin.inputs.IDRangePatchArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-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.kubernetes.policy.v1beta1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kubernetes.policy.v1beta1.inputs.IDRangePatchArgs.builder
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* IDRange provides a min/max of an allowed range of IDs.
* @property max max is the end of the range, inclusive.
* @property min min is the start of the range, inclusive.
*/
public data class IDRangePatchArgs(
public val max: Output? = null,
public val min: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.policy.v1beta1.inputs.IDRangePatchArgs =
com.pulumi.kubernetes.policy.v1beta1.inputs.IDRangePatchArgs.builder()
.max(max?.applyValue({ args0 -> args0 }))
.min(min?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IDRangePatchArgs].
*/
@PulumiTagMarker
public class IDRangePatchArgsBuilder internal constructor() {
private var max: Output? = null
private var min: Output? = null
/**
* @param value max is the end of the range, inclusive.
*/
@JvmName("itwuvebjygyswwoq")
public suspend fun max(`value`: Output) {
this.max = value
}
/**
* @param value min is the start of the range, inclusive.
*/
@JvmName("yueogvlfcqbnhwov")
public suspend fun min(`value`: Output) {
this.min = value
}
/**
* @param value max is the end of the range, inclusive.
*/
@JvmName("bcbhmhesyulwhvsl")
public suspend fun max(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.max = mapped
}
/**
* @param value min is the start of the range, inclusive.
*/
@JvmName("gxwfcgokntorgtkn")
public suspend fun min(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.min = mapped
}
internal fun build(): IDRangePatchArgs = IDRangePatchArgs(
max = max,
min = min,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy