google-apis-pubsub_v1 0.69.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df23885f9d7e234b7fb85d413014926c8aeaa63dd0779e02c78f7dfc97269faf
|
|
4
|
+
data.tar.gz: 4e3b32eb057fef4b28d8b5f44890f2364a414aff7032e4b860a904ef125b86ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b219cba4aed0dc7da95152295599e74ae1e48cc7de849e44485ac266ccdebe5239f2d36a60a6dab97e567495da9e9a4006204efb15148537ceedb481a58966fc
|
|
7
|
+
data.tar.gz: c6174c3652f172f67acb8eee773f7fb7b8fb5be3d2fc3efeeaf80582aac72828ae359f733c8332202d847d9d7fb6209ac8fe868060c8efd802ab6ddb8e22d758
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.70.0 (2026-07-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260716
|
|
10
|
+
|
|
3
11
|
### v0.69.0 (2026-06-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260609
|
|
@@ -326,11 +326,13 @@ module Google
|
|
|
326
326
|
class BigQueryConfig
|
|
327
327
|
include Google::Apis::Core::Hashable
|
|
328
328
|
|
|
329
|
-
# Optional.
|
|
330
|
-
# of the topic schema that are not part of the BigQuery table schema
|
|
331
|
-
#
|
|
329
|
+
# Optional. If true and `use_topic_schema` is true, drops any fields that are
|
|
330
|
+
# part of the topic schema that are not part of the BigQuery table schema when
|
|
331
|
+
# writing to BigQuery. Otherwise, the schemas must be kept in sync and any
|
|
332
332
|
# messages with extra fields are not written and remain in the subscription's
|
|
333
|
-
# backlog.
|
|
333
|
+
# backlog. If true and `use_table_schema` is true, drops any fields in the
|
|
334
|
+
# message that are not part of the BigQuery table schema when writing to
|
|
335
|
+
# BigQuery. Otherwise, the write to BigQuery will fail.
|
|
334
336
|
# Corresponds to the JSON property `dropUnknownFields`
|
|
335
337
|
# @return [Boolean]
|
|
336
338
|
attr_accessor :drop_unknown_fields
|
|
@@ -747,6 +749,32 @@ module Google
|
|
|
747
749
|
end
|
|
748
750
|
end
|
|
749
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
|
+
|
|
750
778
|
# Configuration for compressing/decompressing message data using a user-
|
|
751
779
|
# specified compression algorithm.
|
|
752
780
|
class Compression
|
|
@@ -1940,6 +1968,11 @@ module Google
|
|
|
1940
1968
|
class Schema
|
|
1941
1969
|
include Google::Apis::Core::Hashable
|
|
1942
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
|
+
|
|
1943
1976
|
# The definition of the schema. This should contain a string representing the
|
|
1944
1977
|
# full definition of the schema that is a valid schema definition of the type
|
|
1945
1978
|
# specified in `type`.
|
|
@@ -1973,6 +2006,7 @@ module Google
|
|
|
1973
2006
|
|
|
1974
2007
|
# Update properties of this object
|
|
1975
2008
|
def update!(**args)
|
|
2009
|
+
@compiled_proto_schema = args[:compiled_proto_schema] if args.key?(:compiled_proto_schema)
|
|
1976
2010
|
@definition = args[:definition] if args.key?(:definition)
|
|
1977
2011
|
@name = args[:name] if args.key?(:name)
|
|
1978
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.
|
|
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 = "
|
|
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.
|
|
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.
|
|
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:
|