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

    Type Alias CreateTopicsRequest

    CreateTopics request payload.

    type CreateTopicsRequest = {
        taggedFields?: readonly TaggedField[];
        timeoutMs: number;
        topics: readonly CreateTopicRequest[];
        validateOnly?: boolean;
    }
    Index

    Properties

    taggedFields?: readonly TaggedField[]

    Tagged fields (v5+).

    timeoutMs: number

    Timeout in milliseconds.

    topics: readonly CreateTopicRequest[]

    Topics to create.

    validateOnly?: boolean

    If true, validate the request without creating topics (v1+).