
com.pulumi.gcp.bigtable.kotlin.inputs.TableColumnFamilyArgs.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.TableColumnFamilyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property family The name of the column family.
*/
public data class TableColumnFamilyArgs(
public val family: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigtable.inputs.TableColumnFamilyArgs =
com.pulumi.gcp.bigtable.inputs.TableColumnFamilyArgs.builder()
.family(family.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TableColumnFamilyArgs].
*/
@PulumiTagMarker
public class TableColumnFamilyArgsBuilder internal constructor() {
private var family: Output? = null
/**
* @param value The name of the column family.
*/
@JvmName("srjoptwgshttxrpa")
public suspend fun family(`value`: Output) {
this.family = value
}
/**
* @param value The name of the column family.
*/
@JvmName("xglipwdwnpaeuxqv")
public suspend fun family(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.family = mapped
}
internal fun build(): TableColumnFamilyArgs = TableColumnFamilyArgs(
family = family ?: throw PulumiNullFieldException("family"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy