google-apis-managedkafka_v1 0.23.0 → 0.24.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: f4f3be1dbb2f7d9c948ef1ef91739e1a6bea643b539dfc5432d5cdbb7d6ac595
|
|
4
|
+
data.tar.gz: f95fddcb9800ffb6ddf4ccba08842882a53fd315b290290229134f2944401313
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67dcb0965589479078f60210f47119a7f2ba977fddba64daa8e2613e9bbd99fb0551045e18d6b25d20e14cf6dfe9bee1bc32d0260a821a50a2adc81cd7fe5768
|
|
7
|
+
data.tar.gz: d6c22f7433576749ca19e8fd0f96b5498b8c64571f036bc99c9a1552b5175a4de0c61d969566caa5abace7c01b5d3fd6c8e22884c3c69922639a3ef6a6262592
|
data/CHANGELOG.md
CHANGED
|
@@ -1747,6 +1747,37 @@ module Google
|
|
|
1747
1747
|
end
|
|
1748
1748
|
end
|
|
1749
1749
|
|
|
1750
|
+
# Subject defines the evolution scope of schemas as a holder of schema versions.
|
|
1751
|
+
class SchemaSubject
|
|
1752
|
+
include Google::Apis::Core::Hashable
|
|
1753
|
+
|
|
1754
|
+
# Identifier. The name of the subject. Structured like: `projects/`project`/
|
|
1755
|
+
# locations/`location`/schemaRegistries/`schema_registry`/subjects/`subject`` or
|
|
1756
|
+
# `projects/`project`/locations/`location`/schemaRegistries/`schema_registry`/
|
|
1757
|
+
# contexts/`context`/subjects/`subject`` Subject name `subject` can contain the
|
|
1758
|
+
# following: * Up to 255 UTF-8 bytes. * Allowed characters: letters (uppercase
|
|
1759
|
+
# or lowercase), numbers, and the following special characters: `.`, `-`, `_`, `+
|
|
1760
|
+
# `, `%`, and `~`.
|
|
1761
|
+
# Corresponds to the JSON property `name`
|
|
1762
|
+
# @return [String]
|
|
1763
|
+
attr_accessor :name
|
|
1764
|
+
|
|
1765
|
+
# Optional. The versions of the subject.
|
|
1766
|
+
# Corresponds to the JSON property `versions`
|
|
1767
|
+
# @return [Array<String>]
|
|
1768
|
+
attr_accessor :versions
|
|
1769
|
+
|
|
1770
|
+
def initialize(**args)
|
|
1771
|
+
update!(**args)
|
|
1772
|
+
end
|
|
1773
|
+
|
|
1774
|
+
# Update properties of this object
|
|
1775
|
+
def update!(**args)
|
|
1776
|
+
@name = args[:name] if args.key?(:name)
|
|
1777
|
+
@versions = args[:versions] if args.key?(:versions)
|
|
1778
|
+
end
|
|
1779
|
+
end
|
|
1780
|
+
|
|
1750
1781
|
# Version of a schema.
|
|
1751
1782
|
class SchemaVersion
|
|
1752
1783
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ManagedkafkaV1
|
|
18
18
|
# Version of the google-apis-managedkafka_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.24.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260507"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -340,6 +340,12 @@ module Google
|
|
|
340
340
|
include Google::Apis::Core::JsonObjectSupport
|
|
341
341
|
end
|
|
342
342
|
|
|
343
|
+
class SchemaSubject
|
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
|
+
|
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
347
|
+
end
|
|
348
|
+
|
|
343
349
|
class SchemaVersion
|
|
344
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
351
|
|
|
@@ -896,6 +902,14 @@ module Google
|
|
|
896
902
|
end
|
|
897
903
|
end
|
|
898
904
|
|
|
905
|
+
class SchemaSubject
|
|
906
|
+
# @private
|
|
907
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
908
|
+
property :name, as: 'name'
|
|
909
|
+
collection :versions, as: 'versions'
|
|
910
|
+
end
|
|
911
|
+
end
|
|
912
|
+
|
|
899
913
|
class SchemaVersion
|
|
900
914
|
# @private
|
|
901
915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-managedkafka_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.24.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-managedkafka_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-managedkafka_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-managedkafka_v1/v0.24.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedkafka_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|