google-apis-workflowexecutions_v1 0.24.0 → 0.26.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: bb4b15100ff509e62c4d3915de20b9d3adce71fa6af9eb03c2316dbfa876cf5a
4
- data.tar.gz: 00b912dd2c174a47ec9591628e4e1120eb87e9ef94c53c0191df7d826b2825f6
3
+ metadata.gz: cd2acc7b55d6d52e642a4a08804a5e27be29c0e5888d2e2a876b9fb0a47dbd03
4
+ data.tar.gz: ecb1a7fb7d51728f0ba7c419ba5c261f44ba919c2c3667e4e15be9e11c134f0e
5
5
  SHA512:
6
- metadata.gz: 3fd3cc0651ceffd3aa8924549ed9a593e594ba44f03bedfb8e49fd650e44f3307b63a285356a2b8caf3e87b3bb36b2f6741e50b506f97feaa51750900003b6b9
7
- data.tar.gz: 381951917cfdd94794bc53d395974d7ebf2c3643d7c3ea0ba4bed614678f02130ee0213bf6e2d278eeb38fc0c2d71d55e88e167056153ceb1f900149b67de3ad
6
+ metadata.gz: 471f2e6566aeda1a1a4ece12119ed8145bcb086c7566e716ef2dceb9acdb9e667ef70c6b39ea25c299c1bc9073612a372e7cc39cd6e29b57e12ecd8f88fda710
7
+ data.tar.gz: 7e38f676a4886c3a89105be03b05a0c59c5b266563ed4d20d58fc554abc18291faef19c7294826c95a745502027d3f8618f72f158e01e7a5e8c19a09396bdc2b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workflowexecutions_v1
2
2
 
3
+ ### v0.26.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230710
6
+
7
+ ### v0.25.0 (2023-06-18)
8
+
9
+ * Regenerated from discovery document revision 20230607
10
+
3
11
  ### v0.24.0 (2023-04-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20230328
@@ -237,30 +237,31 @@ module Google
237
237
  class PubsubMessage
238
238
  include Google::Apis::Core::Hashable
239
239
 
240
- # Attributes for this message. If this field is empty, the message must contain
241
- # non-empty data. This can be used to filter messages on the subscription.
240
+ # Optional. Attributes for this message. If this field is empty, the message
241
+ # must contain non-empty data. This can be used to filter messages on the
242
+ # subscription.
242
243
  # Corresponds to the JSON property `attributes`
243
244
  # @return [Hash<String,String>]
244
245
  attr_accessor :attributes
245
246
 
246
- # The message data field. If this field is empty, the message must contain at
247
- # least one attribute.
247
+ # Optional. The message data field. If this field is empty, the message must
248
+ # contain at least one attribute.
248
249
  # Corresponds to the JSON property `data`
249
250
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
250
251
  # @return [String]
251
252
  attr_accessor :data
252
253
 
253
- # ID of this message, assigned by the server when the message is published.
254
- # Guaranteed to be unique within the topic. This value may be read by a
255
- # subscriber that receives a `PubsubMessage` via a `Pull` call or a push
254
+ # Optional. ID of this message, assigned by the server when the message is
255
+ # published. Guaranteed to be unique within the topic. This value may be read by
256
+ # a subscriber that receives a `PubsubMessage` via a `Pull` call or a push
256
257
  # delivery. It must not be populated by the publisher in a `Publish` call.
257
258
  # Corresponds to the JSON property `messageId`
258
259
  # @return [String]
259
260
  attr_accessor :message_id
260
261
 
261
- # If non-empty, identifies related messages for which publish order should be
262
- # respected. If a `Subscription` has `enable_message_ordering` set to `true`,
263
- # messages published with the same non-empty `ordering_key` value will be
262
+ # Optional. If non-empty, identifies related messages for which publish order
263
+ # should be respected. If a `Subscription` has `enable_message_ordering` set to `
264
+ # true`, messages published with the same non-empty `ordering_key` value will be
264
265
  # delivered to subscribers in the order in which they are received by the Pub/
265
266
  # Sub system. All `PubsubMessage`s published in a given `PublishRequest` must
266
267
  # specify the same `ordering_key` value. For more information, see [ordering
@@ -269,9 +270,9 @@ module Google
269
270
  # @return [String]
270
271
  attr_accessor :ordering_key
271
272
 
272
- # The time at which the message was published, populated by the server when it
273
- # receives the `Publish` call. It must not be populated by the publisher in a `
274
- # Publish` call.
273
+ # Optional. The time at which the message was published, populated by the server
274
+ # when it receives the `Publish` call. It must not be populated by the publisher
275
+ # in a `Publish` call.
275
276
  # Corresponds to the JSON property `publishTime`
276
277
  # @return [String]
277
278
  attr_accessor :publish_time
@@ -425,6 +426,13 @@ module Google
425
426
  # @return [String]
426
427
  attr_accessor :gcp_cloud_events_mode
427
428
 
429
+ # The number of attempts that have been made to deliver this message. This is
430
+ # set by Pub/Sub for subscriptions that have the "dead letter" feature enabled,
431
+ # and hence provided here for compatibility, but is ignored by Workflows.
432
+ # Corresponds to the JSON property `deliveryAttempt`
433
+ # @return [Fixnum]
434
+ attr_accessor :delivery_attempt
435
+
428
436
  # A message that is published by publishers and consumed by subscribers. The
429
437
  # message must contain either a non-empty data field or at least one attribute.
430
438
  # Note that client libraries represent this object differently depending on the
@@ -449,6 +457,7 @@ module Google
449
457
  # Update properties of this object
450
458
  def update!(**args)
451
459
  @gcp_cloud_events_mode = args[:gcp_cloud_events_mode] if args.key?(:gcp_cloud_events_mode)
460
+ @delivery_attempt = args[:delivery_attempt] if args.key?(:delivery_attempt)
452
461
  @message = args[:message] if args.key?(:message)
453
462
  @subscription = args[:subscription] if args.key?(:subscription)
454
463
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WorkflowexecutionsV1
18
18
  # Version of the google-apis-workflowexecutions_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230328"
25
+ REVISION = "20230710"
26
26
  end
27
27
  end
28
28
  end
@@ -207,6 +207,7 @@ module Google
207
207
  # @private
208
208
  class Representation < Google::Apis::Core::JsonRepresentation
209
209
  property :gcp_cloud_events_mode, as: 'GCPCloudEventsMode'
210
+ property :delivery_attempt, as: 'deliveryAttempt'
210
211
  property :message, as: 'message', class: Google::Apis::WorkflowexecutionsV1::PubsubMessage, decorator: Google::Apis::WorkflowexecutionsV1::PubsubMessage::Representation
211
212
 
212
213
  property :subscription, as: 'subscription'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workflowexecutions_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.26.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-04-16 00:00:00.000000000 Z
11
+ date: 2023-07-16 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-workflowexecutions_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workflowexecutions_v1
63
63
  post_install_message:
64
64
  rdoc_options: []