Beignet API reference
    Preparing search index...

    Interface IdempotencyFailInput

    Input for releasing or marking a failed idempotency reservation.

    interface IdempotencyFailInput {
        error?: unknown;
        fingerprint: string;
        key: string;
        namespace: string;
        scope?: IdempotencyScope;
    }
    Index

    Properties

    error?: unknown

    Error that caused the protected operation to fail.

    fingerprint: string

    Fingerprint that must match the reserved operation.

    key: string

    Client-provided idempotency key.

    namespace: string

    Operation namespace.

    Logical scope for this key.