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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df22077865f40614c9ed5928131219a1d5fa701544ed37098d8001dba60fe6a1
|
4
|
+
data.tar.gz: f04965f673450e00fd3d4d7668d6e6f637bdbf007349c41bd13fa3732487c500
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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,
|
@@ -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.
|
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-
|
11
|
+
date: 2023-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|