com.pulumi.gcp.bigtable.kotlin.outputs.GCPolicyMaxVersion.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.bigtable.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property number Number of version before applying the GC policy.
* -----
* `gc_rules` include 2 fields:
*/
public data class GCPolicyMaxVersion(
public val number: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigtable.outputs.GCPolicyMaxVersion): GCPolicyMaxVersion = GCPolicyMaxVersion(
number = javaType.number(),
)
}
}