@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias AlterConfigOpValue

    The type of operation to perform on a configuration entry.

    • 0 (SET): Set the value of the configuration entry.
    • 1 (DELETE): Revert the configuration entry to the default value.
    • 2 (APPEND): Append to the value of the configuration entry (list types).
    • 3 (SUBTRACT): Remove from the value of the configuration entry (list types).
    type AlterConfigOpValue = {
        Append: 2;
        Delete: 1;
        Set: 0;
        Subtract: 3;
    }
    Index

    Properties

    Append: 2
    Delete: 1
    Set: 0
    Subtract: 3