UNPKG

@rhoas/kafka-instance-sdk

Version:
32 lines (23 loc) 608 B
/* 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. */ /** * * @export * @enum {string} */ export const AclPermissionType = { Allow: 'ALLOW', Deny: 'DENY' } as const; export type AclPermissionType = typeof AclPermissionType[keyof typeof AclPermissionType];