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

    Type Alias CreateDelegationTokenResponse

    CreateDelegationToken response payload.

    type CreateDelegationTokenResponse = {
        errorCode: number;
        expiryTimestampMs: bigint;
        hmac: Uint8Array;
        issueTimestampMs: bigint;
        maxTimestampMs: bigint;
        principalName: string;
        principalType: string;
        taggedFields: readonly TaggedField[];
        throttleTimeMs: number;
        tokenId: string;
        tokenRequesterPrincipalName: string;
        tokenRequesterPrincipalType: string;
    }
    Index

    Properties

    errorCode: number

    Error code (0 = success).

    expiryTimestampMs: bigint

    Timestamp when the token will expire (epoch ms).

    The HMAC of the delegation token.

    issueTimestampMs: bigint

    Timestamp when the token was issued (epoch ms).

    maxTimestampMs: bigint

    Maximum timestamp until which the token can be renewed (epoch ms).

    principalName: string

    The owner principal name.

    principalType: string

    The owner principal type.

    taggedFields: readonly TaggedField[]

    Tagged fields (v2+).

    throttleTimeMs: number

    Time the request was throttled in milliseconds.

    tokenId: string

    The token ID string.

    tokenRequesterPrincipalName: string

    Token requester principal name (v3+).

    tokenRequesterPrincipalType: string

    Token requester principal type (v3+).