google-apis-pubsub_v1 0.70.0 → 0.71.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: d85094b299895426368dd93d2d1d1d2686d2af50081d1c3c07e9168eb81603e8
4
- data.tar.gz: 4289905561ca35820bc29e5425589ff637864a92e8f3125a10fcb3aba9207d4c
3
+ metadata.gz: df23885f9d7e234b7fb85d413014926c8aeaa63dd0779e02c78f7dfc97269faf
4
+ data.tar.gz: 4e3b32eb057fef4b28d8b5f44890f2364a414aff7032e4b860a904ef125b86ed
5
5
  SHA512:
6
- metadata.gz: b02add822936d9cd1b3ea1f62d1bf852eb8df73cccfd8363fcfb8b4e753dd9bda10c4b4c314c91c7550d69d5f55c0982777cdde462939a0119a18902f1448b24
7
- data.tar.gz: aa3b91ed3a148f62f7b6b035831394453373b84c9758f0726c745133e48fca5d04998ae9dbaeb86427cc26be46d67ac720c85aea44a1010573b63dc70aa7ea7c
6
+ metadata.gz: b219cba4aed0dc7da95152295599e74ae1e48cc7de849e44485ac266ccdebe5239f2d36a60a6dab97e567495da9e9a4006204efb15148537ceedb481a58966fc
7
+ data.tar.gz: c6174c3652f172f67acb8eee773f7fb7b8fb5be3d2fc3efeeaf80582aac72828ae359f733c8332202d847d9d7fb6209ac8fe868060c8efd802ab6ddb8e22d758
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-pubsub_v1
2
2
 
3
+ ### v0.71.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260825
6
+
3
7
  ### v0.70.0 (2026-07-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20260716
@@ -749,6 +749,32 @@ module Google
749
749
  end
750
750
  end
751
751
 
752
+ # Configuration specific to compiled Protocol Buffer schemas.
753
+ class CompiledProtoSchema
754
+ include Google::Apis::Core::Hashable
755
+
756
+ # Required. The compiled FileDescriptorSet binary.
757
+ # Corresponds to the JSON property `compiledBytes`
758
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
759
+ # @return [String]
760
+ attr_accessor :compiled_bytes
761
+
762
+ # Required. The name of the root message type in the schema.
763
+ # Corresponds to the JSON property `rootMessage`
764
+ # @return [String]
765
+ attr_accessor :root_message
766
+
767
+ def initialize(**args)
768
+ update!(**args)
769
+ end
770
+
771
+ # Update properties of this object
772
+ def update!(**args)
773
+ @compiled_bytes = args[:compiled_bytes] if args.key?(:compiled_bytes)
774
+ @root_message = args[:root_message] if args.key?(:root_message)
775
+ end
776
+ end
777
+
752
778
  # Configuration for compressing/decompressing message data using a user-
753
779
  # specified compression algorithm.
754
780
  class Compression
@@ -1942,6 +1968,11 @@ module Google
1942
1968
  class Schema
1943
1969
  include Google::Apis::Core::Hashable
1944
1970
 
1971
+ # Configuration specific to compiled Protocol Buffer schemas.
1972
+ # Corresponds to the JSON property `compiledProtoSchema`
1973
+ # @return [Google::Apis::PubsubV1::CompiledProtoSchema]
1974
+ attr_accessor :compiled_proto_schema
1975
+
1945
1976
  # The definition of the schema. This should contain a string representing the
1946
1977
  # full definition of the schema that is a valid schema definition of the type
1947
1978
  # specified in `type`.
@@ -1975,6 +2006,7 @@ module Google
1975
2006
 
1976
2007
  # Update properties of this object
1977
2008
  def update!(**args)
2009
+ @compiled_proto_schema = args[:compiled_proto_schema] if args.key?(:compiled_proto_schema)
1978
2010
  @definition = args[:definition] if args.key?(:definition)
1979
2011
  @name = args[:name] if args.key?(:name)
1980
2012
  @revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
@@ -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.70.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260716"
25
+ REVISION = "20260825"
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 CompiledProtoSchema
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
109
115
  class Compression
110
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
117
 
@@ -594,6 +600,14 @@ module Google
594
600
  end
595
601
  end
596
602
 
603
+ class CompiledProtoSchema
604
+ # @private
605
+ class Representation < Google::Apis::Core::JsonRepresentation
606
+ property :compiled_bytes, :base64 => true, as: 'compiledBytes'
607
+ property :root_message, as: 'rootMessage'
608
+ end
609
+ end
610
+
597
611
  class Compression
598
612
  # @private
599
613
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -913,6 +927,8 @@ module Google
913
927
  class Schema
914
928
  # @private
915
929
  class Representation < Google::Apis::Core::JsonRepresentation
930
+ property :compiled_proto_schema, as: 'compiledProtoSchema', class: Google::Apis::PubsubV1::CompiledProtoSchema, decorator: Google::Apis::PubsubV1::CompiledProtoSchema::Representation
931
+
916
932
  property :definition, as: 'definition'
917
933
  property :name, as: 'name'
918
934
  property :revision_create_time, as: 'revisionCreateTime'
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.70.0
4
+ version: 0.71.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.70.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-pubsub_v1/v0.71.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: