google-cloud-bigtable-v2 1.14.0 → 1.15.1
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/README.md +1 -1
- data/lib/google/cloud/bigtable/v2/bigtable/client.rb +10 -8
- data/lib/google/cloud/bigtable/v2/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9472465ab3cea9fce52a42dc3a3c7be4cf9687c4307914f39fa783234d59fc5
|
|
4
|
+
data.tar.gz: 3ae36d1ef6adaa1fbae602bda82c7edbdfa86a0eacac3d014531a7d5548dbafb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96090c48a3850494484d57b0e5ed7a89ef10ce2c78d2ff3c543d60be3ce54ffe14e0b3298dfad7759e4b520f40556a098f8451e0e1990aab807c09a24cd6eaef
|
|
7
|
+
data.tar.gz: f65f22d43176508318c61d05acb0780912a57eeddbfddcd2a0405a36e5f2522c8fb347c08c83d30f3e294908effcb0a4ce37eedae3e1f6c0068469cc1e9e6085
|
data/README.md
CHANGED
|
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
|
86
86
|
|
|
87
87
|
## Supported Ruby Versions
|
|
88
88
|
|
|
89
|
-
This library is supported on Ruby 3.
|
|
89
|
+
This library is supported on Ruby 3.2+.
|
|
90
90
|
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
|
@@ -322,7 +322,7 @@ module Google
|
|
|
322
322
|
header_params["table_name"] = request.table_name
|
|
323
323
|
end
|
|
324
324
|
if request.authorized_view_name
|
|
325
|
-
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(
|
|
325
|
+
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.authorized_view_name
|
|
326
326
|
if regex_match
|
|
327
327
|
header_params["table_name"] = regex_match["table_name".to_s]
|
|
328
328
|
end
|
|
@@ -331,7 +331,7 @@ module Google
|
|
|
331
331
|
header_params["app_profile_id"] = request.app_profile_id
|
|
332
332
|
end
|
|
333
333
|
if request.materialized_view_name
|
|
334
|
-
regex_match = %r{^(?<name>projects/[^/]+/instances/[^/]+)(
|
|
334
|
+
regex_match = %r{^(?<name>projects/[^/]+/instances/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.materialized_view_name
|
|
335
335
|
if regex_match
|
|
336
336
|
header_params["name"] = regex_match["name".to_s]
|
|
337
337
|
end
|
|
@@ -454,7 +454,7 @@ module Google
|
|
|
454
454
|
header_params["table_name"] = request.table_name
|
|
455
455
|
end
|
|
456
456
|
if request.authorized_view_name
|
|
457
|
-
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(
|
|
457
|
+
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.authorized_view_name
|
|
458
458
|
if regex_match
|
|
459
459
|
header_params["table_name"] = regex_match["table_name".to_s]
|
|
460
460
|
end
|
|
@@ -463,7 +463,7 @@ module Google
|
|
|
463
463
|
header_params["app_profile_id"] = request.app_profile_id
|
|
464
464
|
end
|
|
465
465
|
if request.materialized_view_name
|
|
466
|
-
regex_match = %r{^(?<name>projects/[^/]+/instances/[^/]+)(
|
|
466
|
+
regex_match = %r{^(?<name>projects/[^/]+/instances/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.materialized_view_name
|
|
467
467
|
if regex_match
|
|
468
468
|
header_params["name"] = regex_match["name".to_s]
|
|
469
469
|
end
|
|
@@ -578,7 +578,7 @@ module Google
|
|
|
578
578
|
header_params["table_name"] = request.table_name
|
|
579
579
|
end
|
|
580
580
|
if request.authorized_view_name
|
|
581
|
-
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(
|
|
581
|
+
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.authorized_view_name
|
|
582
582
|
if regex_match
|
|
583
583
|
header_params["table_name"] = regex_match["table_name".to_s]
|
|
584
584
|
end
|
|
@@ -697,7 +697,7 @@ module Google
|
|
|
697
697
|
header_params["table_name"] = request.table_name
|
|
698
698
|
end
|
|
699
699
|
if request.authorized_view_name
|
|
700
|
-
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(
|
|
700
|
+
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.authorized_view_name
|
|
701
701
|
if regex_match
|
|
702
702
|
header_params["table_name"] = regex_match["table_name".to_s]
|
|
703
703
|
end
|
|
@@ -825,7 +825,7 @@ module Google
|
|
|
825
825
|
header_params["table_name"] = request.table_name
|
|
826
826
|
end
|
|
827
827
|
if request.authorized_view_name
|
|
828
|
-
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(
|
|
828
|
+
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.authorized_view_name
|
|
829
829
|
if regex_match
|
|
830
830
|
header_params["table_name"] = regex_match["table_name".to_s]
|
|
831
831
|
end
|
|
@@ -1040,7 +1040,7 @@ module Google
|
|
|
1040
1040
|
header_params["table_name"] = request.table_name
|
|
1041
1041
|
end
|
|
1042
1042
|
if request.authorized_view_name
|
|
1043
|
-
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(
|
|
1043
|
+
regex_match = %r{^(?<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/(?<__wildcard__>.*))?$}.match request.authorized_view_name
|
|
1044
1044
|
if regex_match
|
|
1045
1045
|
header_params["table_name"] = regex_match["table_name".to_s]
|
|
1046
1046
|
end
|
|
@@ -1982,6 +1982,7 @@ module Google
|
|
|
1982
1982
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
1983
1983
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
1984
1984
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
1985
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
1985
1986
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
1986
1987
|
# trigger a retry.
|
|
1987
1988
|
# @return [::Hash]
|
|
@@ -2065,6 +2066,7 @@ module Google
|
|
|
2065
2066
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
2066
2067
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
2067
2068
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
2069
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
2068
2070
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
2069
2071
|
# trigger a retry.
|
|
2070
2072
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-bigtable-v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.15.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '1.
|
|
18
|
+
version: '1.3'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '1.
|
|
25
|
+
version: '1.3'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: google-cloud-errors
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|