google-cloud-pubsub-v1 0.14.0 → 0.15.1

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: 6710837e853d4027d03202b0a6aeafb80c332693577d2c5bad77d50137ea0f56
4
- data.tar.gz: c1ca2cb0eafbfe4749ec2f35c7779fe8b50046aff0f70b418f67676be7017753
3
+ metadata.gz: df22077865f40614c9ed5928131219a1d5fa701544ed37098d8001dba60fe6a1
4
+ data.tar.gz: f04965f673450e00fd3d4d7668d6e6f637bdbf007349c41bd13fa3732487c500
5
5
  SHA512:
6
- metadata.gz: 12b133bb8c20323c506ec8442a0a2cb355c0128b517787e060b677e95c75f3ab5ba90f20ed7e83840a3e6a09ddef90cd0e2461530f921b44dc1e4e01b53fed94
7
- data.tar.gz: 65ad71d44e145074e09dc2afc70a048a33b5c537dcb13c803be9ab5ecbf8b100d3c418592cf1273e922785a0b6e089b277b03aee14459c239cfa577e10fe7349
6
+ metadata.gz: ce82c20e79a9a46a279d210f74c612b9f45cb13b2f347a1d093175df6539169cf6995813464b3486cda681a263c3a3f6689a8b94329d00c4881f00d82c6747af
7
+ data.tar.gz: 3412f06d1d5e8a4e29fdd7101fdfe61e7a30eb485100bb0e038d31e1d766f50cfb50ff7f7f4f9961271c9a1558e39e60dfc04c9786c5c36fba3ae5cf25a12210
@@ -104,7 +104,7 @@ module Google
104
104
 
105
105
  default_config.rpcs.pull.timeout = 60.0
106
106
  default_config.rpcs.pull.retry_policy = {
107
- initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [2, 10, 14]
107
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [2, 10, 14, 13]
108
108
  }
109
109
 
110
110
  default_config.rpcs.streaming_pull.timeout = 900.0
@@ -334,7 +334,8 @@ module Google
334
334
  # successfully consuming messages from the subscription or is issuing
335
335
  # operations on the subscription. If `expiration_policy` is not set, a
336
336
  # *default policy* with `ttl` of 31 days will be used. The minimum allowed
337
- # value for `expiration_policy.ttl` is 1 day.
337
+ # value for `expiration_policy.ttl` is 1 day. If `expiration_policy` is set,
338
+ # but `expiration_policy.ttl` is not set, the subscription never expires.
338
339
  # @param filter [::String]
339
340
  # An expression written in the Pub/Sub [filter
340
341
  # language](https://cloud.google.com/pubsub/docs/filtering). If non-empty,
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module PubSub
23
23
  module V1
24
- VERSION = "0.14.0"
24
+ VERSION = "0.15.1"
25
25
  end
26
26
  end
27
27
  end
@@ -219,6 +219,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
219
219
  add_message "google.pubsub.v1.StreamingPullResponse.ModifyAckDeadlineConfirmation" do
220
220
  repeated :ack_ids, :string, 1
221
221
  repeated :invalid_ack_ids, :string, 2
222
+ repeated :temporary_failed_ack_ids, :string, 3
222
223
  end
223
224
  add_message "google.pubsub.v1.StreamingPullResponse.SubscriptionProperties" do
224
225
  optional :exactly_once_delivery_enabled, :bool, 1
@@ -150,6 +150,8 @@ module Google
150
150
  # delivered to subscribers in the order in which they are received by the
151
151
  # Pub/Sub system. All `PubsubMessage`s published in a given `PublishRequest`
152
152
  # must specify the same `ordering_key` value.
153
+ # For more information, see [ordering
154
+ # messages](https://cloud.google.com/pubsub/docs/ordering).
153
155
  class PubsubMessage
154
156
  include ::Google::Protobuf::MessageExts
155
157
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -415,7 +417,8 @@ module Google
415
417
  # successfully consuming messages from the subscription or is issuing
416
418
  # operations on the subscription. If `expiration_policy` is not set, a
417
419
  # *default policy* with `ttl` of 31 days will be used. The minimum allowed
418
- # value for `expiration_policy.ttl` is 1 day.
420
+ # value for `expiration_policy.ttl` is 1 day. If `expiration_policy` is set,
421
+ # but `expiration_policy.ttl` is not set, the subscription never expires.
419
422
  # @!attribute [rw] filter
420
423
  # @return [::String]
421
424
  # An expression written in the Pub/Sub [filter
@@ -1015,6 +1018,9 @@ module Google
1015
1018
  # @return [::Array<::String>]
1016
1019
  # List of acknowledgement IDs that were malformed or whose acknowledgement
1017
1020
  # deadline has expired.
1021
+ # @!attribute [rw] temporary_failed_ack_ids
1022
+ # @return [::Array<::String>]
1023
+ # List of acknowledgement IDs that failed processing with temporary issues.
1018
1024
  class ModifyAckDeadlineConfirmation
1019
1025
  include ::Google::Protobuf::MessageExts
1020
1026
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-pubsub-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.1
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-02-16 00:00:00.000000000 Z
11
+ date: 2023-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common