File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
packages/kafka-instance-sdk/src/generated/model Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 2121 */
2222export 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 */
You can’t perform that action at this time.
0 commit comments