Class: Google::Cloud::Bigtable::Admin::V2::AuthorizedView
- Inherits:
-
Object
- Object
- Google::Cloud::Bigtable::Admin::V2::AuthorizedView
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/bigtable/admin/v2/table.rb
Overview
AuthorizedViews represent subsets of a particular Cloud Bigtable table. Users can configure access to each Authorized View independently from the table and use the existing Data APIs to access the subset of data.
Defined Under Namespace
Modules: ResponseView Classes: FamilySubsets, SubsetView
Instance Attribute Summary collapse
-
#deletion_protection ⇒ ::Boolean
Set to true to make the AuthorizedView protected against deletion.
-
#etag ⇒ ::String
The etag for this AuthorizedView.
-
#name ⇒ ::String
Identifier.
-
#subset_view ⇒ ::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::SubsetView
An AuthorizedView permitting access to an explicit subset of a Table.
Instance Attribute Details
#deletion_protection ⇒ ::Boolean
Returns Set to true to make the AuthorizedView protected against deletion. The parent Table and containing Instance cannot be deleted if an AuthorizedView has this bit set.
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'proto_docs/google/bigtable/admin/v2/table.rb', line 234 class AuthorizedView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Subsets of a column family that are included in this AuthorizedView. # @!attribute [rw] qualifiers # @return [::Array<::String>] # Individual exact column qualifiers to be included in the AuthorizedView. # @!attribute [rw] qualifier_prefixes # @return [::Array<::String>] # Prefixes for qualifiers to be included in the AuthorizedView. Every # qualifier starting with one of these prefixes is included in the # AuthorizedView. To provide access to all qualifiers, include the empty # string as a prefix # (""). class FamilySubsets include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Defines a simple AuthorizedView that is a subset of the underlying Table. # @!attribute [rw] row_prefixes # @return [::Array<::String>] # Row prefixes to be included in the AuthorizedView. # To provide access to all rows, include the empty string as a prefix (""). # @!attribute [rw] family_subsets # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets}] # Map from column family name to the columns in this family to be included # in the AuthorizedView. class SubsetView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets] class FamilySubsetsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Defines a subset of an AuthorizedView's fields. module ResponseView # Uses the default view for each method as documented in the request. RESPONSE_VIEW_UNSPECIFIED = 0 # Only populates `name`. NAME_ONLY = 1 # Only populates the AuthorizedView's basic metadata. This includes: # name, deletion_protection, etag. BASIC = 2 # Populates every fields. FULL = 3 end end |
#etag ⇒ ::String
The etag for this AuthorizedView. If this is provided on update, it must match the server's etag. The server returns ABORTED error on a mismatched etag.
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'proto_docs/google/bigtable/admin/v2/table.rb', line 234 class AuthorizedView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Subsets of a column family that are included in this AuthorizedView. # @!attribute [rw] qualifiers # @return [::Array<::String>] # Individual exact column qualifiers to be included in the AuthorizedView. # @!attribute [rw] qualifier_prefixes # @return [::Array<::String>] # Prefixes for qualifiers to be included in the AuthorizedView. Every # qualifier starting with one of these prefixes is included in the # AuthorizedView. To provide access to all qualifiers, include the empty # string as a prefix # (""). class FamilySubsets include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Defines a simple AuthorizedView that is a subset of the underlying Table. # @!attribute [rw] row_prefixes # @return [::Array<::String>] # Row prefixes to be included in the AuthorizedView. # To provide access to all rows, include the empty string as a prefix (""). # @!attribute [rw] family_subsets # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets}] # Map from column family name to the columns in this family to be included # in the AuthorizedView. class SubsetView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets] class FamilySubsetsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Defines a subset of an AuthorizedView's fields. module ResponseView # Uses the default view for each method as documented in the request. RESPONSE_VIEW_UNSPECIFIED = 0 # Only populates `name`. NAME_ONLY = 1 # Only populates the AuthorizedView's basic metadata. This includes: # name, deletion_protection, etag. BASIC = 2 # Populates every fields. FULL = 3 end end |
#name ⇒ ::String
Returns Identifier. The name of this AuthorizedView.
Values are of the form
projects/{project}/instances/{instance}/tables/{table}/authorizedViews/{authorized_view}
.
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'proto_docs/google/bigtable/admin/v2/table.rb', line 234 class AuthorizedView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Subsets of a column family that are included in this AuthorizedView. # @!attribute [rw] qualifiers # @return [::Array<::String>] # Individual exact column qualifiers to be included in the AuthorizedView. # @!attribute [rw] qualifier_prefixes # @return [::Array<::String>] # Prefixes for qualifiers to be included in the AuthorizedView. Every # qualifier starting with one of these prefixes is included in the # AuthorizedView. To provide access to all qualifiers, include the empty # string as a prefix # (""). class FamilySubsets include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Defines a simple AuthorizedView that is a subset of the underlying Table. # @!attribute [rw] row_prefixes # @return [::Array<::String>] # Row prefixes to be included in the AuthorizedView. # To provide access to all rows, include the empty string as a prefix (""). # @!attribute [rw] family_subsets # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets}] # Map from column family name to the columns in this family to be included # in the AuthorizedView. class SubsetView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets] class FamilySubsetsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Defines a subset of an AuthorizedView's fields. module ResponseView # Uses the default view for each method as documented in the request. RESPONSE_VIEW_UNSPECIFIED = 0 # Only populates `name`. NAME_ONLY = 1 # Only populates the AuthorizedView's basic metadata. This includes: # name, deletion_protection, etag. BASIC = 2 # Populates every fields. FULL = 3 end end |
#subset_view ⇒ ::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::SubsetView
Returns An AuthorizedView permitting access to an explicit subset of a Table.
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'proto_docs/google/bigtable/admin/v2/table.rb', line 234 class AuthorizedView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Subsets of a column family that are included in this AuthorizedView. # @!attribute [rw] qualifiers # @return [::Array<::String>] # Individual exact column qualifiers to be included in the AuthorizedView. # @!attribute [rw] qualifier_prefixes # @return [::Array<::String>] # Prefixes for qualifiers to be included in the AuthorizedView. Every # qualifier starting with one of these prefixes is included in the # AuthorizedView. To provide access to all qualifiers, include the empty # string as a prefix # (""). class FamilySubsets include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Defines a simple AuthorizedView that is a subset of the underlying Table. # @!attribute [rw] row_prefixes # @return [::Array<::String>] # Row prefixes to be included in the AuthorizedView. # To provide access to all rows, include the empty string as a prefix (""). # @!attribute [rw] family_subsets # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets}] # Map from column family name to the columns in this family to be included # in the AuthorizedView. class SubsetView include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Bigtable::Admin::V2::AuthorizedView::FamilySubsets] class FamilySubsetsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Defines a subset of an AuthorizedView's fields. module ResponseView # Uses the default view for each method as documented in the request. RESPONSE_VIEW_UNSPECIFIED = 0 # Only populates `name`. NAME_ONLY = 1 # Only populates the AuthorizedView's basic metadata. This includes: # name, deletion_protection, etag. BASIC = 2 # Populates every fields. FULL = 3 end end |