@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2S3DeleteObjectsResult

    Aggregated result from bounded multi-object deletes.

    interface B2S3DeleteObjectsResult {
        aborted: boolean;
        attempted: number;
        deleted: B2S3DeletedObjectEntry[];
        errors: B2S3DeleteObjectErrorEntry[];
        maxConcurrency: number;
    }
    Index
    aborted: boolean

    Whether caller abort stopped the bounded loop early.

    attempted: number

    Number of delete attempts started.

    Successful delete entries unless quiet mode suppressed them.

    Failed delete entries captured without aborting the whole batch.

    maxConcurrency: number

    Maximum concurrency observed by the bounded delete helper.