com.pulumi.gcp.bigtable.kotlin.inputs.GCPolicyMaxVersionArgs.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.bigtable.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.bigtable.inputs.GCPolicyMaxVersionArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property number Number of version before applying the GC policy.
* -----
* `gc_rules` include 2 fields:
*/
public data class GCPolicyMaxVersionArgs(
public val number: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigtable.inputs.GCPolicyMaxVersionArgs =
com.pulumi.gcp.bigtable.inputs.GCPolicyMaxVersionArgs.builder()
.number(number.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [GCPolicyMaxVersionArgs].
*/
@PulumiTagMarker
public class GCPolicyMaxVersionArgsBuilder internal constructor() {
private var number: Output? = null
/**
* @param value Number of version before applying the GC policy.
* -----
* `gc_rules` include 2 fields:
*/
@JvmName("myhaluoaeorddely")
public suspend fun number(`value`: Output) {
this.number = value
}
/**
* @param value Number of version before applying the GC policy.
* -----
* `gc_rules` include 2 fields:
*/
@JvmName("ckekqkepwpedldnl")
public suspend fun number(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.number = mapped
}
internal fun build(): GCPolicyMaxVersionArgs = GCPolicyMaxVersionArgs(
number = number ?: throw PulumiNullFieldException("number"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy