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

    Type Alias DescribedDelegationToken

    A described delegation token.

    type DescribedDelegationToken = {
        expiryTimestampMs: bigint;
        hmac: Uint8Array;
        issueTimestampMs: bigint;
        maxTimestampMs: bigint;
        principalName: string;
        principalType: string;
        renewers: readonly DescribedTokenRenewer[];
        taggedFields: readonly TaggedField[];
        tokenId: string;
        tokenRequesterPrincipalName: string;
        tokenRequesterPrincipalType: string;
    }
    Index

    Properties

    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.

    renewers: readonly DescribedTokenRenewer[]

    Principals allowed to renew the token.

    taggedFields: readonly TaggedField[]

    Tagged fields (v2+).

    tokenId: string

    The token ID string.

    tokenRequesterPrincipalName: string

    Token requester principal name (v3+).

    tokenRequesterPrincipalType: string

    Token requester principal type (v3+).