google-apis-cloudscheduler_v1 0.25.0 → 0.26.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/cloudscheduler_v1/classes.rb +14 -13
- data/lib/google/apis/cloudscheduler_v1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f888dec6098b28b1377bea4530c54b8f67583b56d882dacd0c468eada0453194
|
|
4
|
+
data.tar.gz: 43625d1358f29a7d771f83488107f91f43f746f1e111f7d70ffe20d7d4a78fe5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ecc88ff20bf7fd30321d9a8d8db225436801e5efaf61c6a57176cf189aa55908f00ae924a91548a9ab9b9bfa6836a1fbf1449a696073249d86fe6f3c1f5a006
|
|
7
|
+
data.tar.gz: 3411c8211c31a9a212cc69ecb03a3ba1ebac0db0fc3ebd10a02ab64f996d0c7d1b3588d8754f6b2c52675c2ef1c244278cd5d1c158182bf74327d5bd6d09f0b4
|
data/CHANGELOG.md
CHANGED
|
@@ -614,30 +614,31 @@ module Google
|
|
|
614
614
|
class PubsubMessage
|
|
615
615
|
include Google::Apis::Core::Hashable
|
|
616
616
|
|
|
617
|
-
# Attributes for this message. If this field is empty, the message
|
|
618
|
-
# non-empty data. This can be used to filter messages on the
|
|
617
|
+
# Optional. Attributes for this message. If this field is empty, the message
|
|
618
|
+
# must contain non-empty data. This can be used to filter messages on the
|
|
619
|
+
# subscription.
|
|
619
620
|
# Corresponds to the JSON property `attributes`
|
|
620
621
|
# @return [Hash<String,String>]
|
|
621
622
|
attr_accessor :attributes
|
|
622
623
|
|
|
623
|
-
# The message data field. If this field is empty, the message must
|
|
624
|
-
# least one attribute.
|
|
624
|
+
# Optional. The message data field. If this field is empty, the message must
|
|
625
|
+
# contain at least one attribute.
|
|
625
626
|
# Corresponds to the JSON property `data`
|
|
626
627
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
627
628
|
# @return [String]
|
|
628
629
|
attr_accessor :data
|
|
629
630
|
|
|
630
|
-
# ID of this message, assigned by the server when the message is
|
|
631
|
-
# Guaranteed to be unique within the topic. This value may be read by
|
|
632
|
-
# subscriber that receives a `PubsubMessage` via a `Pull` call or a push
|
|
631
|
+
# Optional. ID of this message, assigned by the server when the message is
|
|
632
|
+
# published. Guaranteed to be unique within the topic. This value may be read by
|
|
633
|
+
# a subscriber that receives a `PubsubMessage` via a `Pull` call or a push
|
|
633
634
|
# delivery. It must not be populated by the publisher in a `Publish` call.
|
|
634
635
|
# Corresponds to the JSON property `messageId`
|
|
635
636
|
# @return [String]
|
|
636
637
|
attr_accessor :message_id
|
|
637
638
|
|
|
638
|
-
# If non-empty, identifies related messages for which publish order
|
|
639
|
-
# respected. If a `Subscription` has `enable_message_ordering` set to `
|
|
640
|
-
# messages published with the same non-empty `ordering_key` value will be
|
|
639
|
+
# Optional. If non-empty, identifies related messages for which publish order
|
|
640
|
+
# should be respected. If a `Subscription` has `enable_message_ordering` set to `
|
|
641
|
+
# true`, messages published with the same non-empty `ordering_key` value will be
|
|
641
642
|
# delivered to subscribers in the order in which they are received by the Pub/
|
|
642
643
|
# Sub system. All `PubsubMessage`s published in a given `PublishRequest` must
|
|
643
644
|
# specify the same `ordering_key` value. For more information, see [ordering
|
|
@@ -646,9 +647,9 @@ module Google
|
|
|
646
647
|
# @return [String]
|
|
647
648
|
attr_accessor :ordering_key
|
|
648
649
|
|
|
649
|
-
# The time at which the message was published, populated by the server
|
|
650
|
-
# receives the `Publish` call. It must not be populated by the publisher
|
|
651
|
-
# Publish` call.
|
|
650
|
+
# Optional. The time at which the message was published, populated by the server
|
|
651
|
+
# when it receives the `Publish` call. It must not be populated by the publisher
|
|
652
|
+
# in a `Publish` call.
|
|
652
653
|
# Corresponds to the JSON property `publishTime`
|
|
653
654
|
# @return [String]
|
|
654
655
|
attr_accessor :publish_time
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudschedulerV1
|
|
18
18
|
# Version of the google-apis-cloudscheduler_v1 gem
|
|
19
|
-
GEM_VERSION = "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 = "
|
|
25
|
+
REVISION = "20230630"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudscheduler_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 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-
|
|
11
|
+
date: 2023-07-09 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-cloudscheduler_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1/v0.26.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudscheduler_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|