Class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2AuthorizedViewSubsetView
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::GoogleBigtableAdminV2AuthorizedViewSubsetView
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb
Overview
Defines a simple AuthorizedView that is a subset of the underlying Table.
Instance Attribute Summary collapse
-
#family_subsets ⇒ Hash<String,Google::Apis::BigtableadminV2::GoogleBigtableAdminV2AuthorizedViewFamilySubsets>
Map from column family name to the columns in this family to be included in the AuthorizedView.
-
#row_prefixes ⇒ Array<String>
Row prefixes to be included in the AuthorizedView.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleBigtableAdminV2AuthorizedViewSubsetView
constructor
A new instance of GoogleBigtableAdminV2AuthorizedViewSubsetView.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleBigtableAdminV2AuthorizedViewSubsetView
Returns a new instance of GoogleBigtableAdminV2AuthorizedViewSubsetView.
1596 1597 1598 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1596 def initialize(**args) update!(**args) end |
Instance Attribute Details
#family_subsets ⇒ Hash<String,Google::Apis::BigtableadminV2::GoogleBigtableAdminV2AuthorizedViewFamilySubsets>
Map from column family name to the columns in this family to be included in
the AuthorizedView.
Corresponds to the JSON property familySubsets
1588 1589 1590 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1588 def family_subsets @family_subsets end |
#row_prefixes ⇒ Array<String>
Row prefixes to be included in the AuthorizedView. To provide access to all
rows, include the empty string as a prefix ("").
Corresponds to the JSON property rowPrefixes
1594 1595 1596 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1594 def row_prefixes @row_prefixes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1601 1602 1603 1604 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1601 def update!(**args) @family_subsets = args[:family_subsets] if args.key?(:family_subsets) @row_prefixes = args[:row_prefixes] if args.key?(:row_prefixes) end |