google-apis-pubsub_v1 0.62.0 → 0.63.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68edcdc37c1f1fa3189eb00e475df485de14860f3a623ea6069798d31bd5a5a9
|
|
4
|
+
data.tar.gz: e2edcf26229eb2d148d058b12131b85b3e07619bcec6221c560977088d9f430a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c586495bfb56f18ea1d4cf0723708fe0bf0c1b6e1ef00038fad7839e8cd0226aa778f6ecfc8504da1113ce79cde89e3f65ed8f233c5537d1463af797e3666188
|
|
7
|
+
data.tar.gz: 4d26887fba7f25512ccb54a6d9678c3bb1597666c003af87e1d126a9b2295b8083557e144c90695b63055f6c5827530863ec2bb62be04e14cc1ac2cb66adb109
|
data/CHANGELOG.md
CHANGED
|
@@ -723,6 +723,13 @@ module Google
|
|
|
723
723
|
# @return [String]
|
|
724
724
|
attr_accessor :subscription
|
|
725
725
|
|
|
726
|
+
# Optional. Input only. Immutable. Tag keys/values directly bound to this
|
|
727
|
+
# resource. For example: "123/environment": "production", "123/costCenter": "
|
|
728
|
+
# marketing"
|
|
729
|
+
# Corresponds to the JSON property `tags`
|
|
730
|
+
# @return [Hash<String,String>]
|
|
731
|
+
attr_accessor :tags
|
|
732
|
+
|
|
726
733
|
def initialize(**args)
|
|
727
734
|
update!(**args)
|
|
728
735
|
end
|
|
@@ -731,6 +738,7 @@ module Google
|
|
|
731
738
|
def update!(**args)
|
|
732
739
|
@labels = args[:labels] if args.key?(:labels)
|
|
733
740
|
@subscription = args[:subscription] if args.key?(:subscription)
|
|
741
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
734
742
|
end
|
|
735
743
|
end
|
|
736
744
|
|
|
@@ -2179,6 +2187,13 @@ module Google
|
|
|
2179
2187
|
# @return [String]
|
|
2180
2188
|
attr_accessor :state
|
|
2181
2189
|
|
|
2190
|
+
# Optional. Input only. Immutable. Tag keys/values directly bound to this
|
|
2191
|
+
# resource. For example: "123/environment": "production", "123/costCenter": "
|
|
2192
|
+
# marketing"
|
|
2193
|
+
# Corresponds to the JSON property `tags`
|
|
2194
|
+
# @return [Hash<String,String>]
|
|
2195
|
+
attr_accessor :tags
|
|
2196
|
+
|
|
2182
2197
|
# Required. The name of the topic from which this subscription is receiving
|
|
2183
2198
|
# messages. Format is `projects/`project`/topics/`topic``. The value of this
|
|
2184
2199
|
# field will be `_deleted-topic_` if the topic has been deleted.
|
|
@@ -2220,6 +2235,7 @@ module Google
|
|
|
2220
2235
|
@retain_acked_messages = args[:retain_acked_messages] if args.key?(:retain_acked_messages)
|
|
2221
2236
|
@retry_policy = args[:retry_policy] if args.key?(:retry_policy)
|
|
2222
2237
|
@state = args[:state] if args.key?(:state)
|
|
2238
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
2223
2239
|
@topic = args[:topic] if args.key?(:topic)
|
|
2224
2240
|
@topic_message_retention_duration = args[:topic_message_retention_duration] if args.key?(:topic_message_retention_duration)
|
|
2225
2241
|
end
|
|
@@ -2371,6 +2387,13 @@ module Google
|
|
|
2371
2387
|
# @return [String]
|
|
2372
2388
|
attr_accessor :state
|
|
2373
2389
|
|
|
2390
|
+
# Optional. Input only. Immutable. Tag keys/values directly bound to this
|
|
2391
|
+
# resource. For example: "123/environment": "production", "123/costCenter": "
|
|
2392
|
+
# marketing"
|
|
2393
|
+
# Corresponds to the JSON property `tags`
|
|
2394
|
+
# @return [Hash<String,String>]
|
|
2395
|
+
attr_accessor :tags
|
|
2396
|
+
|
|
2374
2397
|
def initialize(**args)
|
|
2375
2398
|
update!(**args)
|
|
2376
2399
|
end
|
|
@@ -2387,6 +2410,7 @@ module Google
|
|
|
2387
2410
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
2388
2411
|
@schema_settings = args[:schema_settings] if args.key?(:schema_settings)
|
|
2389
2412
|
@state = args[:state] if args.key?(:state)
|
|
2413
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
2390
2414
|
end
|
|
2391
2415
|
end
|
|
2392
2416
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.63.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251025"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -566,6 +566,7 @@ module Google
|
|
|
566
566
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
567
567
|
hash :labels, as: 'labels'
|
|
568
568
|
property :subscription, as: 'subscription'
|
|
569
|
+
hash :tags, as: 'tags'
|
|
569
570
|
end
|
|
570
571
|
end
|
|
571
572
|
|
|
@@ -934,6 +935,7 @@ module Google
|
|
|
934
935
|
property :retry_policy, as: 'retryPolicy', class: Google::Apis::PubsubV1::RetryPolicy, decorator: Google::Apis::PubsubV1::RetryPolicy::Representation
|
|
935
936
|
|
|
936
937
|
property :state, as: 'state'
|
|
938
|
+
hash :tags, as: 'tags'
|
|
937
939
|
property :topic, as: 'topic'
|
|
938
940
|
property :topic_message_retention_duration, as: 'topicMessageRetentionDuration'
|
|
939
941
|
end
|
|
@@ -983,6 +985,7 @@ module Google
|
|
|
983
985
|
property :schema_settings, as: 'schemaSettings', class: Google::Apis::PubsubV1::SchemaSettings, decorator: Google::Apis::PubsubV1::SchemaSettings::Representation
|
|
984
986
|
|
|
985
987
|
property :state, as: 'state'
|
|
988
|
+
hash :tags, as: 'tags'
|
|
986
989
|
end
|
|
987
990
|
end
|
|
988
991
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-pubsub_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.63.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-pubsub_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.63.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-pubsub_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Cloud Pub/Sub API V1
|
|
79
79
|
test_files: []
|