Skip to content

Commit 4c3519b

Browse files
feat(managedkafka): update the API
#### managedkafka:v1 The following keys were added: - resources.projects.resources.locations.resources.schemaRegistries.methods.list.parameters.view.description - resources.projects.resources.locations.resources.schemaRegistries.methods.list.parameters.view.enum - resources.projects.resources.locations.resources.schemaRegistries.methods.list.parameters.view.enumDescriptions - resources.projects.resources.locations.resources.schemaRegistries.methods.list.parameters.view.location - resources.projects.resources.locations.resources.schemaRegistries.methods.list.parameters.view.type
1 parent a59d4e6 commit 4c3519b

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

discovery/managedkafka-v1.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,6 +1532,21 @@
15321532
"pattern": "^projects/[^/]+/locations/[^/]+$",
15331533
"required": true,
15341534
"type": "string"
1535+
},
1536+
"view": {
1537+
"description": "Optional. Specifies the view to return for the schema registry instances. If not specified, the default view is SCHEMA_REGISTRY_VIEW_BASIC.",
1538+
"enum": [
1539+
"SCHEMA_REGISTRY_VIEW_UNSPECIFIED",
1540+
"SCHEMA_REGISTRY_VIEW_BASIC",
1541+
"SCHEMA_REGISTRY_VIEW_FULL"
1542+
],
1543+
"enumDescriptions": [
1544+
"The unset value. The API will default to SCHEMA_REGISTRY_VIEW_BASIC.",
1545+
"If SchemaRegistryView is not specified, this is the default value. Returns only the name of the schema registry. The contexts associated with it are not included.",
1546+
"Returns the name of the schema registry and all the contexts associated with it."
1547+
],
1548+
"location": "query",
1549+
"type": "string"
15351550
}
15361551
},
15371552
"path": "v1/{+parent}/schemaRegistries",
@@ -2919,7 +2934,7 @@
29192934
}
29202935
}
29212936
},
2922-
"revision": "20250701",
2937+
"revision": "20250731",
29232938
"rootUrl": "https://managedkafka.googleapis.com/",
29242939
"schemas": {
29252940
"AccessConfig": {

src/apis/managedkafka/v1.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8123,6 +8123,8 @@ export namespace managedkafka_v1 {
81238123
* const res = await managedkafka.projects.locations.schemaRegistries.list({
81248124
* // Required. The parent whose schema registry instances are to be listed. Structured like: `projects/{project\}/locations/{location\}`
81258125
* parent: 'projects/my-project/locations/my-location',
8126+
* // Optional. Specifies the view to return for the schema registry instances. If not specified, the default view is SCHEMA_REGISTRY_VIEW_BASIC.
8127+
* view: 'placeholder-value',
81268128
* });
81278129
* console.log(res.data);
81288130
*
@@ -8266,6 +8268,10 @@ export namespace managedkafka_v1 {
82668268
* Required. The parent whose schema registry instances are to be listed. Structured like: `projects/{project\}/locations/{location\}`
82678269
*/
82688270
parent?: string;
8271+
/**
8272+
* Optional. Specifies the view to return for the schema registry instances. If not specified, the default view is SCHEMA_REGISTRY_VIEW_BASIC.
8273+
*/
8274+
view?: string;
82698275
}
82708276

82718277
export class Resource$Projects$Locations$Schemaregistries$Compatibility {

0 commit comments

Comments
 (0)