Skip to content

Commit

Permalink
chore(all): re-generate OpenAPI client(s) (#210)
Browse files Browse the repository at this point in the history
Co-authored-by: app-services-ci <app-services-ci@users.noreply.github.com>
  • Loading branch information
app-services-ci and app-services-ci authored Nov 5, 2021
1 parent 980700a commit 8170eb8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions packages/kafka-instance-sdk/src/generated/model/partition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,26 @@
*/
export interface Partition {
/**
* Uniquie id for the partition
* The partition id, unique among partitions of the same topic
* @type {number}
* @memberof Partition
*/
id: number;
partition: number;
/**
* Unique id for the partition (deprecated, use `partition` instead)
* @type {number}
* @memberof Partition
* @deprecated
*/
id?: number;
/**
* List of replicas for the partition
* @type {Array<object>}
* @memberof Partition
*/
replicas?: Array<object>;
/**
* List isync-replicas for this partition.
* List in-sync replicas for this partition.
* @type {Array<object>}
* @memberof Partition
*/
Expand Down

0 comments on commit 8170eb8

Please sign in to comment.