com.pulumi.gcp.bigtable.kotlin.outputs.AuthorizedViewSubsetViewFamilySubset.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 AuthorizedViewSubsetViewFamilySubset(
public val familyName: String,
public val qualifierPrefixes: List? = null,
public val qualifiers: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigtable.outputs.AuthorizedViewSubsetViewFamilySubset): AuthorizedViewSubsetViewFamilySubset = AuthorizedViewSubsetViewFamilySubset(
familyName = javaType.familyName(),
qualifierPrefixes = javaType.qualifierPrefixes().map({ args0 -> args0 }),
qualifiers = javaType.qualifiers().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy