google-cloud-apigee_connect-v1 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a60ed6de306ea4ed051fa8b9d06f96903158b375c68bbf3a313afca336fb81cf
4
- data.tar.gz: ed940df85b6e21f7f48387dd8c5e361e2583d9da4165b77bacf2b1d7d0657b32
3
+ metadata.gz: 9b547d3a28021333ffa3781083c1d4f320bf36d57a607f9ce0fa4609760466b2
4
+ data.tar.gz: da9209b23821f625eb4dcd2a646289bb92fffa9673a6ffa85141b46ff6982b2c
5
5
  SHA512:
6
- metadata.gz: 7ebea3695c762c0c1adf9b7bd3bba90702549ed98cae9344801726bbe6ec3dd27dc8fbe45de53a95387c1a3db8d89ad8622e94661f84947f9b7986f25ae4d354
7
- data.tar.gz: 8b7c374cc9b163c459d7ea2f6133ac7323b0be458072a0abd099e2c91c2ae12690fd834694d547c5c913d6a4f0770f95a64886b62344afe38858d324d5696903
6
+ metadata.gz: f710675e4b825954bddd0485308e91bf3971a3e03143c9c720a0b3d2c4a52993205441c3010d029be178a8ab42f05e6e267c1cd925863054b4358fb09063da7b
7
+ data.tar.gz: 0cfde52574a5f075113bc8c0e614490a99400a5e0b0e8451b168f55c5e38225ee0bc94b3c15e2aff311c96ebb8c4171d27d3b29fd891604df8207a2b149322f8
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.0+.
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
@@ -387,6 +387,7 @@ module Google
387
387
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
388
388
  # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
389
389
  # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
390
+ # * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
390
391
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
391
392
  # trigger a retry.
392
393
  # @return [::Hash]
@@ -470,6 +471,7 @@ module Google
470
471
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
471
472
  # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
472
473
  # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
474
+ # * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
473
475
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
474
476
  # trigger a retry.
475
477
  #
@@ -347,6 +347,7 @@ module Google
347
347
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
348
348
  # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
349
349
  # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
350
+ # * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
350
351
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
351
352
  # trigger a retry.
352
353
  # @return [::Hash]
@@ -419,6 +420,7 @@ module Google
419
420
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
420
421
  # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
421
422
  # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
423
+ # * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
422
424
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
423
425
  # trigger a retry.
424
426
  #
@@ -363,6 +363,7 @@ module Google
363
363
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
364
364
  # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
365
365
  # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
366
+ # * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
366
367
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
367
368
  # trigger a retry.
368
369
  # @return [::Hash]
@@ -446,6 +447,7 @@ module Google
446
447
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
447
448
  # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
448
449
  # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
450
+ # * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
449
451
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
450
452
  # trigger a retry.
451
453
  #
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module ApigeeConnect
23
23
  module V1
24
- VERSION = "1.6.0"
24
+ VERSION = "1.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -31,6 +31,8 @@ module Google
31
31
  # @!attribute [rw] selective_gapic_generation
32
32
  # @return [::Google::Api::SelectiveGapicGeneration]
33
33
  # Configuration for which RPCs should be generated in the GAPIC client.
34
+ #
35
+ # Note: This field should not be used in most cases.
34
36
  class CommonLanguageSettings
35
37
  include ::Google::Protobuf::MessageExts
36
38
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -441,6 +443,8 @@ module Google
441
443
 
442
444
  # This message is used to configure the generation of a subset of the RPCs in
443
445
  # a service for client libraries.
446
+ #
447
+ # Note: This feature should not be used in most cases.
444
448
  # @!attribute [rw] methods
445
449
  # @return [::Array<::String>]
446
450
  # An allowlist of the fully qualified names of RPCs that should be included
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-apigee_connect-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
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.2'
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.2'
25
+ version: '1.3'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: google-cloud-errors
28
28
  requirement: !ruby/object:Gem::Requirement