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

    Type Alias CreateTopicsResponseConfigEntry

    Configuration entry in a CreateTopics response (v5+).

    type CreateTopicsResponseConfigEntry = {
        configSource: number;
        isSensitive: boolean;
        name: string;
        readOnly: boolean;
        taggedFields: readonly TaggedField[];
        value: string | null;
    }
    Index

    Properties

    configSource: number

    The config source. 1=DYNAMIC_TOPIC, 2=DYNAMIC_BROKER, 4=STATIC_BROKER, 5=DEFAULT, 6=DYNAMIC_DEFAULT_BROKER.

    isSensitive: boolean

    Whether this is a sensitive config (value hidden).

    name: string

    The configuration key.

    readOnly: boolean

    Whether this is a read-only config.

    taggedFields: readonly TaggedField[]

    Tagged fields.

    value: string | null

    The configuration value.