@rhoas/kafka-instance-sdk
Version:
RHOAS Kafka Instance Adminstration SDK
37 lines (32 loc) • 873 B
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.
*/
/**
* Key value pair indicating possible configuration options for a topic.
* @export
* @interface ConfigEntry
*/
export interface ConfigEntry {
/**
* The key indicating what configuration entry you would like to set for the topic.
* @type {string}
* @memberof ConfigEntry
*/
'key': string;
/**
* Value to indicate the setting on the topic configuration entry.
* @type {string}
* @memberof ConfigEntry
*/
'value': string;
}