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

    Interface B2S3ListMultipartUploadsResult

    Result from listing in-progress multipart uploads.

    interface B2S3ListMultipartUploadsResult {
        isTruncated?: boolean;
        nextKeyMarker?: string;
        nextUploadIdMarker?: string;
        uploads: B2S3MultipartUploadSummary[];
    }
    Index
    isTruncated?: boolean

    Whether more uploads are available.

    nextKeyMarker?: string

    Key marker for the next page, when present.

    nextUploadIdMarker?: string

    Upload ID marker for the next page, when present.

    Multipart uploads returned on this page.