Alessandro Mangone
12/02/2022, 10:39 AMLakeFSClient
class.
I’ve noticed that while on python client the commits api are exposed, this doesn’t happen on the Java counterpart.
Is this something missing or is there a reason for the CommitsApi not being exposed there?Barak Amar
12/02/2022, 10:43 AMApiClient client = new ApiClient();
client.setBasePath("<lakefs endpoint>/api/v1");
client.setUsername("<key>");
client.setPassword("<secret>");
CommitsApi api = new CommitsApi(client);
Commit response = api.commit("repo", "main", new CommitCreation().message("message"), "");
Alessandro Mangone
12/02/2022, 10:54 AMBarak Amar
12/02/2022, 10:56 AMAlessandro Mangone
12/02/2022, 10:56 AM