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

    Interface VerifyResult

    Result of verifyCommand.

    interface VerifyResult {
        fileName: string;
        localSha1: string | null;
        reason: string | undefined;
        remoteSha1: string | null;
        remoteSize: number;
        verified: boolean;
    }
    Index

    Properties

    fileName: string

    B2 file name that was checked.

    localSha1: string | null

    Locally-computed SHA-1, or null if no local file was provided.

    reason: string | undefined

    Human-readable failure reason; undefined on success.

    remoteSha1: string | null

    Remote whole-file SHA-1, or null if the file was multipart-uploaded.

    remoteSize: number

    Server-reported byte size of the remote object.

    verified: boolean

    True when remote SHA-1 matches the expected value.