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

    Interface B2LargeFileStart

    Legacy normalized B2 large-file start response.

    interface B2LargeFileStart {
        accountId: string;
        bucketId: string;
        contentType: string;
        fileId: string;
        fileInfo: Record<string, string>;
        fileName: string;
        uploadTimestamp: number;
    }
    Index
    accountId: string

    B2 account ID that owns the upload.

    bucketId: string

    B2 bucket ID that contains the upload.

    contentType: string

    Declared content type for the upload.

    fileId: string

    Native B2 file ID for the large-file upload.

    fileInfo: Record<string, string>

    User metadata key-value pairs for the upload.

    fileName: string

    Native B2 file name for the large-file upload.

    uploadTimestamp: number

    Upload start timestamp in epoch milliseconds.