UNPKG

jack-kafka-instance-sdk

Version:
30 lines (29 loc) 847 B
/** * 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 declare const AclOperationFilter: { readonly All: "ALL"; readonly Read: "READ"; readonly Write: "WRITE"; readonly Create: "CREATE"; readonly Delete: "DELETE"; readonly Alter: "ALTER"; readonly Describe: "DESCRIBE"; readonly DescribeConfigs: "DESCRIBE_CONFIGS"; readonly AlterConfigs: "ALTER_CONFIGS"; readonly Any: "ANY"; }; export type AclOperationFilter = typeof AclOperationFilter[keyof typeof AclOperationFilter];