Skip to content

Commit c94055f

Browse files
yoshi-automationsofisl
authored andcommitted
feat(managedkafka): update the API
#### managedkafka:v1 The following keys were added: - schemas.ConnectCluster.properties.satisfiesPzi.description - schemas.ConnectCluster.properties.satisfiesPzi.readOnly - schemas.ConnectCluster.properties.satisfiesPzi.type - schemas.ConnectCluster.properties.satisfiesPzs.description - schemas.ConnectCluster.properties.satisfiesPzs.readOnly - schemas.ConnectCluster.properties.satisfiesPzs.type
1 parent 6b55e08 commit c94055f

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

discovery/managedkafka-v1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2919,7 +2919,7 @@
29192919
}
29202920
}
29212921
},
2922-
"revision": "20250623",
2922+
"revision": "20250701",
29232923
"rootUrl": "https://managedkafka.googleapis.com/",
29242924
"schemas": {
29252925
"AccessConfig": {
@@ -3228,6 +3228,16 @@
32283228
"description": "Identifier. The name of the Kafka Connect cluster. Structured like: projects/{project_number}/locations/{location}/connectClusters/{connect_cluster_id}",
32293229
"type": "string"
32303230
},
3231+
"satisfiesPzi": {
3232+
"description": "Output only. Reserved for future use.",
3233+
"readOnly": true,
3234+
"type": "boolean"
3235+
},
3236+
"satisfiesPzs": {
3237+
"description": "Output only. Reserved for future use.",
3238+
"readOnly": true,
3239+
"type": "boolean"
3240+
},
32313241
"state": {
32323242
"description": "Output only. The current state of the cluster.",
32333243
"enum": [

src/apis/managedkafka/v1.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,14 @@ export namespace managedkafka_v1 {
346346
* Identifier. The name of the Kafka Connect cluster. Structured like: projects/{project_number\}/locations/{location\}/connectClusters/{connect_cluster_id\}
347347
*/
348348
name?: string | null;
349+
/**
350+
* Output only. Reserved for future use.
351+
*/
352+
satisfiesPzi?: boolean | null;
353+
/**
354+
* Output only. Reserved for future use.
355+
*/
356+
satisfiesPzs?: boolean | null;
349357
/**
350358
* Output only. The current state of the cluster.
351359
*/
@@ -4814,6 +4822,8 @@ export namespace managedkafka_v1 {
48144822
* // "kafkaCluster": "my_kafkaCluster",
48154823
* // "labels": {},
48164824
* // "name": "my_name",
4825+
* // "satisfiesPzi": false,
4826+
* // "satisfiesPzs": false,
48174827
* // "state": "my_state",
48184828
* // "updateTime": "my_updateTime"
48194829
* // }
@@ -5113,6 +5123,8 @@ export namespace managedkafka_v1 {
51135123
* // "kafkaCluster": "my_kafkaCluster",
51145124
* // "labels": {},
51155125
* // "name": "my_name",
5126+
* // "satisfiesPzi": false,
5127+
* // "satisfiesPzs": false,
51165128
* // "state": "my_state",
51175129
* // "updateTime": "my_updateTime"
51185130
* // }
@@ -5410,6 +5422,8 @@ export namespace managedkafka_v1 {
54105422
* // "kafkaCluster": "my_kafkaCluster",
54115423
* // "labels": {},
54125424
* // "name": "my_name",
5425+
* // "satisfiesPzi": false,
5426+
* // "satisfiesPzs": false,
54135427
* // "state": "my_state",
54145428
* // "updateTime": "my_updateTime"
54155429
* // }

0 commit comments

Comments
 (0)