All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.bigtable.kotlin.inputs.AuthorizedViewSubsetViewFamilySubsetArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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>) {
        this.qualifierPrefixes = Output.all(values)
    }

    /**
     * @param value A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
     */
    @JvmName("qakavorovickojdf")
    public suspend fun qualifiers(`value`: Output>) {
        this.qualifiers = value
    }

    @JvmName("xohqoahyegopdfac")
    public suspend fun qualifiers(vararg values: Output) {
        this.qualifiers = Output.all(values.asList())
    }

    /**
     * @param values A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
     */
    @JvmName("aqacphmikgnwtprm")
    public suspend fun qualifiers(values: List>) {
        this.qualifiers = Output.all(values)
    }

    /**
     * @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("byfgiojmagljyowu")
    public suspend fun familyName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.familyName = mapped
    }

    /**
     * @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("cwnfvqkuwmhciaaa")
    public suspend fun qualifierPrefixes(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.qualifierPrefixes = mapped
    }

    /**
     * @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("juwoqgcmifdwnwmf")
    public suspend fun qualifierPrefixes(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.qualifierPrefixes = mapped
    }

    /**
     * @param value A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
     */
    @JvmName("pensqdtwciutgvyn")
    public suspend fun qualifiers(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.qualifiers = mapped
    }

    /**
     * @param values A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
     */
    @JvmName("fgcjbcecuurbwirn")
    public suspend fun qualifiers(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.qualifiers = mapped
    }

    internal fun build(): AuthorizedViewSubsetViewFamilySubsetArgs =
        AuthorizedViewSubsetViewFamilySubsetArgs(
            familyName = familyName ?: throw PulumiNullFieldException("familyName"),
            qualifierPrefixes = qualifierPrefixes,
            qualifiers = qualifiers,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy