Implementation:Treeverse LakeFS Java SDK Model PrepareGCUncommittedResponse
Appearance
| Knowledge Sources | |
|---|---|
| Domains | Java_SDK, Data_Model |
| Last Updated | 2026-02-08 00:00 GMT |
Overview
Concrete data transfer object representing the response from preparing garbage collection of uncommitted objects in the lakeFS Java SDK.
Description
The PrepareGCUncommittedResponse class is an auto-generated model object produced by OpenAPI Generator from the lakeFS API specification. It provides type-safe access to GC preparation response fields through getter/setter methods and supports JSON serialization via Gson.
Usage
Use this model when preparing garbage collection of uncommitted objects 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/PrepareGCUncommittedResponse.java
- Lines: 1-355
Signature
public class PrepareGCUncommittedResponse {
// Fields with @SerializedName annotations
// Getter/setter methods
// equals, hashCode, toString
// JSON type adapter
}
Import
import io.lakefs.clients.sdk.model.PrepareGCUncommittedResponse;
I/O Contract
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| run_id | String | Yes | Unique identifier for the GC run |
| gc_uncommitted_location | String | Yes | Storage location for uncommitted GC data |
| continuation_token | String | No | Token for paginating through results |
Outputs
| Name | Type | Description |
|---|---|---|
| JSON | String | Serialized JSON representation of the object |
Usage Examples
Creating an Instance
import io.lakefs.clients.sdk.model.PrepareGCUncommittedResponse;
PrepareGCUncommittedResponse obj = new PrepareGCUncommittedResponse();
obj.setRunId("gc-run-12345");
obj.setGcUncommittedLocation("s3://bucket/gc/uncommitted/");
Related Pages
Page Connections
Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment