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

    Type Alias DescribeConfigsEntry

    A single configuration entry in a DescribeConfigs response.

    type DescribeConfigsEntry = {
        configSource: number;
        configType: number;
        documentation: string | null;
        isDefault: boolean;
        isSensitive: boolean;
        name: string;
        readOnly: boolean;
        synonyms: readonly ConfigSynonym[];
        taggedFields: readonly TaggedField[];
        value: string | null;
    }
    Index

    Properties

    configSource: number

    The config source (v1+). -1 if not available.

    configType: number

    Config data type (v3+). 1=BOOLEAN, 2=STRING, 3=INT, 4=SHORT, 5=LONG, 6=DOUBLE, 7=LIST, 8=CLASS, 9=PASSWORD.

    documentation: string | null

    Config documentation (v3+).

    isDefault: boolean

    Whether this is the default value (v0 only — use configSource in v1+).

    isSensitive: boolean

    Whether this is a sensitive config (value hidden).

    name: string

    The configuration key.

    readOnly: boolean

    Whether this is a read-only config.

    synonyms: readonly ConfigSynonym[]

    Config synonyms (v1+).

    taggedFields: readonly TaggedField[]

    Tagged fields (v4+).

    value: string | null

    The configuration value. Null if sensitive and hidden.