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

    Type Alias DescribeTopicPartitionsTopicResponse

    A topic in the response.

    type DescribeTopicPartitionsTopicResponse = {
        errorCode: number;
        isInternal: boolean;
        name: string | null;
        partitions: readonly DescribeTopicPartitionsPartitionResponse[];
        taggedFields: readonly TaggedField[];
        topicAuthorizedOperations: number;
        topicId: Uint8Array;
    }
    Index

    Properties

    errorCode: number

    Error code for this topic (0 = no error).

    isInternal: boolean

    Whether this is an internal topic.

    name: string | null

    The topic name.

    The partitions.

    taggedFields: readonly TaggedField[]

    Tagged fields.

    topicAuthorizedOperations: number

    Bitfield of topic authorised operations.

    topicId: Uint8Array

    The topic ID (UUID as hex string).