Skip to content

Commit 8170eb8

Browse files
chore(all): re-generate OpenAPI client(s) (#210)
Co-authored-by: app-services-ci <app-services-ci@users.noreply.github.com>
1 parent 980700a commit 8170eb8

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

packages/kafka-instance-sdk/src/generated/model/partition.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,26 @@
2121
*/
2222
export interface Partition {
2323
/**
24-
* Uniquie id for the partition
24+
* The partition id, unique among partitions of the same topic
2525
* @type {number}
2626
* @memberof Partition
2727
*/
28-
id: number;
28+
partition: number;
29+
/**
30+
* Unique id for the partition (deprecated, use `partition` instead)
31+
* @type {number}
32+
* @memberof Partition
33+
* @deprecated
34+
*/
35+
id?: number;
2936
/**
3037
* List of replicas for the partition
3138
* @type {Array<object>}
3239
* @memberof Partition
3340
*/
3441
replicas?: Array<object>;
3542
/**
36-
* List isync-replicas for this partition.
43+
* List in-sync replicas for this partition.
3744
* @type {Array<object>}
3845
* @memberof Partition
3946
*/

0 commit comments

Comments
 (0)