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

    Interface B2S3FileVersionBinding

    Native B2 file-version binding used to validate S3 version IDs.

    interface B2S3FileVersionBinding {
        action: B2FileAction;
        bucketId: string;
        contentLength: number;
        contentType: string;
        fileId: string;
        fileInfo: Record<string, string>;
        fileName: string;
        serverSideEncryption?: string;
        uploadTimestamp: number;
    }
    Index
    action: B2FileAction

    Native B2 file action for this version.

    bucketId: string

    B2 bucket ID that owns the file version.

    contentLength: number

    File content length in bytes.

    contentType: string

    File content type recorded by B2.

    fileId: string

    Native B2 file ID bound to the S3 version ID.

    fileInfo: Record<string, string>

    User metadata associated with the file version.

    fileName: string

    Native B2 file name bound to the S3 object key.

    serverSideEncryption?: string

    Server-side encryption mode reported by B2, when present.

    uploadTimestamp: number

    B2 upload timestamp in epoch milliseconds.