DishaTalreja3 commented on code in PR #307: URL: https://github.com/apache/atlas/pull/307#discussion_r2093367627
########## client/client-v2/src/main/java/org/apache/atlas/AtlasClientV2.java: ########## @@ -1039,6 +1053,30 @@ public API formatPathWithParameter(API api, String... params) { return formatPathParameters(api, params); } + public AtlasAsyncImportRequest importAsync(AtlasImportRequest request, InputStream stream) throws AtlasServiceException { + return performAsyncImport(getImportRequestBodyPart(request), new StreamDataBodyPart(IMPORT_DATA_PARAMETER, stream)); + } + + public PList<AsyncImportStatus> getAsyncImportStatus() throws AtlasServiceException { + return getAsyncImportStatus(0, 50); Review Comment: Returning the first 50 entries will be the default behavior if `offset` and `limit` are not provided. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@atlas.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org