google-cloud-bigtable-v2 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/bigtable/v2/bigtable_pb.rb +2 -1
- data/lib/google/bigtable/v2/bigtable_services_pb.rb +16 -0
- data/lib/google/bigtable/v2/data_pb.rb +2 -1
- data/lib/google/bigtable/v2/feature_flags_pb.rb +1 -1
- data/lib/google/bigtable/v2/peer_info_pb.rb +1 -1
- data/lib/google/bigtable/v2/session_pb.rb +84 -0
- data/lib/google/cloud/bigtable/v2/bigtable/client.rb +363 -1
- data/lib/google/cloud/bigtable/v2/version.rb +1 -1
- data/proto_docs/google/api/client.rb +149 -29
- data/proto_docs/google/api/routing.rb +7 -3
- data/proto_docs/google/bigtable/v2/bigtable.rb +17 -0
- data/proto_docs/google/bigtable/v2/data.rb +39 -19
- data/proto_docs/google/bigtable/v2/feature_flags.rb +6 -0
- data/proto_docs/google/bigtable/v2/peer_info.rb +6 -1
- data/proto_docs/google/bigtable/v2/session.rb +793 -0
- data/proto_docs/google/rpc/error_details.rb +420 -0
- data/proto_docs/google/type/date.rb +10 -7
- metadata +4 -1
|
@@ -837,6 +837,14 @@ module Google
|
|
|
837
837
|
# inferred from the `param_types` in the `PrepareQueryRequest`. Any non-empty
|
|
838
838
|
# `Value.type` must match the corresponding `param_types` entry, or be
|
|
839
839
|
# rejected with `INVALID_ARGUMENT`.
|
|
840
|
+
# @!attribute [rw] view_parameters
|
|
841
|
+
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Bigtable::V2::Value}]
|
|
842
|
+
# Optional. This map provides the runtime values returned by the
|
|
843
|
+
# VIEW_PARAMETERS() function calls, typically used for user-level scoping of
|
|
844
|
+
# data based on identity.
|
|
845
|
+
#
|
|
846
|
+
# The key is the name of the view parameter e.g. `user_id`, and
|
|
847
|
+
# the value is the parameter value e.g. `alice@example.com`.
|
|
840
848
|
class ExecuteQueryRequest
|
|
841
849
|
include ::Google::Protobuf::MessageExts
|
|
842
850
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -849,6 +857,15 @@ module Google
|
|
|
849
857
|
include ::Google::Protobuf::MessageExts
|
|
850
858
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
851
859
|
end
|
|
860
|
+
|
|
861
|
+
# @!attribute [rw] key
|
|
862
|
+
# @return [::String]
|
|
863
|
+
# @!attribute [rw] value
|
|
864
|
+
# @return [::Google::Cloud::Bigtable::V2::Value]
|
|
865
|
+
class ViewParametersEntry
|
|
866
|
+
include ::Google::Protobuf::MessageExts
|
|
867
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
868
|
+
end
|
|
852
869
|
end
|
|
853
870
|
|
|
854
871
|
# Response message for Bigtable.ExecuteQuery
|
|
@@ -292,6 +292,18 @@ module Google
|
|
|
292
292
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
293
293
|
end
|
|
294
294
|
|
|
295
|
+
# Restricts the output to cells whose values match the given bitmask.
|
|
296
|
+
# @!attribute [rw] mask
|
|
297
|
+
# @return [::String]
|
|
298
|
+
# Required. Mask applied to the value.
|
|
299
|
+
# Evaluated as: `(value & mask) == mask`
|
|
300
|
+
# The mask length must exactly match the value length, otherwise the cell is
|
|
301
|
+
# not considered a match.
|
|
302
|
+
class ValueBitmask
|
|
303
|
+
include ::Google::Protobuf::MessageExts
|
|
304
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
305
|
+
end
|
|
306
|
+
|
|
295
307
|
# Takes a row as input and produces an alternate view of the row based on
|
|
296
308
|
# specified rules. For example, a RowFilter might trim down a row to include
|
|
297
309
|
# just the cells from columns matching a given regular expression, or might
|
|
@@ -330,19 +342,19 @@ module Google
|
|
|
330
342
|
# Applies several RowFilters to the data in sequence, progressively
|
|
331
343
|
# narrowing the results.
|
|
332
344
|
#
|
|
333
|
-
# Note: The following fields are mutually exclusive: `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
345
|
+
# Note: The following fields are mutually exclusive: `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
334
346
|
# @!attribute [rw] interleave
|
|
335
347
|
# @return [::Google::Cloud::Bigtable::V2::RowFilter::Interleave]
|
|
336
348
|
# Applies several RowFilters to the data in parallel and combines the
|
|
337
349
|
# results.
|
|
338
350
|
#
|
|
339
|
-
# Note: The following fields are mutually exclusive: `interleave`, `chain`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
351
|
+
# Note: The following fields are mutually exclusive: `interleave`, `chain`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
340
352
|
# @!attribute [rw] condition
|
|
341
353
|
# @return [::Google::Cloud::Bigtable::V2::RowFilter::Condition]
|
|
342
354
|
# Applies one of two possible RowFilters to the data based on the output of
|
|
343
355
|
# a predicate RowFilter.
|
|
344
356
|
#
|
|
345
|
-
# Note: The following fields are mutually exclusive: `condition`, `chain`, `interleave`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
357
|
+
# Note: The following fields are mutually exclusive: `condition`, `chain`, `interleave`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
346
358
|
# @!attribute [rw] sink
|
|
347
359
|
# @return [::Boolean]
|
|
348
360
|
# ADVANCED USE ONLY.
|
|
@@ -405,19 +417,19 @@ module Google
|
|
|
405
417
|
# Cannot be used within the `predicate_filter`, `true_filter`, or
|
|
406
418
|
# `false_filter` of a {::Google::Cloud::Bigtable::V2::RowFilter::Condition Condition}.
|
|
407
419
|
#
|
|
408
|
-
# Note: The following fields are mutually exclusive: `sink`, `chain`, `interleave`, `condition`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
420
|
+
# Note: The following fields are mutually exclusive: `sink`, `chain`, `interleave`, `condition`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
409
421
|
# @!attribute [rw] pass_all_filter
|
|
410
422
|
# @return [::Boolean]
|
|
411
423
|
# Matches all cells, regardless of input. Functionally equivalent to
|
|
412
424
|
# leaving `filter` unset, but included for completeness.
|
|
413
425
|
#
|
|
414
|
-
# Note: The following fields are mutually exclusive: `pass_all_filter`, `chain`, `interleave`, `condition`, `sink`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
426
|
+
# Note: The following fields are mutually exclusive: `pass_all_filter`, `chain`, `interleave`, `condition`, `sink`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
415
427
|
# @!attribute [rw] block_all_filter
|
|
416
428
|
# @return [::Boolean]
|
|
417
429
|
# Does not match any cells, regardless of input. Useful for temporarily
|
|
418
430
|
# disabling just part of a filter.
|
|
419
431
|
#
|
|
420
|
-
# Note: The following fields are mutually exclusive: `block_all_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
432
|
+
# Note: The following fields are mutually exclusive: `block_all_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
421
433
|
# @!attribute [rw] row_key_regex_filter
|
|
422
434
|
# @return [::String]
|
|
423
435
|
# Matches only cells from rows whose keys satisfy the given RE2 regex. In
|
|
@@ -428,13 +440,13 @@ module Google
|
|
|
428
440
|
# will not match the new line character `\n`, which may be present in a
|
|
429
441
|
# binary key.
|
|
430
442
|
#
|
|
431
|
-
# Note: The following fields are mutually exclusive: `row_key_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
443
|
+
# Note: The following fields are mutually exclusive: `row_key_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
432
444
|
# @!attribute [rw] row_sample_filter
|
|
433
445
|
# @return [::Float]
|
|
434
446
|
# Matches all cells from a row with probability p, and matches no cells
|
|
435
447
|
# from the row with probability 1-p.
|
|
436
448
|
#
|
|
437
|
-
# Note: The following fields are mutually exclusive: `row_sample_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
449
|
+
# Note: The following fields are mutually exclusive: `row_sample_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
438
450
|
# @!attribute [rw] family_name_regex_filter
|
|
439
451
|
# @return [::String]
|
|
440
452
|
# Matches only cells from columns whose families satisfy the given RE2
|
|
@@ -444,7 +456,7 @@ module Google
|
|
|
444
456
|
# `\n`, it is sufficient to use `.` as a full wildcard when matching
|
|
445
457
|
# column family names.
|
|
446
458
|
#
|
|
447
|
-
# Note: The following fields are mutually exclusive: `family_name_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
459
|
+
# Note: The following fields are mutually exclusive: `family_name_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
448
460
|
# @!attribute [rw] column_qualifier_regex_filter
|
|
449
461
|
# @return [::String]
|
|
450
462
|
# Matches only cells from columns whose qualifiers satisfy the given RE2
|
|
@@ -454,17 +466,17 @@ module Google
|
|
|
454
466
|
# character will not match the new line character `\n`, which may be
|
|
455
467
|
# present in a binary qualifier.
|
|
456
468
|
#
|
|
457
|
-
# Note: The following fields are mutually exclusive: `column_qualifier_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
469
|
+
# Note: The following fields are mutually exclusive: `column_qualifier_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
458
470
|
# @!attribute [rw] column_range_filter
|
|
459
471
|
# @return [::Google::Cloud::Bigtable::V2::ColumnRange]
|
|
460
472
|
# Matches only cells from columns within the given range.
|
|
461
473
|
#
|
|
462
|
-
# Note: The following fields are mutually exclusive: `column_range_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
474
|
+
# Note: The following fields are mutually exclusive: `column_range_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
463
475
|
# @!attribute [rw] timestamp_range_filter
|
|
464
476
|
# @return [::Google::Cloud::Bigtable::V2::TimestampRange]
|
|
465
477
|
# Matches only cells with timestamps within the given range.
|
|
466
478
|
#
|
|
467
|
-
# Note: The following fields are mutually exclusive: `timestamp_range_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
479
|
+
# Note: The following fields are mutually exclusive: `timestamp_range_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
468
480
|
# @!attribute [rw] value_regex_filter
|
|
469
481
|
# @return [::String]
|
|
470
482
|
# Matches only cells with values that satisfy the given regular expression.
|
|
@@ -473,26 +485,26 @@ module Google
|
|
|
473
485
|
# will not match the new line character `\n`, which may be present in a
|
|
474
486
|
# binary value.
|
|
475
487
|
#
|
|
476
|
-
# Note: The following fields are mutually exclusive: `value_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
488
|
+
# Note: The following fields are mutually exclusive: `value_regex_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
477
489
|
# @!attribute [rw] value_range_filter
|
|
478
490
|
# @return [::Google::Cloud::Bigtable::V2::ValueRange]
|
|
479
491
|
# Matches only cells with values that fall within the given range.
|
|
480
492
|
#
|
|
481
|
-
# Note: The following fields are mutually exclusive: `value_range_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
493
|
+
# Note: The following fields are mutually exclusive: `value_range_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
482
494
|
# @!attribute [rw] cells_per_row_offset_filter
|
|
483
495
|
# @return [::Integer]
|
|
484
496
|
# Skips the first N cells of each row, matching all subsequent cells.
|
|
485
497
|
# If duplicate cells are present, as is possible when using an Interleave,
|
|
486
498
|
# each copy of the cell is counted separately.
|
|
487
499
|
#
|
|
488
|
-
# Note: The following fields are mutually exclusive: `cells_per_row_offset_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
500
|
+
# Note: The following fields are mutually exclusive: `cells_per_row_offset_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
489
501
|
# @!attribute [rw] cells_per_row_limit_filter
|
|
490
502
|
# @return [::Integer]
|
|
491
503
|
# Matches only the first N cells of each row.
|
|
492
504
|
# If duplicate cells are present, as is possible when using an Interleave,
|
|
493
505
|
# each copy of the cell is counted separately.
|
|
494
506
|
#
|
|
495
|
-
# Note: The following fields are mutually exclusive: `cells_per_row_limit_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
507
|
+
# Note: The following fields are mutually exclusive: `cells_per_row_limit_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
496
508
|
# @!attribute [rw] cells_per_column_limit_filter
|
|
497
509
|
# @return [::Integer]
|
|
498
510
|
# Matches only the most recent N cells within each column. For example,
|
|
@@ -502,12 +514,12 @@ module Google
|
|
|
502
514
|
# If duplicate cells are present, as is possible when using an Interleave,
|
|
503
515
|
# each copy of the cell is counted separately.
|
|
504
516
|
#
|
|
505
|
-
# Note: The following fields are mutually exclusive: `cells_per_column_limit_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
517
|
+
# Note: The following fields are mutually exclusive: `cells_per_column_limit_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `strip_value_transformer`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
506
518
|
# @!attribute [rw] strip_value_transformer
|
|
507
519
|
# @return [::Boolean]
|
|
508
520
|
# Replaces each cell's value with the empty string.
|
|
509
521
|
#
|
|
510
|
-
# Note: The following fields are mutually exclusive: `strip_value_transformer`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
522
|
+
# Note: The following fields are mutually exclusive: `strip_value_transformer`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `apply_label_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
511
523
|
# @!attribute [rw] apply_label_transformer
|
|
512
524
|
# @return [::String]
|
|
513
525
|
# Applies the given label to all cells in the output row. This allows
|
|
@@ -524,7 +536,15 @@ module Google
|
|
|
524
536
|
# will be applied to separate copies of the input. This may be relaxed in
|
|
525
537
|
# the future.
|
|
526
538
|
#
|
|
527
|
-
# Note: The following fields are mutually exclusive: `apply_label_transformer`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
539
|
+
# Note: The following fields are mutually exclusive: `apply_label_transformer`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `value_bitmask_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
540
|
+
# @!attribute [rw] value_bitmask_filter
|
|
541
|
+
# @return [::Google::Cloud::Bigtable::V2::ValueBitmask]
|
|
542
|
+
# Matches only cells with values that satisfy the condition `(value & mask)
|
|
543
|
+
# == mask`.
|
|
544
|
+
# The mask length must exactly match the value length, otherwise the cell
|
|
545
|
+
# is not considered a match.
|
|
546
|
+
#
|
|
547
|
+
# Note: The following fields are mutually exclusive: `value_bitmask_filter`, `chain`, `interleave`, `condition`, `sink`, `pass_all_filter`, `block_all_filter`, `row_key_regex_filter`, `row_sample_filter`, `family_name_regex_filter`, `column_qualifier_regex_filter`, `column_range_filter`, `timestamp_range_filter`, `value_regex_filter`, `value_range_filter`, `cells_per_row_offset_filter`, `cells_per_row_limit_filter`, `cells_per_column_limit_filter`, `strip_value_transformer`, `apply_label_transformer`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
|
528
548
|
class RowFilter
|
|
529
549
|
include ::Google::Protobuf::MessageExts
|
|
530
550
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -67,6 +67,12 @@ module Google
|
|
|
67
67
|
# @!attribute [rw] peer_info
|
|
68
68
|
# @return [::Boolean]
|
|
69
69
|
# If the client can support using BigtablePeerInfo.
|
|
70
|
+
# @!attribute [rw] sessions_compatible
|
|
71
|
+
# @return [::Boolean]
|
|
72
|
+
# Indicates whether the client supports the Bigtable Sessions API.
|
|
73
|
+
# @!attribute [rw] sessions_required
|
|
74
|
+
# @return [::Boolean]
|
|
75
|
+
# Internal flag to force sessions for internal projects.
|
|
70
76
|
class FeatureFlags
|
|
71
77
|
include ::Google::Protobuf::MessageExts
|
|
72
78
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -31,13 +31,18 @@ module Google
|
|
|
31
31
|
# @return [::Integer]
|
|
32
32
|
# An opaque identifier for the application frontend which serviced this
|
|
33
33
|
# request.
|
|
34
|
+
# @!attribute [rw] application_frontend_region
|
|
35
|
+
# @return [::String]
|
|
36
|
+
# The Cloud region of the application frontend that served this request.
|
|
34
37
|
# @!attribute [rw] application_frontend_zone
|
|
38
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
|
35
39
|
# @return [::String]
|
|
36
40
|
# The Cloud zone of the application frontend that served this request.
|
|
37
41
|
# @!attribute [rw] application_frontend_subzone
|
|
38
42
|
# @return [::String]
|
|
39
43
|
# The subzone of the application frontend that served this request, e.g. an
|
|
40
|
-
# identifier for where within
|
|
44
|
+
# identifier for where within a zone (within the reported region) the
|
|
45
|
+
# application frontend is.
|
|
41
46
|
# @!attribute [rw] transport_type
|
|
42
47
|
# @return [::Google::Cloud::Bigtable::V2::PeerInfo::TransportType]
|
|
43
48
|
class PeerInfo
|