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

    Interface UploadedFile

    One entry in UploadResult.files.

    interface UploadedFile {
        contentSha1: string | null;
        fileId: 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.

    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.