com.pulumi.gcp.bigtable.kotlin.inputs.AuthorizedViewSubsetViewFamilySubsetArgs.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.AuthorizedViewSubsetViewFamilySubsetArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property familyName Name of the column family to be included in the authorized view. The specified column family must exist in the parent table of this authorized view.
* @property qualifierPrefixes A list of Base64-encoded prefixes for qualifiers of the column family to be included in the authorized view.
* Every qualifier starting with one of these prefixes is included in the authorized view. To provide access to all qualifiers, include the empty string as a prefix ("").
* @property qualifiers A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
*/
public data class AuthorizedViewSubsetViewFamilySubsetArgs(
public val familyName: Output,
public val qualifierPrefixes: Output>? = null,
public val qualifiers: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigtable.inputs.AuthorizedViewSubsetViewFamilySubsetArgs =
com.pulumi.gcp.bigtable.inputs.AuthorizedViewSubsetViewFamilySubsetArgs.builder()
.familyName(familyName.applyValue({ args0 -> args0 }))
.qualifierPrefixes(qualifierPrefixes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.qualifiers(qualifiers?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AuthorizedViewSubsetViewFamilySubsetArgs].
*/
@PulumiTagMarker
public class AuthorizedViewSubsetViewFamilySubsetArgsBuilder internal constructor() {
private var familyName: Output? = null
private var qualifierPrefixes: Output>? = null
private var qualifiers: Output>? = null
/**
* @param value Name of the column family to be included in the authorized view. The specified column family must exist in the parent table of this authorized view.
*/
@JvmName("vdimxsgldqgdhmto")
public suspend fun familyName(`value`: Output) {
this.familyName = value
}
/**
* @param value A list of Base64-encoded prefixes for qualifiers of the column family to be included in the authorized view.
* Every qualifier starting with one of these prefixes is included in the authorized view. To provide access to all qualifiers, include the empty string as a prefix ("").
*/
@JvmName("mgpqmscmlokvmjac")
public suspend fun qualifierPrefixes(`value`: Output>) {
this.qualifierPrefixes = value
}
@JvmName("reygmkxoycihjrfm")
public suspend fun qualifierPrefixes(vararg values: Output) {
this.qualifierPrefixes = Output.all(values.asList())
}
/**
* @param values A list of Base64-encoded prefixes for qualifiers of the column family to be included in the authorized view.
* Every qualifier starting with one of these prefixes is included in the authorized view. To provide access to all qualifiers, include the empty string as a prefix ("").
*/
@JvmName("rqkvfhyvwbgkhsnu")
public suspend fun qualifierPrefixes(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy