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

    Type Alias SyncGroupRequest

    SyncGroup request payload.

    type SyncGroupRequest = {
        assignments: readonly SyncGroupAssignment[];
        generationId: number;
        groupId: string;
        groupInstanceId?: string | null;
        memberId: string;
        protocolName?: string | null;
        protocolType?: string | null;
        taggedFields?: readonly TaggedField[];
    }
    Index

    Properties

    assignments: readonly SyncGroupAssignment[]

    Partition assignments (only provided by the leader).

    generationId: number

    The generation ID from the JoinGroup response.

    groupId: string

    The group ID.

    groupInstanceId?: string | null

    The group instance ID for static membership (v3+). Null if not static.

    memberId: string

    This member's member ID.

    protocolName?: string | null

    Protocol name (v5+).

    protocolType?: string | null

    Protocol type (v5+).

    taggedFields?: readonly TaggedField[]

    Tagged fields (v4+).