google-apis-pubsub_v1 0.68.0 → 0.69.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: fce72394467497571864afc3e65d4bd40af9d02e3fc16259c4e324a2d242fe35
4
- data.tar.gz: 60f369ce2537054a1ec07fa7123229ee466f5cb1609d6db445d92fe2f10231b9
3
+ metadata.gz: 8fef5357196bdbd7081405d5d5edb24502bc79f2b97af8f9e2549467a51949b7
4
+ data.tar.gz: 9e8724e32f29a1fae0bc1c2675eaeb3b681a2f18a3e3da6d3413fb944271ae16
5
5
  SHA512:
6
- metadata.gz: b6919279230e206a66a7f1fee0838cba21c9e1686331aab24733533386a8fb52b4c926f98160c4286d0d76b7caa77689bb981051f6f255a01cec72614ca2850d
7
- data.tar.gz: 662c88660d90cfdb2793df0aec15521dbf35ff4a7bc3c84f6ddb55da2e23e398337397fa9323e61650c592bb2f49149df84fd75076064aae4afc7fbd60fb56b2
6
+ metadata.gz: ba23b21aed1e37a975a44e56f5e50f5a832ceaf358c8841c0afab7098ab8e02d2f810c443e06f3f2ae4ea7c3237820b60ddeb58fc769289ddd480a79b21c63e5
7
+ data.tar.gz: 0e5512b250a06b8c665160f51f0b239085945ae37e23da8fa72e2f2113fa184a2fc4d8e649d81c68cd93fb8a780f0c00a7a41e083a14f834c30c6d7facc181c7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-pubsub_v1
2
2
 
3
+ ### v0.69.0 (2026-06-21)
4
+
5
+ * Regenerated from discovery document revision 20260609
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.68.0 (2026-05-10)
4
9
 
5
10
  * Regenerated from discovery document revision 20260421
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/pubsub/docs) may provide gu
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -400,10 +400,10 @@ module Google
400
400
  end
401
401
 
402
402
  # Configuration for a Bigtable subscription. The Pub/Sub message will be written
403
- # to a Bigtable row as follows: - row key: subscription name and message ID
404
- # delimited by #. - columns: message bytes written to a single column family "
405
- # data" with an empty-string column qualifier. - cell timestamp: the message
406
- # publish timestamp.
403
+ # to a Bigtable row as follows: - row key: subscription name, message ID hash,
404
+ # and message ID delimited by `#`. - columns: message bytes written to a single
405
+ # column family `data` with an empty-string column qualifier. - cell timestamp:
406
+ # the message publish timestamp.
407
407
  class BigtableConfig
408
408
  include Google::Apis::Core::Hashable
409
409
 
@@ -747,6 +747,32 @@ module Google
747
747
  end
748
748
  end
749
749
 
750
+ # Configuration for compressing/decompressing message data using a user-
751
+ # specified compression algorithm.
752
+ class Compression
753
+ include Google::Apis::Core::Hashable
754
+
755
+ # Required. Specifies the compression algorithm to use.
756
+ # Corresponds to the JSON property `compressionAlgorithm`
757
+ # @return [String]
758
+ attr_accessor :compression_algorithm
759
+
760
+ # Required. Specifies whether to compress or decompress the message.
761
+ # Corresponds to the JSON property `compressionMode`
762
+ # @return [String]
763
+ attr_accessor :compression_mode
764
+
765
+ def initialize(**args)
766
+ update!(**args)
767
+ end
768
+
769
+ # Update properties of this object
770
+ def update!(**args)
771
+ @compression_algorithm = args[:compression_algorithm] if args.key?(:compression_algorithm)
772
+ @compression_mode = args[:compression_mode] if args.key?(:compression_mode)
773
+ end
774
+ end
775
+
750
776
  # Ingestion settings for Confluent Cloud.
751
777
  class ConfluentCloud
752
778
  include Google::Apis::Core::Hashable
@@ -1305,6 +1331,12 @@ module Google
1305
1331
  # @return [Google::Apis::PubsubV1::AiInference]
1306
1332
  attr_accessor :ai_inference
1307
1333
 
1334
+ # Configuration for compressing/decompressing message data using a user-
1335
+ # specified compression algorithm.
1336
+ # Corresponds to the JSON property `compression`
1337
+ # @return [Google::Apis::PubsubV1::Compression]
1338
+ attr_accessor :compression
1339
+
1308
1340
  # Optional. If true, the transform is disabled and will not be applied to
1309
1341
  # messages. Defaults to `false`.
1310
1342
  # Corresponds to the JSON property `disabled`
@@ -1332,6 +1364,7 @@ module Google
1332
1364
  # Update properties of this object
1333
1365
  def update!(**args)
1334
1366
  @ai_inference = args[:ai_inference] if args.key?(:ai_inference)
1367
+ @compression = args[:compression] if args.key?(:compression)
1335
1368
  @disabled = args[:disabled] if args.key?(:disabled)
1336
1369
  @enabled = args[:enabled] if args.key?(:enabled)
1337
1370
  @javascript_udf = args[:javascript_udf] if args.key?(:javascript_udf)
@@ -2173,10 +2206,10 @@ module Google
2173
2206
  attr_accessor :bigquery_config
2174
2207
 
2175
2208
  # Configuration for a Bigtable subscription. The Pub/Sub message will be written
2176
- # to a Bigtable row as follows: - row key: subscription name and message ID
2177
- # delimited by #. - columns: message bytes written to a single column family "
2178
- # data" with an empty-string column qualifier. - cell timestamp: the message
2179
- # publish timestamp.
2209
+ # to a Bigtable row as follows: - row key: subscription name, message ID hash,
2210
+ # and message ID delimited by `#`. - columns: message bytes written to a single
2211
+ # column family `data` with an empty-string column qualifier. - cell timestamp:
2212
+ # the message publish timestamp.
2180
2213
  # Corresponds to the JSON property `bigtableConfig`
2181
2214
  # @return [Google::Apis::PubsubV1::BigtableConfig]
2182
2215
  attr_accessor :bigtable_config
@@ -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.68.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260421"
25
+ REVISION = "20260609"
26
26
  end
27
27
  end
28
28
  end
@@ -106,6 +106,12 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
+ class Compression
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
109
115
  class ConfluentCloud
110
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
117
 
@@ -588,6 +594,14 @@ module Google
588
594
  end
589
595
  end
590
596
 
597
+ class Compression
598
+ # @private
599
+ class Representation < Google::Apis::Core::JsonRepresentation
600
+ property :compression_algorithm, as: 'compressionAlgorithm'
601
+ property :compression_mode, as: 'compressionMode'
602
+ end
603
+ end
604
+
591
605
  class ConfluentCloud
592
606
  # @private
593
607
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -746,6 +760,8 @@ module Google
746
760
  class Representation < Google::Apis::Core::JsonRepresentation
747
761
  property :ai_inference, as: 'aiInference', class: Google::Apis::PubsubV1::AiInference, decorator: Google::Apis::PubsubV1::AiInference::Representation
748
762
 
763
+ property :compression, as: 'compression', class: Google::Apis::PubsubV1::Compression, decorator: Google::Apis::PubsubV1::Compression::Representation
764
+
749
765
  property :disabled, as: 'disabled'
750
766
  property :enabled, as: 'enabled'
751
767
  property :javascript_udf, as: 'javascriptUdf', class: Google::Apis::PubsubV1::JavaScriptUdf, decorator: Google::Apis::PubsubV1::JavaScriptUdf::Representation
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.68.0
4
+ version: 0.69.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.68.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.69.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:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="