Implementation:Treeverse LakeFS Java SDK Model CompletePresignMultipartUpload
Appearance
| Knowledge Sources | |
|---|---|
| Domains | Java_SDK, Data_Model |
| Last Updated | 2026-02-08 00:00 GMT |
Overview
Concrete data transfer object representing a request to complete a presigned multipart upload in the lakeFS Java SDK.
Description
The CompletePresignMultipartUpload class is an auto-generated model object produced by OpenAPI Generator from the lakeFS API specification. It provides type-safe access to multipart upload completion fields through getter/setter methods and supports JSON serialization via Gson.
Usage
Use this model when completing presigned multipart upload operations through the lakeFS Java SDK API classes.
Code Reference
Source Location
- Repository: Treeverse_LakeFS
- File: clients/java/src/main/java/io/lakefs/clients/sdk/model/CompletePresignMultipartUpload.java
- Lines: 1-411
Signature
public class CompletePresignMultipartUpload {
// Fields with @SerializedName annotations
// Getter/setter methods
// equals, hashCode, toString
// JSON type adapter
}
Import
import io.lakefs.clients.sdk.model.CompletePresignMultipartUpload;
I/O Contract
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| physicalAddress | String | Yes | Physical storage address of the uploaded object |
| parts | List<UploadPart> | Yes | List of uploaded parts to assemble |
| userMetadata | Map<String, String> | No | User-defined metadata key-value pairs |
| contentType | String | No | MIME content type of the uploaded object |
Outputs
| Name | Type | Description |
|---|---|---|
| JSON | String | Serialized JSON representation |
Usage Examples
Creating an Instance
import io.lakefs.clients.sdk.model.CompletePresignMultipartUpload;
CompletePresignMultipartUpload obj = new CompletePresignMultipartUpload();
obj.setPhysicalAddress("s3://bucket/path/to/object");
obj.setParts(uploadParts);
obj.setContentType("application/octet-stream");
Principle
Related Pages
Page Connections
Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment