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

    Interface B2FileInfo

    Legacy normalized B2 file info shape retained for compatibility.

    interface B2FileInfo {
        accountId: string;
        action: B2FileAction;
        bucketId: string;
        contentLength: number;
        contentMd5?: string;
        contentSha1: string;
        contentType: string;
        fileId: string;
        fileInfo: Record<string, string>;
        fileName: string;
        serverSideEncryption?: B2Encryption;
        uploadTimestamp: number;
    }
    Index
    accountId: string

    B2 account ID that owns the file.

    action: B2FileAction

    Native B2 action for this file version.

    bucketId: string

    B2 bucket ID that contains the file.

    contentLength: number

    File content length in bytes.

    contentMd5?: string

    MD5 checksum reported by B2, when present.

    contentSha1: string

    SHA-1 checksum reported by B2.

    contentType: string

    File content type recorded by B2.

    fileId: string

    Native B2 file ID.

    fileInfo: Record<string, string>

    User metadata key-value pairs recorded on the file.

    fileName: string

    Native B2 file name.

    serverSideEncryption?: B2Encryption

    Server-side encryption metadata, when present.

    uploadTimestamp: number

    B2 upload timestamp in epoch milliseconds.