google-apis-managedkafka_v1 0.7.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/managedkafka_v1/gem_version.rb +3 -3
- data/lib/google/apis/managedkafka_v1/service.rb +66 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a2b4e5689ce668932397b538afb72411e98d8b7478235474c6ca2a00a729afe
|
4
|
+
data.tar.gz: c280e4496c40cbbc84b56a365c1a678e512f38049553dfff82acbff0c8639a32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6dfea0e15d4768ba078b4f2f8c085e56f81f0ea6e3b250b782f565538f40cdaa88c3361fe41e8be3e1d4638698f7e3581453bba463f9b7a49bb0363bed9d50f
|
7
|
+
data.tar.gz: 8699a34f1a5a45375c86a5824b96902a1e9c32345889b810b1bc3185b305879115fd4fabcc41b23c96a96a5f1fbe5ba57b43ee67eaca6279349b625304522b71
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-managedkafka_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250529
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.7.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250508
|
@@ -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.8.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 = "20250529"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2145,6 +2145,39 @@ module Google
|
|
2145
2145
|
execute_or_queue_command(command, &block)
|
2146
2146
|
end
|
2147
2147
|
|
2148
|
+
# Delete schema mode for a subject.
|
2149
|
+
# @param [String] name
|
2150
|
+
# Required. The resource name of subject to delete the mode for. The format is *
|
2151
|
+
# projects/`project`/locations/`location`/schemaRegistries/`schema_registry`/
|
2152
|
+
# mode/`subject` * projects/`project`/locations/`location`/schemaRegistries/`
|
2153
|
+
# schema_registry`/contexts/`context`/mode/`subject`
|
2154
|
+
# @param [String] fields
|
2155
|
+
# Selector specifying which fields to include in a partial response.
|
2156
|
+
# @param [String] quota_user
|
2157
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2158
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2159
|
+
# @param [Google::Apis::RequestOptions] options
|
2160
|
+
# Request-specific options
|
2161
|
+
#
|
2162
|
+
# @yield [result, err] Result & error if block supplied
|
2163
|
+
# @yieldparam result [Google::Apis::ManagedkafkaV1::SchemaMode] parsed result object
|
2164
|
+
# @yieldparam err [StandardError] error object if request failed
|
2165
|
+
#
|
2166
|
+
# @return [Google::Apis::ManagedkafkaV1::SchemaMode]
|
2167
|
+
#
|
2168
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2169
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2170
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2171
|
+
def delete_project_location_schema_registry_context_mode(name, fields: nil, quota_user: nil, options: nil, &block)
|
2172
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
2173
|
+
command.response_representation = Google::Apis::ManagedkafkaV1::SchemaMode::Representation
|
2174
|
+
command.response_class = Google::Apis::ManagedkafkaV1::SchemaMode
|
2175
|
+
command.params['name'] = name unless name.nil?
|
2176
|
+
command.query['fields'] = fields unless fields.nil?
|
2177
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2178
|
+
execute_or_queue_command(command, &block)
|
2179
|
+
end
|
2180
|
+
|
2148
2181
|
# Get mode at global level or for a subject.
|
2149
2182
|
# @param [String] name
|
2150
2183
|
# Required. The resource name of the mode. The format is * projects/`project`/
|
@@ -2757,6 +2790,39 @@ module Google
|
|
2757
2790
|
execute_or_queue_command(command, &block)
|
2758
2791
|
end
|
2759
2792
|
|
2793
|
+
# Delete schema mode for a subject.
|
2794
|
+
# @param [String] name
|
2795
|
+
# Required. The resource name of subject to delete the mode for. The format is *
|
2796
|
+
# projects/`project`/locations/`location`/schemaRegistries/`schema_registry`/
|
2797
|
+
# mode/`subject` * projects/`project`/locations/`location`/schemaRegistries/`
|
2798
|
+
# schema_registry`/contexts/`context`/mode/`subject`
|
2799
|
+
# @param [String] fields
|
2800
|
+
# Selector specifying which fields to include in a partial response.
|
2801
|
+
# @param [String] quota_user
|
2802
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2803
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2804
|
+
# @param [Google::Apis::RequestOptions] options
|
2805
|
+
# Request-specific options
|
2806
|
+
#
|
2807
|
+
# @yield [result, err] Result & error if block supplied
|
2808
|
+
# @yieldparam result [Google::Apis::ManagedkafkaV1::SchemaMode] parsed result object
|
2809
|
+
# @yieldparam err [StandardError] error object if request failed
|
2810
|
+
#
|
2811
|
+
# @return [Google::Apis::ManagedkafkaV1::SchemaMode]
|
2812
|
+
#
|
2813
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2814
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2815
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2816
|
+
def delete_project_location_schema_registry_mode(name, fields: nil, quota_user: nil, options: nil, &block)
|
2817
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
2818
|
+
command.response_representation = Google::Apis::ManagedkafkaV1::SchemaMode::Representation
|
2819
|
+
command.response_class = Google::Apis::ManagedkafkaV1::SchemaMode
|
2820
|
+
command.params['name'] = name unless name.nil?
|
2821
|
+
command.query['fields'] = fields unless fields.nil?
|
2822
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2823
|
+
execute_or_queue_command(command, &block)
|
2824
|
+
end
|
2825
|
+
|
2760
2826
|
# Get mode at global level or for a subject.
|
2761
2827
|
# @param [String] name
|
2762
2828
|
# Required. The resource name of the mode. The format is * projects/`project`/
|
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.8.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.8.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:
|
@@ -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 Managed Service for Apache Kafka API V1
|
79
79
|
test_files: []
|