@rhoas/kafka-instance-sdk
Version:
RHOAS Kafka Instance Adminstration SDK
38 lines (33 loc) • 814 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.
*/
import { TopicSettings } from './topic-settings';
/**
* Input object to create a new topic.
* @export
* @interface NewTopicInput
*/
export interface NewTopicInput {
/**
* The topic name, this value must be unique.
* @type {string}
* @memberof NewTopicInput
*/
'name': string;
/**
*
* @type {TopicSettings}
* @memberof NewTopicInput
*/
'settings': TopicSettings;
}