com.pulumi.gcp.bigtable.kotlin.inputs.AuthorizedViewSubsetViewArgs.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.AuthorizedViewSubsetViewArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property familySubsets A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
* -----
* @property rowPrefixes A list of Base64-encoded row prefixes to be included in the authorized view. To provide access to all rows, include the empty string as a prefix ("").
*/
public data class AuthorizedViewSubsetViewArgs(
public val familySubsets: Output>? = null,
public val rowPrefixes: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigtable.inputs.AuthorizedViewSubsetViewArgs =
com.pulumi.gcp.bigtable.inputs.AuthorizedViewSubsetViewArgs.builder()
.familySubsets(
familySubsets?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.rowPrefixes(rowPrefixes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AuthorizedViewSubsetViewArgs].
*/
@PulumiTagMarker
public class AuthorizedViewSubsetViewArgsBuilder internal constructor() {
private var familySubsets: Output>? = null
private var rowPrefixes: Output>? = null
/**
* @param value A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
* -----
*/
@JvmName("rxlsbncrbhhwqwsh")
public suspend fun familySubsets(`value`: Output>) {
this.familySubsets = value
}
@JvmName("mwehpegfecreuvvt")
public suspend fun familySubsets(vararg values: Output) {
this.familySubsets = Output.all(values.asList())
}
/**
* @param values A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
* -----
*/
@JvmName("pbauwaxufqombdrr")
public suspend fun familySubsets(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy