com.pulumi.gcp.bigtable.kotlin.outputs.AuthorizedViewSubsetView.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 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 AuthorizedViewSubsetView(
public val familySubsets: List? = null,
public val rowPrefixes: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigtable.outputs.AuthorizedViewSubsetView): AuthorizedViewSubsetView = AuthorizedViewSubsetView(
familySubsets = javaType.familySubsets().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.bigtable.kotlin.outputs.AuthorizedViewSubsetViewFamilySubset.Companion.toKotlin(args0)
})
}),
rowPrefixes = javaType.rowPrefixes().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy