jack-kafka-management-sdk
Version:
RHOAS Kafka Management SDK
55 lines (54 loc) • 1.76 kB
TypeScript
/**
* Kafka Management API
* Kafka Management API is a REST API to manage Kafka instances
*
* The version of the OpenAPI document: 1.15.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.
*/
/**
*
* @export
* @interface EnterpriseClusterListItemAllOf
*/
export interface EnterpriseClusterListItemAllOf {
/**
* Indicates whether Kafkas created on this data plane cluster have to be accessed via private network
* @type {boolean}
* @memberof EnterpriseClusterListItemAllOf
*/
'access_kafkas_via_private_network': boolean;
/**
* The OCM\'s cluster id of the registered Enterprise cluster.
* @type {string}
* @memberof EnterpriseClusterListItemAllOf
*/
'cluster_id'?: string;
/**
* The status of Enterprise cluster registration
* @type {string}
* @memberof EnterpriseClusterListItemAllOf
*/
'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 EnterpriseClusterListItemAllOf
*/
'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 EnterpriseClusterListItemAllOf
*/
'region'?: string;
/**
* A flag indicating whether this cluster is available on multiple availability zones or not
* @type {boolean}
* @memberof EnterpriseClusterListItemAllOf
*/
'multi_az': boolean;
}