@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface CopyPartRequest

    Request parameters for the b2_copy_part API call. Copies a byte range into a large file part.

    interface CopyPartRequest {
        destinationServerSideEncryption?: EncryptionSetting;
        largeFileId: FileId;
        partNumber: number;
        range?: string;
        sourceFileId: FileId;
        sourceServerSideEncryption?: EncryptionSetting;
    }
    Index

    Properties

    destinationServerSideEncryption?: EncryptionSetting

    Server-side encryption to apply to the destination part.

    largeFileId: FileId

    ID of the large file being assembled.

    partNumber: number

    Part number (1-based) for this part within the large file.

    range?: string

    Byte range to copy from the source (e.g., 'bytes=0-999'). Omit to copy the entire source.

    sourceFileId: FileId

    ID of the source file version to copy from.

    sourceServerSideEncryption?: EncryptionSetting

    SSE-C settings for reading the source file, if the source is encrypted with SSE-C.