google-cloud-bigtable-v2 0.13.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5980a52ab2a63865b75a7f9f59e93e935053be098c02c6a17d1ee138611ae09d
4
- data.tar.gz: da382e485b9513ca9b50dbff923fd7184aeb6cc8b57d8866fcda375548f190af
3
+ metadata.gz: aaa61001a422947f356644d63adadc719d0f71ce19cd312716e27a7d453538f7
4
+ data.tar.gz: cf22a3549cdf98eab76bd63062e3cb9bac01ee0655546785ba5e9aac0b0800b8
5
5
  SHA512:
6
- metadata.gz: d9f3fa9d3450b6955ed82cc48aef82bf8858b6f8cbd27e14dc4dab09e08723bd25446d7fd304f68e593dd3e63fb016ac258c050510a201b9014abf28c1c5523e
7
- data.tar.gz: 10da26ffef31f2d4abde110007cdb64c5ff43060651461c51e02beb06a1d0d98402e3335b1b2d5851a714afc9771fd7c9bab2f3e39584432c7e81f820639fc22
6
+ metadata.gz: f1545610c133b678763c5b6fdde74cd57601fd2e136ea215e2a668cff86e1c4447797c630b24dbf6f0df5a212df26155d90fddaad5a74e454b294faa34737efe
7
+ data.tar.gz: 2f6b84ce3fd6a547ae8376d7ebce40a3c1a61df73f8895270601ad3555fae94dd7a987d1abf5c6bdb86fd3306dbd21919e5cdeb74bd0ac6a7cb048ef7c7636ec
@@ -5,7 +5,7 @@
5
5
  require 'google/protobuf'
6
6
 
7
7
 
8
- descriptor_data = "\n&google/bigtable/v2/feature_flags.proto\x12\x12google.bigtable.v2\"i\n\x0c\x46\x65\x61tureFlags\x12\x15\n\rreverse_scans\x18\x01 \x01(\x08\x12\x1e\n\x16mutate_rows_rate_limit\x18\x03 \x01(\x08\x12\"\n\x1alast_scanned_row_responses\x18\x04 \x01(\x08\x42\xbd\x01\n\x16\x63om.google.bigtable.v2B\x11\x46\x65\x61tureFlagsProtoP\x01Z:google.golang.org/genproto/googleapis/bigtable/v2;bigtable\xaa\x02\x18Google.Cloud.Bigtable.V2\xca\x02\x18Google\\Cloud\\Bigtable\\V2\xea\x02\x1bGoogle::Cloud::Bigtable::V2b\x06proto3"
8
+ descriptor_data = "\n&google/bigtable/v2/feature_flags.proto\x12\x12google.bigtable.v2\"\x8a\x01\n\x0c\x46\x65\x61tureFlags\x12\x15\n\rreverse_scans\x18\x01 \x01(\x08\x12\x1e\n\x16mutate_rows_rate_limit\x18\x03 \x01(\x08\x12\x1f\n\x17mutate_rows_rate_limit2\x18\x05 \x01(\x08\x12\"\n\x1alast_scanned_row_responses\x18\x04 \x01(\x08\x42\xbd\x01\n\x16\x63om.google.bigtable.v2B\x11\x46\x65\x61tureFlagsProtoP\x01Z:google.golang.org/genproto/googleapis/bigtable/v2;bigtable\xaa\x02\x18Google.Cloud.Bigtable.V2\xca\x02\x18Google\\Cloud\\Bigtable\\V2\xea\x02\x1bGoogle::Cloud::Bigtable::V2b\x06proto3"
9
9
 
10
10
  pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
@@ -157,7 +157,8 @@ module Google
157
157
  credentials: credentials,
158
158
  endpoint: @config.endpoint,
159
159
  channel_args: @config.channel_args,
160
- interceptors: @config.interceptors
160
+ interceptors: @config.interceptors,
161
+ channel_pool_config: @config.channel_pool
161
162
  )
162
163
  end
163
164
 
@@ -1247,6 +1248,14 @@ module Google
1247
1248
  end
1248
1249
  end
1249
1250
 
1251
+ ##
1252
+ # Configuration for the channel pool
1253
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
1254
+ #
1255
+ def channel_pool
1256
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
1257
+ end
1258
+
1250
1259
  ##
1251
1260
  # Configuration RPC class for the Bigtable API.
1252
1261
  #
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Bigtable
23
23
  module V2
24
- VERSION = "0.13.0"
24
+ VERSION = "0.15.0"
25
25
  end
26
26
  end
27
27
  end
@@ -66,6 +66,20 @@ module Google
66
66
  # a non-empty value will be returned. The user will not be aware of what
67
67
  # non-empty value to expect.
68
68
  NON_EMPTY_DEFAULT = 7
69
+
70
+ # Denotes that the field in a resource (a message annotated with
71
+ # google.api.resource) is used in the resource name to uniquely identify the
72
+ # resource. For AIP-compliant APIs, this should only be applied to the
73
+ # `name` field on the resource.
74
+ #
75
+ # This behavior should not be applied to references to other resources within
76
+ # the message.
77
+ #
78
+ # The identifier field of resources often have different field behavior
79
+ # depending on the request it is embedded in (e.g. for Create methods name
80
+ # is optional and unused, while for Update methods it is required). Instead
81
+ # of method-specific annotations, only `IDENTIFIER` is required.
82
+ IDENTIFIER = 8
69
83
  end
70
84
  end
71
85
  end
@@ -21,13 +21,13 @@ module Google
21
21
  module Cloud
22
22
  module Bigtable
23
23
  module V2
24
- # Feature flags supported by a client.
24
+ # Feature flags supported or enabled by a client.
25
25
  # This is intended to be sent as part of request metadata to assure the server
26
26
  # that certain behaviors are safe to enable. This proto is meant to be
27
27
  # serialized and websafe-base64 encoded under the `bigtable-features` metadata
28
28
  # key. The value will remain constant for the lifetime of a client and due to
29
29
  # HTTP2's HPACK compression, the request overhead will be tiny.
30
- # This is an internal implementation detail and should not be used by endusers
30
+ # This is an internal implementation detail and should not be used by end users
31
31
  # directly.
32
32
  # @!attribute [rw] reverse_scans
33
33
  # @return [::Boolean]
@@ -36,11 +36,17 @@ module Google
36
36
  # @!attribute [rw] mutate_rows_rate_limit
37
37
  # @return [::Boolean]
38
38
  # Notify the server that the client enables batch write flow control by
39
- # requesting RateLimitInfo from MutateRowsResponse.
39
+ # requesting RateLimitInfo from MutateRowsResponse. Due to technical reasons,
40
+ # this disables partial retries.
41
+ # @!attribute [rw] mutate_rows_rate_limit2
42
+ # @return [::Boolean]
43
+ # Notify the server that the client enables batch write flow control by
44
+ # requesting RateLimitInfo from MutateRowsResponse. With partial retries
45
+ # enabled.
40
46
  # @!attribute [rw] last_scanned_row_responses
41
47
  # @return [::Boolean]
42
48
  # Notify the server that the client supports the last_scanned_row field
43
- # in ReadRowsResponse for long-running sparse scans.
49
+ # in ReadRowsResponse for long-running scans.
44
50
  class FeatureFlags
45
51
  include ::Google::Protobuf::MessageExts
46
52
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigtable-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-28 00:00:00.000000000 Z
11
+ date: 2023-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.19.1
19
+ version: 0.20.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.19.1
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -218,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
218
218
  - !ruby/object:Gem::Version
219
219
  version: '0'
220
220
  requirements: []
221
- rubygems_version: 3.4.2
221
+ rubygems_version: 3.4.19
222
222
  signing_key:
223
223
  specification_version: 4
224
224
  summary: API for reading and writing the contents of Bigtables associated with a cloud