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

    Interface CopyResult

    Result of copyCommand. Single-file (copy is always one-source-one-destination).

    interface CopyResult {
        destinationBucket: string;
        destinationFileName: string;
        fileId: string;
        size: number;
        sourceBucket: string;
        sourceFileName: string;
    }
    Index

    Properties

    destinationBucket: string

    Destination bucket name.

    destinationFileName: string

    Destination file name (the B2 key in the destination bucket).

    fileId: string

    B2 file ID of the newly-created destination object.

    size: number

    Byte size of the copied object.

    sourceBucket: string

    Source bucket name.

    sourceFileName: string

    Source file name (the B2 key in the source bucket).