/* tslint:disable */ /* eslint-disable */ /** * Kafka Management API * Kafka Management API is a REST API to manage Kafka instances * * The version of the OpenAPI document: 1.16.0 * Contact: rhosak-support@redhat.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * schema for a kafka instance type capacity in region * @export * @interface RegionCapacityListItem */ export interface RegionCapacityListItem { /** * kafka instance type * @type {string} * @memberof RegionCapacityListItem */ 'instance_type': string; /** * list of available Kafka instance sizes that can be created in this region when taking account current capacity and regional limits * @type {Array} * @memberof RegionCapacityListItem */ 'available_sizes': Array; }