backblaze-labs/b2-action - v0.1.0
    Preparing search index...

    Interface ListedFile

    One entry in ListResult.files. Mirrors the SDK's per-version metadata.

    interface ListedFile {
        contentSha1: string | null;
        contentType: string;
        fileId: string;
        fileInfo: Record<string, string>;
        fileName: string;
        size: number;
        uploadTimestamp: number;
    }
    Index

    Properties

    contentSha1: string | null

    Whole-file SHA-1, or null for multipart uploads.

    contentType: string

    Content-Type the file was uploaded with.

    fileId: string

    B2 file ID.

    fileInfo: Record<string, string>

    Custom X-Bz-Info-* headers from upload time.

    fileName: string

    B2 file name (the key).

    size: number

    Byte size of the file.

    uploadTimestamp: number

    Server-side upload timestamp in milliseconds since the epoch.