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

    Type Alias CreateTopicsTopicResponse

    Per-topic result from a CreateTopics response.

    type CreateTopicsTopicResponse = {
        configs: readonly CreateTopicsResponseConfigEntry[];
        errorCode: number;
        errorMessage: string | null;
        name: string;
        numPartitions: number;
        replicationFactor: number;
        taggedFields: readonly TaggedField[];
        topicId?: Uint8Array;
    }
    Index

    Properties

    Topic configuration entries (v5+).

    errorCode: number

    Error code (0 = success).

    errorMessage: string | null

    Error message (v1+).

    name: string

    The topic name.

    numPartitions: number

    Number of partitions (v5+). -1 if not available.

    replicationFactor: number

    Replication factor (v5+). -1 if not available.

    taggedFields: readonly TaggedField[]

    Tagged fields (v5+).

    topicId?: Uint8Array

    Topic ID (v7+, UUID as 16 bytes).