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

    Interface UploadedFile

    One entry in UploadResult.files.

    interface UploadedFile {
        contentSha1: string | null;
        fileId: string;
        fileInfo: Record<string, string>;
        fileName: string;
        localPath: string;
        size: number;
    }
    Index

    Properties

    contentSha1: string | null

    Whole-file SHA-1, or null when the file was multipart-uploaded.

    fileId: string

    B2 file ID assigned by the server.

    fileInfo: Record<string, string>

    B2 fileInfo metadata for the uploaded object. This is the SDK-returned metadata when available; otherwise it falls back to the canonical metadata submitted in the upload request.

    fileName: string

    B2 file name (the key) the upload landed under.

    localPath: string

    Absolute path on the runner that was uploaded.

    size: number

    Byte size of the upload.