/* 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. */ import { EnterpriseClusterAllOfCapacityInformation } from './enterprise-cluster-all-of-capacity-information'; import { SupportedKafkaInstanceTypesList } from './supported-kafka-instance-types-list'; /** * * @export * @interface EnterpriseClusterAllOf */ export interface EnterpriseClusterAllOf { /** * Indicates whether Kafkas created on this data plane cluster have to be accessed via private network * @type {boolean} * @memberof EnterpriseClusterAllOf */ 'access_kafkas_via_private_network': boolean; /** * The OCM\'s cluster id of the registered Enterprise cluster. * @type {string} * @memberof EnterpriseClusterAllOf */ 'cluster_id'?: string; /** * The status of Enterprise cluster registration * @type {string} * @memberof EnterpriseClusterAllOf */ 'status'?: string; /** * The cloud provider for this cluster. This valus will be used as the Kafka\'s cloud provider value when a Kafka is created on this cluster * @type {string} * @memberof EnterpriseClusterAllOf */ 'cloud_provider'?: string; /** * The region of this cluster. This valus will be used as the Kafka\'s region value when a Kafka is created on this cluster * @type {string} * @memberof EnterpriseClusterAllOf */ 'region'?: string; /** * A flag indicating whether this cluster is available on multiple availability zones or not * @type {boolean} * @memberof EnterpriseClusterAllOf */ 'multi_az': boolean; /** * * @type {SupportedKafkaInstanceTypesList} * @memberof EnterpriseClusterAllOf */ 'supported_instance_types'?: SupportedKafkaInstanceTypesList; /** * * @type {EnterpriseClusterAllOfCapacityInformation} * @memberof EnterpriseClusterAllOf */ 'capacity_information'?: EnterpriseClusterAllOfCapacityInformation; }