Implementation:Treeverse LakeFS Java SDK TagsApi
Appearance
| Knowledge Sources | |
|---|---|
| Domains | Java_SDK, REST_API |
| Last Updated | 2026-02-08 00:00 GMT |
Overview
Concrete tool for tag management provided by the lakeFS Java SDK.
Description
The TagsApi class is an auto-generated Java client for the lakeFS Tags API endpoints. It is generated by OpenAPI Generator from the lakeFS OpenAPI specification and provides type-safe methods for interacting with the lakeFS server.
Usage
Import this class when programmatically interacting with lakeFS tag management operations from a Java application.
Code Reference
Source Location
- Repository: Treeverse_LakeFS
- File: clients/java/src/main/java/io/lakefs/clients/sdk/TagsApi.java
- Lines: 1-884
Signature
public class TagsApi {
private ApiClient localVarApiClient;
public TagsApi() { ... }
public TagsApi(ApiClient apiClient) { ... }
// API methods...
}
Import
import io.lakefs.clients.sdk.TagsApi;
I/O Contract
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| apiClient | ApiClient | No | Custom API client configuration (uses default if omitted) |
Outputs
| Name | Type | Description |
|---|---|---|
| API responses | Model objects | Type-safe response objects from lakeFS server |
Usage Examples
Basic Usage
import io.lakefs.clients.sdk.TagsApi;
import io.lakefs.clients.sdk.ApiClient;
import io.lakefs.clients.sdk.Configuration;
// Use default client
ApiClient client = Configuration.getDefaultApiClient();
client.setBasePath("http://localhost:8000/api/v1");
TagsApi api = new TagsApi(client);
// Call API methods...
Related Pages
Page Connections
Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment