@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2S3UploadPartCopyOptions

    Options for copying an object range into a multipart part.

    interface B2S3UploadPartCopyOptions {
        bucket: string;
        copySource: string;
        copySourceRange?: string;
        key: string;
        partNumber: number;
        uploadId: string;
    }
    Index
    bucket: string

    Bucket name containing the multipart upload.

    copySource: string

    Encoded S3 copy source.

    copySourceRange?: string

    Optional source byte range to copy.

    key: string

    Destination object key.

    partNumber: number

    One-based multipart part number.

    uploadId: string

    Provider upload ID.