google-apis-pubsub_v1 0.12.0 → 0.13.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: 6d6c44ac29570c1dc70e1c3b10233348b74c44b5e72d818e8268e4682079df9d
4
- data.tar.gz: 7f6d77571edadfbbf62125f432375b5f666db5622a38cfbb632110604bb3d2ee
3
+ metadata.gz: 7cecd6d4e710c5365d2f077621ae8dea62204a798c318c4bc99a7dafe71938fd
4
+ data.tar.gz: 032b95ad0150300c6493dd64a765f258df32dc5dacd2a8daac93b981698f1858
5
5
  SHA512:
6
- metadata.gz: 557204486e8782a03f9ebd3556c2500282a24e6082d6281e8fe2d234a73e31931e36399b79af49ca4606270a0c1ce6dcd9e2cd936864e91f068b50910fdc3932
7
- data.tar.gz: 6dd67cb12e3e4d8cb8bc3dcb9c9376f153b89ebe2517af1c4c7c745908f60fa43b57930f66047814cceb198fa0a6c6c056e4879c1dcf7d55f804d7f6763f96c2
6
+ metadata.gz: 75baaa90f50a26f3b9ad4a3ae9a8557feb556f4388cc9aae6d5c9b51408c475d0fbe2d25189bee3716481dee4f0b57d47e7e418e84591781edf0821aabe22814
7
+ data.tar.gz: '05488e3a50b699fdf5f45947320222afcb11ef2021aca85f2c020b343b0cf0e23298c0d59b64f0f8c693b9f60873a052c0a652f39175bc4df99483b7b90a12ce'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-pubsub_v1
2
2
 
3
+ ### v0.13.0 (2022-02-22)
4
+
5
+ * Regenerated from discovery document revision 20220207
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.12.0 (2022-01-08)
4
9
 
5
10
  * Regenerated from discovery document revision 20211231
@@ -1172,6 +1172,19 @@ module Google
1172
1172
  attr_accessor :detached
1173
1173
  alias_method :detached?, :detached
1174
1174
 
1175
+ # If true, Pub/Sub provides the following guarantees for the delivery of a
1176
+ # message with a given value of `message_id` on this subscription: * The message
1177
+ # sent to a subscriber is guaranteed not to be resent before the message's
1178
+ # acknowledgement deadline expires. * An acknowledged message will not be resent
1179
+ # to a subscriber. Note that subscribers may still receive multiple copies of a
1180
+ # message when `enable_exactly_once_delivery` is true if the message was
1181
+ # published multiple times by a publisher client. These copies are considered
1182
+ # distinct by Pub/Sub and have distinct `message_id` values.
1183
+ # Corresponds to the JSON property `enableExactlyOnceDelivery`
1184
+ # @return [Boolean]
1185
+ attr_accessor :enable_exactly_once_delivery
1186
+ alias_method :enable_exactly_once_delivery?, :enable_exactly_once_delivery
1187
+
1175
1188
  # If true, messages published with the same `ordering_key` in `PubsubMessage`
1176
1189
  # will be delivered to the subscribers in the order in which they are received
1177
1190
  # by the Pub/Sub system. Otherwise, they may be delivered in any order.
@@ -1277,6 +1290,7 @@ module Google
1277
1290
  @ack_deadline_seconds = args[:ack_deadline_seconds] if args.key?(:ack_deadline_seconds)
1278
1291
  @dead_letter_policy = args[:dead_letter_policy] if args.key?(:dead_letter_policy)
1279
1292
  @detached = args[:detached] if args.key?(:detached)
1293
+ @enable_exactly_once_delivery = args[:enable_exactly_once_delivery] if args.key?(:enable_exactly_once_delivery)
1280
1294
  @enable_message_ordering = args[:enable_message_ordering] if args.key?(:enable_message_ordering)
1281
1295
  @expiration_policy = args[:expiration_policy] if args.key?(:expiration_policy)
1282
1296
  @filter = args[:filter] if args.key?(:filter)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PubsubV1
18
18
  # Version of the google-apis-pubsub_v1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211231"
25
+ REVISION = "20220207"
26
26
  end
27
27
  end
28
28
  end
@@ -567,6 +567,7 @@ module Google
567
567
  property :dead_letter_policy, as: 'deadLetterPolicy', class: Google::Apis::PubsubV1::DeadLetterPolicy, decorator: Google::Apis::PubsubV1::DeadLetterPolicy::Representation
568
568
 
569
569
  property :detached, as: 'detached'
570
+ property :enable_exactly_once_delivery, as: 'enableExactlyOnceDelivery'
570
571
  property :enable_message_ordering, as: 'enableMessageOrdering'
571
572
  property :expiration_policy, as: 'expirationPolicy', class: Google::Apis::PubsubV1::ExpirationPolicy, decorator: Google::Apis::PubsubV1::ExpirationPolicy::Representation
572
573
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-pubsub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-pubsub_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-pubsub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Pub/Sub API V1