Jump to content

Connect Leeroopedia MCP: Equip your AI agents to search best practices, build plans, verify code, diagnose failures, and look up hyperparameter defaults.

Implementation:Treeverse LakeFS Java SDK Model PrepareGCUncommittedResponse

From Leeroopedia


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

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