Skip to content

Commit 913f4d9

Browse files
feat: Automated regeneration of managedkafka v1 client (googleapis#23896)
Auto-created at 2025-08-10 10:08:48 +0000 using the toys pull request generator.
1 parent de79342 commit 913f4d9

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278440,6 +278440,7 @@
278440278440
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.get/name": name
278441278441
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.list": list_project_location_schema_registries
278442278442
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.list/parent": parent
278443+
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.list/view": view
278443278444
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.mode.delete": delete_project_location_schema_registry_mode
278444278445
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.mode.delete/name": name
278445278446
"/managedkafka:v1/managedkafka.projects.locations.schemaRegistries.mode.get": get_project_location_schema_registry_mode

generated/google-apis-managedkafka_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-managedkafka_v1
22

3+
### v0.11.0 (2025-08-10)
4+
5+
* Regenerated from discovery document revision 20250731
6+
37
### v0.10.0 (2025-07-13)
48

59
* Regenerated from discovery document revision 20250701

generated/google-apis-managedkafka_v1/lib/google/apis/managedkafka_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module ManagedkafkaV1
1818
# Version of the google-apis-managedkafka_v1 gem
19-
GEM_VERSION = "0.10.0"
19+
GEM_VERSION = "0.11.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250701"
25+
REVISION = "20250731"
2626
end
2727
end
2828
end

generated/google-apis-managedkafka_v1/lib/google/apis/managedkafka_v1/service.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,6 +1759,9 @@ def get_project_location_schema_registry(name, fields: nil, quota_user: nil, opt
17591759
# @param [String] parent
17601760
# Required. The parent whose schema registry instances are to be listed.
17611761
# Structured like: `projects/`project`/locations/`location``
1762+
# @param [String] view
1763+
# Optional. Specifies the view to return for the schema registry instances. If
1764+
# not specified, the default view is SCHEMA_REGISTRY_VIEW_BASIC.
17621765
# @param [String] fields
17631766
# Selector specifying which fields to include in a partial response.
17641767
# @param [String] quota_user
@@ -1776,11 +1779,12 @@ def get_project_location_schema_registry(name, fields: nil, quota_user: nil, opt
17761779
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
17771780
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
17781781
# @raise [Google::Apis::AuthorizationError] Authorization is required
1779-
def list_project_location_schema_registries(parent, fields: nil, quota_user: nil, options: nil, &block)
1782+
def list_project_location_schema_registries(parent, view: nil, fields: nil, quota_user: nil, options: nil, &block)
17801783
command = make_simple_command(:get, 'v1/{+parent}/schemaRegistries', options)
17811784
command.response_representation = Google::Apis::ManagedkafkaV1::ListSchemaRegistriesResponse::Representation
17821785
command.response_class = Google::Apis::ManagedkafkaV1::ListSchemaRegistriesResponse
17831786
command.params['parent'] = parent unless parent.nil?
1787+
command.query['view'] = view unless view.nil?
17841788
command.query['fields'] = fields unless fields.nil?
17851789
command.query['quotaUser'] = quota_user unless quota_user.nil?
17861790
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)