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

    Type Alias MetadataRequest

    Metadata request payload.

    type MetadataRequest = {
        allowAutoTopicCreation?: boolean;
        includeClusterAuthorisedOperations?: boolean;
        includeTopicAuthorisedOperations?: boolean;
        taggedFields?: readonly TaggedField[];
        topics: readonly MetadataRequestTopic[] | null;
    }
    Index

    Properties

    allowAutoTopicCreation?: boolean

    Whether to allow auto-creation of topics (v4+).

    true
    
    includeClusterAuthorisedOperations?: boolean

    Include cluster-level authorised operations (v8–v10). Removed in v11+.

    includeTopicAuthorisedOperations?: boolean

    Include topic-level authorised operations (v8+).

    taggedFields?: readonly TaggedField[]

    Tagged fields (v9+).

    topics: readonly MetadataRequestTopic[] | null

    Topics to fetch metadata for.

    • Empty array = no topics (useful for broker discovery)
    • Null (v1+) = all topics
    • Array of topic names = specific topics