@rhoas/kafka-instance-sdk
Version:
RHOAS Kafka Instance Adminstration SDK
67 lines (62 loc) • 1.77 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* Kafka Instance API
* API for interacting with Kafka Instance. Includes Produce, Consume and Admin APIs
*
* The version of the OpenAPI document: 0.14.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* A Kafka consumer is responsible for reading records from one or more topics and one or more partitions of a topic.
* @export
* @interface Consumer
*/
export interface Consumer {
/**
* Unique identifier for the consumer group to which this consumer belongs.
* @type {string}
* @memberof Consumer
*/
'groupId': string;
/**
* The unique topic name to which this consumer belongs
* @type {string}
* @memberof Consumer
*/
'topic': string;
/**
* The partition number to which this consumer group is assigned to.
* @type {number}
* @memberof Consumer
*/
'partition': number;
/**
* Offset denotes the position of the consumer in a partition.
* @type {number}
* @memberof Consumer
*/
'offset': number;
/**
* The log end offset is the offset of the last message written to a log.
* @type {number}
* @memberof Consumer
*/
'logEndOffset'?: number;
/**
* Offset Lag is the delta between the last produced message and the last consumer\'s committed offset.
* @type {number}
* @memberof Consumer
*/
'lag': number;
/**
* The member ID is a unique identifier given to a consumer by the coordinator upon initially joining the group.
* @type {string}
* @memberof Consumer
*/
'memberId'?: string;
}