diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index a056a97..89cd01b 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -123,6 +123,9 @@ jobs: rm -Rf settings.gradle && mv java-client/settings.gradle . rm -Rf README.md && mv java-client/README.md . rm -Rf java-client + + # Move custom models + cp models/* src/main/java/ai/reveng/model/ # Store the SDK version echo ${{ steps.version_check.outputs.openapi_version }} > .sdk-version diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d02d50f..5250907 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -37,7 +37,7 @@ jobs: run: ./gradlew test - name: Upload test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: test-results diff --git a/.sdk-version b/.sdk-version index a0a9144..f5d76f3 100644 --- a/.sdk-version +++ b/.sdk-version @@ -1 +1 @@ -v1.94.0 \ No newline at end of file +v1.95.0 diff --git a/README.md b/README.md index 19b28c5..08f4a96 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add this dependency to your project's POM: ai.reveng sdk - v1.94.0 + v1.95.0 compile ``` @@ -31,7 +31,7 @@ repositories { } dependencies { - implementation "ai.reveng:sdk:v1.94.0" + implementation "ai.reveng:sdk:v1.95.0" } ``` diff --git a/build.gradle b/build.gradle index ee17493..eac4e75 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'ai.reveng' -version = 'v1.94.0' +version = 'v1.95.0' @@ -171,7 +171,7 @@ mavenPublishing { publishToMavenCentral(true) signAllPublications() - coordinates("ai.reveng", "sdk", "v1.94.0") + coordinates("ai.reveng", "sdk", "v1.95.0") pom { name = "sdk" diff --git a/build.sbt b/build.sbt index d70c8ad..8277cbe 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "ai.reveng", name := "sdk", - version := "v1.94.0", + version := "v1.95.0", scalaVersion := "2.11.12", scalacOptions ++= Seq("-feature"), compile / javacOptions ++= Seq("-Xlint:deprecation"), diff --git a/docs/AnalysesCommentsApi.md b/docs/AnalysesCommentsApi.md index 84c181f..bfacf9f 100644 --- a/docs/AnalysesCommentsApi.md +++ b/docs/AnalysesCommentsApi.md @@ -12,7 +12,7 @@ All URIs are relative to *https://api.reveng.ai* # **createAnalysisComment** -> BaseResponseCommentResponse createAnalysisComment(analysisId, commentBase, authorization) +> BaseResponseCommentResponse createAnalysisComment(analysisId, commentBase) Create a comment for this analysis @@ -42,9 +42,8 @@ public class Example { AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient); Integer analysisId = 56; // Integer | CommentBase commentBase = new CommentBase(); // CommentBase | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommentResponse result = apiInstance.createAnalysisComment(analysisId, commentBase, authorization); + BaseResponseCommentResponse result = apiInstance.createAnalysisComment(analysisId, commentBase); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCommentsApi#createAnalysisComment"); @@ -63,7 +62,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **commentBase** | [**CommentBase**](CommentBase.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -87,7 +85,7 @@ public class Example { # **deleteAnalysisComment** -> BaseResponseBool deleteAnalysisComment(commentId, analysisId, authorization) +> BaseResponseBool deleteAnalysisComment(commentId, analysisId) Delete a comment @@ -117,9 +115,8 @@ public class Example { AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient); Integer commentId = 56; // Integer | Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBool result = apiInstance.deleteAnalysisComment(commentId, analysisId, authorization); + BaseResponseBool result = apiInstance.deleteAnalysisComment(commentId, analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCommentsApi#deleteAnalysisComment"); @@ -138,7 +135,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **commentId** | **Integer**| | | | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -163,7 +159,7 @@ public class Example { # **getAnalysisComments** -> BaseResponseListCommentResponse getAnalysisComments(analysisId, authorization) +> BaseResponseListCommentResponse getAnalysisComments(analysisId) Get comments for this analysis @@ -192,9 +188,8 @@ public class Example { AnalysesCommentsApi apiInstance = new AnalysesCommentsApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListCommentResponse result = apiInstance.getAnalysisComments(analysisId, authorization); + BaseResponseListCommentResponse result = apiInstance.getAnalysisComments(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCommentsApi#getAnalysisComments"); @@ -212,7 +207,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -235,7 +229,7 @@ public class Example { # **updateAnalysisComment** -> BaseResponseCommentResponse updateAnalysisComment(commentId, analysisId, commentUpdateRequest, authorization) +> BaseResponseCommentResponse updateAnalysisComment(commentId, analysisId, commentUpdateRequest) Update a comment @@ -266,9 +260,8 @@ public class Example { Integer commentId = 56; // Integer | Integer analysisId = 56; // Integer | CommentUpdateRequest commentUpdateRequest = new CommentUpdateRequest(); // CommentUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommentResponse result = apiInstance.updateAnalysisComment(commentId, analysisId, commentUpdateRequest, authorization); + BaseResponseCommentResponse result = apiInstance.updateAnalysisComment(commentId, analysisId, commentUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCommentsApi#updateAnalysisComment"); @@ -288,7 +281,6 @@ public class Example { | **commentId** | **Integer**| | | | **analysisId** | **Integer**| | | | **commentUpdateRequest** | [**CommentUpdateRequest**](CommentUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/AnalysesCoreApi.md b/docs/AnalysesCoreApi.md index aa738be..5f9c864 100644 --- a/docs/AnalysesCoreApi.md +++ b/docs/AnalysesCoreApi.md @@ -24,7 +24,7 @@ All URIs are relative to *https://api.reveng.ai* # **batchSymbolAnn** -> FunctionBatchAnn batchSymbolAnn(appApiRestV1AnnSchemaANNFunction, authorization) +> FunctionBatchAnn batchSymbolAnn(appApiRestV1AnnSchemaANNFunction) Batch Symbol ANN using function IDs @@ -53,9 +53,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction = new AppApiRestV1AnnSchemaANNFunction(); // AppApiRestV1AnnSchemaANNFunction | - String authorization = "authorization_example"; // String | API Key bearer token try { - FunctionBatchAnn result = apiInstance.batchSymbolAnn(appApiRestV1AnnSchemaANNFunction, authorization); + FunctionBatchAnn result = apiInstance.batchSymbolAnn(appApiRestV1AnnSchemaANNFunction); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#batchSymbolAnn"); @@ -73,7 +72,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **appApiRestV1AnnSchemaANNFunction** | [**AppApiRestV1AnnSchemaANNFunction**](AppApiRestV1AnnSchemaANNFunction.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -96,7 +94,7 @@ public class Example { # **createAnalysis** -> BaseResponseAnalysisCreateResponse createAnalysis(analysisCreateRequest, authorization) +> BaseResponseAnalysisCreateResponse createAnalysis(analysisCreateRequest) Create Analysis @@ -125,9 +123,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); AnalysisCreateRequest analysisCreateRequest = new AnalysisCreateRequest(); // AnalysisCreateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisCreateResponse result = apiInstance.createAnalysis(analysisCreateRequest, authorization); + BaseResponseAnalysisCreateResponse result = apiInstance.createAnalysis(analysisCreateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#createAnalysis"); @@ -145,7 +142,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisCreateRequest** | [**AnalysisCreateRequest**](AnalysisCreateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -170,7 +166,7 @@ public class Example { # **deleteAnalysis** -> BaseResponseDict deleteAnalysis(analysisId, authorization) +> BaseResponseDict deleteAnalysis(analysisId) Delete Analysis @@ -199,9 +195,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseDict result = apiInstance.deleteAnalysis(analysisId, authorization); + BaseResponseDict result = apiInstance.deleteAnalysis(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#deleteAnalysis"); @@ -219,7 +214,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -244,7 +238,7 @@ public class Example { # **findSimilarFunctionsBatch** -> BaseResponseNearestNeighborAnalysis findSimilarFunctionsBatch(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization) +> BaseResponseNearestNeighborAnalysis findSimilarFunctionsBatch(analysisId, appApiRestV2SimilaritySchemaANNFunction) Batch Symbol ANN using Analysis ID @@ -274,9 +268,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction = new AppApiRestV2SimilaritySchemaANNFunction(); // AppApiRestV2SimilaritySchemaANNFunction | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseNearestNeighborAnalysis result = apiInstance.findSimilarFunctionsBatch(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization); + BaseResponseNearestNeighborAnalysis result = apiInstance.findSimilarFunctionsBatch(analysisId, appApiRestV2SimilaritySchemaANNFunction); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#findSimilarFunctionsBatch"); @@ -295,7 +288,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **appApiRestV2SimilaritySchemaANNFunction** | [**AppApiRestV2SimilaritySchemaANNFunction**](AppApiRestV2SimilaritySchemaANNFunction.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -318,7 +310,7 @@ public class Example { # **getAnalysisBasicInfo** -> BaseResponseBasic getAnalysisBasicInfo(analysisId, authorization) +> BaseResponseBasic getAnalysisBasicInfo(analysisId) Gets basic analysis information @@ -347,9 +339,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBasic result = apiInstance.getAnalysisBasicInfo(analysisId, authorization); + BaseResponseBasic result = apiInstance.getAnalysisBasicInfo(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#getAnalysisBasicInfo"); @@ -367,7 +358,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -390,7 +380,7 @@ public class Example { # **getAnalysisFunctionMap** -> BaseResponseAnalysisFunctionMapping getAnalysisFunctionMap(analysisId, authorization) +> BaseResponseAnalysisFunctionMapping getAnalysisFunctionMap(analysisId) Get Analysis Function Map @@ -419,9 +409,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisFunctionMapping result = apiInstance.getAnalysisFunctionMap(analysisId, authorization); + BaseResponseAnalysisFunctionMapping result = apiInstance.getAnalysisFunctionMap(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#getAnalysisFunctionMap"); @@ -439,7 +428,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -462,7 +450,7 @@ public class Example { # **getAnalysisLogs** -> BaseResponseLogs getAnalysisLogs(analysisId, authorization) +> BaseResponseLogs getAnalysisLogs(analysisId) Gets the logs of an analysis @@ -491,9 +479,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseLogs result = apiInstance.getAnalysisLogs(analysisId, authorization); + BaseResponseLogs result = apiInstance.getAnalysisLogs(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#getAnalysisLogs"); @@ -511,7 +498,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -534,7 +520,7 @@ public class Example { # **getAnalysisParams** -> BaseResponseParams getAnalysisParams(analysisId, authorization) +> BaseResponseParams getAnalysisParams(analysisId) Gets analysis param information @@ -563,9 +549,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseParams result = apiInstance.getAnalysisParams(analysisId, authorization); + BaseResponseParams result = apiInstance.getAnalysisParams(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#getAnalysisParams"); @@ -583,7 +568,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -606,7 +590,7 @@ public class Example { # **getAnalysisStatus** -> BaseResponseStatus getAnalysisStatus(analysisId, authorization) +> BaseResponseStatus getAnalysisStatus(analysisId) Gets the status of an analysis @@ -635,9 +619,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseStatus result = apiInstance.getAnalysisStatus(analysisId, authorization); + BaseResponseStatus result = apiInstance.getAnalysisStatus(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#getAnalysisStatus"); @@ -655,7 +638,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -678,7 +660,7 @@ public class Example { # **getBinaryAnn** -> BaseResponseBinaryAnnListResponse getBinaryAnn(analysisId, binaryAnnForm, authorization) +> BaseResponseBinaryAnnListResponse getBinaryAnn(analysisId, binaryAnnForm) Binary Ann @@ -708,9 +690,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | BinaryAnnForm binaryAnnForm = new BinaryAnnForm(); // BinaryAnnForm | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBinaryAnnListResponse result = apiInstance.getBinaryAnn(analysisId, binaryAnnForm, authorization); + BaseResponseBinaryAnnListResponse result = apiInstance.getBinaryAnn(analysisId, binaryAnnForm); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#getBinaryAnn"); @@ -729,7 +710,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **binaryAnnForm** | [**BinaryAnnForm**](BinaryAnnForm.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -752,7 +732,7 @@ public class Example { # **listAnalyses** -> BaseResponseRecent listAnalyses(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization) +> BaseResponseRecent listAnalyses(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order) Gets the most recent analyses @@ -791,9 +771,8 @@ public class Example { Integer offset = 0; // Integer | AppApiRestV2AnalysesEnumsOrderBy orderBy = AppApiRestV2AnalysesEnumsOrderBy.fromValue("created"); // AppApiRestV2AnalysesEnumsOrderBy | Order order = Order.fromValue("ASC"); // Order | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseRecent result = apiInstance.listAnalyses(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization); + BaseResponseRecent result = apiInstance.listAnalyses(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#listAnalyses"); @@ -821,7 +800,6 @@ public class Example { | **offset** | **Integer**| | [optional] [default to 0] | | **orderBy** | [**AppApiRestV2AnalysesEnumsOrderBy**](.md)| | [optional] [enum: created, name, size] | | **order** | [**Order**](.md)| | [optional] [enum: ASC, DESC] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -844,7 +822,7 @@ public class Example { # **lookupBinaryId** -> Object lookupBinaryId(binaryId, authorization) +> Object lookupBinaryId(binaryId) Gets the analysis ID from binary ID @@ -873,9 +851,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - Object result = apiInstance.lookupBinaryId(binaryId, authorization); + Object result = apiInstance.lookupBinaryId(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#lookupBinaryId"); @@ -893,7 +870,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -916,7 +892,7 @@ public class Example { # **requeueAnalysis** -> BaseResponseCreated requeueAnalysis(analysisId, reAnalysisForm, authorization) +> BaseResponseCreated requeueAnalysis(analysisId, reAnalysisForm) Requeue Analysis @@ -946,9 +922,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | ReAnalysisForm reAnalysisForm = new ReAnalysisForm(); // ReAnalysisForm | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCreated result = apiInstance.requeueAnalysis(analysisId, reAnalysisForm, authorization); + BaseResponseCreated result = apiInstance.requeueAnalysis(analysisId, reAnalysisForm); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#requeueAnalysis"); @@ -967,7 +942,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **reAnalysisForm** | [**ReAnalysisForm**](ReAnalysisForm.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -992,7 +966,7 @@ public class Example { # **updateAnalysis** -> BaseResponseAnalysisDetailResponse updateAnalysis(analysisId, analysisUpdateRequest, authorization) +> BaseResponseAnalysisDetailResponse updateAnalysis(analysisId, analysisUpdateRequest) Update Analysis @@ -1022,9 +996,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | AnalysisUpdateRequest analysisUpdateRequest = new AnalysisUpdateRequest(); // AnalysisUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisDetailResponse result = apiInstance.updateAnalysis(analysisId, analysisUpdateRequest, authorization); + BaseResponseAnalysisDetailResponse result = apiInstance.updateAnalysis(analysisId, analysisUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#updateAnalysis"); @@ -1043,7 +1016,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **analysisUpdateRequest** | [**AnalysisUpdateRequest**](AnalysisUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -1066,7 +1038,7 @@ public class Example { # **updateAnalysisTags** -> BaseResponseAnalysisUpdateTagsResponse updateAnalysisTags(analysisId, analysisUpdateTagsRequest, authorization) +> BaseResponseAnalysisUpdateTagsResponse updateAnalysisTags(analysisId, analysisUpdateTagsRequest) Update Analysis Tags @@ -1096,9 +1068,8 @@ public class Example { AnalysesCoreApi apiInstance = new AnalysesCoreApi(defaultClient); Integer analysisId = 56; // Integer | AnalysisUpdateTagsRequest analysisUpdateTagsRequest = new AnalysisUpdateTagsRequest(); // AnalysisUpdateTagsRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisUpdateTagsResponse result = apiInstance.updateAnalysisTags(analysisId, analysisUpdateTagsRequest, authorization); + BaseResponseAnalysisUpdateTagsResponse result = apiInstance.updateAnalysisTags(analysisId, analysisUpdateTagsRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#updateAnalysisTags"); @@ -1117,7 +1088,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **analysisUpdateTagsRequest** | [**AnalysisUpdateTagsRequest**](AnalysisUpdateTagsRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -1140,7 +1110,7 @@ public class Example { # **uploadFile** -> BaseResponseUploadResponse uploadFile(uploadFileType, _file, packedPassword, authorization, forceOverwrite) +> BaseResponseUploadResponse uploadFile(uploadFileType, _file, packedPassword, forceOverwrite) Upload File @@ -1169,10 +1139,9 @@ public class Example { UploadFileType uploadFileType = UploadFileType.fromValue("BINARY"); // UploadFileType | File _file = new File("/path/to/file"); // File | String packedPassword = "packedPassword_example"; // String | - String authorization = "authorization_example"; // String | API Key bearer token Boolean forceOverwrite = false; // Boolean | try { - BaseResponseUploadResponse result = apiInstance.uploadFile(uploadFileType, _file, packedPassword, authorization, forceOverwrite); + BaseResponseUploadResponse result = apiInstance.uploadFile(uploadFileType, _file, packedPassword, forceOverwrite); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesCoreApi#uploadFile"); @@ -1192,7 +1161,6 @@ public class Example { | **uploadFileType** | [**UploadFileType**](UploadFileType.md)| | [enum: BINARY, DEBUG, PACKED, FIRMWARE] | | **_file** | **File**| | | | **packedPassword** | **String**| | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | | **forceOverwrite** | **Boolean**| | [optional] [default to false] | ### Return type diff --git a/docs/AnalysesDynamicExecutionApi.md b/docs/AnalysesDynamicExecutionApi.md index 81833b8..cf57922 100644 --- a/docs/AnalysesDynamicExecutionApi.md +++ b/docs/AnalysesDynamicExecutionApi.md @@ -15,7 +15,7 @@ All URIs are relative to *https://api.reveng.ai* # **getDynamicExecutionStatus** -> BaseResponseDynamicExecutionStatus getDynamicExecutionStatus(analysisId, authorization) +> BaseResponseDynamicExecutionStatus getDynamicExecutionStatus(analysisId) Get the status of a dynamic execution task @@ -42,9 +42,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseDynamicExecutionStatus result = apiInstance.getDynamicExecutionStatus(analysisId, authorization); + BaseResponseDynamicExecutionStatus result = apiInstance.getDynamicExecutionStatus(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getDynamicExecutionStatus"); @@ -62,7 +61,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -85,7 +83,7 @@ public class Example { # **getNetworkOverview** -> BaseResponseNetworkOverviewResponse getNetworkOverview(analysisId, authorization) +> BaseResponseNetworkOverviewResponse getNetworkOverview(analysisId) Get the dynamic execution results for network overview @@ -112,9 +110,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseNetworkOverviewResponse result = apiInstance.getNetworkOverview(analysisId, authorization); + BaseResponseNetworkOverviewResponse result = apiInstance.getNetworkOverview(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getNetworkOverview"); @@ -132,7 +129,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -155,7 +151,7 @@ public class Example { # **getProcessDump** -> Object getProcessDump(analysisId, dumpName, authorization) +> Object getProcessDump(analysisId, dumpName) Get the dynamic execution results for a specific process dump @@ -183,9 +179,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | String dumpName = "dumpName_example"; // String | - String authorization = "authorization_example"; // String | API Key bearer token try { - Object result = apiInstance.getProcessDump(analysisId, dumpName, authorization); + Object result = apiInstance.getProcessDump(analysisId, dumpName); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getProcessDump"); @@ -204,7 +199,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **dumpName** | **String**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -227,7 +221,7 @@ public class Example { # **getProcessDumps** -> BaseResponseProcessDumps getProcessDumps(analysisId, authorization) +> BaseResponseProcessDumps getProcessDumps(analysisId) Get the dynamic execution results for process dumps @@ -254,9 +248,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseProcessDumps result = apiInstance.getProcessDumps(analysisId, authorization); + BaseResponseProcessDumps result = apiInstance.getProcessDumps(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getProcessDumps"); @@ -274,7 +267,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -297,7 +289,7 @@ public class Example { # **getProcessRegistry** -> BaseResponseProcessRegistry getProcessRegistry(analysisId, authorization) +> BaseResponseProcessRegistry getProcessRegistry(analysisId) Get the dynamic execution results for process registry @@ -324,9 +316,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseProcessRegistry result = apiInstance.getProcessRegistry(analysisId, authorization); + BaseResponseProcessRegistry result = apiInstance.getProcessRegistry(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getProcessRegistry"); @@ -344,7 +335,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -367,7 +357,7 @@ public class Example { # **getProcessTree** -> BaseResponseProcessTree getProcessTree(analysisId, authorization) +> BaseResponseProcessTree getProcessTree(analysisId) Get the dynamic execution results for process tree @@ -394,9 +384,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseProcessTree result = apiInstance.getProcessTree(analysisId, authorization); + BaseResponseProcessTree result = apiInstance.getProcessTree(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getProcessTree"); @@ -414,7 +403,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -437,7 +425,7 @@ public class Example { # **getTtps** -> BaseResponseTTPS getTtps(analysisId, authorization) +> BaseResponseTTPS getTtps(analysisId) Get the dynamic execution results for ttps @@ -464,9 +452,8 @@ public class Example { AnalysesDynamicExecutionApi apiInstance = new AnalysesDynamicExecutionApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseTTPS result = apiInstance.getTtps(analysisId, authorization); + BaseResponseTTPS result = apiInstance.getTtps(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesDynamicExecutionApi#getTtps"); @@ -484,7 +471,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/AnalysesResultsMetadataApi.md b/docs/AnalysesResultsMetadataApi.md index ae5270a..fff0ab1 100644 --- a/docs/AnalysesResultsMetadataApi.md +++ b/docs/AnalysesResultsMetadataApi.md @@ -15,7 +15,7 @@ All URIs are relative to *https://api.reveng.ai* # **getCapabilities** -> BaseResponseCapabilities getCapabilities(analysisId, authorization) +> BaseResponseCapabilities getCapabilities(analysisId) Gets the capabilities from the analysis @@ -42,9 +42,8 @@ public class Example { AnalysesResultsMetadataApi apiInstance = new AnalysesResultsMetadataApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCapabilities result = apiInstance.getCapabilities(analysisId, authorization); + BaseResponseCapabilities result = apiInstance.getCapabilities(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getCapabilities"); @@ -62,7 +61,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -85,7 +83,7 @@ public class Example { # **getCommunities** -> BaseResponseCommunities getCommunities(analysisId, userName, authorization) +> BaseResponseCommunities getCommunities(analysisId, userName) Gets the communities found in the analysis @@ -113,9 +111,8 @@ public class Example { AnalysesResultsMetadataApi apiInstance = new AnalysesResultsMetadataApi(defaultClient); Integer analysisId = 56; // Integer | String userName = "userName_example"; // String | The user name to limit communities to - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommunities result = apiInstance.getCommunities(analysisId, userName, authorization); + BaseResponseCommunities result = apiInstance.getCommunities(analysisId, userName); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getCommunities"); @@ -134,7 +131,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **userName** | **String**| The user name to limit communities to | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -157,7 +153,7 @@ public class Example { # **getFunctionsList** -> BaseResponseAnalysisFunctions getFunctionsList(analysisId, searchTerm, minVAddr, maxVAddr, authorization) +> BaseResponseAnalysisFunctions getFunctionsList(analysisId, searchTerm, minVAddr, maxVAddr) Gets functions from analysis @@ -189,9 +185,8 @@ public class Example { String searchTerm = "searchTerm_example"; // String | Integer minVAddr = 56; // Integer | Integer maxVAddr = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisFunctions result = apiInstance.getFunctionsList(analysisId, searchTerm, minVAddr, maxVAddr, authorization); + BaseResponseAnalysisFunctions result = apiInstance.getFunctionsList(analysisId, searchTerm, minVAddr, maxVAddr); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getFunctionsList"); @@ -212,7 +207,6 @@ public class Example { | **searchTerm** | **String**| | [optional] | | **minVAddr** | **Integer**| | [optional] | | **maxVAddr** | **Integer**| | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -235,7 +229,7 @@ public class Example { # **getPdf** -> Object getPdf(analysisId, authorization) +> Object getPdf(analysisId) Gets the PDF found in the analysis @@ -262,9 +256,8 @@ public class Example { AnalysesResultsMetadataApi apiInstance = new AnalysesResultsMetadataApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - Object result = apiInstance.getPdf(analysisId, authorization); + Object result = apiInstance.getPdf(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getPdf"); @@ -282,7 +275,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -305,7 +297,7 @@ public class Example { # **getSbom** -> BaseResponseListSBOM getSbom(analysisId, authorization) +> BaseResponseListSBOM getSbom(analysisId) Gets the software-bill-of-materials (SBOM) found in the analysis @@ -332,9 +324,8 @@ public class Example { AnalysesResultsMetadataApi apiInstance = new AnalysesResultsMetadataApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListSBOM result = apiInstance.getSbom(analysisId, authorization); + BaseResponseListSBOM result = apiInstance.getSbom(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getSbom"); @@ -352,7 +343,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -375,7 +365,7 @@ public class Example { # **getTags** -> BaseResponseAnalysisTags getTags(analysisId, authorization) +> BaseResponseAnalysisTags getTags(analysisId) Get function tags with maliciousness score @@ -402,9 +392,8 @@ public class Example { AnalysesResultsMetadataApi apiInstance = new AnalysesResultsMetadataApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisTags result = apiInstance.getTags(analysisId, authorization); + BaseResponseAnalysisTags result = apiInstance.getTags(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getTags"); @@ -422,7 +411,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -445,7 +433,7 @@ public class Example { # **getVulnerabilities** -> BaseResponseVulnerabilities getVulnerabilities(analysisId, authorization) +> BaseResponseVulnerabilities getVulnerabilities(analysisId) Gets the vulnerabilities found in the analysis @@ -472,9 +460,8 @@ public class Example { AnalysesResultsMetadataApi apiInstance = new AnalysesResultsMetadataApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseVulnerabilities result = apiInstance.getVulnerabilities(analysisId, authorization); + BaseResponseVulnerabilities result = apiInstance.getVulnerabilities(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesResultsMetadataApi#getVulnerabilities"); @@ -492,7 +479,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/AnalysesSecurityChecksApi.md b/docs/AnalysesSecurityChecksApi.md index 157e676..d7ce66e 100644 --- a/docs/AnalysesSecurityChecksApi.md +++ b/docs/AnalysesSecurityChecksApi.md @@ -11,7 +11,7 @@ All URIs are relative to *https://api.reveng.ai* # **createScurityChecksTask** -> QueuedSecurityChecksTaskResponse createScurityChecksTask(analysisId, authorization) +> QueuedSecurityChecksTaskResponse createScurityChecksTask(analysisId) Queues a security check process @@ -38,9 +38,8 @@ public class Example { AnalysesSecurityChecksApi apiInstance = new AnalysesSecurityChecksApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - QueuedSecurityChecksTaskResponse result = apiInstance.createScurityChecksTask(analysisId, authorization); + QueuedSecurityChecksTaskResponse result = apiInstance.createScurityChecksTask(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesSecurityChecksApi#createScurityChecksTask"); @@ -58,7 +57,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -82,7 +80,7 @@ public class Example { # **getSecurityChecks** -> BaseResponseSecurityChecksResponse getSecurityChecks(analysisId, page, pageSize, authorization) +> BaseResponseSecurityChecksResponse getSecurityChecks(analysisId, page, pageSize) Get Security Checks @@ -113,9 +111,8 @@ public class Example { Integer analysisId = 56; // Integer | Integer page = 56; // Integer | The page number to retrieve. Integer pageSize = 56; // Integer | Number of items per page. - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseSecurityChecksResponse result = apiInstance.getSecurityChecks(analysisId, page, pageSize, authorization); + BaseResponseSecurityChecksResponse result = apiInstance.getSecurityChecks(analysisId, page, pageSize); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesSecurityChecksApi#getSecurityChecks"); @@ -135,7 +132,6 @@ public class Example { | **analysisId** | **Integer**| | | | **page** | **Integer**| The page number to retrieve. | | | **pageSize** | **Integer**| Number of items per page. | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -158,7 +154,7 @@ public class Example { # **getSecurityChecksTaskStatus** -> CheckSecurityChecksTaskResponse getSecurityChecksTaskStatus(analysisId, authorization) +> CheckSecurityChecksTaskResponse getSecurityChecksTaskStatus(analysisId) Check the status of a security check process @@ -185,9 +181,8 @@ public class Example { AnalysesSecurityChecksApi apiInstance = new AnalysesSecurityChecksApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - CheckSecurityChecksTaskResponse result = apiInstance.getSecurityChecksTaskStatus(analysisId, authorization); + CheckSecurityChecksTaskResponse result = apiInstance.getSecurityChecksTaskStatus(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AnalysesSecurityChecksApi#getSecurityChecksTaskStatus"); @@ -205,7 +200,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/AuthenticationUsersApi.md b/docs/AuthenticationUsersApi.md index 63da459..b96164e 100644 --- a/docs/AuthenticationUsersApi.md +++ b/docs/AuthenticationUsersApi.md @@ -13,7 +13,7 @@ All URIs are relative to *https://api.reveng.ai* # **getRequesterUserInfo** -> BaseResponseGetUserResponse getRequesterUserInfo(authorization) +> BaseResponseGetUserResponse getRequesterUserInfo() Get the requesters user information @@ -39,9 +39,8 @@ public class Example { //APIKey.setApiKeyPrefix("Token"); AuthenticationUsersApi apiInstance = new AuthenticationUsersApi(defaultClient); - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseGetUserResponse result = apiInstance.getRequesterUserInfo(authorization); + BaseResponseGetUserResponse result = apiInstance.getRequesterUserInfo(); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AuthenticationUsersApi#getRequesterUserInfo"); @@ -55,10 +54,7 @@ public class Example { ``` ### Parameters - -| Name | Type | Description | Notes | -|------------- | ------------- | ------------- | -------------| -| **authorization** | **String**| API Key bearer token | [optional] | +This endpoint does not need any parameter. ### Return type @@ -81,7 +77,7 @@ public class Example { # **getUser** -> BaseResponseGetPublicUserResponse getUser(userId, authorization) +> BaseResponseGetPublicUserResponse getUser(userId) Get a user's public information @@ -108,9 +104,8 @@ public class Example { AuthenticationUsersApi apiInstance = new AuthenticationUsersApi(defaultClient); Integer userId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseGetPublicUserResponse result = apiInstance.getUser(userId, authorization); + BaseResponseGetPublicUserResponse result = apiInstance.getUser(userId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AuthenticationUsersApi#getUser"); @@ -128,7 +123,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **userId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -151,7 +145,7 @@ public class Example { # **getUserActivity** -> BaseResponseListUserActivityResponse getUserActivity(authorization) +> BaseResponseListUserActivityResponse getUserActivity() Get auth user activity @@ -177,9 +171,8 @@ public class Example { //APIKey.setApiKeyPrefix("Token"); AuthenticationUsersApi apiInstance = new AuthenticationUsersApi(defaultClient); - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListUserActivityResponse result = apiInstance.getUserActivity(authorization); + BaseResponseListUserActivityResponse result = apiInstance.getUserActivity(); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AuthenticationUsersApi#getUserActivity"); @@ -193,10 +186,7 @@ public class Example { ``` ### Parameters - -| Name | Type | Description | Notes | -|------------- | ------------- | ------------- | -------------| -| **authorization** | **String**| API Key bearer token | [optional] | +This endpoint does not need any parameter. ### Return type @@ -219,7 +209,7 @@ public class Example { # **getUserComments** -> BaseResponseListCommentResponse getUserComments(authorization) +> BaseResponseListCommentResponse getUserComments() Get comments by user @@ -247,9 +237,8 @@ public class Example { //APIKey.setApiKeyPrefix("Token"); AuthenticationUsersApi apiInstance = new AuthenticationUsersApi(defaultClient); - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListCommentResponse result = apiInstance.getUserComments(authorization); + BaseResponseListCommentResponse result = apiInstance.getUserComments(); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AuthenticationUsersApi#getUserComments"); @@ -263,10 +252,7 @@ public class Example { ``` ### Parameters - -| Name | Type | Description | Notes | -|------------- | ------------- | ------------- | -------------| -| **authorization** | **String**| API Key bearer token | [optional] | +This endpoint does not need any parameter. ### Return type diff --git a/docs/BinariesApi.md b/docs/BinariesApi.md index 97bcc0a..5bd6b6b 100644 --- a/docs/BinariesApi.md +++ b/docs/BinariesApi.md @@ -14,7 +14,7 @@ All URIs are relative to *https://api.reveng.ai* # **downloadZippedBinary** -> Object downloadZippedBinary(binaryId, authorization) +> Object downloadZippedBinary(binaryId) Downloads a zipped binary with password protection @@ -41,9 +41,8 @@ public class Example { BinariesApi apiInstance = new BinariesApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - Object result = apiInstance.downloadZippedBinary(binaryId, authorization); + Object result = apiInstance.downloadZippedBinary(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling BinariesApi#downloadZippedBinary"); @@ -61,7 +60,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -84,7 +82,7 @@ public class Example { # **getBinaryAdditionalDetails** -> BaseResponseBinaryAdditionalResponse getBinaryAdditionalDetails(binaryId, authorization) +> BaseResponseBinaryAdditionalResponse getBinaryAdditionalDetails(binaryId) Gets the additional details of a binary @@ -111,9 +109,8 @@ public class Example { BinariesApi apiInstance = new BinariesApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBinaryAdditionalResponse result = apiInstance.getBinaryAdditionalDetails(binaryId, authorization); + BaseResponseBinaryAdditionalResponse result = apiInstance.getBinaryAdditionalDetails(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling BinariesApi#getBinaryAdditionalDetails"); @@ -131,7 +128,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -154,7 +150,7 @@ public class Example { # **getBinaryDetails** -> BaseResponseBinaryDetailsResponse getBinaryDetails(binaryId, authorization) +> BaseResponseBinaryDetailsResponse getBinaryDetails(binaryId) Gets the details of a binary @@ -181,9 +177,8 @@ public class Example { BinariesApi apiInstance = new BinariesApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBinaryDetailsResponse result = apiInstance.getBinaryDetails(binaryId, authorization); + BaseResponseBinaryDetailsResponse result = apiInstance.getBinaryDetails(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling BinariesApi#getBinaryDetails"); @@ -201,7 +196,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -224,7 +218,7 @@ public class Example { # **getBinaryDieInfo** -> BaseResponseListDieMatch getBinaryDieInfo(binaryId, authorization) +> BaseResponseListDieMatch getBinaryDieInfo(binaryId) Gets the die info of a binary @@ -251,9 +245,8 @@ public class Example { BinariesApi apiInstance = new BinariesApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListDieMatch result = apiInstance.getBinaryDieInfo(binaryId, authorization); + BaseResponseListDieMatch result = apiInstance.getBinaryDieInfo(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling BinariesApi#getBinaryDieInfo"); @@ -271,7 +264,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -294,7 +286,7 @@ public class Example { # **getBinaryExternals** -> BaseResponseBinaryExternalsResponse getBinaryExternals(binaryId, authorization) +> BaseResponseBinaryExternalsResponse getBinaryExternals(binaryId) Gets the external details of a binary @@ -321,9 +313,8 @@ public class Example { BinariesApi apiInstance = new BinariesApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBinaryExternalsResponse result = apiInstance.getBinaryExternals(binaryId, authorization); + BaseResponseBinaryExternalsResponse result = apiInstance.getBinaryExternals(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling BinariesApi#getBinaryExternals"); @@ -341,7 +332,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -364,7 +354,7 @@ public class Example { # **getRelatedBinaries** -> BaseResponseChildBinariesResponse getRelatedBinaries(binaryId, authorization) +> BaseResponseChildBinariesResponse getRelatedBinaries(binaryId) Gets the related binaries of a binary. @@ -391,9 +381,8 @@ public class Example { BinariesApi apiInstance = new BinariesApi(defaultClient); Integer binaryId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseChildBinariesResponse result = apiInstance.getRelatedBinaries(binaryId, authorization); + BaseResponseChildBinariesResponse result = apiInstance.getRelatedBinaries(binaryId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling BinariesApi#getRelatedBinaries"); @@ -411,7 +400,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **binaryId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/CollectionsApi.md b/docs/CollectionsApi.md index 0f198ae..cd85303 100644 --- a/docs/CollectionsApi.md +++ b/docs/CollectionsApi.md @@ -15,7 +15,7 @@ All URIs are relative to *https://api.reveng.ai* # **createCollection** -> BaseResponseCollectionResponse createCollection(collectionCreateRequest, authorization) +> BaseResponseCollectionResponse createCollection(collectionCreateRequest) Creates new collection information @@ -44,9 +44,8 @@ public class Example { CollectionsApi apiInstance = new CollectionsApi(defaultClient); CollectionCreateRequest collectionCreateRequest = new CollectionCreateRequest(); // CollectionCreateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCollectionResponse result = apiInstance.createCollection(collectionCreateRequest, authorization); + BaseResponseCollectionResponse result = apiInstance.createCollection(collectionCreateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#createCollection"); @@ -64,7 +63,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **collectionCreateRequest** | [**CollectionCreateRequest**](CollectionCreateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -87,7 +85,7 @@ public class Example { # **deleteCollection** -> BaseResponseBool deleteCollection(collectionId, authorization) +> BaseResponseBool deleteCollection(collectionId) Deletes a collection @@ -116,9 +114,8 @@ public class Example { CollectionsApi apiInstance = new CollectionsApi(defaultClient); Integer collectionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBool result = apiInstance.deleteCollection(collectionId, authorization); + BaseResponseBool result = apiInstance.deleteCollection(collectionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#deleteCollection"); @@ -136,7 +133,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **collectionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -159,7 +155,7 @@ public class Example { # **getCollection** -> BaseResponseCollectionResponse getCollection(collectionId, includeTags, includeBinaries, authorization) +> BaseResponseCollectionResponse getCollection(collectionId, includeTags, includeBinaries) Returns a collection @@ -190,9 +186,8 @@ public class Example { Integer collectionId = 56; // Integer | Boolean includeTags = false; // Boolean | Boolean includeBinaries = false; // Boolean | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCollectionResponse result = apiInstance.getCollection(collectionId, includeTags, includeBinaries, authorization); + BaseResponseCollectionResponse result = apiInstance.getCollection(collectionId, includeTags, includeBinaries); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#getCollection"); @@ -212,7 +207,6 @@ public class Example { | **collectionId** | **Integer**| | | | **includeTags** | **Boolean**| | [optional] [default to false] | | **includeBinaries** | **Boolean**| | [optional] [default to false] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -235,7 +229,7 @@ public class Example { # **listCollections** -> BaseResponseListCollectionResults listCollections(searchTerm, filters, limit, offset, orderBy, order, authorization) +> BaseResponseListCollectionResults listCollections(searchTerm, filters, limit, offset, orderBy, order) Gets basic collections information @@ -269,9 +263,8 @@ public class Example { Integer offset = 0; // Integer | AppApiRestV2CollectionsEnumsOrderBy orderBy = AppApiRestV2CollectionsEnumsOrderBy.fromValue("created"); // AppApiRestV2CollectionsEnumsOrderBy | Order order = Order.fromValue("ASC"); // Order | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListCollectionResults result = apiInstance.listCollections(searchTerm, filters, limit, offset, orderBy, order, authorization); + BaseResponseListCollectionResults result = apiInstance.listCollections(searchTerm, filters, limit, offset, orderBy, order); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#listCollections"); @@ -294,7 +287,6 @@ public class Example { | **offset** | **Integer**| | [optional] [default to 0] | | **orderBy** | [**AppApiRestV2CollectionsEnumsOrderBy**](.md)| | [optional] [enum: created, collection, model, owner, collection_size, updated] | | **order** | [**Order**](.md)| | [optional] [enum: ASC, DESC] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -317,7 +309,7 @@ public class Example { # **updateCollection** -> BaseResponseCollectionResponse updateCollection(collectionId, collectionUpdateRequest, authorization) +> BaseResponseCollectionResponse updateCollection(collectionId, collectionUpdateRequest) Updates a collection @@ -347,9 +339,8 @@ public class Example { CollectionsApi apiInstance = new CollectionsApi(defaultClient); Integer collectionId = 56; // Integer | CollectionUpdateRequest collectionUpdateRequest = new CollectionUpdateRequest(); // CollectionUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCollectionResponse result = apiInstance.updateCollection(collectionId, collectionUpdateRequest, authorization); + BaseResponseCollectionResponse result = apiInstance.updateCollection(collectionId, collectionUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#updateCollection"); @@ -368,7 +359,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **collectionId** | **Integer**| | | | **collectionUpdateRequest** | [**CollectionUpdateRequest**](CollectionUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -391,7 +381,7 @@ public class Example { # **updateCollectionBinaries** -> BaseResponseCollectionBinariesUpdateResponse updateCollectionBinaries(collectionId, collectionBinariesUpdateRequest, authorization) +> BaseResponseCollectionBinariesUpdateResponse updateCollectionBinaries(collectionId, collectionBinariesUpdateRequest) Updates a collection binaries @@ -421,9 +411,8 @@ public class Example { CollectionsApi apiInstance = new CollectionsApi(defaultClient); Integer collectionId = 56; // Integer | CollectionBinariesUpdateRequest collectionBinariesUpdateRequest = new CollectionBinariesUpdateRequest(); // CollectionBinariesUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCollectionBinariesUpdateResponse result = apiInstance.updateCollectionBinaries(collectionId, collectionBinariesUpdateRequest, authorization); + BaseResponseCollectionBinariesUpdateResponse result = apiInstance.updateCollectionBinaries(collectionId, collectionBinariesUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#updateCollectionBinaries"); @@ -442,7 +431,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **collectionId** | **Integer**| | | | **collectionBinariesUpdateRequest** | [**CollectionBinariesUpdateRequest**](CollectionBinariesUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -465,7 +453,7 @@ public class Example { # **updateCollectionTags** -> BaseResponseCollectionTagsUpdateResponse updateCollectionTags(collectionId, collectionTagsUpdateRequest, authorization) +> BaseResponseCollectionTagsUpdateResponse updateCollectionTags(collectionId, collectionTagsUpdateRequest) Updates a collection tags @@ -495,9 +483,8 @@ public class Example { CollectionsApi apiInstance = new CollectionsApi(defaultClient); Integer collectionId = 56; // Integer | CollectionTagsUpdateRequest collectionTagsUpdateRequest = new CollectionTagsUpdateRequest(); // CollectionTagsUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCollectionTagsUpdateResponse result = apiInstance.updateCollectionTags(collectionId, collectionTagsUpdateRequest, authorization); + BaseResponseCollectionTagsUpdateResponse result = apiInstance.updateCollectionTags(collectionId, collectionTagsUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CollectionsApi#updateCollectionTags"); @@ -516,7 +503,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **collectionId** | **Integer**| | | | **collectionTagsUpdateRequest** | [**CollectionTagsUpdateRequest**](CollectionTagsUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/ConfidenceApi.md b/docs/ConfidenceApi.md index f0b7867..ac6de92 100644 --- a/docs/ConfidenceApi.md +++ b/docs/ConfidenceApi.md @@ -12,7 +12,7 @@ All URIs are relative to *https://api.reveng.ai* # **getAnalysisTagScore** -> BaseResponseListTagOriginBoxPlotConfidence getAnalysisTagScore(analysisId, tagConfidenceBody, authorization) +> BaseResponseListTagOriginBoxPlotConfidence getAnalysisTagScore(analysisId, tagConfidenceBody) Calculate Tag Confidence Score for an Analysis @@ -42,9 +42,8 @@ public class Example { ConfidenceApi apiInstance = new ConfidenceApi(defaultClient); Integer analysisId = 56; // Integer | The analysis to calculate the tag scores for TagConfidenceBody tagConfidenceBody = new TagConfidenceBody(); // TagConfidenceBody | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListTagOriginBoxPlotConfidence result = apiInstance.getAnalysisTagScore(analysisId, tagConfidenceBody, authorization); + BaseResponseListTagOriginBoxPlotConfidence result = apiInstance.getAnalysisTagScore(analysisId, tagConfidenceBody); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ConfidenceApi#getAnalysisTagScore"); @@ -63,7 +62,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| The analysis to calculate the tag scores for | | | **tagConfidenceBody** | [**TagConfidenceBody**](TagConfidenceBody.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -86,7 +84,7 @@ public class Example { # **getAnalysisThreatScore** -> BaseResponseBoxPlotConfidence getAnalysisThreatScore(analysisId, authorization) +> BaseResponseBoxPlotConfidence getAnalysisThreatScore(analysisId) Calculate Threat Score for Binary @@ -115,9 +113,8 @@ public class Example { ConfidenceApi apiInstance = new ConfidenceApi(defaultClient); Integer analysisId = 56; // Integer | The analysis to calculate the threat score for - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBoxPlotConfidence result = apiInstance.getAnalysisThreatScore(analysisId, authorization); + BaseResponseBoxPlotConfidence result = apiInstance.getAnalysisThreatScore(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ConfidenceApi#getAnalysisThreatScore"); @@ -135,7 +132,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| The analysis to calculate the threat score for | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -158,7 +154,7 @@ public class Example { # **getFunctionsNameScore** -> BaseResponseListFunctionBoxPlotConfidence getFunctionsNameScore(functionNameConfidenceBody, authorization) +> BaseResponseListFunctionBoxPlotConfidence getFunctionsNameScore(functionNameConfidenceBody) Calculate function name confidence for a set of Functions @@ -187,9 +183,8 @@ public class Example { ConfidenceApi apiInstance = new ConfidenceApi(defaultClient); FunctionNameConfidenceBody functionNameConfidenceBody = new FunctionNameConfidenceBody(); // FunctionNameConfidenceBody | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListFunctionBoxPlotConfidence result = apiInstance.getFunctionsNameScore(functionNameConfidenceBody, authorization); + BaseResponseListFunctionBoxPlotConfidence result = apiInstance.getFunctionsNameScore(functionNameConfidenceBody); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ConfidenceApi#getFunctionsNameScore"); @@ -207,7 +202,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionNameConfidenceBody** | [**FunctionNameConfidenceBody**](FunctionNameConfidenceBody.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -230,7 +224,7 @@ public class Example { # **getFunctionsThreatScore** -> BaseResponseListFunctionBoxPlotConfidence getFunctionsThreatScore(threatScoreFunctionBody, authorization) +> BaseResponseListFunctionBoxPlotConfidence getFunctionsThreatScore(threatScoreFunctionBody) Calculate Threat Score for a set of Functions @@ -259,9 +253,8 @@ public class Example { ConfidenceApi apiInstance = new ConfidenceApi(defaultClient); ThreatScoreFunctionBody threatScoreFunctionBody = new ThreatScoreFunctionBody(); // ThreatScoreFunctionBody | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListFunctionBoxPlotConfidence result = apiInstance.getFunctionsThreatScore(threatScoreFunctionBody, authorization); + BaseResponseListFunctionBoxPlotConfidence result = apiInstance.getFunctionsThreatScore(threatScoreFunctionBody); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ConfidenceApi#getFunctionsThreatScore"); @@ -279,7 +272,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **threatScoreFunctionBody** | [**ThreatScoreFunctionBody**](ThreatScoreFunctionBody.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/ExternalSourcesApi.md b/docs/ExternalSourcesApi.md index 5e2f8ee..ef48932 100644 --- a/docs/ExternalSourcesApi.md +++ b/docs/ExternalSourcesApi.md @@ -14,7 +14,7 @@ All URIs are relative to *https://api.reveng.ai* # **createExternalTaskMb** -> BaseResponseStr createExternalTaskMb(analysisId, authorization) +> BaseResponseStr createExternalTaskMb(analysisId) Pulls data from VirusTotal @@ -41,9 +41,8 @@ public class Example { ExternalSourcesApi apiInstance = new ExternalSourcesApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseStr result = apiInstance.createExternalTaskMb(analysisId, authorization); + BaseResponseStr result = apiInstance.createExternalTaskMb(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ExternalSourcesApi#createExternalTaskMb"); @@ -61,7 +60,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -85,7 +83,7 @@ public class Example { # **createExternalTaskVt** -> BaseResponseStr createExternalTaskVt(analysisId, authorization) +> BaseResponseStr createExternalTaskVt(analysisId) Pulls data from VirusTotal @@ -112,9 +110,8 @@ public class Example { ExternalSourcesApi apiInstance = new ExternalSourcesApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseStr result = apiInstance.createExternalTaskVt(analysisId, authorization); + BaseResponseStr result = apiInstance.createExternalTaskVt(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ExternalSourcesApi#createExternalTaskVt"); @@ -132,7 +129,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -156,7 +152,7 @@ public class Example { # **getMbData** -> BaseResponseExternalResponse getMbData(analysisId, authorization) +> BaseResponseExternalResponse getMbData(analysisId) Get MalwareBazaar data @@ -183,9 +179,8 @@ public class Example { ExternalSourcesApi apiInstance = new ExternalSourcesApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseExternalResponse result = apiInstance.getMbData(analysisId, authorization); + BaseResponseExternalResponse result = apiInstance.getMbData(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ExternalSourcesApi#getMbData"); @@ -203,7 +198,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -227,7 +221,7 @@ public class Example { # **getMbTaskStatus** -> BaseResponseTaskResponse getMbTaskStatus(analysisId, authorization) +> BaseResponseTaskResponse getMbTaskStatus(analysisId) Check the status of MalwareBazaar data retrieval @@ -254,9 +248,8 @@ public class Example { ExternalSourcesApi apiInstance = new ExternalSourcesApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseTaskResponse result = apiInstance.getMbTaskStatus(analysisId, authorization); + BaseResponseTaskResponse result = apiInstance.getMbTaskStatus(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ExternalSourcesApi#getMbTaskStatus"); @@ -274,7 +267,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -297,7 +289,7 @@ public class Example { # **getVtData** -> BaseResponseExternalResponse getVtData(analysisId, authorization) +> BaseResponseExternalResponse getVtData(analysisId) Get VirusTotal data @@ -324,9 +316,8 @@ public class Example { ExternalSourcesApi apiInstance = new ExternalSourcesApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseExternalResponse result = apiInstance.getVtData(analysisId, authorization); + BaseResponseExternalResponse result = apiInstance.getVtData(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ExternalSourcesApi#getVtData"); @@ -344,7 +335,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -368,7 +358,7 @@ public class Example { # **getVtTaskStatus** -> BaseResponseTaskResponse getVtTaskStatus(analysisId, authorization) +> BaseResponseTaskResponse getVtTaskStatus(analysisId) Check the status of VirusTotal data retrieval @@ -395,9 +385,8 @@ public class Example { ExternalSourcesApi apiInstance = new ExternalSourcesApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseTaskResponse result = apiInstance.getVtTaskStatus(analysisId, authorization); + BaseResponseTaskResponse result = apiInstance.getVtTaskStatus(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ExternalSourcesApi#getVtTaskStatus"); @@ -415,7 +404,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/FirmwareApi.md b/docs/FirmwareApi.md index 384b58a..955f230 100644 --- a/docs/FirmwareApi.md +++ b/docs/FirmwareApi.md @@ -10,7 +10,7 @@ All URIs are relative to *https://api.reveng.ai* # **getBinariesForFirmwareTask** -> Object getBinariesForFirmwareTask(taskId, authorization) +> Object getBinariesForFirmwareTask(taskId) Upload firmware for unpacking @@ -39,9 +39,8 @@ public class Example { FirmwareApi apiInstance = new FirmwareApi(defaultClient); String taskId = "taskId_example"; // String | - String authorization = "authorization_example"; // String | API Key bearer token try { - Object result = apiInstance.getBinariesForFirmwareTask(taskId, authorization); + Object result = apiInstance.getBinariesForFirmwareTask(taskId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FirmwareApi#getBinariesForFirmwareTask"); @@ -59,7 +58,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **taskId** | **String**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -82,7 +80,7 @@ public class Example { # **uploadFirmware** -> Object uploadFirmware(_file, authorization, password) +> Object uploadFirmware(_file, password) Upload firmware for unpacking @@ -111,10 +109,9 @@ public class Example { FirmwareApi apiInstance = new FirmwareApi(defaultClient); File _file = new File("/path/to/file"); // File | - String authorization = "authorization_example"; // String | API Key bearer token String password = "password_example"; // String | try { - Object result = apiInstance.uploadFirmware(_file, authorization, password); + Object result = apiInstance.uploadFirmware(_file, password); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FirmwareApi#uploadFirmware"); @@ -132,7 +129,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **_file** | **File**| | | -| **authorization** | **String**| API Key bearer token | [optional] | | **password** | **String**| | [optional] | ### Return type diff --git a/docs/FunctionsAiDecompilationApi.md b/docs/FunctionsAiDecompilationApi.md index 9a6f83c..2175bc8 100644 --- a/docs/FunctionsAiDecompilationApi.md +++ b/docs/FunctionsAiDecompilationApi.md @@ -17,7 +17,7 @@ All URIs are relative to *https://api.reveng.ai* # **createAiDecompilationComment** -> BaseResponseCommentResponse createAiDecompilationComment(functionId, functionCommentCreateRequest, authorization) +> BaseResponseCommentResponse createAiDecompilationComment(functionId, functionCommentCreateRequest) Create a comment for this function @@ -47,9 +47,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer functionId = 56; // Integer | FunctionCommentCreateRequest functionCommentCreateRequest = new FunctionCommentCreateRequest(); // FunctionCommentCreateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommentResponse result = apiInstance.createAiDecompilationComment(functionId, functionCommentCreateRequest, authorization); + BaseResponseCommentResponse result = apiInstance.createAiDecompilationComment(functionId, functionCommentCreateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#createAiDecompilationComment"); @@ -68,7 +67,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | | **functionCommentCreateRequest** | [**FunctionCommentCreateRequest**](FunctionCommentCreateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -92,7 +90,7 @@ public class Example { # **createAiDecompilationTask** -> BaseResponse createAiDecompilationTask(functionId, authorization) +> BaseResponse createAiDecompilationTask(functionId) Begins AI Decompilation Process @@ -121,9 +119,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponse result = apiInstance.createAiDecompilationTask(functionId, authorization); + BaseResponse result = apiInstance.createAiDecompilationTask(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#createAiDecompilationTask"); @@ -141,7 +138,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -168,7 +164,7 @@ public class Example { # **deleteAiDecompilationComment** -> BaseResponseBool deleteAiDecompilationComment(commentId, functionId, authorization) +> BaseResponseBool deleteAiDecompilationComment(commentId, functionId) Delete a comment @@ -198,9 +194,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer commentId = 56; // Integer | Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBool result = apiInstance.deleteAiDecompilationComment(commentId, functionId, authorization); + BaseResponseBool result = apiInstance.deleteAiDecompilationComment(commentId, functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#deleteAiDecompilationComment"); @@ -219,7 +214,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **commentId** | **Integer**| | | | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -244,7 +238,7 @@ public class Example { # **getAiDecompilationComments** -> BaseResponseListCommentResponse getAiDecompilationComments(functionId, authorization) +> BaseResponseListCommentResponse getAiDecompilationComments(functionId) Get comments for this function @@ -273,9 +267,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListCommentResponse result = apiInstance.getAiDecompilationComments(functionId, authorization); + BaseResponseListCommentResponse result = apiInstance.getAiDecompilationComments(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#getAiDecompilationComments"); @@ -293,7 +286,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -316,7 +308,7 @@ public class Example { # **getAiDecompilationRating** -> BaseResponseGetAiDecompilationRatingResponse getAiDecompilationRating(functionId, authorization) +> BaseResponseGetAiDecompilationRatingResponse getAiDecompilationRating(functionId) Get rating for AI decompilation @@ -343,9 +335,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseGetAiDecompilationRatingResponse result = apiInstance.getAiDecompilationRating(functionId, authorization); + BaseResponseGetAiDecompilationRatingResponse result = apiInstance.getAiDecompilationRating(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#getAiDecompilationRating"); @@ -363,7 +354,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -386,7 +376,7 @@ public class Example { # **getAiDecompilationTaskResult** -> BaseResponseGetAiDecompilationTask getAiDecompilationTaskResult(functionId, summarise, generateInlineComments, authorization) +> BaseResponseGetAiDecompilationTask getAiDecompilationTaskResult(functionId, summarise, generateInlineComments) Polls AI Decompilation Process @@ -417,9 +407,8 @@ public class Example { Integer functionId = 56; // Integer | Boolean summarise = true; // Boolean | Generate a summary for the decompilation Boolean generateInlineComments = true; // Boolean | Generate inline comments for the decompilation (only works if summarise is enabled) - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseGetAiDecompilationTask result = apiInstance.getAiDecompilationTaskResult(functionId, summarise, generateInlineComments, authorization); + BaseResponseGetAiDecompilationTask result = apiInstance.getAiDecompilationTaskResult(functionId, summarise, generateInlineComments); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#getAiDecompilationTaskResult"); @@ -439,7 +428,6 @@ public class Example { | **functionId** | **Integer**| | | | **summarise** | **Boolean**| Generate a summary for the decompilation | [optional] [default to true] | | **generateInlineComments** | **Boolean**| Generate inline comments for the decompilation (only works if summarise is enabled) | [optional] [default to true] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -463,7 +451,7 @@ public class Example { # **getAiDecompilationTaskStatus** -> BaseResponseFunctionTaskResponse getAiDecompilationTaskStatus(functionId, authorization) +> BaseResponseFunctionTaskResponse getAiDecompilationTaskStatus(functionId) Check the status of a function ai decompilation @@ -490,9 +478,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionTaskResponse result = apiInstance.getAiDecompilationTaskStatus(functionId, authorization); + BaseResponseFunctionTaskResponse result = apiInstance.getAiDecompilationTaskStatus(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#getAiDecompilationTaskStatus"); @@ -510,7 +497,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -533,7 +519,7 @@ public class Example { # **updateAiDecompilationComment** -> BaseResponseCommentResponse updateAiDecompilationComment(commentId, functionId, commentUpdateRequest, authorization) +> BaseResponseCommentResponse updateAiDecompilationComment(commentId, functionId, commentUpdateRequest) Update a comment @@ -564,9 +550,8 @@ public class Example { Integer commentId = 56; // Integer | Integer functionId = 56; // Integer | CommentUpdateRequest commentUpdateRequest = new CommentUpdateRequest(); // CommentUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommentResponse result = apiInstance.updateAiDecompilationComment(commentId, functionId, commentUpdateRequest, authorization); + BaseResponseCommentResponse result = apiInstance.updateAiDecompilationComment(commentId, functionId, commentUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#updateAiDecompilationComment"); @@ -586,7 +571,6 @@ public class Example { | **commentId** | **Integer**| | | | **functionId** | **Integer**| | | | **commentUpdateRequest** | [**CommentUpdateRequest**](CommentUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -611,7 +595,7 @@ public class Example { # **upsertAiDecompilationRating** -> BaseResponse upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest, authorization) +> BaseResponse upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest) Upsert rating for AI decompilation @@ -639,9 +623,8 @@ public class Example { FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi(defaultClient); Integer functionId = 56; // Integer | UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest = new UpsertAiDecomplationRatingRequest(); // UpsertAiDecomplationRatingRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponse result = apiInstance.upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest, authorization); + BaseResponse result = apiInstance.upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsAiDecompilationApi#upsertAiDecompilationRating"); @@ -660,7 +643,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | | **upsertAiDecomplationRatingRequest** | [**UpsertAiDecomplationRatingRequest**](UpsertAiDecomplationRatingRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/FunctionsBlockCommentsApi.md b/docs/FunctionsBlockCommentsApi.md index e97b58d..6006045 100644 --- a/docs/FunctionsBlockCommentsApi.md +++ b/docs/FunctionsBlockCommentsApi.md @@ -11,7 +11,7 @@ All URIs are relative to *https://api.reveng.ai* # **generateBlockCommentsForBlockInFunction** -> BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForBlockInFunction(functionId, block, authorization) +> BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForBlockInFunction(functionId, block) Generate block comments for a specific block in a function @@ -39,9 +39,8 @@ public class Example { FunctionsBlockCommentsApi apiInstance = new FunctionsBlockCommentsApi(defaultClient); Integer functionId = 56; // Integer | Block block = new Block(); // Block | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBlockCommentsGenerationForFunctionResponse result = apiInstance.generateBlockCommentsForBlockInFunction(functionId, block, authorization); + BaseResponseBlockCommentsGenerationForFunctionResponse result = apiInstance.generateBlockCommentsForBlockInFunction(functionId, block); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsBlockCommentsApi#generateBlockCommentsForBlockInFunction"); @@ -60,7 +59,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | | **block** | [**Block**](Block.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -83,7 +81,7 @@ public class Example { # **generateBlockCommentsForFunction** -> BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForFunction(functionId, authorization) +> BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForFunction(functionId) Generate block comments for a function @@ -110,9 +108,8 @@ public class Example { FunctionsBlockCommentsApi apiInstance = new FunctionsBlockCommentsApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBlockCommentsGenerationForFunctionResponse result = apiInstance.generateBlockCommentsForFunction(functionId, authorization); + BaseResponseBlockCommentsGenerationForFunctionResponse result = apiInstance.generateBlockCommentsForFunction(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsBlockCommentsApi#generateBlockCommentsForFunction"); @@ -130,7 +127,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -153,7 +149,7 @@ public class Example { # **generateOverviewCommentForFunction** -> BaseResponseBlockCommentsOverviewGenerationResponse generateOverviewCommentForFunction(functionId, authorization) +> BaseResponseBlockCommentsOverviewGenerationResponse generateOverviewCommentForFunction(functionId) Generate overview comment for a function @@ -180,9 +176,8 @@ public class Example { FunctionsBlockCommentsApi apiInstance = new FunctionsBlockCommentsApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBlockCommentsOverviewGenerationResponse result = apiInstance.generateOverviewCommentForFunction(functionId, authorization); + BaseResponseBlockCommentsOverviewGenerationResponse result = apiInstance.generateOverviewCommentForFunction(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsBlockCommentsApi#generateOverviewCommentForFunction"); @@ -200,7 +195,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/FunctionsCoreApi.md b/docs/FunctionsCoreApi.md index 06d9277..abbc69a 100644 --- a/docs/FunctionsCoreApi.md +++ b/docs/FunctionsCoreApi.md @@ -21,7 +21,7 @@ All URIs are relative to *https://api.reveng.ai* # **aiUnstrip** -> AutoUnstripResponse aiUnstrip(analysisId, aiUnstripRequest, authorization) +> AutoUnstripResponse aiUnstrip(analysisId, aiUnstripRequest) Performs matching and auto-unstrip for an analysis and its functions @@ -51,9 +51,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer analysisId = 56; // Integer | AiUnstripRequest aiUnstripRequest = new AiUnstripRequest(); // AiUnstripRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - AutoUnstripResponse result = apiInstance.aiUnstrip(analysisId, aiUnstripRequest, authorization); + AutoUnstripResponse result = apiInstance.aiUnstrip(analysisId, aiUnstripRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#aiUnstrip"); @@ -72,7 +71,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **aiUnstripRequest** | [**AiUnstripRequest**](AiUnstripRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -95,7 +93,7 @@ public class Example { # **analysisFunctionMatching** -> FunctionMatchingBatchResponse analysisFunctionMatching(analysisId, analysisFunctionMatchingRequest, authorization) +> FunctionMatchingBatchResponse analysisFunctionMatching(analysisId, analysisFunctionMatchingRequest) Perform matching for the functions of an analysis @@ -125,9 +123,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer analysisId = 56; // Integer | AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest = new AnalysisFunctionMatchingRequest(); // AnalysisFunctionMatchingRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - FunctionMatchingBatchResponse result = apiInstance.analysisFunctionMatching(analysisId, analysisFunctionMatchingRequest, authorization); + FunctionMatchingBatchResponse result = apiInstance.analysisFunctionMatching(analysisId, analysisFunctionMatchingRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#analysisFunctionMatching"); @@ -146,7 +143,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **analysisFunctionMatchingRequest** | [**AnalysisFunctionMatchingRequest**](AnalysisFunctionMatchingRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -169,7 +165,7 @@ public class Example { # **autoUnstrip** -> AutoUnstripResponse autoUnstrip(analysisId, autoUnstripRequest, authorization) +> AutoUnstripResponse autoUnstrip(analysisId, autoUnstripRequest) Performs matching and auto-unstrip for an analysis and its functions @@ -199,9 +195,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer analysisId = 56; // Integer | AutoUnstripRequest autoUnstripRequest = new AutoUnstripRequest(); // AutoUnstripRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - AutoUnstripResponse result = apiInstance.autoUnstrip(analysisId, autoUnstripRequest, authorization); + AutoUnstripResponse result = apiInstance.autoUnstrip(analysisId, autoUnstripRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#autoUnstrip"); @@ -220,7 +215,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **autoUnstripRequest** | [**AutoUnstripRequest**](AutoUnstripRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -243,7 +237,7 @@ public class Example { # **batchFunctionMatching** -> FunctionMatchingBatchResponse batchFunctionMatching(functionMatchingRequest, authorization) +> FunctionMatchingBatchResponse batchFunctionMatching(functionMatchingRequest) Perform function matching for an arbitrary batch of functions, binaries or collections @@ -272,9 +266,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); FunctionMatchingRequest functionMatchingRequest = new FunctionMatchingRequest(); // FunctionMatchingRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - FunctionMatchingBatchResponse result = apiInstance.batchFunctionMatching(functionMatchingRequest, authorization); + FunctionMatchingBatchResponse result = apiInstance.batchFunctionMatching(functionMatchingRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#batchFunctionMatching"); @@ -292,7 +285,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionMatchingRequest** | [**FunctionMatchingRequest**](FunctionMatchingRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -315,7 +307,7 @@ public class Example { # **cancelAiUnstrip** -> AutoUnstripResponse cancelAiUnstrip(analysisId, authorization) +> AutoUnstripResponse cancelAiUnstrip(analysisId) Cancels a running ai-unstrip @@ -344,9 +336,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - AutoUnstripResponse result = apiInstance.cancelAiUnstrip(analysisId, authorization); + AutoUnstripResponse result = apiInstance.cancelAiUnstrip(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#cancelAiUnstrip"); @@ -364,7 +355,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -387,7 +377,7 @@ public class Example { # **cancelAutoUnstrip** -> AutoUnstripResponse cancelAutoUnstrip(analysisId, authorization) +> AutoUnstripResponse cancelAutoUnstrip(analysisId) Cancels a running auto-unstrip @@ -416,9 +406,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer analysisId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - AutoUnstripResponse result = apiInstance.cancelAutoUnstrip(analysisId, authorization); + AutoUnstripResponse result = apiInstance.cancelAutoUnstrip(analysisId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#cancelAutoUnstrip"); @@ -436,7 +425,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -459,7 +447,7 @@ public class Example { # **getAnalysisStrings** -> BaseResponseAnalysisStringsResponse getAnalysisStrings(analysisId, page, pageSize, search, functionSearch, authorization) +> BaseResponseAnalysisStringsResponse getAnalysisStrings(analysisId, page, pageSize, search, functionSearch) Get string information found in the Analysis @@ -492,9 +480,8 @@ public class Example { Integer pageSize = 100; // Integer | Number of items per page. String search = "search_example"; // String | Search is applied to string value String functionSearch = "functionSearch_example"; // String | Search is applied to function names - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseAnalysisStringsResponse result = apiInstance.getAnalysisStrings(analysisId, page, pageSize, search, functionSearch, authorization); + BaseResponseAnalysisStringsResponse result = apiInstance.getAnalysisStrings(analysisId, page, pageSize, search, functionSearch); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getAnalysisStrings"); @@ -516,7 +503,6 @@ public class Example { | **pageSize** | **Integer**| Number of items per page. | [optional] [default to 100] | | **search** | **String**| Search is applied to string value | [optional] | | **functionSearch** | **String**| Search is applied to function names | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -539,7 +525,7 @@ public class Example { # **getFunctionBlocks** -> BaseResponseFunctionBlocksResponse getFunctionBlocks(functionId, authorization) +> BaseResponseFunctionBlocksResponse getFunctionBlocks(functionId) Get disassembly blocks related to the function @@ -568,9 +554,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionBlocksResponse result = apiInstance.getFunctionBlocks(functionId, authorization); + BaseResponseFunctionBlocksResponse result = apiInstance.getFunctionBlocks(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getFunctionBlocks"); @@ -588,7 +573,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -612,7 +596,7 @@ public class Example { # **getFunctionCalleesCallers** -> BaseResponseCalleesCallerFunctionsResponse getFunctionCalleesCallers(functionId, authorization) +> BaseResponseCalleesCallerFunctionsResponse getFunctionCalleesCallers(functionId) Get list of functions that call or are called by the specified function @@ -639,9 +623,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCalleesCallerFunctionsResponse result = apiInstance.getFunctionCalleesCallers(functionId, authorization); + BaseResponseCalleesCallerFunctionsResponse result = apiInstance.getFunctionCalleesCallers(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getFunctionCalleesCallers"); @@ -659,7 +642,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -682,7 +664,7 @@ public class Example { # **getFunctionCapabilities** -> BaseResponseFunctionCapabilityResponse getFunctionCapabilities(functionId, authorization) +> BaseResponseFunctionCapabilityResponse getFunctionCapabilities(functionId) Retrieve a functions capabilities @@ -709,9 +691,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionCapabilityResponse result = apiInstance.getFunctionCapabilities(functionId, authorization); + BaseResponseFunctionCapabilityResponse result = apiInstance.getFunctionCapabilities(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getFunctionCapabilities"); @@ -729,7 +710,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -753,7 +733,7 @@ public class Example { # **getFunctionDetails** -> BaseResponseFunctionsDetailResponse getFunctionDetails(functionId, authorization) +> BaseResponseFunctionsDetailResponse getFunctionDetails(functionId) Get function details @@ -780,9 +760,8 @@ public class Example { FunctionsCoreApi apiInstance = new FunctionsCoreApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionsDetailResponse result = apiInstance.getFunctionDetails(functionId, authorization); + BaseResponseFunctionsDetailResponse result = apiInstance.getFunctionDetails(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getFunctionDetails"); @@ -800,7 +779,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -823,7 +801,7 @@ public class Example { # **getFunctionStrings** -> BaseResponseFunctionStringsResponse getFunctionStrings(functionId, page, pageSize, search, authorization) +> BaseResponseFunctionStringsResponse getFunctionStrings(functionId, page, pageSize, search) Get string information found in the function @@ -855,9 +833,8 @@ public class Example { Integer page = 1; // Integer | The page number to retrieve. Integer pageSize = 100; // Integer | Number of items per page. String search = "search_example"; // String | Search is applied to string value - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionStringsResponse result = apiInstance.getFunctionStrings(functionId, page, pageSize, search, authorization); + BaseResponseFunctionStringsResponse result = apiInstance.getFunctionStrings(functionId, page, pageSize, search); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getFunctionStrings"); @@ -878,7 +855,6 @@ public class Example { | **page** | **Integer**| The page number to retrieve. | [optional] [default to 1] | | **pageSize** | **Integer**| Number of items per page. | [optional] [default to 100] | | **search** | **String**| Search is applied to string value | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -901,7 +877,7 @@ public class Example { # **getSimilarFunctions** -> BaseResponseListSimilarFunctionsResponse getSimilarFunctions(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization) +> BaseResponseListSimilarFunctionsResponse getSimilarFunctions(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds) Get list of similar functions @@ -934,9 +910,8 @@ public class Example { Boolean debug = false; // Boolean | Only return matching debug functions List debugTypes = Arrays.asList(); // List | If limiting results to functions with debug names, which type of debug names to include? List binaryIds = Arrays.asList(); // List | Limit similar functions to specific binaries - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListSimilarFunctionsResponse result = apiInstance.getSimilarFunctions(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization); + BaseResponseListSimilarFunctionsResponse result = apiInstance.getSimilarFunctions(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsCoreApi#getSimilarFunctions"); @@ -960,7 +935,6 @@ public class Example { | **debug** | **Boolean**| Only return matching debug functions | [optional] [default to false] | | **debugTypes** | [**List<String>**](String.md)| If limiting results to functions with debug names, which type of debug names to include? | [optional] [enum: USER, SYSTEM, EXTERNAL] | | **binaryIds** | [**List<Integer>**](Integer.md)| Limit similar functions to specific binaries | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/FunctionsDataTypesApi.md b/docs/FunctionsDataTypesApi.md index d34ba2f..b6e2d8d 100644 --- a/docs/FunctionsDataTypesApi.md +++ b/docs/FunctionsDataTypesApi.md @@ -14,7 +14,7 @@ All URIs are relative to *https://api.reveng.ai* # **generateFunctionDataTypesForAnalysis** -> BaseResponseGenerateFunctionDataTypes generateFunctionDataTypesForAnalysis(analysisId, functionDataTypesParams, authorization) +> BaseResponseGenerateFunctionDataTypes generateFunctionDataTypesForAnalysis(analysisId, functionDataTypesParams) Generate Function Data Types @@ -44,9 +44,8 @@ public class Example { FunctionsDataTypesApi apiInstance = new FunctionsDataTypesApi(defaultClient); Integer analysisId = 56; // Integer | FunctionDataTypesParams functionDataTypesParams = new FunctionDataTypesParams(); // FunctionDataTypesParams | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseGenerateFunctionDataTypes result = apiInstance.generateFunctionDataTypesForAnalysis(analysisId, functionDataTypesParams, authorization); + BaseResponseGenerateFunctionDataTypes result = apiInstance.generateFunctionDataTypesForAnalysis(analysisId, functionDataTypesParams); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDataTypesApi#generateFunctionDataTypesForAnalysis"); @@ -65,7 +64,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **functionDataTypesParams** | [**FunctionDataTypesParams**](FunctionDataTypesParams.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -88,7 +86,7 @@ public class Example { # **generateFunctionDataTypesForFunctions** -> BaseResponseGenerationStatusList generateFunctionDataTypesForFunctions(functionDataTypesParams, authorization) +> BaseResponseGenerationStatusList generateFunctionDataTypesForFunctions(functionDataTypesParams) Generate Function Data Types for an arbitrary list of functions @@ -117,9 +115,8 @@ public class Example { FunctionsDataTypesApi apiInstance = new FunctionsDataTypesApi(defaultClient); FunctionDataTypesParams functionDataTypesParams = new FunctionDataTypesParams(); // FunctionDataTypesParams | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseGenerationStatusList result = apiInstance.generateFunctionDataTypesForFunctions(functionDataTypesParams, authorization); + BaseResponseGenerationStatusList result = apiInstance.generateFunctionDataTypesForFunctions(functionDataTypesParams); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDataTypesApi#generateFunctionDataTypesForFunctions"); @@ -137,7 +134,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionDataTypesParams** | [**FunctionDataTypesParams**](FunctionDataTypesParams.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -160,7 +156,7 @@ public class Example { # **getFunctionDataTypes** -> BaseResponseFunctionDataTypes getFunctionDataTypes(analysisId, functionId, authorization) +> BaseResponseFunctionDataTypes getFunctionDataTypes(analysisId, functionId) Get Function Data Types @@ -190,9 +186,8 @@ public class Example { FunctionsDataTypesApi apiInstance = new FunctionsDataTypesApi(defaultClient); Integer analysisId = 56; // Integer | Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionDataTypes result = apiInstance.getFunctionDataTypes(analysisId, functionId, authorization); + BaseResponseFunctionDataTypes result = apiInstance.getFunctionDataTypes(analysisId, functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDataTypesApi#getFunctionDataTypes"); @@ -211,7 +206,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -234,7 +228,7 @@ public class Example { # **listFunctionDataTypesForAnalysis** -> BaseResponseFunctionDataTypesList listFunctionDataTypesForAnalysis(analysisId, functionIds, authorization) +> BaseResponseFunctionDataTypesList listFunctionDataTypesForAnalysis(analysisId, functionIds) List Function Data Types @@ -264,9 +258,8 @@ public class Example { FunctionsDataTypesApi apiInstance = new FunctionsDataTypesApi(defaultClient); Integer analysisId = 56; // Integer | List functionIds = Arrays.asList(); // List | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionDataTypesList result = apiInstance.listFunctionDataTypesForAnalysis(analysisId, functionIds, authorization); + BaseResponseFunctionDataTypesList result = apiInstance.listFunctionDataTypesForAnalysis(analysisId, functionIds); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDataTypesApi#listFunctionDataTypesForAnalysis"); @@ -285,7 +278,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **analysisId** | **Integer**| | | | **functionIds** | [**List<Integer>**](Integer.md)| | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -308,7 +300,7 @@ public class Example { # **listFunctionDataTypesForFunctions** -> BaseResponseFunctionDataTypesList listFunctionDataTypesForFunctions(functionIds, authorization) +> BaseResponseFunctionDataTypesList listFunctionDataTypesForFunctions(functionIds) List Function Data Types @@ -337,9 +329,8 @@ public class Example { FunctionsDataTypesApi apiInstance = new FunctionsDataTypesApi(defaultClient); List functionIds = Arrays.asList(); // List | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionDataTypesList result = apiInstance.listFunctionDataTypesForFunctions(functionIds, authorization); + BaseResponseFunctionDataTypesList result = apiInstance.listFunctionDataTypesForFunctions(functionIds); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDataTypesApi#listFunctionDataTypesForFunctions"); @@ -357,7 +348,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionIds** | [**List<Integer>**](Integer.md)| | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -380,7 +370,7 @@ public class Example { # **updateFunctionDataTypes** -> BaseResponseFunctionDataTypes updateFunctionDataTypes(analysisId, functionId, updateFunctionDataTypes, authorization) +> BaseResponseFunctionDataTypes updateFunctionDataTypes(analysisId, functionId, updateFunctionDataTypes) Update Function Data Types @@ -411,9 +401,8 @@ public class Example { Integer analysisId = 56; // Integer | Integer functionId = 56; // Integer | UpdateFunctionDataTypes updateFunctionDataTypes = new UpdateFunctionDataTypes(); // UpdateFunctionDataTypes | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionDataTypes result = apiInstance.updateFunctionDataTypes(analysisId, functionId, updateFunctionDataTypes, authorization); + BaseResponseFunctionDataTypes result = apiInstance.updateFunctionDataTypes(analysisId, functionId, updateFunctionDataTypes); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDataTypesApi#updateFunctionDataTypes"); @@ -433,7 +422,6 @@ public class Example { | **analysisId** | **Integer**| | | | **functionId** | **Integer**| | | | **updateFunctionDataTypes** | [**UpdateFunctionDataTypes**](UpdateFunctionDataTypes.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/FunctionsDecompilationApi.md b/docs/FunctionsDecompilationApi.md index 8897710..102f461 100644 --- a/docs/FunctionsDecompilationApi.md +++ b/docs/FunctionsDecompilationApi.md @@ -15,7 +15,7 @@ All URIs are relative to *https://api.reveng.ai* # **checkFunctionDecompilationTask** -> BaseResponseFunctionTaskResponse checkFunctionDecompilationTask(functionId, authorization) +> BaseResponseFunctionTaskResponse checkFunctionDecompilationTask(functionId) Check the status of a function decompilation @@ -42,9 +42,8 @@ public class Example { FunctionsDecompilationApi apiInstance = new FunctionsDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionTaskResponse result = apiInstance.checkFunctionDecompilationTask(functionId, authorization); + BaseResponseFunctionTaskResponse result = apiInstance.checkFunctionDecompilationTask(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#checkFunctionDecompilationTask"); @@ -62,7 +61,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -85,7 +83,7 @@ public class Example { # **createDecompilationComment** -> BaseResponseCommentResponse createDecompilationComment(functionId, functionCommentCreateRequest, authorization) +> BaseResponseCommentResponse createDecompilationComment(functionId, functionCommentCreateRequest) Create a comment for this function @@ -115,9 +113,8 @@ public class Example { FunctionsDecompilationApi apiInstance = new FunctionsDecompilationApi(defaultClient); Integer functionId = 56; // Integer | FunctionCommentCreateRequest functionCommentCreateRequest = new FunctionCommentCreateRequest(); // FunctionCommentCreateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommentResponse result = apiInstance.createDecompilationComment(functionId, functionCommentCreateRequest, authorization); + BaseResponseCommentResponse result = apiInstance.createDecompilationComment(functionId, functionCommentCreateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#createDecompilationComment"); @@ -136,7 +133,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | | **functionCommentCreateRequest** | [**FunctionCommentCreateRequest**](FunctionCommentCreateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -160,7 +156,7 @@ public class Example { # **createFunctionDecompilationTask** -> BaseResponseStr createFunctionDecompilationTask(functionId, authorization) +> BaseResponseStr createFunctionDecompilationTask(functionId) Queues a function decompilation @@ -187,9 +183,8 @@ public class Example { FunctionsDecompilationApi apiInstance = new FunctionsDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseStr result = apiInstance.createFunctionDecompilationTask(functionId, authorization); + BaseResponseStr result = apiInstance.createFunctionDecompilationTask(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#createFunctionDecompilationTask"); @@ -207,7 +202,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -231,7 +225,7 @@ public class Example { # **deleteDecompilationComment** -> BaseResponseBool deleteDecompilationComment(commentId, functionId, authorization) +> BaseResponseBool deleteDecompilationComment(commentId, functionId) Delete a comment @@ -261,9 +255,8 @@ public class Example { FunctionsDecompilationApi apiInstance = new FunctionsDecompilationApi(defaultClient); Integer commentId = 56; // Integer | Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBool result = apiInstance.deleteDecompilationComment(commentId, functionId, authorization); + BaseResponseBool result = apiInstance.deleteDecompilationComment(commentId, functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#deleteDecompilationComment"); @@ -282,7 +275,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **commentId** | **Integer**| | | | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -307,7 +299,7 @@ public class Example { # **getDecompilationComments** -> BaseResponseListCommentResponse getDecompilationComments(functionId, authorization) +> BaseResponseListCommentResponse getDecompilationComments(functionId) Get comments for this function @@ -336,9 +328,8 @@ public class Example { FunctionsDecompilationApi apiInstance = new FunctionsDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListCommentResponse result = apiInstance.getDecompilationComments(functionId, authorization); + BaseResponseListCommentResponse result = apiInstance.getDecompilationComments(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#getDecompilationComments"); @@ -356,7 +347,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -379,7 +369,7 @@ public class Example { # **getFunctionDecompilation** -> BaseResponseDecompilationResponse getFunctionDecompilation(functionId, authorization) +> BaseResponseDecompilationResponse getFunctionDecompilation(functionId) Get decompilation result @@ -406,9 +396,8 @@ public class Example { FunctionsDecompilationApi apiInstance = new FunctionsDecompilationApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseDecompilationResponse result = apiInstance.getFunctionDecompilation(functionId, authorization); + BaseResponseDecompilationResponse result = apiInstance.getFunctionDecompilation(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#getFunctionDecompilation"); @@ -426,7 +415,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -450,7 +438,7 @@ public class Example { # **updateDecompilationComment** -> BaseResponseCommentResponse updateDecompilationComment(commentId, functionId, commentUpdateRequest, authorization) +> BaseResponseCommentResponse updateDecompilationComment(commentId, functionId, commentUpdateRequest) Update a comment @@ -481,9 +469,8 @@ public class Example { Integer commentId = 56; // Integer | Integer functionId = 56; // Integer | CommentUpdateRequest commentUpdateRequest = new CommentUpdateRequest(); // CommentUpdateRequest | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCommentResponse result = apiInstance.updateDecompilationComment(commentId, functionId, commentUpdateRequest, authorization); + BaseResponseCommentResponse result = apiInstance.updateDecompilationComment(commentId, functionId, commentUpdateRequest); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsDecompilationApi#updateDecompilationComment"); @@ -503,7 +490,6 @@ public class Example { | **commentId** | **Integer**| | | | **functionId** | **Integer**| | | | **commentUpdateRequest** | [**CommentUpdateRequest**](CommentUpdateRequest.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/FunctionsRenamingHistoryApi.md b/docs/FunctionsRenamingHistoryApi.md index 821f46d..cb564f6 100644 --- a/docs/FunctionsRenamingHistoryApi.md +++ b/docs/FunctionsRenamingHistoryApi.md @@ -12,7 +12,7 @@ All URIs are relative to *https://api.reveng.ai* # **batchRenameFunction** -> BaseResponse batchRenameFunction(functionsListRename, authorization) +> BaseResponse batchRenameFunction(functionsListRename) Batch Rename Functions @@ -41,9 +41,8 @@ public class Example { FunctionsRenamingHistoryApi apiInstance = new FunctionsRenamingHistoryApi(defaultClient); FunctionsListRename functionsListRename = new FunctionsListRename(); // FunctionsListRename | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponse result = apiInstance.batchRenameFunction(functionsListRename, authorization); + BaseResponse result = apiInstance.batchRenameFunction(functionsListRename); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsRenamingHistoryApi#batchRenameFunction"); @@ -61,7 +60,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionsListRename** | [**FunctionsListRename**](FunctionsListRename.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -84,7 +82,7 @@ public class Example { # **getFunctionNameHistory** -> BaseResponseListFunctionNameHistory getFunctionNameHistory(functionId, authorization) +> BaseResponseListFunctionNameHistory getFunctionNameHistory(functionId) Get Function Name History @@ -113,9 +111,8 @@ public class Example { FunctionsRenamingHistoryApi apiInstance = new FunctionsRenamingHistoryApi(defaultClient); Integer functionId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseListFunctionNameHistory result = apiInstance.getFunctionNameHistory(functionId, authorization); + BaseResponseListFunctionNameHistory result = apiInstance.getFunctionNameHistory(functionId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsRenamingHistoryApi#getFunctionNameHistory"); @@ -133,7 +130,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -156,7 +152,7 @@ public class Example { # **renameFunctionId** -> BaseResponse renameFunctionId(functionId, functionRename, authorization) +> BaseResponse renameFunctionId(functionId, functionRename) Rename Function @@ -186,9 +182,8 @@ public class Example { FunctionsRenamingHistoryApi apiInstance = new FunctionsRenamingHistoryApi(defaultClient); Integer functionId = 56; // Integer | FunctionRename functionRename = new FunctionRename(); // FunctionRename | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponse result = apiInstance.renameFunctionId(functionId, functionRename, authorization); + BaseResponse result = apiInstance.renameFunctionId(functionId, functionRename); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsRenamingHistoryApi#renameFunctionId"); @@ -207,7 +202,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | | **functionRename** | [**FunctionRename**](FunctionRename.md)| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -230,7 +224,7 @@ public class Example { # **revertFunctionName** -> BaseResponse revertFunctionName(functionId, historyId, authorization) +> BaseResponse revertFunctionName(functionId, historyId) Revert the function name @@ -260,9 +254,8 @@ public class Example { FunctionsRenamingHistoryApi apiInstance = new FunctionsRenamingHistoryApi(defaultClient); Integer functionId = 56; // Integer | Integer historyId = 56; // Integer | - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponse result = apiInstance.revertFunctionName(functionId, historyId, authorization); + BaseResponse result = apiInstance.revertFunctionName(functionId, historyId); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling FunctionsRenamingHistoryApi#revertFunctionName"); @@ -281,7 +274,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **functionId** | **Integer**| | | | **historyId** | **Integer**| | | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/docs/ModelsApi.md b/docs/ModelsApi.md index 898d3a1..3653b51 100644 --- a/docs/ModelsApi.md +++ b/docs/ModelsApi.md @@ -9,7 +9,7 @@ All URIs are relative to *https://api.reveng.ai* # **getModels** -> BaseResponseModelsResponse getModels(authorization) +> BaseResponseModelsResponse getModels() Gets models @@ -37,9 +37,8 @@ public class Example { //APIKey.setApiKeyPrefix("Token"); ModelsApi apiInstance = new ModelsApi(defaultClient); - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseModelsResponse result = apiInstance.getModels(authorization); + BaseResponseModelsResponse result = apiInstance.getModels(); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling ModelsApi#getModels"); @@ -53,10 +52,7 @@ public class Example { ``` ### Parameters - -| Name | Type | Description | Notes | -|------------- | ------------- | ------------- | -------------| -| **authorization** | **String**| API Key bearer token | [optional] | +This endpoint does not need any parameter. ### Return type diff --git a/docs/SearchApi.md b/docs/SearchApi.md index 46e4b1f..5554745 100644 --- a/docs/SearchApi.md +++ b/docs/SearchApi.md @@ -12,7 +12,7 @@ All URIs are relative to *https://api.reveng.ai* # **searchBinaries** -> BaseResponseBinarySearchResponse searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization) +> BaseResponseBinarySearchResponse searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly) Binaries search @@ -47,9 +47,8 @@ public class Example { List tags = Arrays.asList(); // List | The tags to be searched for String modelName = "modelName_example"; // String | The name of the model used to analyze the binary the function belongs to Boolean userFilesOnly = false; // Boolean | Whether to only search user's uploaded files - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseBinarySearchResponse result = apiInstance.searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization); + BaseResponseBinarySearchResponse result = apiInstance.searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SearchApi#searchBinaries"); @@ -73,7 +72,6 @@ public class Example { | **tags** | [**List<String>**](String.md)| The tags to be searched for | [optional] | | **modelName** | **String**| The name of the model used to analyze the binary the function belongs to | [optional] | | **userFilesOnly** | **Boolean**| Whether to only search user's uploaded files | [optional] [default to false] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -96,7 +94,7 @@ public class Example { # **searchCollections** -> BaseResponseCollectionSearchResponse searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization) +> BaseResponseCollectionSearchResponse searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection) Collections search @@ -134,9 +132,8 @@ public class Example { List filters = Arrays.asList(); // List | The filters to be used for the search AppApiRestV2CollectionsEnumsOrderBy orderBy = AppApiRestV2CollectionsEnumsOrderBy.fromValue("created"); // AppApiRestV2CollectionsEnumsOrderBy | The field to sort the order by in the results Order orderByDirection = Order.fromValue("ASC"); // Order | The order direction in which to return results - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseCollectionSearchResponse result = apiInstance.searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization); + BaseResponseCollectionSearchResponse result = apiInstance.searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SearchApi#searchCollections"); @@ -163,7 +160,6 @@ public class Example { | **filters** | [**List<Filters>**](Filters.md)| The filters to be used for the search | [optional] | | **orderBy** | [**AppApiRestV2CollectionsEnumsOrderBy**](.md)| The field to sort the order by in the results | [optional] [enum: created, collection, model, owner, collection_size, updated] | | **orderByDirection** | [**Order**](.md)| The order direction in which to return results | [optional] [enum: ASC, DESC] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type @@ -187,7 +183,7 @@ public class Example { # **searchFunctions** -> BaseResponseFunctionSearchResponse searchFunctions(page, pageSize, partialName, modelName, authorization) +> BaseResponseFunctionSearchResponse searchFunctions(page, pageSize, partialName, modelName) Functions search @@ -219,9 +215,8 @@ public class Example { Integer pageSize = 10; // Integer | Number of items per page. String partialName = "partialName_example"; // String | The partial or full name of the function being searched String modelName = "modelName_example"; // String | The name of the model used to analyze the binary the function belongs to - String authorization = "authorization_example"; // String | API Key bearer token try { - BaseResponseFunctionSearchResponse result = apiInstance.searchFunctions(page, pageSize, partialName, modelName, authorization); + BaseResponseFunctionSearchResponse result = apiInstance.searchFunctions(page, pageSize, partialName, modelName); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SearchApi#searchFunctions"); @@ -242,7 +237,6 @@ public class Example { | **pageSize** | **Integer**| Number of items per page. | [optional] [default to 10] | | **partialName** | **String**| The partial or full name of the function being searched | [optional] | | **modelName** | **String**| The name of the model used to analyze the binary the function belongs to | [optional] | -| **authorization** | **String**| API Key bearer token | [optional] | ### Return type diff --git a/models/AnyOf.java b/models/AnyOf.java new file mode 100644 index 0000000..8ba0730 --- /dev/null +++ b/models/AnyOf.java @@ -0,0 +1,130 @@ +/* + * Model for AnyOf. The generator is not creating this model automatically, so we create it manually. + */ +package ai.reveng.model; + +import java.util.Objects; +import java.lang.reflect.Type; +import java.util.Map; +import java.util.HashMap; +import com.google.gson.JsonElement; +import com.google.gson.JsonNull; +import com.google.gson.JsonPrimitive; +import com.google.gson.JsonObject; +import com.google.gson.JsonArray; + +/** + * AnyOf + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-09-26T17:18:42.237250+01:00[Europe/London]", comments = "Generator version: 7.15.0") +public class AnyOf extends AbstractOpenApiSchema { + + private static final Map> schemas; + + static { + // Initialize the schemas for validation + schemas = new HashMap>(); + schemas.put("Object", Object.class); + schemas.put("String", String.class); + schemas.put("Integer", Integer.class); + schemas.put("Boolean", Boolean.class); + schemas.put("Double", Double.class); + schemas.put("Float", Float.class); + } + + public AnyOf() { + super("anyOf", Boolean.FALSE); + } + + public AnyOf(Object o) { + super("anyOf", Boolean.FALSE); + setActualInstance(o); + } + + @Override + public Map> getSchemas() { + return AnyOf.schemas; + } + + /** + * Set the instance that matches the anyOf child schema, check the instance parameter is valid against the anyOf child schemas + * + * @param instance the actual instance of the anyOf schema + */ + @Override + public void setActualInstance(Object instance) { + if (instance == null) { + super.setActualInstance(instance); + return; + } + + // The instance can be any type since this is anyOf + super.setActualInstance(instance); + } + + /** + * Get the actual instance, which can be the following: + * Object, String, Integer, Boolean, Double, Float, or any other type + * + * @return The actual instance (Object) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IllegalArgumentException if the JSON Element is invalid with respect to AnyOf + */ + public static void validateJsonElement(JsonElement jsonElement) throws IllegalArgumentException { + // Since this is anyOf, we accept any valid JSON element + if (jsonElement == null) { + throw new IllegalArgumentException("JsonElement cannot be null"); + } + // Any valid JSON element is acceptable for anyOf + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + AnyOf anyOf = (AnyOf) o; + return Objects.equals(this.getActualInstance(), anyOf.getActualInstance()) && + Objects.equals(this.isNullable(), anyOf.isNullable()) && + Objects.equals(this.getSchemaType(), anyOf.getSchemaType()); + } + + @Override + public int hashCode() { + return Objects.hash(getActualInstance(), isNullable(), getSchemaType()); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class AnyOf {\n"); + sb.append(" actualInstance: ").append(toIndentedString(getActualInstance())).append("\n"); + sb.append(" isNullable: ").append(toIndentedString(isNullable())).append("\n"); + sb.append(" schemaType: ").append(toIndentedString(getSchemaType())).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } +} diff --git a/pom.xml b/pom.xml index c287b45..088a279 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ sdk jar sdk - v1.94.0 + v1.95.0 https://github.com/RevEngAI/sdk-java Java SDK for the RevEng.AI API diff --git a/src/main/java/ai/reveng/api/AnalysesCommentsApi.java b/src/main/java/ai/reveng/api/AnalysesCommentsApi.java index 29fde0a..22068ae 100644 --- a/src/main/java/ai/reveng/api/AnalysesCommentsApi.java +++ b/src/main/java/ai/reveng/api/AnalysesCommentsApi.java @@ -80,7 +80,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for createAnalysisComment * @param analysisId (required) * @param commentBase (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -93,7 +92,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 400 Bad Request - */ - public okhttp3.Call createAnalysisCommentCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAnalysisCommentCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -135,17 +134,12 @@ public okhttp3.Call createAnalysisCommentCall(@javax.annotation.Nonnull Integer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createAnalysisCommentValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createAnalysisCommentValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling createAnalysisComment(Async)"); @@ -156,7 +150,7 @@ private okhttp3.Call createAnalysisCommentValidateBeforeCall(@javax.annotation.N throw new ApiException("Missing the required parameter 'commentBase' when calling createAnalysisComment(Async)"); } - return createAnalysisCommentCall(analysisId, commentBase, authorization, _callback); + return createAnalysisCommentCall(analysisId, commentBase, _callback); } @@ -165,7 +159,6 @@ private okhttp3.Call createAnalysisCommentValidateBeforeCall(@javax.annotation.N * Creates a comment associated with a specified analysis). * @param analysisId (required) * @param commentBase (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -177,8 +170,8 @@ private okhttp3.Call createAnalysisCommentValidateBeforeCall(@javax.annotation.N 400 Bad Request - */ - public BaseResponseCommentResponse createAnalysisComment(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createAnalysisCommentWithHttpInfo(analysisId, commentBase, authorization); + public BaseResponseCommentResponse createAnalysisComment(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase) throws ApiException { + ApiResponse localVarResp = createAnalysisCommentWithHttpInfo(analysisId, commentBase); return localVarResp.getData(); } @@ -187,7 +180,6 @@ public BaseResponseCommentResponse createAnalysisComment(@javax.annotation.Nonnu * Creates a comment associated with a specified analysis). * @param analysisId (required) * @param commentBase (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -199,8 +191,8 @@ public BaseResponseCommentResponse createAnalysisComment(@javax.annotation.Nonnu 400 Bad Request - */ - public ApiResponse createAnalysisCommentWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createAnalysisCommentValidateBeforeCall(analysisId, commentBase, authorization, null); + public ApiResponse createAnalysisCommentWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase) throws ApiException { + okhttp3.Call localVarCall = createAnalysisCommentValidateBeforeCall(analysisId, commentBase, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -210,7 +202,6 @@ public ApiResponse createAnalysisCommentWithHttpInf * Creates a comment associated with a specified analysis). * @param analysisId (required) * @param commentBase (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -223,9 +214,9 @@ public ApiResponse createAnalysisCommentWithHttpInf 400 Bad Request - */ - public okhttp3.Call createAnalysisCommentAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAnalysisCommentAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentBase commentBase, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createAnalysisCommentValidateBeforeCall(analysisId, commentBase, authorization, _callback); + okhttp3.Call localVarCall = createAnalysisCommentValidateBeforeCall(analysisId, commentBase, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -234,7 +225,6 @@ public okhttp3.Call createAnalysisCommentAsync(@javax.annotation.Nonnull Integer * Build call for deleteAnalysisComment * @param commentId (required) * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -248,7 +238,7 @@ public okhttp3.Call createAnalysisCommentAsync(@javax.annotation.Nonnull Integer 400 Bad Request - */ - public okhttp3.Call deleteAnalysisCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAnalysisCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -290,17 +280,12 @@ public okhttp3.Call deleteAnalysisCommentCall(@javax.annotation.Nonnull Integer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteAnalysisCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteAnalysisCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'commentId' is set if (commentId == null) { throw new ApiException("Missing the required parameter 'commentId' when calling deleteAnalysisComment(Async)"); @@ -311,7 +296,7 @@ private okhttp3.Call deleteAnalysisCommentValidateBeforeCall(@javax.annotation.N throw new ApiException("Missing the required parameter 'analysisId' when calling deleteAnalysisComment(Async)"); } - return deleteAnalysisCommentCall(commentId, analysisId, authorization, _callback); + return deleteAnalysisCommentCall(commentId, analysisId, _callback); } @@ -320,7 +305,6 @@ private okhttp3.Call deleteAnalysisCommentValidateBeforeCall(@javax.annotation.N * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBool * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -333,8 +317,8 @@ private okhttp3.Call deleteAnalysisCommentValidateBeforeCall(@javax.annotation.N 400 Bad Request - */ - public BaseResponseBool deleteAnalysisComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = deleteAnalysisCommentWithHttpInfo(commentId, analysisId, authorization); + public BaseResponseBool deleteAnalysisComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = deleteAnalysisCommentWithHttpInfo(commentId, analysisId); return localVarResp.getData(); } @@ -343,7 +327,6 @@ public BaseResponseBool deleteAnalysisComment(@javax.annotation.Nonnull Integer * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBool> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -356,8 +339,8 @@ public BaseResponseBool deleteAnalysisComment(@javax.annotation.Nonnull Integer 400 Bad Request - */ - public ApiResponse deleteAnalysisCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteAnalysisCommentValidateBeforeCall(commentId, analysisId, authorization, null); + public ApiResponse deleteAnalysisCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = deleteAnalysisCommentValidateBeforeCall(commentId, analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -367,7 +350,6 @@ public ApiResponse deleteAnalysisCommentWithHttpInfo(@javax.an * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -381,9 +363,9 @@ public ApiResponse deleteAnalysisCommentWithHttpInfo(@javax.an 400 Bad Request - */ - public okhttp3.Call deleteAnalysisCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAnalysisCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteAnalysisCommentValidateBeforeCall(commentId, analysisId, authorization, _callback); + okhttp3.Call localVarCall = deleteAnalysisCommentValidateBeforeCall(commentId, analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -391,7 +373,6 @@ public okhttp3.Call deleteAnalysisCommentAsync(@javax.annotation.Nonnull Integer /** * Build call for getAnalysisComments * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -403,7 +384,7 @@ public okhttp3.Call deleteAnalysisCommentAsync(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisCommentsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisCommentsCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -444,23 +425,18 @@ public okhttp3.Call getAnalysisCommentsCall(@javax.annotation.Nonnull Integer an localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisCommentsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisCommentsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisComments(Async)"); } - return getAnalysisCommentsCall(analysisId, authorization, _callback); + return getAnalysisCommentsCall(analysisId, _callback); } @@ -468,7 +444,6 @@ private okhttp3.Call getAnalysisCommentsValidateBeforeCall(@javax.annotation.Non * Get comments for this analysis * Retrieves all comments created for a specific analysis. Only returns comments for resources the requesting user has access to. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -479,8 +454,8 @@ private okhttp3.Call getAnalysisCommentsValidateBeforeCall(@javax.annotation.Non 422 Invalid request parameters - */ - public BaseResponseListCommentResponse getAnalysisComments(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisCommentsWithHttpInfo(analysisId, authorization); + public BaseResponseListCommentResponse getAnalysisComments(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisCommentsWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -488,7 +463,6 @@ public BaseResponseListCommentResponse getAnalysisComments(@javax.annotation.Non * Get comments for this analysis * Retrieves all comments created for a specific analysis. Only returns comments for resources the requesting user has access to. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -499,8 +473,8 @@ public BaseResponseListCommentResponse getAnalysisComments(@javax.annotation.Non 422 Invalid request parameters - */ - public ApiResponse getAnalysisCommentsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisCommentsValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisCommentsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisCommentsValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -509,7 +483,6 @@ public ApiResponse getAnalysisCommentsWithHttpI * Get comments for this analysis (asynchronously) * Retrieves all comments created for a specific analysis. Only returns comments for resources the requesting user has access to. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -521,9 +494,9 @@ public ApiResponse getAnalysisCommentsWithHttpI 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisCommentsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisCommentsAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisCommentsValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisCommentsValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -533,7 +506,6 @@ public okhttp3.Call getAnalysisCommentsAsync(@javax.annotation.Nonnull Integer a * @param commentId (required) * @param analysisId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -547,7 +519,7 @@ public okhttp3.Call getAnalysisCommentsAsync(@javax.annotation.Nonnull Integer a 400 Bad Request - */ - public okhttp3.Call updateAnalysisCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAnalysisCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -590,17 +562,12 @@ public okhttp3.Call updateAnalysisCommentCall(@javax.annotation.Nonnull Integer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAnalysisCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAnalysisCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'commentId' is set if (commentId == null) { throw new ApiException("Missing the required parameter 'commentId' when calling updateAnalysisComment(Async)"); @@ -616,7 +583,7 @@ private okhttp3.Call updateAnalysisCommentValidateBeforeCall(@javax.annotation.N throw new ApiException("Missing the required parameter 'commentUpdateRequest' when calling updateAnalysisComment(Async)"); } - return updateAnalysisCommentCall(commentId, analysisId, commentUpdateRequest, authorization, _callback); + return updateAnalysisCommentCall(commentId, analysisId, commentUpdateRequest, _callback); } @@ -626,7 +593,6 @@ private okhttp3.Call updateAnalysisCommentValidateBeforeCall(@javax.annotation.N * @param commentId (required) * @param analysisId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -639,8 +605,8 @@ private okhttp3.Call updateAnalysisCommentValidateBeforeCall(@javax.annotation.N 400 Bad Request - */ - public BaseResponseCommentResponse updateAnalysisComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateAnalysisCommentWithHttpInfo(commentId, analysisId, commentUpdateRequest, authorization); + public BaseResponseCommentResponse updateAnalysisComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateAnalysisCommentWithHttpInfo(commentId, analysisId, commentUpdateRequest); return localVarResp.getData(); } @@ -650,7 +616,6 @@ public BaseResponseCommentResponse updateAnalysisComment(@javax.annotation.Nonnu * @param commentId (required) * @param analysisId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -663,8 +628,8 @@ public BaseResponseCommentResponse updateAnalysisComment(@javax.annotation.Nonnu 400 Bad Request - */ - public ApiResponse updateAnalysisCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateAnalysisCommentValidateBeforeCall(commentId, analysisId, commentUpdateRequest, authorization, null); + public ApiResponse updateAnalysisCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateAnalysisCommentValidateBeforeCall(commentId, analysisId, commentUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -675,7 +640,6 @@ public ApiResponse updateAnalysisCommentWithHttpInf * @param commentId (required) * @param analysisId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -689,9 +653,9 @@ public ApiResponse updateAnalysisCommentWithHttpInf 400 Bad Request - */ - public okhttp3.Call updateAnalysisCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAnalysisCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAnalysisCommentValidateBeforeCall(commentId, analysisId, commentUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateAnalysisCommentValidateBeforeCall(commentId, analysisId, commentUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/AnalysesCoreApi.java b/src/main/java/ai/reveng/api/AnalysesCoreApi.java index c5e91ac..604ac15 100644 --- a/src/main/java/ai/reveng/api/AnalysesCoreApi.java +++ b/src/main/java/ai/reveng/api/AnalysesCoreApi.java @@ -104,7 +104,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for batchSymbolAnn * @param appApiRestV1AnnSchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -116,7 +115,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call batchSymbolAnnCall(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call batchSymbolAnnCall(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -157,23 +156,18 @@ public okhttp3.Call batchSymbolAnnCall(@javax.annotation.Nonnull AppApiRestV1Ann localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call batchSymbolAnnValidateBeforeCall(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call batchSymbolAnnValidateBeforeCall(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, final ApiCallback _callback) throws ApiException { // verify the required parameter 'appApiRestV1AnnSchemaANNFunction' is set if (appApiRestV1AnnSchemaANNFunction == null) { throw new ApiException("Missing the required parameter 'appApiRestV1AnnSchemaANNFunction' when calling batchSymbolAnn(Async)"); } - return batchSymbolAnnCall(appApiRestV1AnnSchemaANNFunction, authorization, _callback); + return batchSymbolAnnCall(appApiRestV1AnnSchemaANNFunction, _callback); } @@ -181,7 +175,6 @@ private okhttp3.Call batchSymbolAnnValidateBeforeCall(@javax.annotation.Nonnull * Batch Symbol ANN using function IDs * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the database * @param appApiRestV1AnnSchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @return FunctionBatchAnn * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -192,8 +185,8 @@ private okhttp3.Call batchSymbolAnnValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public FunctionBatchAnn batchSymbolAnn(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = batchSymbolAnnWithHttpInfo(appApiRestV1AnnSchemaANNFunction, authorization); + public FunctionBatchAnn batchSymbolAnn(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction) throws ApiException { + ApiResponse localVarResp = batchSymbolAnnWithHttpInfo(appApiRestV1AnnSchemaANNFunction); return localVarResp.getData(); } @@ -201,7 +194,6 @@ public FunctionBatchAnn batchSymbolAnn(@javax.annotation.Nonnull AppApiRestV1Ann * Batch Symbol ANN using function IDs * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the database * @param appApiRestV1AnnSchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<FunctionBatchAnn> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -212,8 +204,8 @@ public FunctionBatchAnn batchSymbolAnn(@javax.annotation.Nonnull AppApiRestV1Ann 422 Invalid request parameters - */ - public ApiResponse batchSymbolAnnWithHttpInfo(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = batchSymbolAnnValidateBeforeCall(appApiRestV1AnnSchemaANNFunction, authorization, null); + public ApiResponse batchSymbolAnnWithHttpInfo(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction) throws ApiException { + okhttp3.Call localVarCall = batchSymbolAnnValidateBeforeCall(appApiRestV1AnnSchemaANNFunction, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -222,7 +214,6 @@ public ApiResponse batchSymbolAnnWithHttpInfo(@javax.annotatio * Batch Symbol ANN using function IDs (asynchronously) * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the database * @param appApiRestV1AnnSchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -234,9 +225,9 @@ public ApiResponse batchSymbolAnnWithHttpInfo(@javax.annotatio 422 Invalid request parameters - */ - public okhttp3.Call batchSymbolAnnAsync(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call batchSymbolAnnAsync(@javax.annotation.Nonnull AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = batchSymbolAnnValidateBeforeCall(appApiRestV1AnnSchemaANNFunction, authorization, _callback); + okhttp3.Call localVarCall = batchSymbolAnnValidateBeforeCall(appApiRestV1AnnSchemaANNFunction, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -244,7 +235,6 @@ public okhttp3.Call batchSymbolAnnAsync(@javax.annotation.Nonnull AppApiRestV1An /** * Build call for createAnalysis * @param analysisCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -258,7 +248,7 @@ public okhttp3.Call batchSymbolAnnAsync(@javax.annotation.Nonnull AppApiRestV1An 400 Bad Request - */ - public okhttp3.Call createAnalysisCall(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAnalysisCall(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -299,23 +289,18 @@ public okhttp3.Call createAnalysisCall(@javax.annotation.Nonnull AnalysisCreateR localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createAnalysisValidateBeforeCall(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createAnalysisValidateBeforeCall(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisCreateRequest' is set if (analysisCreateRequest == null) { throw new ApiException("Missing the required parameter 'analysisCreateRequest' when calling createAnalysis(Async)"); } - return createAnalysisCall(analysisCreateRequest, authorization, _callback); + return createAnalysisCall(analysisCreateRequest, _callback); } @@ -323,7 +308,6 @@ private okhttp3.Call createAnalysisValidateBeforeCall(@javax.annotation.Nonnull * Create Analysis * Begins an analysis * @param analysisCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisCreateResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -336,8 +320,8 @@ private okhttp3.Call createAnalysisValidateBeforeCall(@javax.annotation.Nonnull 400 Bad Request - */ - public BaseResponseAnalysisCreateResponse createAnalysis(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createAnalysisWithHttpInfo(analysisCreateRequest, authorization); + public BaseResponseAnalysisCreateResponse createAnalysis(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest) throws ApiException { + ApiResponse localVarResp = createAnalysisWithHttpInfo(analysisCreateRequest); return localVarResp.getData(); } @@ -345,7 +329,6 @@ public BaseResponseAnalysisCreateResponse createAnalysis(@javax.annotation.Nonnu * Create Analysis * Begins an analysis * @param analysisCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisCreateResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -358,8 +341,8 @@ public BaseResponseAnalysisCreateResponse createAnalysis(@javax.annotation.Nonnu 400 Bad Request - */ - public ApiResponse createAnalysisWithHttpInfo(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createAnalysisValidateBeforeCall(analysisCreateRequest, authorization, null); + public ApiResponse createAnalysisWithHttpInfo(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest) throws ApiException { + okhttp3.Call localVarCall = createAnalysisValidateBeforeCall(analysisCreateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -368,7 +351,6 @@ public ApiResponse createAnalysisWithHttpInf * Create Analysis (asynchronously) * Begins an analysis * @param analysisCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -382,9 +364,9 @@ public ApiResponse createAnalysisWithHttpInf 400 Bad Request - */ - public okhttp3.Call createAnalysisAsync(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAnalysisAsync(@javax.annotation.Nonnull AnalysisCreateRequest analysisCreateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createAnalysisValidateBeforeCall(analysisCreateRequest, authorization, _callback); + okhttp3.Call localVarCall = createAnalysisValidateBeforeCall(analysisCreateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -392,7 +374,6 @@ public okhttp3.Call createAnalysisAsync(@javax.annotation.Nonnull AnalysisCreate /** * Build call for deleteAnalysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -406,7 +387,7 @@ public okhttp3.Call createAnalysisAsync(@javax.annotation.Nonnull AnalysisCreate 403 Forbidden - */ - public okhttp3.Call deleteAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAnalysisCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -447,23 +428,18 @@ public okhttp3.Call deleteAnalysisCall(@javax.annotation.Nonnull Integer analysi localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling deleteAnalysis(Async)"); } - return deleteAnalysisCall(analysisId, authorization, _callback); + return deleteAnalysisCall(analysisId, _callback); } @@ -471,7 +447,6 @@ private okhttp3.Call deleteAnalysisValidateBeforeCall(@javax.annotation.Nonnull * Delete Analysis * Deletes an analysis based on the provided analysis ID. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseDict * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -484,8 +459,8 @@ private okhttp3.Call deleteAnalysisValidateBeforeCall(@javax.annotation.Nonnull 403 Forbidden - */ - public BaseResponseDict deleteAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = deleteAnalysisWithHttpInfo(analysisId, authorization); + public BaseResponseDict deleteAnalysis(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = deleteAnalysisWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -493,7 +468,6 @@ public BaseResponseDict deleteAnalysis(@javax.annotation.Nonnull Integer analysi * Delete Analysis * Deletes an analysis based on the provided analysis ID. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseDict> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -506,8 +480,8 @@ public BaseResponseDict deleteAnalysis(@javax.annotation.Nonnull Integer analysi 403 Forbidden - */ - public ApiResponse deleteAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteAnalysisValidateBeforeCall(analysisId, authorization, null); + public ApiResponse deleteAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = deleteAnalysisValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -516,7 +490,6 @@ public ApiResponse deleteAnalysisWithHttpInfo(@javax.annotatio * Delete Analysis (asynchronously) * Deletes an analysis based on the provided analysis ID. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -530,9 +503,9 @@ public ApiResponse deleteAnalysisWithHttpInfo(@javax.annotatio 403 Forbidden - */ - public okhttp3.Call deleteAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteAnalysisValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = deleteAnalysisValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -541,7 +514,6 @@ public okhttp3.Call deleteAnalysisAsync(@javax.annotation.Nonnull Integer analys * Build call for findSimilarFunctionsBatch * @param analysisId (required) * @param appApiRestV2SimilaritySchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -553,7 +525,7 @@ public okhttp3.Call deleteAnalysisAsync(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public okhttp3.Call findSimilarFunctionsBatchCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call findSimilarFunctionsBatchCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -595,17 +567,12 @@ public okhttp3.Call findSimilarFunctionsBatchCall(@javax.annotation.Nonnull Inte localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call findSimilarFunctionsBatchValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call findSimilarFunctionsBatchValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling findSimilarFunctionsBatch(Async)"); @@ -616,7 +583,7 @@ private okhttp3.Call findSimilarFunctionsBatchValidateBeforeCall(@javax.annotati throw new ApiException("Missing the required parameter 'appApiRestV2SimilaritySchemaANNFunction' when calling findSimilarFunctionsBatch(Async)"); } - return findSimilarFunctionsBatchCall(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization, _callback); + return findSimilarFunctionsBatchCall(analysisId, appApiRestV2SimilaritySchemaANNFunction, _callback); } @@ -625,7 +592,6 @@ private okhttp3.Call findSimilarFunctionsBatchValidateBeforeCall(@javax.annotati * Takes a analysis ID and returns the nearest functions within the database that match those functions * @param analysisId (required) * @param appApiRestV2SimilaritySchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseNearestNeighborAnalysis * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -636,8 +602,8 @@ private okhttp3.Call findSimilarFunctionsBatchValidateBeforeCall(@javax.annotati 422 Invalid request parameters - */ - public BaseResponseNearestNeighborAnalysis findSimilarFunctionsBatch(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = findSimilarFunctionsBatchWithHttpInfo(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization); + public BaseResponseNearestNeighborAnalysis findSimilarFunctionsBatch(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction) throws ApiException { + ApiResponse localVarResp = findSimilarFunctionsBatchWithHttpInfo(analysisId, appApiRestV2SimilaritySchemaANNFunction); return localVarResp.getData(); } @@ -646,7 +612,6 @@ public BaseResponseNearestNeighborAnalysis findSimilarFunctionsBatch(@javax.anno * Takes a analysis ID and returns the nearest functions within the database that match those functions * @param analysisId (required) * @param appApiRestV2SimilaritySchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseNearestNeighborAnalysis> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -657,8 +622,8 @@ public BaseResponseNearestNeighborAnalysis findSimilarFunctionsBatch(@javax.anno 422 Invalid request parameters - */ - public ApiResponse findSimilarFunctionsBatchWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = findSimilarFunctionsBatchValidateBeforeCall(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization, null); + public ApiResponse findSimilarFunctionsBatchWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction) throws ApiException { + okhttp3.Call localVarCall = findSimilarFunctionsBatchValidateBeforeCall(analysisId, appApiRestV2SimilaritySchemaANNFunction, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -668,7 +633,6 @@ public ApiResponse findSimilarFunctionsBatc * Takes a analysis ID and returns the nearest functions within the database that match those functions * @param analysisId (required) * @param appApiRestV2SimilaritySchemaANNFunction (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -680,9 +644,9 @@ public ApiResponse findSimilarFunctionsBatc 422 Invalid request parameters - */ - public okhttp3.Call findSimilarFunctionsBatchAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call findSimilarFunctionsBatchAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = findSimilarFunctionsBatchValidateBeforeCall(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization, _callback); + okhttp3.Call localVarCall = findSimilarFunctionsBatchValidateBeforeCall(analysisId, appApiRestV2SimilaritySchemaANNFunction, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -690,7 +654,6 @@ public okhttp3.Call findSimilarFunctionsBatchAsync(@javax.annotation.Nonnull Int /** * Build call for getAnalysisBasicInfo * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -702,7 +665,7 @@ public okhttp3.Call findSimilarFunctionsBatchAsync(@javax.annotation.Nonnull Int 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisBasicInfoCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisBasicInfoCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -743,23 +706,18 @@ public okhttp3.Call getAnalysisBasicInfoCall(@javax.annotation.Nonnull Integer a localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisBasicInfoValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisBasicInfoValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisBasicInfo(Async)"); } - return getAnalysisBasicInfoCall(analysisId, authorization, _callback); + return getAnalysisBasicInfoCall(analysisId, _callback); } @@ -767,7 +725,6 @@ private okhttp3.Call getAnalysisBasicInfoValidateBeforeCall(@javax.annotation.No * Gets basic analysis information * Just a random placeholder for now * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBasic * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -778,8 +735,8 @@ private okhttp3.Call getAnalysisBasicInfoValidateBeforeCall(@javax.annotation.No 422 Invalid request parameters - */ - public BaseResponseBasic getAnalysisBasicInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisBasicInfoWithHttpInfo(analysisId, authorization); + public BaseResponseBasic getAnalysisBasicInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisBasicInfoWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -787,7 +744,6 @@ public BaseResponseBasic getAnalysisBasicInfo(@javax.annotation.Nonnull Integer * Gets basic analysis information * Just a random placeholder for now * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBasic> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -798,8 +754,8 @@ public BaseResponseBasic getAnalysisBasicInfo(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public ApiResponse getAnalysisBasicInfoWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisBasicInfoValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisBasicInfoWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisBasicInfoValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -808,7 +764,6 @@ public ApiResponse getAnalysisBasicInfoWithHttpInfo(@javax.an * Gets basic analysis information (asynchronously) * Just a random placeholder for now * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -820,9 +775,9 @@ public ApiResponse getAnalysisBasicInfoWithHttpInfo(@javax.an 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisBasicInfoAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisBasicInfoAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisBasicInfoValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisBasicInfoValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -830,7 +785,6 @@ public okhttp3.Call getAnalysisBasicInfoAsync(@javax.annotation.Nonnull Integer /** * Build call for getAnalysisFunctionMap * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -842,7 +796,7 @@ public okhttp3.Call getAnalysisBasicInfoAsync(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisFunctionMapCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisFunctionMapCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -883,23 +837,18 @@ public okhttp3.Call getAnalysisFunctionMapCall(@javax.annotation.Nonnull Integer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisFunctionMapValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisFunctionMapValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisFunctionMap(Async)"); } - return getAnalysisFunctionMapCall(analysisId, authorization, _callback); + return getAnalysisFunctionMapCall(analysisId, _callback); } @@ -907,7 +856,6 @@ private okhttp3.Call getAnalysisFunctionMapValidateBeforeCall(@javax.annotation. * Get Analysis Function Map * Returns three maps: a map of function ids to function addresses, it's inverse and a map of function addresses to function names. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisFunctionMapping * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -918,8 +866,8 @@ private okhttp3.Call getAnalysisFunctionMapValidateBeforeCall(@javax.annotation. 422 Invalid request parameters - */ - public BaseResponseAnalysisFunctionMapping getAnalysisFunctionMap(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisFunctionMapWithHttpInfo(analysisId, authorization); + public BaseResponseAnalysisFunctionMapping getAnalysisFunctionMap(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisFunctionMapWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -927,7 +875,6 @@ public BaseResponseAnalysisFunctionMapping getAnalysisFunctionMap(@javax.annotat * Get Analysis Function Map * Returns three maps: a map of function ids to function addresses, it's inverse and a map of function addresses to function names. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisFunctionMapping> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -938,8 +885,8 @@ public BaseResponseAnalysisFunctionMapping getAnalysisFunctionMap(@javax.annotat 422 Invalid request parameters - */ - public ApiResponse getAnalysisFunctionMapWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisFunctionMapValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisFunctionMapWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisFunctionMapValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -948,7 +895,6 @@ public ApiResponse getAnalysisFunctionMapWi * Get Analysis Function Map (asynchronously) * Returns three maps: a map of function ids to function addresses, it's inverse and a map of function addresses to function names. * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -960,9 +906,9 @@ public ApiResponse getAnalysisFunctionMapWi 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisFunctionMapAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisFunctionMapAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisFunctionMapValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisFunctionMapValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -970,7 +916,6 @@ public okhttp3.Call getAnalysisFunctionMapAsync(@javax.annotation.Nonnull Intege /** * Build call for getAnalysisLogs * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -982,7 +927,7 @@ public okhttp3.Call getAnalysisFunctionMapAsync(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisLogsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisLogsCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1023,23 +968,18 @@ public okhttp3.Call getAnalysisLogsCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisLogsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisLogsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisLogs(Async)"); } - return getAnalysisLogsCall(analysisId, authorization, _callback); + return getAnalysisLogsCall(analysisId, _callback); } @@ -1047,7 +987,6 @@ private okhttp3.Call getAnalysisLogsValidateBeforeCall(@javax.annotation.Nonnull * Gets the logs of an analysis * Given an analysis ID gets the current logs of an analysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseLogs * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1058,8 +997,8 @@ private okhttp3.Call getAnalysisLogsValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseLogs getAnalysisLogs(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisLogsWithHttpInfo(analysisId, authorization); + public BaseResponseLogs getAnalysisLogs(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisLogsWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -1067,7 +1006,6 @@ public BaseResponseLogs getAnalysisLogs(@javax.annotation.Nonnull Integer analys * Gets the logs of an analysis * Given an analysis ID gets the current logs of an analysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseLogs> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1078,8 +1016,8 @@ public BaseResponseLogs getAnalysisLogs(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public ApiResponse getAnalysisLogsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisLogsValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisLogsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisLogsValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1088,7 +1026,6 @@ public ApiResponse getAnalysisLogsWithHttpInfo(@javax.annotati * Gets the logs of an analysis (asynchronously) * Given an analysis ID gets the current logs of an analysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1100,9 +1037,9 @@ public ApiResponse getAnalysisLogsWithHttpInfo(@javax.annotati 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisLogsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisLogsAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisLogsValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisLogsValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1110,7 +1047,6 @@ public okhttp3.Call getAnalysisLogsAsync(@javax.annotation.Nonnull Integer analy /** * Build call for getAnalysisParams * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1122,7 +1058,7 @@ public okhttp3.Call getAnalysisLogsAsync(@javax.annotation.Nonnull Integer analy 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisParamsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisParamsCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1163,23 +1099,18 @@ public okhttp3.Call getAnalysisParamsCall(@javax.annotation.Nonnull Integer anal localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisParamsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisParamsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisParams(Async)"); } - return getAnalysisParamsCall(analysisId, authorization, _callback); + return getAnalysisParamsCall(analysisId, _callback); } @@ -1187,7 +1118,6 @@ private okhttp3.Call getAnalysisParamsValidateBeforeCall(@javax.annotation.Nonnu * Gets analysis param information * Gets the params that the analysis was run with * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseParams * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1198,8 +1128,8 @@ private okhttp3.Call getAnalysisParamsValidateBeforeCall(@javax.annotation.Nonnu 422 Invalid request parameters - */ - public BaseResponseParams getAnalysisParams(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisParamsWithHttpInfo(analysisId, authorization); + public BaseResponseParams getAnalysisParams(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisParamsWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -1207,7 +1137,6 @@ public BaseResponseParams getAnalysisParams(@javax.annotation.Nonnull Integer an * Gets analysis param information * Gets the params that the analysis was run with * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseParams> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1218,8 +1147,8 @@ public BaseResponseParams getAnalysisParams(@javax.annotation.Nonnull Integer an 422 Invalid request parameters - */ - public ApiResponse getAnalysisParamsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisParamsValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisParamsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisParamsValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1228,7 +1157,6 @@ public ApiResponse getAnalysisParamsWithHttpInfo(@javax.anno * Gets analysis param information (asynchronously) * Gets the params that the analysis was run with * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1240,9 +1168,9 @@ public ApiResponse getAnalysisParamsWithHttpInfo(@javax.anno 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisParamsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisParamsAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisParamsValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisParamsValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1250,7 +1178,6 @@ public okhttp3.Call getAnalysisParamsAsync(@javax.annotation.Nonnull Integer ana /** * Build call for getAnalysisStatus * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1262,7 +1189,7 @@ public okhttp3.Call getAnalysisParamsAsync(@javax.annotation.Nonnull Integer ana 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisStatusCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisStatusCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1303,23 +1230,18 @@ public okhttp3.Call getAnalysisStatusCall(@javax.annotation.Nonnull Integer anal localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisStatus(Async)"); } - return getAnalysisStatusCall(analysisId, authorization, _callback); + return getAnalysisStatusCall(analysisId, _callback); } @@ -1327,7 +1249,6 @@ private okhttp3.Call getAnalysisStatusValidateBeforeCall(@javax.annotation.Nonnu * Gets the status of an analysis * Given an analysis ID gets the current status of the analysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseStatus * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1338,8 +1259,8 @@ private okhttp3.Call getAnalysisStatusValidateBeforeCall(@javax.annotation.Nonnu 422 Invalid request parameters - */ - public BaseResponseStatus getAnalysisStatus(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisStatusWithHttpInfo(analysisId, authorization); + public BaseResponseStatus getAnalysisStatus(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisStatusWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -1347,7 +1268,6 @@ public BaseResponseStatus getAnalysisStatus(@javax.annotation.Nonnull Integer an * Gets the status of an analysis * Given an analysis ID gets the current status of the analysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1358,8 +1278,8 @@ public BaseResponseStatus getAnalysisStatus(@javax.annotation.Nonnull Integer an 422 Invalid request parameters - */ - public ApiResponse getAnalysisStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisStatusValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisStatusValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1368,7 +1288,6 @@ public ApiResponse getAnalysisStatusWithHttpInfo(@javax.anno * Gets the status of an analysis (asynchronously) * Given an analysis ID gets the current status of the analysis * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1380,9 +1299,9 @@ public ApiResponse getAnalysisStatusWithHttpInfo(@javax.anno 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisStatusAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisStatusAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisStatusValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisStatusValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1391,7 +1310,6 @@ public okhttp3.Call getAnalysisStatusAsync(@javax.annotation.Nonnull Integer ana * Build call for getBinaryAnn * @param analysisId (required) * @param binaryAnnForm (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1403,7 +1321,7 @@ public okhttp3.Call getAnalysisStatusAsync(@javax.annotation.Nonnull Integer ana 422 Invalid request parameters - */ - public okhttp3.Call getBinaryAnnCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryAnnCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1445,17 +1363,12 @@ public okhttp3.Call getBinaryAnnCall(@javax.annotation.Nonnull Integer analysisI localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getBinaryAnnValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getBinaryAnnValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getBinaryAnn(Async)"); @@ -1466,7 +1379,7 @@ private okhttp3.Call getBinaryAnnValidateBeforeCall(@javax.annotation.Nonnull In throw new ApiException("Missing the required parameter 'binaryAnnForm' when calling getBinaryAnn(Async)"); } - return getBinaryAnnCall(analysisId, binaryAnnForm, authorization, _callback); + return getBinaryAnnCall(analysisId, binaryAnnForm, _callback); } @@ -1475,7 +1388,6 @@ private okhttp3.Call getBinaryAnnValidateBeforeCall(@javax.annotation.Nonnull In * Binary Ann * @param analysisId (required) * @param binaryAnnForm (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBinaryAnnListResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1486,8 +1398,8 @@ private okhttp3.Call getBinaryAnnValidateBeforeCall(@javax.annotation.Nonnull In 422 Invalid request parameters - */ - public BaseResponseBinaryAnnListResponse getBinaryAnn(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getBinaryAnnWithHttpInfo(analysisId, binaryAnnForm, authorization); + public BaseResponseBinaryAnnListResponse getBinaryAnn(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm) throws ApiException { + ApiResponse localVarResp = getBinaryAnnWithHttpInfo(analysisId, binaryAnnForm); return localVarResp.getData(); } @@ -1496,7 +1408,6 @@ public BaseResponseBinaryAnnListResponse getBinaryAnn(@javax.annotation.Nonnull * Binary Ann * @param analysisId (required) * @param binaryAnnForm (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBinaryAnnListResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1507,8 +1418,8 @@ public BaseResponseBinaryAnnListResponse getBinaryAnn(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public ApiResponse getBinaryAnnWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getBinaryAnnValidateBeforeCall(analysisId, binaryAnnForm, authorization, null); + public ApiResponse getBinaryAnnWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm) throws ApiException { + okhttp3.Call localVarCall = getBinaryAnnValidateBeforeCall(analysisId, binaryAnnForm, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1518,7 +1429,6 @@ public ApiResponse getBinaryAnnWithHttpInfo(@ * Binary Ann * @param analysisId (required) * @param binaryAnnForm (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1530,9 +1440,9 @@ public ApiResponse getBinaryAnnWithHttpInfo(@ 422 Invalid request parameters - */ - public okhttp3.Call getBinaryAnnAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryAnnAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull BinaryAnnForm binaryAnnForm, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getBinaryAnnValidateBeforeCall(analysisId, binaryAnnForm, authorization, _callback); + okhttp3.Call localVarCall = getBinaryAnnValidateBeforeCall(analysisId, binaryAnnForm, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1550,7 +1460,6 @@ public okhttp3.Call getBinaryAnnAsync(@javax.annotation.Nonnull Integer analysis * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1562,7 +1471,7 @@ public okhttp3.Call getBinaryAnnAsync(@javax.annotation.Nonnull Integer analysis 422 Invalid request parameters - */ - public okhttp3.Call listAnalysesCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listAnalysesCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1646,18 +1555,13 @@ public okhttp3.Call listAnalysesCall(@javax.annotation.Nullable String searchTer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call listAnalysesValidateBeforeCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return listAnalysesCall(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization, _callback); + private okhttp3.Call listAnalysesValidateBeforeCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, final ApiCallback _callback) throws ApiException { + return listAnalysesCall(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, _callback); } @@ -1675,7 +1579,6 @@ private okhttp3.Call listAnalysesValidateBeforeCall(@javax.annotation.Nullable S * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseRecent * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1686,8 +1589,8 @@ private okhttp3.Call listAnalysesValidateBeforeCall(@javax.annotation.Nullable S 422 Invalid request parameters - */ - public BaseResponseRecent listAnalyses(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = listAnalysesWithHttpInfo(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization); + public BaseResponseRecent listAnalyses(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order) throws ApiException { + ApiResponse localVarResp = listAnalysesWithHttpInfo(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order); return localVarResp.getData(); } @@ -1705,7 +1608,6 @@ public BaseResponseRecent listAnalyses(@javax.annotation.Nullable String searchT * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseRecent> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1716,8 +1618,8 @@ public BaseResponseRecent listAnalyses(@javax.annotation.Nullable String searchT 422 Invalid request parameters - */ - public ApiResponse listAnalysesWithHttpInfo(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = listAnalysesValidateBeforeCall(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization, null); + public ApiResponse listAnalysesWithHttpInfo(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order) throws ApiException { + okhttp3.Call localVarCall = listAnalysesValidateBeforeCall(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1736,7 +1638,6 @@ public ApiResponse listAnalysesWithHttpInfo(@javax.annotatio * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1748,9 +1649,9 @@ public ApiResponse listAnalysesWithHttpInfo(@javax.annotatio 422 Invalid request parameters - */ - public okhttp3.Call listAnalysesAsync(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listAnalysesAsync(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List workspace, @javax.annotation.Nullable List status, @javax.annotation.Nullable List modelName, @javax.annotation.Nullable DynamicExecutionStatusInput dynamicExecutionStatus, @javax.annotation.Nullable List usernames, @javax.annotation.Nullable String sha256Hash, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2AnalysesEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listAnalysesValidateBeforeCall(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization, _callback); + okhttp3.Call localVarCall = listAnalysesValidateBeforeCall(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1758,7 +1659,6 @@ public okhttp3.Call listAnalysesAsync(@javax.annotation.Nullable String searchTe /** * Build call for lookupBinaryId * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1770,7 +1670,7 @@ public okhttp3.Call listAnalysesAsync(@javax.annotation.Nullable String searchTe 422 Invalid request parameters - */ - public okhttp3.Call lookupBinaryIdCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call lookupBinaryIdCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1811,23 +1711,18 @@ public okhttp3.Call lookupBinaryIdCall(@javax.annotation.Nonnull Integer binaryI localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call lookupBinaryIdValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call lookupBinaryIdValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling lookupBinaryId(Async)"); } - return lookupBinaryIdCall(binaryId, authorization, _callback); + return lookupBinaryIdCall(binaryId, _callback); } @@ -1835,7 +1730,6 @@ private okhttp3.Call lookupBinaryIdValidateBeforeCall(@javax.annotation.Nonnull * Gets the analysis ID from binary ID * Given an binary ID gets the ID of an analysis * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1846,8 +1740,8 @@ private okhttp3.Call lookupBinaryIdValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public Object lookupBinaryId(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = lookupBinaryIdWithHttpInfo(binaryId, authorization); + public Object lookupBinaryId(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = lookupBinaryIdWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -1855,7 +1749,6 @@ public Object lookupBinaryId(@javax.annotation.Nonnull Integer binaryId, @javax. * Gets the analysis ID from binary ID * Given an binary ID gets the ID of an analysis * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1866,8 +1759,8 @@ public Object lookupBinaryId(@javax.annotation.Nonnull Integer binaryId, @javax. 422 Invalid request parameters - */ - public ApiResponse lookupBinaryIdWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = lookupBinaryIdValidateBeforeCall(binaryId, authorization, null); + public ApiResponse lookupBinaryIdWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = lookupBinaryIdValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1876,7 +1769,6 @@ public ApiResponse lookupBinaryIdWithHttpInfo(@javax.annotation.Nonnull * Gets the analysis ID from binary ID (asynchronously) * Given an binary ID gets the ID of an analysis * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1888,9 +1780,9 @@ public ApiResponse lookupBinaryIdWithHttpInfo(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public okhttp3.Call lookupBinaryIdAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call lookupBinaryIdAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = lookupBinaryIdValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = lookupBinaryIdValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1899,7 +1791,6 @@ public okhttp3.Call lookupBinaryIdAsync(@javax.annotation.Nonnull Integer binary * Build call for requeueAnalysis * @param analysisId (required) * @param reAnalysisForm (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1913,7 +1804,7 @@ public okhttp3.Call lookupBinaryIdAsync(@javax.annotation.Nonnull Integer binary 400 Bad Request - */ - public okhttp3.Call requeueAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call requeueAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1955,17 +1846,12 @@ public okhttp3.Call requeueAnalysisCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call requeueAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call requeueAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling requeueAnalysis(Async)"); @@ -1976,7 +1862,7 @@ private okhttp3.Call requeueAnalysisValidateBeforeCall(@javax.annotation.Nonnull throw new ApiException("Missing the required parameter 'reAnalysisForm' when calling requeueAnalysis(Async)"); } - return requeueAnalysisCall(analysisId, reAnalysisForm, authorization, _callback); + return requeueAnalysisCall(analysisId, reAnalysisForm, _callback); } @@ -1985,7 +1871,6 @@ private okhttp3.Call requeueAnalysisValidateBeforeCall(@javax.annotation.Nonnull * Re-queues an already uploaded analysis * @param analysisId (required) * @param reAnalysisForm (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCreated * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1998,8 +1883,8 @@ private okhttp3.Call requeueAnalysisValidateBeforeCall(@javax.annotation.Nonnull 400 Bad Request - */ - public BaseResponseCreated requeueAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = requeueAnalysisWithHttpInfo(analysisId, reAnalysisForm, authorization); + public BaseResponseCreated requeueAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm) throws ApiException { + ApiResponse localVarResp = requeueAnalysisWithHttpInfo(analysisId, reAnalysisForm); return localVarResp.getData(); } @@ -2008,7 +1893,6 @@ public BaseResponseCreated requeueAnalysis(@javax.annotation.Nonnull Integer ana * Re-queues an already uploaded analysis * @param analysisId (required) * @param reAnalysisForm (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCreated> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -2021,8 +1905,8 @@ public BaseResponseCreated requeueAnalysis(@javax.annotation.Nonnull Integer ana 400 Bad Request - */ - public ApiResponse requeueAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = requeueAnalysisValidateBeforeCall(analysisId, reAnalysisForm, authorization, null); + public ApiResponse requeueAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm) throws ApiException { + okhttp3.Call localVarCall = requeueAnalysisValidateBeforeCall(analysisId, reAnalysisForm, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2032,7 +1916,6 @@ public ApiResponse requeueAnalysisWithHttpInfo(@javax.annot * Re-queues an already uploaded analysis * @param analysisId (required) * @param reAnalysisForm (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -2046,9 +1929,9 @@ public ApiResponse requeueAnalysisWithHttpInfo(@javax.annot 400 Bad Request - */ - public okhttp3.Call requeueAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call requeueAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull ReAnalysisForm reAnalysisForm, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = requeueAnalysisValidateBeforeCall(analysisId, reAnalysisForm, authorization, _callback); + okhttp3.Call localVarCall = requeueAnalysisValidateBeforeCall(analysisId, reAnalysisForm, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -2057,7 +1940,6 @@ public okhttp3.Call requeueAnalysisAsync(@javax.annotation.Nonnull Integer analy * Build call for updateAnalysis * @param analysisId (required) * @param analysisUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -2069,7 +1951,7 @@ public okhttp3.Call requeueAnalysisAsync(@javax.annotation.Nonnull Integer analy 422 Invalid request parameters - */ - public okhttp3.Call updateAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -2111,17 +1993,12 @@ public okhttp3.Call updateAnalysisCall(@javax.annotation.Nonnull Integer analysi localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling updateAnalysis(Async)"); @@ -2132,7 +2009,7 @@ private okhttp3.Call updateAnalysisValidateBeforeCall(@javax.annotation.Nonnull throw new ApiException("Missing the required parameter 'analysisUpdateRequest' when calling updateAnalysis(Async)"); } - return updateAnalysisCall(analysisId, analysisUpdateRequest, authorization, _callback); + return updateAnalysisCall(analysisId, analysisUpdateRequest, _callback); } @@ -2141,7 +2018,6 @@ private okhttp3.Call updateAnalysisValidateBeforeCall(@javax.annotation.Nonnull * Updates analysis attributes (binary_name, analysis_scope). User must be the owner. * @param analysisId (required) * @param analysisUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisDetailResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -2152,8 +2028,8 @@ private okhttp3.Call updateAnalysisValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseAnalysisDetailResponse updateAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateAnalysisWithHttpInfo(analysisId, analysisUpdateRequest, authorization); + public BaseResponseAnalysisDetailResponse updateAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateAnalysisWithHttpInfo(analysisId, analysisUpdateRequest); return localVarResp.getData(); } @@ -2162,7 +2038,6 @@ public BaseResponseAnalysisDetailResponse updateAnalysis(@javax.annotation.Nonnu * Updates analysis attributes (binary_name, analysis_scope). User must be the owner. * @param analysisId (required) * @param analysisUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisDetailResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -2173,8 +2048,8 @@ public BaseResponseAnalysisDetailResponse updateAnalysis(@javax.annotation.Nonnu 422 Invalid request parameters - */ - public ApiResponse updateAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateAnalysisValidateBeforeCall(analysisId, analysisUpdateRequest, authorization, null); + public ApiResponse updateAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateAnalysisValidateBeforeCall(analysisId, analysisUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2184,7 +2059,6 @@ public ApiResponse updateAnalysisWithHttpInf * Updates analysis attributes (binary_name, analysis_scope). User must be the owner. * @param analysisId (required) * @param analysisUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -2196,9 +2070,9 @@ public ApiResponse updateAnalysisWithHttpInf 422 Invalid request parameters - */ - public okhttp3.Call updateAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateRequest analysisUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAnalysisValidateBeforeCall(analysisId, analysisUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateAnalysisValidateBeforeCall(analysisId, analysisUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -2207,7 +2081,6 @@ public okhttp3.Call updateAnalysisAsync(@javax.annotation.Nonnull Integer analys * Build call for updateAnalysisTags * @param analysisId (required) * @param analysisUpdateTagsRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -2219,7 +2092,7 @@ public okhttp3.Call updateAnalysisAsync(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public okhttp3.Call updateAnalysisTagsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAnalysisTagsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -2261,17 +2134,12 @@ public okhttp3.Call updateAnalysisTagsCall(@javax.annotation.Nonnull Integer ana localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAnalysisTagsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAnalysisTagsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling updateAnalysisTags(Async)"); @@ -2282,7 +2150,7 @@ private okhttp3.Call updateAnalysisTagsValidateBeforeCall(@javax.annotation.Nonn throw new ApiException("Missing the required parameter 'analysisUpdateTagsRequest' when calling updateAnalysisTags(Async)"); } - return updateAnalysisTagsCall(analysisId, analysisUpdateTagsRequest, authorization, _callback); + return updateAnalysisTagsCall(analysisId, analysisUpdateTagsRequest, _callback); } @@ -2291,7 +2159,6 @@ private okhttp3.Call updateAnalysisTagsValidateBeforeCall(@javax.annotation.Nonn * Updates analysis tags. User must be the owner. * @param analysisId (required) * @param analysisUpdateTagsRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisUpdateTagsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -2302,8 +2169,8 @@ private okhttp3.Call updateAnalysisTagsValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseAnalysisUpdateTagsResponse updateAnalysisTags(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateAnalysisTagsWithHttpInfo(analysisId, analysisUpdateTagsRequest, authorization); + public BaseResponseAnalysisUpdateTagsResponse updateAnalysisTags(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest) throws ApiException { + ApiResponse localVarResp = updateAnalysisTagsWithHttpInfo(analysisId, analysisUpdateTagsRequest); return localVarResp.getData(); } @@ -2312,7 +2179,6 @@ public BaseResponseAnalysisUpdateTagsResponse updateAnalysisTags(@javax.annotati * Updates analysis tags. User must be the owner. * @param analysisId (required) * @param analysisUpdateTagsRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisUpdateTagsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -2323,8 +2189,8 @@ public BaseResponseAnalysisUpdateTagsResponse updateAnalysisTags(@javax.annotati 422 Invalid request parameters - */ - public ApiResponse updateAnalysisTagsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateAnalysisTagsValidateBeforeCall(analysisId, analysisUpdateTagsRequest, authorization, null); + public ApiResponse updateAnalysisTagsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest) throws ApiException { + okhttp3.Call localVarCall = updateAnalysisTagsValidateBeforeCall(analysisId, analysisUpdateTagsRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2334,7 +2200,6 @@ public ApiResponse updateAnalysisTagsWit * Updates analysis tags. User must be the owner. * @param analysisId (required) * @param analysisUpdateTagsRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -2346,9 +2211,9 @@ public ApiResponse updateAnalysisTagsWit 422 Invalid request parameters - */ - public okhttp3.Call updateAnalysisTagsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAnalysisTagsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisUpdateTagsRequest analysisUpdateTagsRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAnalysisTagsValidateBeforeCall(analysisId, analysisUpdateTagsRequest, authorization, _callback); + okhttp3.Call localVarCall = updateAnalysisTagsValidateBeforeCall(analysisId, analysisUpdateTagsRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -2358,7 +2223,6 @@ public okhttp3.Call updateAnalysisTagsAsync(@javax.annotation.Nonnull Integer an * @param uploadFileType (required) * @param _file (required) * @param packedPassword (optional) - * @param authorization API Key bearer token (optional) * @param forceOverwrite (optional, default to false) * @param _callback Callback for upload/download progress * @return Call to execute @@ -2371,7 +2235,7 @@ public okhttp3.Call updateAnalysisTagsAsync(@javax.annotation.Nonnull Integer an 422 Invalid request parameters - */ - public okhttp3.Call uploadFileCall(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable Boolean forceOverwrite, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uploadFileCall(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable Boolean forceOverwrite, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -2428,17 +2292,12 @@ public okhttp3.Call uploadFileCall(@javax.annotation.Nonnull UploadFileType uplo localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call uploadFileValidateBeforeCall(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable Boolean forceOverwrite, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uploadFileValidateBeforeCall(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable Boolean forceOverwrite, final ApiCallback _callback) throws ApiException { // verify the required parameter 'uploadFileType' is set if (uploadFileType == null) { throw new ApiException("Missing the required parameter 'uploadFileType' when calling uploadFile(Async)"); @@ -2449,7 +2308,7 @@ private okhttp3.Call uploadFileValidateBeforeCall(@javax.annotation.Nonnull Uplo throw new ApiException("Missing the required parameter '_file' when calling uploadFile(Async)"); } - return uploadFileCall(uploadFileType, _file, packedPassword, authorization, forceOverwrite, _callback); + return uploadFileCall(uploadFileType, _file, packedPassword, forceOverwrite, _callback); } @@ -2459,7 +2318,6 @@ private okhttp3.Call uploadFileValidateBeforeCall(@javax.annotation.Nonnull Uplo * @param uploadFileType (required) * @param _file (required) * @param packedPassword (optional) - * @param authorization API Key bearer token (optional) * @param forceOverwrite (optional, default to false) * @return BaseResponseUploadResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -2471,8 +2329,8 @@ private okhttp3.Call uploadFileValidateBeforeCall(@javax.annotation.Nonnull Uplo 422 Invalid request parameters - */ - public BaseResponseUploadResponse uploadFile(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable Boolean forceOverwrite) throws ApiException { - ApiResponse localVarResp = uploadFileWithHttpInfo(uploadFileType, _file, packedPassword, authorization, forceOverwrite); + public BaseResponseUploadResponse uploadFile(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable Boolean forceOverwrite) throws ApiException { + ApiResponse localVarResp = uploadFileWithHttpInfo(uploadFileType, _file, packedPassword, forceOverwrite); return localVarResp.getData(); } @@ -2482,7 +2340,6 @@ public BaseResponseUploadResponse uploadFile(@javax.annotation.Nonnull UploadFil * @param uploadFileType (required) * @param _file (required) * @param packedPassword (optional) - * @param authorization API Key bearer token (optional) * @param forceOverwrite (optional, default to false) * @return ApiResponse<BaseResponseUploadResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -2494,8 +2351,8 @@ public BaseResponseUploadResponse uploadFile(@javax.annotation.Nonnull UploadFil 422 Invalid request parameters - */ - public ApiResponse uploadFileWithHttpInfo(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable Boolean forceOverwrite) throws ApiException { - okhttp3.Call localVarCall = uploadFileValidateBeforeCall(uploadFileType, _file, packedPassword, authorization, forceOverwrite, null); + public ApiResponse uploadFileWithHttpInfo(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable Boolean forceOverwrite) throws ApiException { + okhttp3.Call localVarCall = uploadFileValidateBeforeCall(uploadFileType, _file, packedPassword, forceOverwrite, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2506,7 +2363,6 @@ public ApiResponse uploadFileWithHttpInfo(@javax.ann * @param uploadFileType (required) * @param _file (required) * @param packedPassword (optional) - * @param authorization API Key bearer token (optional) * @param forceOverwrite (optional, default to false) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -2519,9 +2375,9 @@ public ApiResponse uploadFileWithHttpInfo(@javax.ann 422 Invalid request parameters - */ - public okhttp3.Call uploadFileAsync(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable Boolean forceOverwrite, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uploadFileAsync(@javax.annotation.Nonnull UploadFileType uploadFileType, @javax.annotation.Nonnull File _file, @javax.annotation.Nullable String packedPassword, @javax.annotation.Nullable Boolean forceOverwrite, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uploadFileValidateBeforeCall(uploadFileType, _file, packedPassword, authorization, forceOverwrite, _callback); + okhttp3.Call localVarCall = uploadFileValidateBeforeCall(uploadFileType, _file, packedPassword, forceOverwrite, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/AnalysesDynamicExecutionApi.java b/src/main/java/ai/reveng/api/AnalysesDynamicExecutionApi.java index c073934..b4caf9c 100644 --- a/src/main/java/ai/reveng/api/AnalysesDynamicExecutionApi.java +++ b/src/main/java/ai/reveng/api/AnalysesDynamicExecutionApi.java @@ -80,7 +80,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for getDynamicExecutionStatus * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -92,7 +91,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call getDynamicExecutionStatusCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getDynamicExecutionStatusCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -133,23 +132,18 @@ public okhttp3.Call getDynamicExecutionStatusCall(@javax.annotation.Nonnull Inte localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getDynamicExecutionStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getDynamicExecutionStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getDynamicExecutionStatus(Async)"); } - return getDynamicExecutionStatusCall(analysisId, authorization, _callback); + return getDynamicExecutionStatusCall(analysisId, _callback); } @@ -157,7 +151,6 @@ private okhttp3.Call getDynamicExecutionStatusValidateBeforeCall(@javax.annotati * Get the status of a dynamic execution task * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseDynamicExecutionStatus * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -168,8 +161,8 @@ private okhttp3.Call getDynamicExecutionStatusValidateBeforeCall(@javax.annotati 422 Invalid request parameters - */ - public BaseResponseDynamicExecutionStatus getDynamicExecutionStatus(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getDynamicExecutionStatusWithHttpInfo(analysisId, authorization); + public BaseResponseDynamicExecutionStatus getDynamicExecutionStatus(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getDynamicExecutionStatusWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -177,7 +170,6 @@ public BaseResponseDynamicExecutionStatus getDynamicExecutionStatus(@javax.annot * Get the status of a dynamic execution task * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseDynamicExecutionStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -188,8 +180,8 @@ public BaseResponseDynamicExecutionStatus getDynamicExecutionStatus(@javax.annot 422 Invalid request parameters - */ - public ApiResponse getDynamicExecutionStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getDynamicExecutionStatusValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getDynamicExecutionStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getDynamicExecutionStatusValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -198,7 +190,6 @@ public ApiResponse getDynamicExecutionStatus * Get the status of a dynamic execution task (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -210,9 +201,9 @@ public ApiResponse getDynamicExecutionStatus 422 Invalid request parameters - */ - public okhttp3.Call getDynamicExecutionStatusAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getDynamicExecutionStatusAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getDynamicExecutionStatusValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getDynamicExecutionStatusValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -220,7 +211,6 @@ public okhttp3.Call getDynamicExecutionStatusAsync(@javax.annotation.Nonnull Int /** * Build call for getNetworkOverview * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -232,7 +222,7 @@ public okhttp3.Call getDynamicExecutionStatusAsync(@javax.annotation.Nonnull Int 422 Invalid request parameters - */ - public okhttp3.Call getNetworkOverviewCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getNetworkOverviewCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -273,23 +263,18 @@ public okhttp3.Call getNetworkOverviewCall(@javax.annotation.Nonnull Integer ana localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getNetworkOverviewValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getNetworkOverviewValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getNetworkOverview(Async)"); } - return getNetworkOverviewCall(analysisId, authorization, _callback); + return getNetworkOverviewCall(analysisId, _callback); } @@ -297,7 +282,6 @@ private okhttp3.Call getNetworkOverviewValidateBeforeCall(@javax.annotation.Nonn * Get the dynamic execution results for network overview * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseNetworkOverviewResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -308,8 +292,8 @@ private okhttp3.Call getNetworkOverviewValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseNetworkOverviewResponse getNetworkOverview(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getNetworkOverviewWithHttpInfo(analysisId, authorization); + public BaseResponseNetworkOverviewResponse getNetworkOverview(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getNetworkOverviewWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -317,7 +301,6 @@ public BaseResponseNetworkOverviewResponse getNetworkOverview(@javax.annotation. * Get the dynamic execution results for network overview * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseNetworkOverviewResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -328,8 +311,8 @@ public BaseResponseNetworkOverviewResponse getNetworkOverview(@javax.annotation. 422 Invalid request parameters - */ - public ApiResponse getNetworkOverviewWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getNetworkOverviewValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getNetworkOverviewWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getNetworkOverviewValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -338,7 +321,6 @@ public ApiResponse getNetworkOverviewWithHt * Get the dynamic execution results for network overview (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -350,9 +332,9 @@ public ApiResponse getNetworkOverviewWithHt 422 Invalid request parameters - */ - public okhttp3.Call getNetworkOverviewAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getNetworkOverviewAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getNetworkOverviewValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getNetworkOverviewValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -361,7 +343,6 @@ public okhttp3.Call getNetworkOverviewAsync(@javax.annotation.Nonnull Integer an * Build call for getProcessDump * @param analysisId (required) * @param dumpName (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -373,7 +354,7 @@ public okhttp3.Call getNetworkOverviewAsync(@javax.annotation.Nonnull Integer an 422 Invalid request parameters - */ - public okhttp3.Call getProcessDumpCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessDumpCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -415,17 +396,12 @@ public okhttp3.Call getProcessDumpCall(@javax.annotation.Nonnull Integer analysi localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getProcessDumpValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getProcessDumpValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getProcessDump(Async)"); @@ -436,7 +412,7 @@ private okhttp3.Call getProcessDumpValidateBeforeCall(@javax.annotation.Nonnull throw new ApiException("Missing the required parameter 'dumpName' when calling getProcessDump(Async)"); } - return getProcessDumpCall(analysisId, dumpName, authorization, _callback); + return getProcessDumpCall(analysisId, dumpName, _callback); } @@ -445,7 +421,6 @@ private okhttp3.Call getProcessDumpValidateBeforeCall(@javax.annotation.Nonnull * * @param analysisId (required) * @param dumpName (required) - * @param authorization API Key bearer token (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -456,8 +431,8 @@ private okhttp3.Call getProcessDumpValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public Object getProcessDump(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getProcessDumpWithHttpInfo(analysisId, dumpName, authorization); + public Object getProcessDump(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName) throws ApiException { + ApiResponse localVarResp = getProcessDumpWithHttpInfo(analysisId, dumpName); return localVarResp.getData(); } @@ -466,7 +441,6 @@ public Object getProcessDump(@javax.annotation.Nonnull Integer analysisId, @java * * @param analysisId (required) * @param dumpName (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -477,8 +451,8 @@ public Object getProcessDump(@javax.annotation.Nonnull Integer analysisId, @java 422 Invalid request parameters - */ - public ApiResponse getProcessDumpWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getProcessDumpValidateBeforeCall(analysisId, dumpName, authorization, null); + public ApiResponse getProcessDumpWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName) throws ApiException { + okhttp3.Call localVarCall = getProcessDumpValidateBeforeCall(analysisId, dumpName, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -488,7 +462,6 @@ public ApiResponse getProcessDumpWithHttpInfo(@javax.annotation.Nonnull * * @param analysisId (required) * @param dumpName (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -500,9 +473,9 @@ public ApiResponse getProcessDumpWithHttpInfo(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public okhttp3.Call getProcessDumpAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessDumpAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull String dumpName, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getProcessDumpValidateBeforeCall(analysisId, dumpName, authorization, _callback); + okhttp3.Call localVarCall = getProcessDumpValidateBeforeCall(analysisId, dumpName, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -510,7 +483,6 @@ public okhttp3.Call getProcessDumpAsync(@javax.annotation.Nonnull Integer analys /** * Build call for getProcessDumps * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -522,7 +494,7 @@ public okhttp3.Call getProcessDumpAsync(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public okhttp3.Call getProcessDumpsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessDumpsCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -563,23 +535,18 @@ public okhttp3.Call getProcessDumpsCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getProcessDumpsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getProcessDumpsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getProcessDumps(Async)"); } - return getProcessDumpsCall(analysisId, authorization, _callback); + return getProcessDumpsCall(analysisId, _callback); } @@ -587,7 +554,6 @@ private okhttp3.Call getProcessDumpsValidateBeforeCall(@javax.annotation.Nonnull * Get the dynamic execution results for process dumps * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseProcessDumps * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -598,8 +564,8 @@ private okhttp3.Call getProcessDumpsValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseProcessDumps getProcessDumps(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getProcessDumpsWithHttpInfo(analysisId, authorization); + public BaseResponseProcessDumps getProcessDumps(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getProcessDumpsWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -607,7 +573,6 @@ public BaseResponseProcessDumps getProcessDumps(@javax.annotation.Nonnull Intege * Get the dynamic execution results for process dumps * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseProcessDumps> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -618,8 +583,8 @@ public BaseResponseProcessDumps getProcessDumps(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public ApiResponse getProcessDumpsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getProcessDumpsValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getProcessDumpsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getProcessDumpsValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -628,7 +593,6 @@ public ApiResponse getProcessDumpsWithHttpInfo(@javax. * Get the dynamic execution results for process dumps (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -640,9 +604,9 @@ public ApiResponse getProcessDumpsWithHttpInfo(@javax. 422 Invalid request parameters - */ - public okhttp3.Call getProcessDumpsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessDumpsAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getProcessDumpsValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getProcessDumpsValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -650,7 +614,6 @@ public okhttp3.Call getProcessDumpsAsync(@javax.annotation.Nonnull Integer analy /** * Build call for getProcessRegistry * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -662,7 +625,7 @@ public okhttp3.Call getProcessDumpsAsync(@javax.annotation.Nonnull Integer analy 422 Invalid request parameters - */ - public okhttp3.Call getProcessRegistryCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessRegistryCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -703,23 +666,18 @@ public okhttp3.Call getProcessRegistryCall(@javax.annotation.Nonnull Integer ana localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getProcessRegistryValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getProcessRegistryValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getProcessRegistry(Async)"); } - return getProcessRegistryCall(analysisId, authorization, _callback); + return getProcessRegistryCall(analysisId, _callback); } @@ -727,7 +685,6 @@ private okhttp3.Call getProcessRegistryValidateBeforeCall(@javax.annotation.Nonn * Get the dynamic execution results for process registry * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseProcessRegistry * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -738,8 +695,8 @@ private okhttp3.Call getProcessRegistryValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseProcessRegistry getProcessRegistry(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getProcessRegistryWithHttpInfo(analysisId, authorization); + public BaseResponseProcessRegistry getProcessRegistry(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getProcessRegistryWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -747,7 +704,6 @@ public BaseResponseProcessRegistry getProcessRegistry(@javax.annotation.Nonnull * Get the dynamic execution results for process registry * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseProcessRegistry> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -758,8 +714,8 @@ public BaseResponseProcessRegistry getProcessRegistry(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public ApiResponse getProcessRegistryWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getProcessRegistryValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getProcessRegistryWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getProcessRegistryValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -768,7 +724,6 @@ public ApiResponse getProcessRegistryWithHttpInfo(@ * Get the dynamic execution results for process registry (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -780,9 +735,9 @@ public ApiResponse getProcessRegistryWithHttpInfo(@ 422 Invalid request parameters - */ - public okhttp3.Call getProcessRegistryAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessRegistryAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getProcessRegistryValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getProcessRegistryValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -790,7 +745,6 @@ public okhttp3.Call getProcessRegistryAsync(@javax.annotation.Nonnull Integer an /** * Build call for getProcessTree * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -802,7 +756,7 @@ public okhttp3.Call getProcessRegistryAsync(@javax.annotation.Nonnull Integer an 422 Invalid request parameters - */ - public okhttp3.Call getProcessTreeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessTreeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -843,23 +797,18 @@ public okhttp3.Call getProcessTreeCall(@javax.annotation.Nonnull Integer analysi localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getProcessTreeValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getProcessTreeValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getProcessTree(Async)"); } - return getProcessTreeCall(analysisId, authorization, _callback); + return getProcessTreeCall(analysisId, _callback); } @@ -867,7 +816,6 @@ private okhttp3.Call getProcessTreeValidateBeforeCall(@javax.annotation.Nonnull * Get the dynamic execution results for process tree * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseProcessTree * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -878,8 +826,8 @@ private okhttp3.Call getProcessTreeValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseProcessTree getProcessTree(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getProcessTreeWithHttpInfo(analysisId, authorization); + public BaseResponseProcessTree getProcessTree(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getProcessTreeWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -887,7 +835,6 @@ public BaseResponseProcessTree getProcessTree(@javax.annotation.Nonnull Integer * Get the dynamic execution results for process tree * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseProcessTree> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -898,8 +845,8 @@ public BaseResponseProcessTree getProcessTree(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public ApiResponse getProcessTreeWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getProcessTreeValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getProcessTreeWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getProcessTreeValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -908,7 +855,6 @@ public ApiResponse getProcessTreeWithHttpInfo(@javax.an * Get the dynamic execution results for process tree (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -920,9 +866,9 @@ public ApiResponse getProcessTreeWithHttpInfo(@javax.an 422 Invalid request parameters - */ - public okhttp3.Call getProcessTreeAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getProcessTreeAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getProcessTreeValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getProcessTreeValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -930,7 +876,6 @@ public okhttp3.Call getProcessTreeAsync(@javax.annotation.Nonnull Integer analys /** * Build call for getTtps * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -942,7 +887,7 @@ public okhttp3.Call getProcessTreeAsync(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public okhttp3.Call getTtpsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTtpsCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -983,23 +928,18 @@ public okhttp3.Call getTtpsCall(@javax.annotation.Nonnull Integer analysisId, @j localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getTtpsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getTtpsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getTtps(Async)"); } - return getTtpsCall(analysisId, authorization, _callback); + return getTtpsCall(analysisId, _callback); } @@ -1007,7 +947,6 @@ private okhttp3.Call getTtpsValidateBeforeCall(@javax.annotation.Nonnull Integer * Get the dynamic execution results for ttps * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseTTPS * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1018,8 +957,8 @@ private okhttp3.Call getTtpsValidateBeforeCall(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public BaseResponseTTPS getTtps(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getTtpsWithHttpInfo(analysisId, authorization); + public BaseResponseTTPS getTtps(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getTtpsWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -1027,7 +966,6 @@ public BaseResponseTTPS getTtps(@javax.annotation.Nonnull Integer analysisId, @j * Get the dynamic execution results for ttps * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseTTPS> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1038,8 +976,8 @@ public BaseResponseTTPS getTtps(@javax.annotation.Nonnull Integer analysisId, @j 422 Invalid request parameters - */ - public ApiResponse getTtpsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getTtpsValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getTtpsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getTtpsValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1048,7 +986,6 @@ public ApiResponse getTtpsWithHttpInfo(@javax.annotation.Nonnu * Get the dynamic execution results for ttps (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1060,9 +997,9 @@ public ApiResponse getTtpsWithHttpInfo(@javax.annotation.Nonnu 422 Invalid request parameters - */ - public okhttp3.Call getTtpsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTtpsAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTtpsValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getTtpsValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/AnalysesResultsMetadataApi.java b/src/main/java/ai/reveng/api/AnalysesResultsMetadataApi.java index 6c10e89..8297d81 100644 --- a/src/main/java/ai/reveng/api/AnalysesResultsMetadataApi.java +++ b/src/main/java/ai/reveng/api/AnalysesResultsMetadataApi.java @@ -80,7 +80,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for getCapabilities * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -92,7 +91,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call getCapabilitiesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCapabilitiesCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -133,23 +132,18 @@ public okhttp3.Call getCapabilitiesCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getCapabilitiesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getCapabilitiesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getCapabilities(Async)"); } - return getCapabilitiesCall(analysisId, authorization, _callback); + return getCapabilitiesCall(analysisId, _callback); } @@ -157,7 +151,6 @@ private okhttp3.Call getCapabilitiesValidateBeforeCall(@javax.annotation.Nonnull * Gets the capabilities from the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCapabilities * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -168,8 +161,8 @@ private okhttp3.Call getCapabilitiesValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseCapabilities getCapabilities(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getCapabilitiesWithHttpInfo(analysisId, authorization); + public BaseResponseCapabilities getCapabilities(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getCapabilitiesWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -177,7 +170,6 @@ public BaseResponseCapabilities getCapabilities(@javax.annotation.Nonnull Intege * Gets the capabilities from the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCapabilities> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -188,8 +180,8 @@ public BaseResponseCapabilities getCapabilities(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public ApiResponse getCapabilitiesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getCapabilitiesValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getCapabilitiesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getCapabilitiesValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -198,7 +190,6 @@ public ApiResponse getCapabilitiesWithHttpInfo(@javax. * Gets the capabilities from the analysis (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -210,9 +201,9 @@ public ApiResponse getCapabilitiesWithHttpInfo(@javax. 422 Invalid request parameters - */ - public okhttp3.Call getCapabilitiesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCapabilitiesAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getCapabilitiesValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getCapabilitiesValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -221,7 +212,6 @@ public okhttp3.Call getCapabilitiesAsync(@javax.annotation.Nonnull Integer analy * Build call for getCommunities * @param analysisId (required) * @param userName The user name to limit communities to (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -233,7 +223,7 @@ public okhttp3.Call getCapabilitiesAsync(@javax.annotation.Nonnull Integer analy 422 Invalid request parameters - */ - public okhttp3.Call getCommunitiesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCommunitiesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -278,23 +268,18 @@ public okhttp3.Call getCommunitiesCall(@javax.annotation.Nonnull Integer analysi localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getCommunitiesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getCommunitiesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getCommunities(Async)"); } - return getCommunitiesCall(analysisId, userName, authorization, _callback); + return getCommunitiesCall(analysisId, userName, _callback); } @@ -303,7 +288,6 @@ private okhttp3.Call getCommunitiesValidateBeforeCall(@javax.annotation.Nonnull * * @param analysisId (required) * @param userName The user name to limit communities to (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommunities * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -314,8 +298,8 @@ private okhttp3.Call getCommunitiesValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseCommunities getCommunities(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getCommunitiesWithHttpInfo(analysisId, userName, authorization); + public BaseResponseCommunities getCommunities(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName) throws ApiException { + ApiResponse localVarResp = getCommunitiesWithHttpInfo(analysisId, userName); return localVarResp.getData(); } @@ -324,7 +308,6 @@ public BaseResponseCommunities getCommunities(@javax.annotation.Nonnull Integer * * @param analysisId (required) * @param userName The user name to limit communities to (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommunities> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -335,8 +318,8 @@ public BaseResponseCommunities getCommunities(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public ApiResponse getCommunitiesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getCommunitiesValidateBeforeCall(analysisId, userName, authorization, null); + public ApiResponse getCommunitiesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName) throws ApiException { + okhttp3.Call localVarCall = getCommunitiesValidateBeforeCall(analysisId, userName, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -346,7 +329,6 @@ public ApiResponse getCommunitiesWithHttpInfo(@javax.an * * @param analysisId (required) * @param userName The user name to limit communities to (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -358,9 +340,9 @@ public ApiResponse getCommunitiesWithHttpInfo(@javax.an 422 Invalid request parameters - */ - public okhttp3.Call getCommunitiesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCommunitiesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String userName, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getCommunitiesValidateBeforeCall(analysisId, userName, authorization, _callback); + okhttp3.Call localVarCall = getCommunitiesValidateBeforeCall(analysisId, userName, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -371,7 +353,6 @@ public okhttp3.Call getCommunitiesAsync(@javax.annotation.Nonnull Integer analys * @param searchTerm (optional) * @param minVAddr (optional) * @param maxVAddr (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -383,7 +364,7 @@ public okhttp3.Call getCommunitiesAsync(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public okhttp3.Call getFunctionsListCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionsListCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -436,23 +417,18 @@ public okhttp3.Call getFunctionsListCall(@javax.annotation.Nonnull Integer analy localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionsListValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionsListValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getFunctionsList(Async)"); } - return getFunctionsListCall(analysisId, searchTerm, minVAddr, maxVAddr, authorization, _callback); + return getFunctionsListCall(analysisId, searchTerm, minVAddr, maxVAddr, _callback); } @@ -463,7 +439,6 @@ private okhttp3.Call getFunctionsListValidateBeforeCall(@javax.annotation.Nonnul * @param searchTerm (optional) * @param minVAddr (optional) * @param maxVAddr (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisFunctions * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -474,8 +449,8 @@ private okhttp3.Call getFunctionsListValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponseAnalysisFunctions getFunctionsList(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionsListWithHttpInfo(analysisId, searchTerm, minVAddr, maxVAddr, authorization); + public BaseResponseAnalysisFunctions getFunctionsList(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr) throws ApiException { + ApiResponse localVarResp = getFunctionsListWithHttpInfo(analysisId, searchTerm, minVAddr, maxVAddr); return localVarResp.getData(); } @@ -486,7 +461,6 @@ public BaseResponseAnalysisFunctions getFunctionsList(@javax.annotation.Nonnull * @param searchTerm (optional) * @param minVAddr (optional) * @param maxVAddr (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisFunctions> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -497,8 +471,8 @@ public BaseResponseAnalysisFunctions getFunctionsList(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public ApiResponse getFunctionsListWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionsListValidateBeforeCall(analysisId, searchTerm, minVAddr, maxVAddr, authorization, null); + public ApiResponse getFunctionsListWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr) throws ApiException { + okhttp3.Call localVarCall = getFunctionsListValidateBeforeCall(analysisId, searchTerm, minVAddr, maxVAddr, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -510,7 +484,6 @@ public ApiResponse getFunctionsListWithHttpInfo(@ * @param searchTerm (optional) * @param minVAddr (optional) * @param maxVAddr (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -522,9 +495,9 @@ public ApiResponse getFunctionsListWithHttpInfo(@ 422 Invalid request parameters - */ - public okhttp3.Call getFunctionsListAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionsListAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable Integer minVAddr, @javax.annotation.Nullable Integer maxVAddr, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionsListValidateBeforeCall(analysisId, searchTerm, minVAddr, maxVAddr, authorization, _callback); + okhttp3.Call localVarCall = getFunctionsListValidateBeforeCall(analysisId, searchTerm, minVAddr, maxVAddr, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -532,7 +505,6 @@ public okhttp3.Call getFunctionsListAsync(@javax.annotation.Nonnull Integer anal /** * Build call for getPdf * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -544,7 +516,7 @@ public okhttp3.Call getFunctionsListAsync(@javax.annotation.Nonnull Integer anal 422 Invalid request parameters - */ - public okhttp3.Call getPdfCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getPdfCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -585,23 +557,18 @@ public okhttp3.Call getPdfCall(@javax.annotation.Nonnull Integer analysisId, @ja localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getPdfValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getPdfValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getPdf(Async)"); } - return getPdfCall(analysisId, authorization, _callback); + return getPdfCall(analysisId, _callback); } @@ -609,7 +576,6 @@ private okhttp3.Call getPdfValidateBeforeCall(@javax.annotation.Nonnull Integer * Gets the PDF found in the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -620,8 +586,8 @@ private okhttp3.Call getPdfValidateBeforeCall(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public Object getPdf(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getPdfWithHttpInfo(analysisId, authorization); + public Object getPdf(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getPdfWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -629,7 +595,6 @@ public Object getPdf(@javax.annotation.Nonnull Integer analysisId, @javax.annota * Gets the PDF found in the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -640,8 +605,8 @@ public Object getPdf(@javax.annotation.Nonnull Integer analysisId, @javax.annota 422 Invalid request parameters - */ - public ApiResponse getPdfWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getPdfValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getPdfWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getPdfValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -650,7 +615,6 @@ public ApiResponse getPdfWithHttpInfo(@javax.annotation.Nonnull Integer * Gets the PDF found in the analysis (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -662,9 +626,9 @@ public ApiResponse getPdfWithHttpInfo(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public okhttp3.Call getPdfAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getPdfAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getPdfValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getPdfValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -672,7 +636,6 @@ public okhttp3.Call getPdfAsync(@javax.annotation.Nonnull Integer analysisId, @j /** * Build call for getSbom * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -684,7 +647,7 @@ public okhttp3.Call getPdfAsync(@javax.annotation.Nonnull Integer analysisId, @j 422 Invalid request parameters - */ - public okhttp3.Call getSbomCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSbomCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -725,23 +688,18 @@ public okhttp3.Call getSbomCall(@javax.annotation.Nonnull Integer analysisId, @j localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getSbomValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSbomValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getSbom(Async)"); } - return getSbomCall(analysisId, authorization, _callback); + return getSbomCall(analysisId, _callback); } @@ -749,7 +707,6 @@ private okhttp3.Call getSbomValidateBeforeCall(@javax.annotation.Nonnull Integer * Gets the software-bill-of-materials (SBOM) found in the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListSBOM * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -760,8 +717,8 @@ private okhttp3.Call getSbomValidateBeforeCall(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public BaseResponseListSBOM getSbom(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getSbomWithHttpInfo(analysisId, authorization); + public BaseResponseListSBOM getSbom(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getSbomWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -769,7 +726,6 @@ public BaseResponseListSBOM getSbom(@javax.annotation.Nonnull Integer analysisId * Gets the software-bill-of-materials (SBOM) found in the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListSBOM> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -780,8 +736,8 @@ public BaseResponseListSBOM getSbom(@javax.annotation.Nonnull Integer analysisId 422 Invalid request parameters - */ - public ApiResponse getSbomWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getSbomValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getSbomWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getSbomValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -790,7 +746,6 @@ public ApiResponse getSbomWithHttpInfo(@javax.annotation.N * Gets the software-bill-of-materials (SBOM) found in the analysis (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -802,9 +757,9 @@ public ApiResponse getSbomWithHttpInfo(@javax.annotation.N 422 Invalid request parameters - */ - public okhttp3.Call getSbomAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSbomAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSbomValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getSbomValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -812,7 +767,6 @@ public okhttp3.Call getSbomAsync(@javax.annotation.Nonnull Integer analysisId, @ /** * Build call for getTags * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -824,7 +778,7 @@ public okhttp3.Call getSbomAsync(@javax.annotation.Nonnull Integer analysisId, @ 422 Invalid request parameters - */ - public okhttp3.Call getTagsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTagsCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -865,23 +819,18 @@ public okhttp3.Call getTagsCall(@javax.annotation.Nonnull Integer analysisId, @j localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getTagsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getTagsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getTags(Async)"); } - return getTagsCall(analysisId, authorization, _callback); + return getTagsCall(analysisId, _callback); } @@ -889,7 +838,6 @@ private okhttp3.Call getTagsValidateBeforeCall(@javax.annotation.Nonnull Integer * Get function tags with maliciousness score * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisTags * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -900,8 +848,8 @@ private okhttp3.Call getTagsValidateBeforeCall(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public BaseResponseAnalysisTags getTags(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getTagsWithHttpInfo(analysisId, authorization); + public BaseResponseAnalysisTags getTags(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getTagsWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -909,7 +857,6 @@ public BaseResponseAnalysisTags getTags(@javax.annotation.Nonnull Integer analys * Get function tags with maliciousness score * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisTags> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -920,8 +867,8 @@ public BaseResponseAnalysisTags getTags(@javax.annotation.Nonnull Integer analys 422 Invalid request parameters - */ - public ApiResponse getTagsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getTagsValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getTagsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getTagsValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -930,7 +877,6 @@ public ApiResponse getTagsWithHttpInfo(@javax.annotati * Get function tags with maliciousness score (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -942,9 +888,9 @@ public ApiResponse getTagsWithHttpInfo(@javax.annotati 422 Invalid request parameters - */ - public okhttp3.Call getTagsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTagsAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTagsValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getTagsValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -952,7 +898,6 @@ public okhttp3.Call getTagsAsync(@javax.annotation.Nonnull Integer analysisId, @ /** * Build call for getVulnerabilities * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -964,7 +909,7 @@ public okhttp3.Call getTagsAsync(@javax.annotation.Nonnull Integer analysisId, @ 422 Invalid request parameters - */ - public okhttp3.Call getVulnerabilitiesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getVulnerabilitiesCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1005,23 +950,18 @@ public okhttp3.Call getVulnerabilitiesCall(@javax.annotation.Nonnull Integer ana localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getVulnerabilitiesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getVulnerabilitiesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getVulnerabilities(Async)"); } - return getVulnerabilitiesCall(analysisId, authorization, _callback); + return getVulnerabilitiesCall(analysisId, _callback); } @@ -1029,7 +969,6 @@ private okhttp3.Call getVulnerabilitiesValidateBeforeCall(@javax.annotation.Nonn * Gets the vulnerabilities found in the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseVulnerabilities * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1040,8 +979,8 @@ private okhttp3.Call getVulnerabilitiesValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseVulnerabilities getVulnerabilities(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getVulnerabilitiesWithHttpInfo(analysisId, authorization); + public BaseResponseVulnerabilities getVulnerabilities(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getVulnerabilitiesWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -1049,7 +988,6 @@ public BaseResponseVulnerabilities getVulnerabilities(@javax.annotation.Nonnull * Gets the vulnerabilities found in the analysis * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseVulnerabilities> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1060,8 +998,8 @@ public BaseResponseVulnerabilities getVulnerabilities(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public ApiResponse getVulnerabilitiesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getVulnerabilitiesValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getVulnerabilitiesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getVulnerabilitiesValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1070,7 +1008,6 @@ public ApiResponse getVulnerabilitiesWithHttpInfo(@ * Gets the vulnerabilities found in the analysis (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1082,9 +1019,9 @@ public ApiResponse getVulnerabilitiesWithHttpInfo(@ 422 Invalid request parameters - */ - public okhttp3.Call getVulnerabilitiesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getVulnerabilitiesAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getVulnerabilitiesValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getVulnerabilitiesValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/AnalysesSecurityChecksApi.java b/src/main/java/ai/reveng/api/AnalysesSecurityChecksApi.java index 8e5152f..585e683 100644 --- a/src/main/java/ai/reveng/api/AnalysesSecurityChecksApi.java +++ b/src/main/java/ai/reveng/api/AnalysesSecurityChecksApi.java @@ -78,7 +78,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for createScurityChecksTask * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -91,7 +90,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 409 Security checks already extracted or queued - */ - public okhttp3.Call createScurityChecksTaskCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createScurityChecksTaskCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -132,23 +131,18 @@ public okhttp3.Call createScurityChecksTaskCall(@javax.annotation.Nonnull Intege localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createScurityChecksTaskValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createScurityChecksTaskValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling createScurityChecksTask(Async)"); } - return createScurityChecksTaskCall(analysisId, authorization, _callback); + return createScurityChecksTaskCall(analysisId, _callback); } @@ -156,7 +150,6 @@ private okhttp3.Call createScurityChecksTaskValidateBeforeCall(@javax.annotation * Queues a security check process * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return QueuedSecurityChecksTaskResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -168,8 +161,8 @@ private okhttp3.Call createScurityChecksTaskValidateBeforeCall(@javax.annotation 409 Security checks already extracted or queued - */ - public QueuedSecurityChecksTaskResponse createScurityChecksTask(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createScurityChecksTaskWithHttpInfo(analysisId, authorization); + public QueuedSecurityChecksTaskResponse createScurityChecksTask(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = createScurityChecksTaskWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -177,7 +170,6 @@ public QueuedSecurityChecksTaskResponse createScurityChecksTask(@javax.annotatio * Queues a security check process * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<QueuedSecurityChecksTaskResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -189,8 +181,8 @@ public QueuedSecurityChecksTaskResponse createScurityChecksTask(@javax.annotatio 409 Security checks already extracted or queued - */ - public ApiResponse createScurityChecksTaskWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createScurityChecksTaskValidateBeforeCall(analysisId, authorization, null); + public ApiResponse createScurityChecksTaskWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = createScurityChecksTaskValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -199,7 +191,6 @@ public ApiResponse createScurityChecksTaskWith * Queues a security check process (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -212,9 +203,9 @@ public ApiResponse createScurityChecksTaskWith 409 Security checks already extracted or queued - */ - public okhttp3.Call createScurityChecksTaskAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createScurityChecksTaskAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createScurityChecksTaskValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = createScurityChecksTaskValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -224,7 +215,6 @@ public okhttp3.Call createScurityChecksTaskAsync(@javax.annotation.Nonnull Integ * @param analysisId (required) * @param page The page number to retrieve. (required) * @param pageSize Number of items per page. (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -236,7 +226,7 @@ public okhttp3.Call createScurityChecksTaskAsync(@javax.annotation.Nonnull Integ 422 Invalid request parameters - */ - public okhttp3.Call getSecurityChecksCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSecurityChecksCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -285,17 +275,12 @@ public okhttp3.Call getSecurityChecksCall(@javax.annotation.Nonnull Integer anal localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getSecurityChecksValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSecurityChecksValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getSecurityChecks(Async)"); @@ -311,7 +296,7 @@ private okhttp3.Call getSecurityChecksValidateBeforeCall(@javax.annotation.Nonnu throw new ApiException("Missing the required parameter 'pageSize' when calling getSecurityChecks(Async)"); } - return getSecurityChecksCall(analysisId, page, pageSize, authorization, _callback); + return getSecurityChecksCall(analysisId, page, pageSize, _callback); } @@ -321,7 +306,6 @@ private okhttp3.Call getSecurityChecksValidateBeforeCall(@javax.annotation.Nonnu * @param analysisId (required) * @param page The page number to retrieve. (required) * @param pageSize Number of items per page. (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseSecurityChecksResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -332,8 +316,8 @@ private okhttp3.Call getSecurityChecksValidateBeforeCall(@javax.annotation.Nonnu 422 Invalid request parameters - */ - public BaseResponseSecurityChecksResponse getSecurityChecks(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getSecurityChecksWithHttpInfo(analysisId, page, pageSize, authorization); + public BaseResponseSecurityChecksResponse getSecurityChecks(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize) throws ApiException { + ApiResponse localVarResp = getSecurityChecksWithHttpInfo(analysisId, page, pageSize); return localVarResp.getData(); } @@ -343,7 +327,6 @@ public BaseResponseSecurityChecksResponse getSecurityChecks(@javax.annotation.No * @param analysisId (required) * @param page The page number to retrieve. (required) * @param pageSize Number of items per page. (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseSecurityChecksResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -354,8 +337,8 @@ public BaseResponseSecurityChecksResponse getSecurityChecks(@javax.annotation.No 422 Invalid request parameters - */ - public ApiResponse getSecurityChecksWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getSecurityChecksValidateBeforeCall(analysisId, page, pageSize, authorization, null); + public ApiResponse getSecurityChecksWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize) throws ApiException { + okhttp3.Call localVarCall = getSecurityChecksValidateBeforeCall(analysisId, page, pageSize, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -366,7 +349,6 @@ public ApiResponse getSecurityChecksWithHttp * @param analysisId (required) * @param page The page number to retrieve. (required) * @param pageSize Number of items per page. (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -378,9 +360,9 @@ public ApiResponse getSecurityChecksWithHttp 422 Invalid request parameters - */ - public okhttp3.Call getSecurityChecksAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSecurityChecksAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer page, @javax.annotation.Nonnull Integer pageSize, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSecurityChecksValidateBeforeCall(analysisId, page, pageSize, authorization, _callback); + okhttp3.Call localVarCall = getSecurityChecksValidateBeforeCall(analysisId, page, pageSize, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -388,7 +370,6 @@ public okhttp3.Call getSecurityChecksAsync(@javax.annotation.Nonnull Integer ana /** * Build call for getSecurityChecksTaskStatus * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -400,7 +381,7 @@ public okhttp3.Call getSecurityChecksAsync(@javax.annotation.Nonnull Integer ana 422 Invalid request parameters - */ - public okhttp3.Call getSecurityChecksTaskStatusCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSecurityChecksTaskStatusCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -441,23 +422,18 @@ public okhttp3.Call getSecurityChecksTaskStatusCall(@javax.annotation.Nonnull In localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getSecurityChecksTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSecurityChecksTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getSecurityChecksTaskStatus(Async)"); } - return getSecurityChecksTaskStatusCall(analysisId, authorization, _callback); + return getSecurityChecksTaskStatusCall(analysisId, _callback); } @@ -465,7 +441,6 @@ private okhttp3.Call getSecurityChecksTaskStatusValidateBeforeCall(@javax.annota * Check the status of a security check process * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return CheckSecurityChecksTaskResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -476,8 +451,8 @@ private okhttp3.Call getSecurityChecksTaskStatusValidateBeforeCall(@javax.annota 422 Invalid request parameters - */ - public CheckSecurityChecksTaskResponse getSecurityChecksTaskStatus(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getSecurityChecksTaskStatusWithHttpInfo(analysisId, authorization); + public CheckSecurityChecksTaskResponse getSecurityChecksTaskStatus(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getSecurityChecksTaskStatusWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -485,7 +460,6 @@ public CheckSecurityChecksTaskResponse getSecurityChecksTaskStatus(@javax.annota * Check the status of a security check process * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<CheckSecurityChecksTaskResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -496,8 +470,8 @@ public CheckSecurityChecksTaskResponse getSecurityChecksTaskStatus(@javax.annota 422 Invalid request parameters - */ - public ApiResponse getSecurityChecksTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getSecurityChecksTaskStatusValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getSecurityChecksTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getSecurityChecksTaskStatusValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -506,7 +480,6 @@ public ApiResponse getSecurityChecksTaskStatusW * Check the status of a security check process (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -518,9 +491,9 @@ public ApiResponse getSecurityChecksTaskStatusW 422 Invalid request parameters - */ - public okhttp3.Call getSecurityChecksTaskStatusAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSecurityChecksTaskStatusAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSecurityChecksTaskStatusValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getSecurityChecksTaskStatusValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/AuthenticationUsersApi.java b/src/main/java/ai/reveng/api/AuthenticationUsersApi.java index f519926..31ddc2c 100644 --- a/src/main/java/ai/reveng/api/AuthenticationUsersApi.java +++ b/src/main/java/ai/reveng/api/AuthenticationUsersApi.java @@ -79,7 +79,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for getRequesterUserInfo - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -91,7 +90,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call getRequesterUserInfoCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRequesterUserInfoCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -131,25 +130,19 @@ public okhttp3.Call getRequesterUserInfoCall(@javax.annotation.Nullable String a localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getRequesterUserInfoValidateBeforeCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return getRequesterUserInfoCall(authorization, _callback); + private okhttp3.Call getRequesterUserInfoValidateBeforeCall(final ApiCallback _callback) throws ApiException { + return getRequesterUserInfoCall(_callback); } /** * Get the requesters user information * - * @param authorization API Key bearer token (optional) * @return BaseResponseGetUserResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -160,15 +153,14 @@ private okhttp3.Call getRequesterUserInfoValidateBeforeCall(@javax.annotation.Nu 422 Invalid request parameters - */ - public BaseResponseGetUserResponse getRequesterUserInfo(@javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getRequesterUserInfoWithHttpInfo(authorization); + public BaseResponseGetUserResponse getRequesterUserInfo() throws ApiException { + ApiResponse localVarResp = getRequesterUserInfoWithHttpInfo(); return localVarResp.getData(); } /** * Get the requesters user information * - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseGetUserResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -179,8 +171,8 @@ public BaseResponseGetUserResponse getRequesterUserInfo(@javax.annotation.Nullab 422 Invalid request parameters - */ - public ApiResponse getRequesterUserInfoWithHttpInfo(@javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getRequesterUserInfoValidateBeforeCall(authorization, null); + public ApiResponse getRequesterUserInfoWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = getRequesterUserInfoValidateBeforeCall(null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -188,7 +180,6 @@ public ApiResponse getRequesterUserInfoWithHttpInfo /** * Get the requesters user information (asynchronously) * - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -200,9 +191,9 @@ public ApiResponse getRequesterUserInfoWithHttpInfo 422 Invalid request parameters - */ - public okhttp3.Call getRequesterUserInfoAsync(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRequesterUserInfoAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getRequesterUserInfoValidateBeforeCall(authorization, _callback); + okhttp3.Call localVarCall = getRequesterUserInfoValidateBeforeCall(_callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -210,7 +201,6 @@ public okhttp3.Call getRequesterUserInfoAsync(@javax.annotation.Nullable String /** * Build call for getUser * @param userId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -222,7 +212,7 @@ public okhttp3.Call getRequesterUserInfoAsync(@javax.annotation.Nullable String 422 Invalid request parameters - */ - public okhttp3.Call getUserCall(@javax.annotation.Nonnull Integer userId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getUserCall(@javax.annotation.Nonnull Integer userId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -263,23 +253,18 @@ public okhttp3.Call getUserCall(@javax.annotation.Nonnull Integer userId, @javax localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getUserValidateBeforeCall(@javax.annotation.Nonnull Integer userId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getUserValidateBeforeCall(@javax.annotation.Nonnull Integer userId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'userId' is set if (userId == null) { throw new ApiException("Missing the required parameter 'userId' when calling getUser(Async)"); } - return getUserCall(userId, authorization, _callback); + return getUserCall(userId, _callback); } @@ -287,7 +272,6 @@ private okhttp3.Call getUserValidateBeforeCall(@javax.annotation.Nonnull Integer * Get a user's public information * * @param userId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseGetPublicUserResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -298,8 +282,8 @@ private okhttp3.Call getUserValidateBeforeCall(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public BaseResponseGetPublicUserResponse getUser(@javax.annotation.Nonnull Integer userId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getUserWithHttpInfo(userId, authorization); + public BaseResponseGetPublicUserResponse getUser(@javax.annotation.Nonnull Integer userId) throws ApiException { + ApiResponse localVarResp = getUserWithHttpInfo(userId); return localVarResp.getData(); } @@ -307,7 +291,6 @@ public BaseResponseGetPublicUserResponse getUser(@javax.annotation.Nonnull Integ * Get a user's public information * * @param userId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseGetPublicUserResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -318,8 +301,8 @@ public BaseResponseGetPublicUserResponse getUser(@javax.annotation.Nonnull Integ 422 Invalid request parameters - */ - public ApiResponse getUserWithHttpInfo(@javax.annotation.Nonnull Integer userId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getUserValidateBeforeCall(userId, authorization, null); + public ApiResponse getUserWithHttpInfo(@javax.annotation.Nonnull Integer userId) throws ApiException { + okhttp3.Call localVarCall = getUserValidateBeforeCall(userId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -328,7 +311,6 @@ public ApiResponse getUserWithHttpInfo(@javax * Get a user's public information (asynchronously) * * @param userId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -340,16 +322,15 @@ public ApiResponse getUserWithHttpInfo(@javax 422 Invalid request parameters - */ - public okhttp3.Call getUserAsync(@javax.annotation.Nonnull Integer userId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getUserAsync(@javax.annotation.Nonnull Integer userId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getUserValidateBeforeCall(userId, authorization, _callback); + okhttp3.Call localVarCall = getUserValidateBeforeCall(userId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** * Build call for getUserActivity - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -361,7 +342,7 @@ public okhttp3.Call getUserAsync(@javax.annotation.Nonnull Integer userId, @java 422 Invalid request parameters - */ - public okhttp3.Call getUserActivityCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getUserActivityCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -401,25 +382,19 @@ public okhttp3.Call getUserActivityCall(@javax.annotation.Nullable String author localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getUserActivityValidateBeforeCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return getUserActivityCall(authorization, _callback); + private okhttp3.Call getUserActivityValidateBeforeCall(final ApiCallback _callback) throws ApiException { + return getUserActivityCall(_callback); } /** * Get auth user activity * - * @param authorization API Key bearer token (optional) * @return BaseResponseListUserActivityResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -430,15 +405,14 @@ private okhttp3.Call getUserActivityValidateBeforeCall(@javax.annotation.Nullabl 422 Invalid request parameters - */ - public BaseResponseListUserActivityResponse getUserActivity(@javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getUserActivityWithHttpInfo(authorization); + public BaseResponseListUserActivityResponse getUserActivity() throws ApiException { + ApiResponse localVarResp = getUserActivityWithHttpInfo(); return localVarResp.getData(); } /** * Get auth user activity * - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListUserActivityResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -449,8 +423,8 @@ public BaseResponseListUserActivityResponse getUserActivity(@javax.annotation.Nu 422 Invalid request parameters - */ - public ApiResponse getUserActivityWithHttpInfo(@javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getUserActivityValidateBeforeCall(authorization, null); + public ApiResponse getUserActivityWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = getUserActivityValidateBeforeCall(null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -458,7 +432,6 @@ public ApiResponse getUserActivityWithHttp /** * Get auth user activity (asynchronously) * - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -470,16 +443,15 @@ public ApiResponse getUserActivityWithHttp 422 Invalid request parameters - */ - public okhttp3.Call getUserActivityAsync(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getUserActivityAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getUserActivityValidateBeforeCall(authorization, _callback); + okhttp3.Call localVarCall = getUserActivityValidateBeforeCall(_callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** * Build call for getUserComments - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -491,7 +463,7 @@ public okhttp3.Call getUserActivityAsync(@javax.annotation.Nullable String autho 422 Invalid request parameters - */ - public okhttp3.Call getUserCommentsCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getUserCommentsCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -531,25 +503,19 @@ public okhttp3.Call getUserCommentsCall(@javax.annotation.Nullable String author localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getUserCommentsValidateBeforeCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return getUserCommentsCall(authorization, _callback); + private okhttp3.Call getUserCommentsValidateBeforeCall(final ApiCallback _callback) throws ApiException { + return getUserCommentsCall(_callback); } /** * Get comments by user * Retrieves all comments created by a specific user. Only returns comments for resources the requesting user has access to. - * @param authorization API Key bearer token (optional) * @return BaseResponseListCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -560,15 +526,14 @@ private okhttp3.Call getUserCommentsValidateBeforeCall(@javax.annotation.Nullabl 422 Invalid request parameters - */ - public BaseResponseListCommentResponse getUserComments(@javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getUserCommentsWithHttpInfo(authorization); + public BaseResponseListCommentResponse getUserComments() throws ApiException { + ApiResponse localVarResp = getUserCommentsWithHttpInfo(); return localVarResp.getData(); } /** * Get comments by user * Retrieves all comments created by a specific user. Only returns comments for resources the requesting user has access to. - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -579,8 +544,8 @@ public BaseResponseListCommentResponse getUserComments(@javax.annotation.Nullabl 422 Invalid request parameters - */ - public ApiResponse getUserCommentsWithHttpInfo(@javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getUserCommentsValidateBeforeCall(authorization, null); + public ApiResponse getUserCommentsWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = getUserCommentsValidateBeforeCall(null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -588,7 +553,6 @@ public ApiResponse getUserCommentsWithHttpInfo( /** * Get comments by user (asynchronously) * Retrieves all comments created by a specific user. Only returns comments for resources the requesting user has access to. - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -600,9 +564,9 @@ public ApiResponse getUserCommentsWithHttpInfo( 422 Invalid request parameters - */ - public okhttp3.Call getUserCommentsAsync(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getUserCommentsAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getUserCommentsValidateBeforeCall(authorization, _callback); + okhttp3.Call localVarCall = getUserCommentsValidateBeforeCall(_callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/BinariesApi.java b/src/main/java/ai/reveng/api/BinariesApi.java index d6a70f7..7647da6 100644 --- a/src/main/java/ai/reveng/api/BinariesApi.java +++ b/src/main/java/ai/reveng/api/BinariesApi.java @@ -79,7 +79,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for downloadZippedBinary * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -91,7 +90,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call downloadZippedBinaryCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call downloadZippedBinaryCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -132,23 +131,18 @@ public okhttp3.Call downloadZippedBinaryCall(@javax.annotation.Nonnull Integer b localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call downloadZippedBinaryValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call downloadZippedBinaryValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling downloadZippedBinary(Async)"); } - return downloadZippedBinaryCall(binaryId, authorization, _callback); + return downloadZippedBinaryCall(binaryId, _callback); } @@ -156,7 +150,6 @@ private okhttp3.Call downloadZippedBinaryValidateBeforeCall(@javax.annotation.No * Downloads a zipped binary with password protection * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -167,8 +160,8 @@ private okhttp3.Call downloadZippedBinaryValidateBeforeCall(@javax.annotation.No 422 Invalid request parameters - */ - public Object downloadZippedBinary(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = downloadZippedBinaryWithHttpInfo(binaryId, authorization); + public Object downloadZippedBinary(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = downloadZippedBinaryWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -176,7 +169,6 @@ public Object downloadZippedBinary(@javax.annotation.Nonnull Integer binaryId, @ * Downloads a zipped binary with password protection * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -187,8 +179,8 @@ public Object downloadZippedBinary(@javax.annotation.Nonnull Integer binaryId, @ 422 Invalid request parameters - */ - public ApiResponse downloadZippedBinaryWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = downloadZippedBinaryValidateBeforeCall(binaryId, authorization, null); + public ApiResponse downloadZippedBinaryWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = downloadZippedBinaryValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -197,7 +189,6 @@ public ApiResponse downloadZippedBinaryWithHttpInfo(@javax.annotation.No * Downloads a zipped binary with password protection (asynchronously) * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -209,9 +200,9 @@ public ApiResponse downloadZippedBinaryWithHttpInfo(@javax.annotation.No 422 Invalid request parameters - */ - public okhttp3.Call downloadZippedBinaryAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call downloadZippedBinaryAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = downloadZippedBinaryValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = downloadZippedBinaryValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -219,7 +210,6 @@ public okhttp3.Call downloadZippedBinaryAsync(@javax.annotation.Nonnull Integer /** * Build call for getBinaryAdditionalDetails * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -231,7 +221,7 @@ public okhttp3.Call downloadZippedBinaryAsync(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public okhttp3.Call getBinaryAdditionalDetailsCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryAdditionalDetailsCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -272,23 +262,18 @@ public okhttp3.Call getBinaryAdditionalDetailsCall(@javax.annotation.Nonnull Int localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getBinaryAdditionalDetailsValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getBinaryAdditionalDetailsValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling getBinaryAdditionalDetails(Async)"); } - return getBinaryAdditionalDetailsCall(binaryId, authorization, _callback); + return getBinaryAdditionalDetailsCall(binaryId, _callback); } @@ -296,7 +281,6 @@ private okhttp3.Call getBinaryAdditionalDetailsValidateBeforeCall(@javax.annotat * Gets the additional details of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBinaryAdditionalResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -307,8 +291,8 @@ private okhttp3.Call getBinaryAdditionalDetailsValidateBeforeCall(@javax.annotat 422 Invalid request parameters - */ - public BaseResponseBinaryAdditionalResponse getBinaryAdditionalDetails(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getBinaryAdditionalDetailsWithHttpInfo(binaryId, authorization); + public BaseResponseBinaryAdditionalResponse getBinaryAdditionalDetails(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = getBinaryAdditionalDetailsWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -316,7 +300,6 @@ public BaseResponseBinaryAdditionalResponse getBinaryAdditionalDetails(@javax.an * Gets the additional details of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBinaryAdditionalResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -327,8 +310,8 @@ public BaseResponseBinaryAdditionalResponse getBinaryAdditionalDetails(@javax.an 422 Invalid request parameters - */ - public ApiResponse getBinaryAdditionalDetailsWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getBinaryAdditionalDetailsValidateBeforeCall(binaryId, authorization, null); + public ApiResponse getBinaryAdditionalDetailsWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = getBinaryAdditionalDetailsValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -337,7 +320,6 @@ public ApiResponse getBinaryAdditionalDeta * Gets the additional details of a binary (asynchronously) * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -349,9 +331,9 @@ public ApiResponse getBinaryAdditionalDeta 422 Invalid request parameters - */ - public okhttp3.Call getBinaryAdditionalDetailsAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryAdditionalDetailsAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getBinaryAdditionalDetailsValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = getBinaryAdditionalDetailsValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -359,7 +341,6 @@ public okhttp3.Call getBinaryAdditionalDetailsAsync(@javax.annotation.Nonnull In /** * Build call for getBinaryDetails * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -371,7 +352,7 @@ public okhttp3.Call getBinaryAdditionalDetailsAsync(@javax.annotation.Nonnull In 422 Invalid request parameters - */ - public okhttp3.Call getBinaryDetailsCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryDetailsCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -412,23 +393,18 @@ public okhttp3.Call getBinaryDetailsCall(@javax.annotation.Nonnull Integer binar localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getBinaryDetailsValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getBinaryDetailsValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling getBinaryDetails(Async)"); } - return getBinaryDetailsCall(binaryId, authorization, _callback); + return getBinaryDetailsCall(binaryId, _callback); } @@ -436,7 +412,6 @@ private okhttp3.Call getBinaryDetailsValidateBeforeCall(@javax.annotation.Nonnul * Gets the details of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBinaryDetailsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -447,8 +422,8 @@ private okhttp3.Call getBinaryDetailsValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponseBinaryDetailsResponse getBinaryDetails(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getBinaryDetailsWithHttpInfo(binaryId, authorization); + public BaseResponseBinaryDetailsResponse getBinaryDetails(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = getBinaryDetailsWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -456,7 +431,6 @@ public BaseResponseBinaryDetailsResponse getBinaryDetails(@javax.annotation.Nonn * Gets the details of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBinaryDetailsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -467,8 +441,8 @@ public BaseResponseBinaryDetailsResponse getBinaryDetails(@javax.annotation.Nonn 422 Invalid request parameters - */ - public ApiResponse getBinaryDetailsWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getBinaryDetailsValidateBeforeCall(binaryId, authorization, null); + public ApiResponse getBinaryDetailsWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = getBinaryDetailsValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -477,7 +451,6 @@ public ApiResponse getBinaryDetailsWithHttpIn * Gets the details of a binary (asynchronously) * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -489,9 +462,9 @@ public ApiResponse getBinaryDetailsWithHttpIn 422 Invalid request parameters - */ - public okhttp3.Call getBinaryDetailsAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryDetailsAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getBinaryDetailsValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = getBinaryDetailsValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -499,7 +472,6 @@ public okhttp3.Call getBinaryDetailsAsync(@javax.annotation.Nonnull Integer bina /** * Build call for getBinaryDieInfo * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -511,7 +483,7 @@ public okhttp3.Call getBinaryDetailsAsync(@javax.annotation.Nonnull Integer bina 422 Invalid request parameters - */ - public okhttp3.Call getBinaryDieInfoCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryDieInfoCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -552,23 +524,18 @@ public okhttp3.Call getBinaryDieInfoCall(@javax.annotation.Nonnull Integer binar localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getBinaryDieInfoValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getBinaryDieInfoValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling getBinaryDieInfo(Async)"); } - return getBinaryDieInfoCall(binaryId, authorization, _callback); + return getBinaryDieInfoCall(binaryId, _callback); } @@ -576,7 +543,6 @@ private okhttp3.Call getBinaryDieInfoValidateBeforeCall(@javax.annotation.Nonnul * Gets the die info of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListDieMatch * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -587,8 +553,8 @@ private okhttp3.Call getBinaryDieInfoValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponseListDieMatch getBinaryDieInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getBinaryDieInfoWithHttpInfo(binaryId, authorization); + public BaseResponseListDieMatch getBinaryDieInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = getBinaryDieInfoWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -596,7 +562,6 @@ public BaseResponseListDieMatch getBinaryDieInfo(@javax.annotation.Nonnull Integ * Gets the die info of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListDieMatch> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -607,8 +572,8 @@ public BaseResponseListDieMatch getBinaryDieInfo(@javax.annotation.Nonnull Integ 422 Invalid request parameters - */ - public ApiResponse getBinaryDieInfoWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getBinaryDieInfoValidateBeforeCall(binaryId, authorization, null); + public ApiResponse getBinaryDieInfoWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = getBinaryDieInfoValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -617,7 +582,6 @@ public ApiResponse getBinaryDieInfoWithHttpInfo(@javax * Gets the die info of a binary (asynchronously) * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -629,9 +593,9 @@ public ApiResponse getBinaryDieInfoWithHttpInfo(@javax 422 Invalid request parameters - */ - public okhttp3.Call getBinaryDieInfoAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryDieInfoAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getBinaryDieInfoValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = getBinaryDieInfoValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -639,7 +603,6 @@ public okhttp3.Call getBinaryDieInfoAsync(@javax.annotation.Nonnull Integer bina /** * Build call for getBinaryExternals * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -651,7 +614,7 @@ public okhttp3.Call getBinaryDieInfoAsync(@javax.annotation.Nonnull Integer bina 422 Invalid request parameters - */ - public okhttp3.Call getBinaryExternalsCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryExternalsCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -692,23 +655,18 @@ public okhttp3.Call getBinaryExternalsCall(@javax.annotation.Nonnull Integer bin localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getBinaryExternalsValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getBinaryExternalsValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling getBinaryExternals(Async)"); } - return getBinaryExternalsCall(binaryId, authorization, _callback); + return getBinaryExternalsCall(binaryId, _callback); } @@ -716,7 +674,6 @@ private okhttp3.Call getBinaryExternalsValidateBeforeCall(@javax.annotation.Nonn * Gets the external details of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBinaryExternalsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -727,8 +684,8 @@ private okhttp3.Call getBinaryExternalsValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseBinaryExternalsResponse getBinaryExternals(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getBinaryExternalsWithHttpInfo(binaryId, authorization); + public BaseResponseBinaryExternalsResponse getBinaryExternals(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = getBinaryExternalsWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -736,7 +693,6 @@ public BaseResponseBinaryExternalsResponse getBinaryExternals(@javax.annotation. * Gets the external details of a binary * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBinaryExternalsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -747,8 +703,8 @@ public BaseResponseBinaryExternalsResponse getBinaryExternals(@javax.annotation. 422 Invalid request parameters - */ - public ApiResponse getBinaryExternalsWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getBinaryExternalsValidateBeforeCall(binaryId, authorization, null); + public ApiResponse getBinaryExternalsWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = getBinaryExternalsValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -757,7 +713,6 @@ public ApiResponse getBinaryExternalsWithHt * Gets the external details of a binary (asynchronously) * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -769,9 +724,9 @@ public ApiResponse getBinaryExternalsWithHt 422 Invalid request parameters - */ - public okhttp3.Call getBinaryExternalsAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinaryExternalsAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getBinaryExternalsValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = getBinaryExternalsValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -779,7 +734,6 @@ public okhttp3.Call getBinaryExternalsAsync(@javax.annotation.Nonnull Integer bi /** * Build call for getRelatedBinaries * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -792,7 +746,7 @@ public okhttp3.Call getBinaryExternalsAsync(@javax.annotation.Nonnull Integer bi 403 Forbidden - */ - public okhttp3.Call getRelatedBinariesCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRelatedBinariesCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -833,23 +787,18 @@ public okhttp3.Call getRelatedBinariesCall(@javax.annotation.Nonnull Integer bin localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getRelatedBinariesValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getRelatedBinariesValidateBeforeCall(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'binaryId' is set if (binaryId == null) { throw new ApiException("Missing the required parameter 'binaryId' when calling getRelatedBinaries(Async)"); } - return getRelatedBinariesCall(binaryId, authorization, _callback); + return getRelatedBinariesCall(binaryId, _callback); } @@ -857,7 +806,6 @@ private okhttp3.Call getRelatedBinariesValidateBeforeCall(@javax.annotation.Nonn * Gets the related binaries of a binary. * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseChildBinariesResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -869,8 +817,8 @@ private okhttp3.Call getRelatedBinariesValidateBeforeCall(@javax.annotation.Nonn 403 Forbidden - */ - public BaseResponseChildBinariesResponse getRelatedBinaries(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getRelatedBinariesWithHttpInfo(binaryId, authorization); + public BaseResponseChildBinariesResponse getRelatedBinaries(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + ApiResponse localVarResp = getRelatedBinariesWithHttpInfo(binaryId); return localVarResp.getData(); } @@ -878,7 +826,6 @@ public BaseResponseChildBinariesResponse getRelatedBinaries(@javax.annotation.No * Gets the related binaries of a binary. * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseChildBinariesResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -890,8 +837,8 @@ public BaseResponseChildBinariesResponse getRelatedBinaries(@javax.annotation.No 403 Forbidden - */ - public ApiResponse getRelatedBinariesWithHttpInfo(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getRelatedBinariesValidateBeforeCall(binaryId, authorization, null); + public ApiResponse getRelatedBinariesWithHttpInfo(@javax.annotation.Nonnull Integer binaryId) throws ApiException { + okhttp3.Call localVarCall = getRelatedBinariesValidateBeforeCall(binaryId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -900,7 +847,6 @@ public ApiResponse getRelatedBinariesWithHttp * Gets the related binaries of a binary. (asynchronously) * * @param binaryId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -913,9 +859,9 @@ public ApiResponse getRelatedBinariesWithHttp 403 Forbidden - */ - public okhttp3.Call getRelatedBinariesAsync(@javax.annotation.Nonnull Integer binaryId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRelatedBinariesAsync(@javax.annotation.Nonnull Integer binaryId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getRelatedBinariesValidateBeforeCall(binaryId, authorization, _callback); + okhttp3.Call localVarCall = getRelatedBinariesValidateBeforeCall(binaryId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/CollectionsApi.java b/src/main/java/ai/reveng/api/CollectionsApi.java index 22cefbf..0fceb40 100644 --- a/src/main/java/ai/reveng/api/CollectionsApi.java +++ b/src/main/java/ai/reveng/api/CollectionsApi.java @@ -86,7 +86,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for createCollection * @param collectionCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -98,7 +97,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call createCollectionCall(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createCollectionCall(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -139,23 +138,18 @@ public okhttp3.Call createCollectionCall(@javax.annotation.Nonnull CollectionCre localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createCollectionValidateBeforeCall(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createCollectionValidateBeforeCall(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'collectionCreateRequest' is set if (collectionCreateRequest == null) { throw new ApiException("Missing the required parameter 'collectionCreateRequest' when calling createCollection(Async)"); } - return createCollectionCall(collectionCreateRequest, authorization, _callback); + return createCollectionCall(collectionCreateRequest, _callback); } @@ -163,7 +157,6 @@ private okhttp3.Call createCollectionValidateBeforeCall(@javax.annotation.Nonnul * Creates new collection information * A collection is a group of binaries that are related in some way. This endpoint creates a new collection and allows you to add tags and binaries to it. If you add tags or binaries to the collection, they will be returned in the response. * @param collectionCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCollectionResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -174,8 +167,8 @@ private okhttp3.Call createCollectionValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponseCollectionResponse createCollection(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createCollectionWithHttpInfo(collectionCreateRequest, authorization); + public BaseResponseCollectionResponse createCollection(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest) throws ApiException { + ApiResponse localVarResp = createCollectionWithHttpInfo(collectionCreateRequest); return localVarResp.getData(); } @@ -183,7 +176,6 @@ public BaseResponseCollectionResponse createCollection(@javax.annotation.Nonnull * Creates new collection information * A collection is a group of binaries that are related in some way. This endpoint creates a new collection and allows you to add tags and binaries to it. If you add tags or binaries to the collection, they will be returned in the response. * @param collectionCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCollectionResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -194,8 +186,8 @@ public BaseResponseCollectionResponse createCollection(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public ApiResponse createCollectionWithHttpInfo(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createCollectionValidateBeforeCall(collectionCreateRequest, authorization, null); + public ApiResponse createCollectionWithHttpInfo(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest) throws ApiException { + okhttp3.Call localVarCall = createCollectionValidateBeforeCall(collectionCreateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -204,7 +196,6 @@ public ApiResponse createCollectionWithHttpInfo( * Creates new collection information (asynchronously) * A collection is a group of binaries that are related in some way. This endpoint creates a new collection and allows you to add tags and binaries to it. If you add tags or binaries to the collection, they will be returned in the response. * @param collectionCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -216,9 +207,9 @@ public ApiResponse createCollectionWithHttpInfo( 422 Invalid request parameters - */ - public okhttp3.Call createCollectionAsync(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createCollectionAsync(@javax.annotation.Nonnull CollectionCreateRequest collectionCreateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createCollectionValidateBeforeCall(collectionCreateRequest, authorization, _callback); + okhttp3.Call localVarCall = createCollectionValidateBeforeCall(collectionCreateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -226,7 +217,6 @@ public okhttp3.Call createCollectionAsync(@javax.annotation.Nonnull CollectionCr /** * Build call for deleteCollection * @param collectionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -238,7 +228,7 @@ public okhttp3.Call createCollectionAsync(@javax.annotation.Nonnull CollectionCr 422 Invalid request parameters - */ - public okhttp3.Call deleteCollectionCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteCollectionCall(@javax.annotation.Nonnull Integer collectionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -279,23 +269,18 @@ public okhttp3.Call deleteCollectionCall(@javax.annotation.Nonnull Integer colle localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteCollectionValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteCollectionValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'collectionId' is set if (collectionId == null) { throw new ApiException("Missing the required parameter 'collectionId' when calling deleteCollection(Async)"); } - return deleteCollectionCall(collectionId, authorization, _callback); + return deleteCollectionCall(collectionId, _callback); } @@ -303,7 +288,6 @@ private okhttp3.Call deleteCollectionValidateBeforeCall(@javax.annotation.Nonnul * Deletes a collection * Deletes a collection * @param collectionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBool * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -314,8 +298,8 @@ private okhttp3.Call deleteCollectionValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponseBool deleteCollection(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = deleteCollectionWithHttpInfo(collectionId, authorization); + public BaseResponseBool deleteCollection(@javax.annotation.Nonnull Integer collectionId) throws ApiException { + ApiResponse localVarResp = deleteCollectionWithHttpInfo(collectionId); return localVarResp.getData(); } @@ -323,7 +307,6 @@ public BaseResponseBool deleteCollection(@javax.annotation.Nonnull Integer colle * Deletes a collection * Deletes a collection * @param collectionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBool> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -334,8 +317,8 @@ public BaseResponseBool deleteCollection(@javax.annotation.Nonnull Integer colle 422 Invalid request parameters - */ - public ApiResponse deleteCollectionWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteCollectionValidateBeforeCall(collectionId, authorization, null); + public ApiResponse deleteCollectionWithHttpInfo(@javax.annotation.Nonnull Integer collectionId) throws ApiException { + okhttp3.Call localVarCall = deleteCollectionValidateBeforeCall(collectionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -344,7 +327,6 @@ public ApiResponse deleteCollectionWithHttpInfo(@javax.annotat * Deletes a collection (asynchronously) * Deletes a collection * @param collectionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -356,9 +338,9 @@ public ApiResponse deleteCollectionWithHttpInfo(@javax.annotat 422 Invalid request parameters - */ - public okhttp3.Call deleteCollectionAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteCollectionAsync(@javax.annotation.Nonnull Integer collectionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteCollectionValidateBeforeCall(collectionId, authorization, _callback); + okhttp3.Call localVarCall = deleteCollectionValidateBeforeCall(collectionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -368,7 +350,6 @@ public okhttp3.Call deleteCollectionAsync(@javax.annotation.Nonnull Integer coll * @param collectionId (required) * @param includeTags (optional, default to false) * @param includeBinaries (optional, default to false) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -380,7 +361,7 @@ public okhttp3.Call deleteCollectionAsync(@javax.annotation.Nonnull Integer coll 422 Invalid request parameters - */ - public okhttp3.Call getCollectionCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCollectionCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -429,23 +410,18 @@ public okhttp3.Call getCollectionCall(@javax.annotation.Nonnull Integer collecti localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getCollectionValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getCollectionValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, final ApiCallback _callback) throws ApiException { // verify the required parameter 'collectionId' is set if (collectionId == null) { throw new ApiException("Missing the required parameter 'collectionId' when calling getCollection(Async)"); } - return getCollectionCall(collectionId, includeTags, includeBinaries, authorization, _callback); + return getCollectionCall(collectionId, includeTags, includeBinaries, _callback); } @@ -455,7 +431,6 @@ private okhttp3.Call getCollectionValidateBeforeCall(@javax.annotation.Nonnull I * @param collectionId (required) * @param includeTags (optional, default to false) * @param includeBinaries (optional, default to false) - * @param authorization API Key bearer token (optional) * @return BaseResponseCollectionResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -466,8 +441,8 @@ private okhttp3.Call getCollectionValidateBeforeCall(@javax.annotation.Nonnull I 422 Invalid request parameters - */ - public BaseResponseCollectionResponse getCollection(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getCollectionWithHttpInfo(collectionId, includeTags, includeBinaries, authorization); + public BaseResponseCollectionResponse getCollection(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries) throws ApiException { + ApiResponse localVarResp = getCollectionWithHttpInfo(collectionId, includeTags, includeBinaries); return localVarResp.getData(); } @@ -477,7 +452,6 @@ public BaseResponseCollectionResponse getCollection(@javax.annotation.Nonnull In * @param collectionId (required) * @param includeTags (optional, default to false) * @param includeBinaries (optional, default to false) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCollectionResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -488,8 +462,8 @@ public BaseResponseCollectionResponse getCollection(@javax.annotation.Nonnull In 422 Invalid request parameters - */ - public ApiResponse getCollectionWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getCollectionValidateBeforeCall(collectionId, includeTags, includeBinaries, authorization, null); + public ApiResponse getCollectionWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries) throws ApiException { + okhttp3.Call localVarCall = getCollectionValidateBeforeCall(collectionId, includeTags, includeBinaries, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -500,7 +474,6 @@ public ApiResponse getCollectionWithHttpInfo(@ja * @param collectionId (required) * @param includeTags (optional, default to false) * @param includeBinaries (optional, default to false) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -512,9 +485,9 @@ public ApiResponse getCollectionWithHttpInfo(@ja 422 Invalid request parameters - */ - public okhttp3.Call getCollectionAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCollectionAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nullable Boolean includeTags, @javax.annotation.Nullable Boolean includeBinaries, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getCollectionValidateBeforeCall(collectionId, includeTags, includeBinaries, authorization, _callback); + okhttp3.Call localVarCall = getCollectionValidateBeforeCall(collectionId, includeTags, includeBinaries, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -527,7 +500,6 @@ public okhttp3.Call getCollectionAsync(@javax.annotation.Nonnull Integer collect * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -539,7 +511,7 @@ public okhttp3.Call getCollectionAsync(@javax.annotation.Nonnull Integer collect 422 Invalid request parameters - */ - public okhttp3.Call listCollectionsCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listCollectionsCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -603,18 +575,13 @@ public okhttp3.Call listCollectionsCall(@javax.annotation.Nullable String search localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call listCollectionsValidateBeforeCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return listCollectionsCall(searchTerm, filters, limit, offset, orderBy, order, authorization, _callback); + private okhttp3.Call listCollectionsValidateBeforeCall(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, final ApiCallback _callback) throws ApiException { + return listCollectionsCall(searchTerm, filters, limit, offset, orderBy, order, _callback); } @@ -627,7 +594,6 @@ private okhttp3.Call listCollectionsValidateBeforeCall(@javax.annotation.Nullabl * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseListCollectionResults * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -638,8 +604,8 @@ private okhttp3.Call listCollectionsValidateBeforeCall(@javax.annotation.Nullabl 422 Invalid request parameters - */ - public BaseResponseListCollectionResults listCollections(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = listCollectionsWithHttpInfo(searchTerm, filters, limit, offset, orderBy, order, authorization); + public BaseResponseListCollectionResults listCollections(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order) throws ApiException { + ApiResponse localVarResp = listCollectionsWithHttpInfo(searchTerm, filters, limit, offset, orderBy, order); return localVarResp.getData(); } @@ -652,7 +618,6 @@ public BaseResponseListCollectionResults listCollections(@javax.annotation.Nulla * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListCollectionResults> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -663,8 +628,8 @@ public BaseResponseListCollectionResults listCollections(@javax.annotation.Nulla 422 Invalid request parameters - */ - public ApiResponse listCollectionsWithHttpInfo(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = listCollectionsValidateBeforeCall(searchTerm, filters, limit, offset, orderBy, order, authorization, null); + public ApiResponse listCollectionsWithHttpInfo(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order) throws ApiException { + okhttp3.Call localVarCall = listCollectionsValidateBeforeCall(searchTerm, filters, limit, offset, orderBy, order, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -678,7 +643,6 @@ public ApiResponse listCollectionsWithHttpInf * @param offset (optional, default to 0) * @param orderBy (optional) * @param order (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -690,9 +654,9 @@ public ApiResponse listCollectionsWithHttpInf 422 Invalid request parameters - */ - public okhttp3.Call listCollectionsAsync(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listCollectionsAsync(@javax.annotation.Nullable String searchTerm, @javax.annotation.Nullable List filters, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Integer offset, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order order, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listCollectionsValidateBeforeCall(searchTerm, filters, limit, offset, orderBy, order, authorization, _callback); + okhttp3.Call localVarCall = listCollectionsValidateBeforeCall(searchTerm, filters, limit, offset, orderBy, order, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -701,7 +665,6 @@ public okhttp3.Call listCollectionsAsync(@javax.annotation.Nullable String searc * Build call for updateCollection * @param collectionId (required) * @param collectionUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -713,7 +676,7 @@ public okhttp3.Call listCollectionsAsync(@javax.annotation.Nullable String searc 422 Invalid request parameters - */ - public okhttp3.Call updateCollectionCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCollectionCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -755,17 +718,12 @@ public okhttp3.Call updateCollectionCall(@javax.annotation.Nonnull Integer colle localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateCollectionValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateCollectionValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'collectionId' is set if (collectionId == null) { throw new ApiException("Missing the required parameter 'collectionId' when calling updateCollection(Async)"); @@ -776,7 +734,7 @@ private okhttp3.Call updateCollectionValidateBeforeCall(@javax.annotation.Nonnul throw new ApiException("Missing the required parameter 'collectionUpdateRequest' when calling updateCollection(Async)"); } - return updateCollectionCall(collectionId, collectionUpdateRequest, authorization, _callback); + return updateCollectionCall(collectionId, collectionUpdateRequest, _callback); } @@ -785,7 +743,6 @@ private okhttp3.Call updateCollectionValidateBeforeCall(@javax.annotation.Nonnul * Updates a collection, you can update the collection name, description, and scope * @param collectionId (required) * @param collectionUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCollectionResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -796,8 +753,8 @@ private okhttp3.Call updateCollectionValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponseCollectionResponse updateCollection(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateCollectionWithHttpInfo(collectionId, collectionUpdateRequest, authorization); + public BaseResponseCollectionResponse updateCollection(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateCollectionWithHttpInfo(collectionId, collectionUpdateRequest); return localVarResp.getData(); } @@ -806,7 +763,6 @@ public BaseResponseCollectionResponse updateCollection(@javax.annotation.Nonnull * Updates a collection, you can update the collection name, description, and scope * @param collectionId (required) * @param collectionUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCollectionResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -817,8 +773,8 @@ public BaseResponseCollectionResponse updateCollection(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public ApiResponse updateCollectionWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateCollectionValidateBeforeCall(collectionId, collectionUpdateRequest, authorization, null); + public ApiResponse updateCollectionWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateCollectionValidateBeforeCall(collectionId, collectionUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -828,7 +784,6 @@ public ApiResponse updateCollectionWithHttpInfo( * Updates a collection, you can update the collection name, description, and scope * @param collectionId (required) * @param collectionUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -840,9 +795,9 @@ public ApiResponse updateCollectionWithHttpInfo( 422 Invalid request parameters - */ - public okhttp3.Call updateCollectionAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCollectionAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionUpdateRequest collectionUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateCollectionValidateBeforeCall(collectionId, collectionUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateCollectionValidateBeforeCall(collectionId, collectionUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -851,7 +806,6 @@ public okhttp3.Call updateCollectionAsync(@javax.annotation.Nonnull Integer coll * Build call for updateCollectionBinaries * @param collectionId (required) * @param collectionBinariesUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -863,7 +817,7 @@ public okhttp3.Call updateCollectionAsync(@javax.annotation.Nonnull Integer coll 422 Invalid request parameters - */ - public okhttp3.Call updateCollectionBinariesCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCollectionBinariesCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -905,17 +859,12 @@ public okhttp3.Call updateCollectionBinariesCall(@javax.annotation.Nonnull Integ localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateCollectionBinariesValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateCollectionBinariesValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'collectionId' is set if (collectionId == null) { throw new ApiException("Missing the required parameter 'collectionId' when calling updateCollectionBinaries(Async)"); @@ -926,7 +875,7 @@ private okhttp3.Call updateCollectionBinariesValidateBeforeCall(@javax.annotatio throw new ApiException("Missing the required parameter 'collectionBinariesUpdateRequest' when calling updateCollectionBinaries(Async)"); } - return updateCollectionBinariesCall(collectionId, collectionBinariesUpdateRequest, authorization, _callback); + return updateCollectionBinariesCall(collectionId, collectionBinariesUpdateRequest, _callback); } @@ -935,7 +884,6 @@ private okhttp3.Call updateCollectionBinariesValidateBeforeCall(@javax.annotatio * Updates/changes a collection binaries to whatever is provided in the request. After this update the collection will only contain the binaries provided in the request. * @param collectionId (required) * @param collectionBinariesUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCollectionBinariesUpdateResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -946,8 +894,8 @@ private okhttp3.Call updateCollectionBinariesValidateBeforeCall(@javax.annotatio 422 Invalid request parameters - */ - public BaseResponseCollectionBinariesUpdateResponse updateCollectionBinaries(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateCollectionBinariesWithHttpInfo(collectionId, collectionBinariesUpdateRequest, authorization); + public BaseResponseCollectionBinariesUpdateResponse updateCollectionBinaries(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateCollectionBinariesWithHttpInfo(collectionId, collectionBinariesUpdateRequest); return localVarResp.getData(); } @@ -956,7 +904,6 @@ public BaseResponseCollectionBinariesUpdateResponse updateCollectionBinaries(@ja * Updates/changes a collection binaries to whatever is provided in the request. After this update the collection will only contain the binaries provided in the request. * @param collectionId (required) * @param collectionBinariesUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCollectionBinariesUpdateResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -967,8 +914,8 @@ public BaseResponseCollectionBinariesUpdateResponse updateCollectionBinaries(@ja 422 Invalid request parameters - */ - public ApiResponse updateCollectionBinariesWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateCollectionBinariesValidateBeforeCall(collectionId, collectionBinariesUpdateRequest, authorization, null); + public ApiResponse updateCollectionBinariesWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateCollectionBinariesValidateBeforeCall(collectionId, collectionBinariesUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -978,7 +925,6 @@ public ApiResponse updateCollectio * Updates/changes a collection binaries to whatever is provided in the request. After this update the collection will only contain the binaries provided in the request. * @param collectionId (required) * @param collectionBinariesUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -990,9 +936,9 @@ public ApiResponse updateCollectio 422 Invalid request parameters - */ - public okhttp3.Call updateCollectionBinariesAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCollectionBinariesAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionBinariesUpdateRequest collectionBinariesUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateCollectionBinariesValidateBeforeCall(collectionId, collectionBinariesUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateCollectionBinariesValidateBeforeCall(collectionId, collectionBinariesUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1001,7 +947,6 @@ public okhttp3.Call updateCollectionBinariesAsync(@javax.annotation.Nonnull Inte * Build call for updateCollectionTags * @param collectionId (required) * @param collectionTagsUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1013,7 +958,7 @@ public okhttp3.Call updateCollectionBinariesAsync(@javax.annotation.Nonnull Inte 422 Invalid request parameters - */ - public okhttp3.Call updateCollectionTagsCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCollectionTagsCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1055,17 +1000,12 @@ public okhttp3.Call updateCollectionTagsCall(@javax.annotation.Nonnull Integer c localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateCollectionTagsValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateCollectionTagsValidateBeforeCall(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'collectionId' is set if (collectionId == null) { throw new ApiException("Missing the required parameter 'collectionId' when calling updateCollectionTags(Async)"); @@ -1076,7 +1016,7 @@ private okhttp3.Call updateCollectionTagsValidateBeforeCall(@javax.annotation.No throw new ApiException("Missing the required parameter 'collectionTagsUpdateRequest' when calling updateCollectionTags(Async)"); } - return updateCollectionTagsCall(collectionId, collectionTagsUpdateRequest, authorization, _callback); + return updateCollectionTagsCall(collectionId, collectionTagsUpdateRequest, _callback); } @@ -1085,7 +1025,6 @@ private okhttp3.Call updateCollectionTagsValidateBeforeCall(@javax.annotation.No * Updates/changes a collection tags to whatever is provided in the request. After this update the collection will only contain the tags provided in the request. * @param collectionId (required) * @param collectionTagsUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCollectionTagsUpdateResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1096,8 +1035,8 @@ private okhttp3.Call updateCollectionTagsValidateBeforeCall(@javax.annotation.No 422 Invalid request parameters - */ - public BaseResponseCollectionTagsUpdateResponse updateCollectionTags(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateCollectionTagsWithHttpInfo(collectionId, collectionTagsUpdateRequest, authorization); + public BaseResponseCollectionTagsUpdateResponse updateCollectionTags(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateCollectionTagsWithHttpInfo(collectionId, collectionTagsUpdateRequest); return localVarResp.getData(); } @@ -1106,7 +1045,6 @@ public BaseResponseCollectionTagsUpdateResponse updateCollectionTags(@javax.anno * Updates/changes a collection tags to whatever is provided in the request. After this update the collection will only contain the tags provided in the request. * @param collectionId (required) * @param collectionTagsUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCollectionTagsUpdateResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1117,8 +1055,8 @@ public BaseResponseCollectionTagsUpdateResponse updateCollectionTags(@javax.anno 422 Invalid request parameters - */ - public ApiResponse updateCollectionTagsWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateCollectionTagsValidateBeforeCall(collectionId, collectionTagsUpdateRequest, authorization, null); + public ApiResponse updateCollectionTagsWithHttpInfo(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateCollectionTagsValidateBeforeCall(collectionId, collectionTagsUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1128,7 +1066,6 @@ public ApiResponse updateCollectionTag * Updates/changes a collection tags to whatever is provided in the request. After this update the collection will only contain the tags provided in the request. * @param collectionId (required) * @param collectionTagsUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1140,9 +1077,9 @@ public ApiResponse updateCollectionTag 422 Invalid request parameters - */ - public okhttp3.Call updateCollectionTagsAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCollectionTagsAsync(@javax.annotation.Nonnull Integer collectionId, @javax.annotation.Nonnull CollectionTagsUpdateRequest collectionTagsUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateCollectionTagsValidateBeforeCall(collectionId, collectionTagsUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateCollectionTagsValidateBeforeCall(collectionId, collectionTagsUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/ConfidenceApi.java b/src/main/java/ai/reveng/api/ConfidenceApi.java index bb96267..b0a6a8e 100644 --- a/src/main/java/ai/reveng/api/ConfidenceApi.java +++ b/src/main/java/ai/reveng/api/ConfidenceApi.java @@ -81,7 +81,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for getAnalysisTagScore * @param analysisId The analysis to calculate the tag scores for (required) * @param tagConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -93,7 +92,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisTagScoreCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisTagScoreCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -135,17 +134,12 @@ public okhttp3.Call getAnalysisTagScoreCall(@javax.annotation.Nonnull Integer an localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisTagScoreValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisTagScoreValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisTagScore(Async)"); @@ -156,7 +150,7 @@ private okhttp3.Call getAnalysisTagScoreValidateBeforeCall(@javax.annotation.Non throw new ApiException("Missing the required parameter 'tagConfidenceBody' when calling getAnalysisTagScore(Async)"); } - return getAnalysisTagScoreCall(analysisId, tagConfidenceBody, authorization, _callback); + return getAnalysisTagScoreCall(analysisId, tagConfidenceBody, _callback); } @@ -165,7 +159,6 @@ private okhttp3.Call getAnalysisTagScoreValidateBeforeCall(@javax.annotation.Non * Accepts a analysis ID and a list of tags, returns the confidence score for each tag in the list * @param analysisId The analysis to calculate the tag scores for (required) * @param tagConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListTagOriginBoxPlotConfidence * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -176,8 +169,8 @@ private okhttp3.Call getAnalysisTagScoreValidateBeforeCall(@javax.annotation.Non 422 Invalid request parameters - */ - public BaseResponseListTagOriginBoxPlotConfidence getAnalysisTagScore(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisTagScoreWithHttpInfo(analysisId, tagConfidenceBody, authorization); + public BaseResponseListTagOriginBoxPlotConfidence getAnalysisTagScore(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody) throws ApiException { + ApiResponse localVarResp = getAnalysisTagScoreWithHttpInfo(analysisId, tagConfidenceBody); return localVarResp.getData(); } @@ -186,7 +179,6 @@ public BaseResponseListTagOriginBoxPlotConfidence getAnalysisTagScore(@javax.ann * Accepts a analysis ID and a list of tags, returns the confidence score for each tag in the list * @param analysisId The analysis to calculate the tag scores for (required) * @param tagConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListTagOriginBoxPlotConfidence> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -197,8 +189,8 @@ public BaseResponseListTagOriginBoxPlotConfidence getAnalysisTagScore(@javax.ann 422 Invalid request parameters - */ - public ApiResponse getAnalysisTagScoreWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisTagScoreValidateBeforeCall(analysisId, tagConfidenceBody, authorization, null); + public ApiResponse getAnalysisTagScoreWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody) throws ApiException { + okhttp3.Call localVarCall = getAnalysisTagScoreValidateBeforeCall(analysisId, tagConfidenceBody, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -208,7 +200,6 @@ public ApiResponse getAnalysisTagSco * Accepts a analysis ID and a list of tags, returns the confidence score for each tag in the list * @param analysisId The analysis to calculate the tag scores for (required) * @param tagConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -220,9 +211,9 @@ public ApiResponse getAnalysisTagSco 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisTagScoreAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisTagScoreAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull TagConfidenceBody tagConfidenceBody, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisTagScoreValidateBeforeCall(analysisId, tagConfidenceBody, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisTagScoreValidateBeforeCall(analysisId, tagConfidenceBody, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -230,7 +221,6 @@ public okhttp3.Call getAnalysisTagScoreAsync(@javax.annotation.Nonnull Integer a /** * Build call for getAnalysisThreatScore * @param analysisId The analysis to calculate the threat score for (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -242,7 +232,7 @@ public okhttp3.Call getAnalysisTagScoreAsync(@javax.annotation.Nonnull Integer a 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisThreatScoreCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisThreatScoreCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -283,23 +273,18 @@ public okhttp3.Call getAnalysisThreatScoreCall(@javax.annotation.Nonnull Integer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisThreatScoreValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisThreatScoreValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisThreatScore(Async)"); } - return getAnalysisThreatScoreCall(analysisId, authorization, _callback); + return getAnalysisThreatScoreCall(analysisId, _callback); } @@ -307,7 +292,6 @@ private okhttp3.Call getAnalysisThreatScoreValidateBeforeCall(@javax.annotation. * Calculate Threat Score for Binary * Accepts a binary ID and returns the threat score for that binary * @param analysisId The analysis to calculate the threat score for (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBoxPlotConfidence * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -318,8 +302,8 @@ private okhttp3.Call getAnalysisThreatScoreValidateBeforeCall(@javax.annotation. 422 Invalid request parameters - */ - public BaseResponseBoxPlotConfidence getAnalysisThreatScore(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisThreatScoreWithHttpInfo(analysisId, authorization); + public BaseResponseBoxPlotConfidence getAnalysisThreatScore(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getAnalysisThreatScoreWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -327,7 +311,6 @@ public BaseResponseBoxPlotConfidence getAnalysisThreatScore(@javax.annotation.No * Calculate Threat Score for Binary * Accepts a binary ID and returns the threat score for that binary * @param analysisId The analysis to calculate the threat score for (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBoxPlotConfidence> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -338,8 +321,8 @@ public BaseResponseBoxPlotConfidence getAnalysisThreatScore(@javax.annotation.No 422 Invalid request parameters - */ - public ApiResponse getAnalysisThreatScoreWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisThreatScoreValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getAnalysisThreatScoreWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getAnalysisThreatScoreValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -348,7 +331,6 @@ public ApiResponse getAnalysisThreatScoreWithHttp * Calculate Threat Score for Binary (asynchronously) * Accepts a binary ID and returns the threat score for that binary * @param analysisId The analysis to calculate the threat score for (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -360,9 +342,9 @@ public ApiResponse getAnalysisThreatScoreWithHttp 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisThreatScoreAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisThreatScoreAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisThreatScoreValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisThreatScoreValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -370,7 +352,6 @@ public okhttp3.Call getAnalysisThreatScoreAsync(@javax.annotation.Nonnull Intege /** * Build call for getFunctionsNameScore * @param functionNameConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -382,7 +363,7 @@ public okhttp3.Call getAnalysisThreatScoreAsync(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public okhttp3.Call getFunctionsNameScoreCall(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionsNameScoreCall(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -423,23 +404,18 @@ public okhttp3.Call getFunctionsNameScoreCall(@javax.annotation.Nonnull Function localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionsNameScoreValidateBeforeCall(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionsNameScoreValidateBeforeCall(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionNameConfidenceBody' is set if (functionNameConfidenceBody == null) { throw new ApiException("Missing the required parameter 'functionNameConfidenceBody' when calling getFunctionsNameScore(Async)"); } - return getFunctionsNameScoreCall(functionNameConfidenceBody, authorization, _callback); + return getFunctionsNameScoreCall(functionNameConfidenceBody, _callback); } @@ -447,7 +423,6 @@ private okhttp3.Call getFunctionsNameScoreValidateBeforeCall(@javax.annotation.N * Calculate function name confidence for a set of Functions * Accepts a list of function ids mapped to a function name, for each function we return a confidence score in that being the correct name for each function. Each function must be from the same model, or you may find some functions missing in the return. * @param functionNameConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListFunctionBoxPlotConfidence * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -458,8 +433,8 @@ private okhttp3.Call getFunctionsNameScoreValidateBeforeCall(@javax.annotation.N 422 Invalid request parameters - */ - public BaseResponseListFunctionBoxPlotConfidence getFunctionsNameScore(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionsNameScoreWithHttpInfo(functionNameConfidenceBody, authorization); + public BaseResponseListFunctionBoxPlotConfidence getFunctionsNameScore(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody) throws ApiException { + ApiResponse localVarResp = getFunctionsNameScoreWithHttpInfo(functionNameConfidenceBody); return localVarResp.getData(); } @@ -467,7 +442,6 @@ public BaseResponseListFunctionBoxPlotConfidence getFunctionsNameScore(@javax.an * Calculate function name confidence for a set of Functions * Accepts a list of function ids mapped to a function name, for each function we return a confidence score in that being the correct name for each function. Each function must be from the same model, or you may find some functions missing in the return. * @param functionNameConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListFunctionBoxPlotConfidence> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -478,8 +452,8 @@ public BaseResponseListFunctionBoxPlotConfidence getFunctionsNameScore(@javax.an 422 Invalid request parameters - */ - public ApiResponse getFunctionsNameScoreWithHttpInfo(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionsNameScoreValidateBeforeCall(functionNameConfidenceBody, authorization, null); + public ApiResponse getFunctionsNameScoreWithHttpInfo(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody) throws ApiException { + okhttp3.Call localVarCall = getFunctionsNameScoreValidateBeforeCall(functionNameConfidenceBody, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -488,7 +462,6 @@ public ApiResponse getFunctionsNameSc * Calculate function name confidence for a set of Functions (asynchronously) * Accepts a list of function ids mapped to a function name, for each function we return a confidence score in that being the correct name for each function. Each function must be from the same model, or you may find some functions missing in the return. * @param functionNameConfidenceBody (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -500,9 +473,9 @@ public ApiResponse getFunctionsNameSc 422 Invalid request parameters - */ - public okhttp3.Call getFunctionsNameScoreAsync(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionsNameScoreAsync(@javax.annotation.Nonnull FunctionNameConfidenceBody functionNameConfidenceBody, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionsNameScoreValidateBeforeCall(functionNameConfidenceBody, authorization, _callback); + okhttp3.Call localVarCall = getFunctionsNameScoreValidateBeforeCall(functionNameConfidenceBody, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -510,7 +483,6 @@ public okhttp3.Call getFunctionsNameScoreAsync(@javax.annotation.Nonnull Functio /** * Build call for getFunctionsThreatScore * @param threatScoreFunctionBody (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -522,7 +494,7 @@ public okhttp3.Call getFunctionsNameScoreAsync(@javax.annotation.Nonnull Functio 422 Invalid request parameters - */ - public okhttp3.Call getFunctionsThreatScoreCall(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionsThreatScoreCall(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -563,23 +535,18 @@ public okhttp3.Call getFunctionsThreatScoreCall(@javax.annotation.Nonnull Threat localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionsThreatScoreValidateBeforeCall(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionsThreatScoreValidateBeforeCall(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, final ApiCallback _callback) throws ApiException { // verify the required parameter 'threatScoreFunctionBody' is set if (threatScoreFunctionBody == null) { throw new ApiException("Missing the required parameter 'threatScoreFunctionBody' when calling getFunctionsThreatScore(Async)"); } - return getFunctionsThreatScoreCall(threatScoreFunctionBody, authorization, _callback); + return getFunctionsThreatScoreCall(threatScoreFunctionBody, _callback); } @@ -587,7 +554,6 @@ private okhttp3.Call getFunctionsThreatScoreValidateBeforeCall(@javax.annotation * Calculate Threat Score for a set of Functions * Accepts a list of function ids and returns the threat score for each function. Each function must be from the same model, or you may find some functions missing in the return. * @param threatScoreFunctionBody (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListFunctionBoxPlotConfidence * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -598,8 +564,8 @@ private okhttp3.Call getFunctionsThreatScoreValidateBeforeCall(@javax.annotation 422 Invalid request parameters - */ - public BaseResponseListFunctionBoxPlotConfidence getFunctionsThreatScore(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionsThreatScoreWithHttpInfo(threatScoreFunctionBody, authorization); + public BaseResponseListFunctionBoxPlotConfidence getFunctionsThreatScore(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody) throws ApiException { + ApiResponse localVarResp = getFunctionsThreatScoreWithHttpInfo(threatScoreFunctionBody); return localVarResp.getData(); } @@ -607,7 +573,6 @@ public BaseResponseListFunctionBoxPlotConfidence getFunctionsThreatScore(@javax. * Calculate Threat Score for a set of Functions * Accepts a list of function ids and returns the threat score for each function. Each function must be from the same model, or you may find some functions missing in the return. * @param threatScoreFunctionBody (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListFunctionBoxPlotConfidence> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -618,8 +583,8 @@ public BaseResponseListFunctionBoxPlotConfidence getFunctionsThreatScore(@javax. 422 Invalid request parameters - */ - public ApiResponse getFunctionsThreatScoreWithHttpInfo(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionsThreatScoreValidateBeforeCall(threatScoreFunctionBody, authorization, null); + public ApiResponse getFunctionsThreatScoreWithHttpInfo(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody) throws ApiException { + okhttp3.Call localVarCall = getFunctionsThreatScoreValidateBeforeCall(threatScoreFunctionBody, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -628,7 +593,6 @@ public ApiResponse getFunctionsThreat * Calculate Threat Score for a set of Functions (asynchronously) * Accepts a list of function ids and returns the threat score for each function. Each function must be from the same model, or you may find some functions missing in the return. * @param threatScoreFunctionBody (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -640,9 +604,9 @@ public ApiResponse getFunctionsThreat 422 Invalid request parameters - */ - public okhttp3.Call getFunctionsThreatScoreAsync(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionsThreatScoreAsync(@javax.annotation.Nonnull ThreatScoreFunctionBody threatScoreFunctionBody, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionsThreatScoreValidateBeforeCall(threatScoreFunctionBody, authorization, _callback); + okhttp3.Call localVarCall = getFunctionsThreatScoreValidateBeforeCall(threatScoreFunctionBody, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/ExternalSourcesApi.java b/src/main/java/ai/reveng/api/ExternalSourcesApi.java index db2b358..390b4f1 100644 --- a/src/main/java/ai/reveng/api/ExternalSourcesApi.java +++ b/src/main/java/ai/reveng/api/ExternalSourcesApi.java @@ -77,7 +77,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for createExternalTaskMb * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -90,7 +89,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 409 Request already queued - */ - public okhttp3.Call createExternalTaskMbCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createExternalTaskMbCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -131,23 +130,18 @@ public okhttp3.Call createExternalTaskMbCall(@javax.annotation.Nonnull Integer a localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createExternalTaskMbValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createExternalTaskMbValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling createExternalTaskMb(Async)"); } - return createExternalTaskMbCall(analysisId, authorization, _callback); + return createExternalTaskMbCall(analysisId, _callback); } @@ -155,7 +149,6 @@ private okhttp3.Call createExternalTaskMbValidateBeforeCall(@javax.annotation.No * Pulls data from VirusTotal * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseStr * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -167,8 +160,8 @@ private okhttp3.Call createExternalTaskMbValidateBeforeCall(@javax.annotation.No 409 Request already queued - */ - public BaseResponseStr createExternalTaskMb(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createExternalTaskMbWithHttpInfo(analysisId, authorization); + public BaseResponseStr createExternalTaskMb(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = createExternalTaskMbWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -176,7 +169,6 @@ public BaseResponseStr createExternalTaskMb(@javax.annotation.Nonnull Integer an * Pulls data from VirusTotal * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseStr> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -188,8 +180,8 @@ public BaseResponseStr createExternalTaskMb(@javax.annotation.Nonnull Integer an 409 Request already queued - */ - public ApiResponse createExternalTaskMbWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createExternalTaskMbValidateBeforeCall(analysisId, authorization, null); + public ApiResponse createExternalTaskMbWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = createExternalTaskMbValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -198,7 +190,6 @@ public ApiResponse createExternalTaskMbWithHttpInfo(@javax.anno * Pulls data from VirusTotal (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -211,9 +202,9 @@ public ApiResponse createExternalTaskMbWithHttpInfo(@javax.anno 409 Request already queued - */ - public okhttp3.Call createExternalTaskMbAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createExternalTaskMbAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createExternalTaskMbValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = createExternalTaskMbValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -221,7 +212,6 @@ public okhttp3.Call createExternalTaskMbAsync(@javax.annotation.Nonnull Integer /** * Build call for createExternalTaskVt * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -234,7 +224,7 @@ public okhttp3.Call createExternalTaskMbAsync(@javax.annotation.Nonnull Integer 409 Request already queued - */ - public okhttp3.Call createExternalTaskVtCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createExternalTaskVtCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -275,23 +265,18 @@ public okhttp3.Call createExternalTaskVtCall(@javax.annotation.Nonnull Integer a localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createExternalTaskVtValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createExternalTaskVtValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling createExternalTaskVt(Async)"); } - return createExternalTaskVtCall(analysisId, authorization, _callback); + return createExternalTaskVtCall(analysisId, _callback); } @@ -299,7 +284,6 @@ private okhttp3.Call createExternalTaskVtValidateBeforeCall(@javax.annotation.No * Pulls data from VirusTotal * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseStr * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -311,8 +295,8 @@ private okhttp3.Call createExternalTaskVtValidateBeforeCall(@javax.annotation.No 409 Request already queued - */ - public BaseResponseStr createExternalTaskVt(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createExternalTaskVtWithHttpInfo(analysisId, authorization); + public BaseResponseStr createExternalTaskVt(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = createExternalTaskVtWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -320,7 +304,6 @@ public BaseResponseStr createExternalTaskVt(@javax.annotation.Nonnull Integer an * Pulls data from VirusTotal * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseStr> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -332,8 +315,8 @@ public BaseResponseStr createExternalTaskVt(@javax.annotation.Nonnull Integer an 409 Request already queued - */ - public ApiResponse createExternalTaskVtWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createExternalTaskVtValidateBeforeCall(analysisId, authorization, null); + public ApiResponse createExternalTaskVtWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = createExternalTaskVtValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -342,7 +325,6 @@ public ApiResponse createExternalTaskVtWithHttpInfo(@javax.anno * Pulls data from VirusTotal (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -355,9 +337,9 @@ public ApiResponse createExternalTaskVtWithHttpInfo(@javax.anno 409 Request already queued - */ - public okhttp3.Call createExternalTaskVtAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createExternalTaskVtAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createExternalTaskVtValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = createExternalTaskVtValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -365,7 +347,6 @@ public okhttp3.Call createExternalTaskVtAsync(@javax.annotation.Nonnull Integer /** * Build call for getMbData * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -378,7 +359,7 @@ public okhttp3.Call createExternalTaskVtAsync(@javax.annotation.Nonnull Integer 404 No data retrieved from MalwareBazaar for the given analysis_id - */ - public okhttp3.Call getMbDataCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getMbDataCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -419,23 +400,18 @@ public okhttp3.Call getMbDataCall(@javax.annotation.Nonnull Integer analysisId, localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getMbDataValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getMbDataValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getMbData(Async)"); } - return getMbDataCall(analysisId, authorization, _callback); + return getMbDataCall(analysisId, _callback); } @@ -443,7 +419,6 @@ private okhttp3.Call getMbDataValidateBeforeCall(@javax.annotation.Nonnull Integ * Get MalwareBazaar data * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseExternalResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -455,8 +430,8 @@ private okhttp3.Call getMbDataValidateBeforeCall(@javax.annotation.Nonnull Integ 404 No data retrieved from MalwareBazaar for the given analysis_id - */ - public BaseResponseExternalResponse getMbData(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getMbDataWithHttpInfo(analysisId, authorization); + public BaseResponseExternalResponse getMbData(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getMbDataWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -464,7 +439,6 @@ public BaseResponseExternalResponse getMbData(@javax.annotation.Nonnull Integer * Get MalwareBazaar data * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseExternalResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -476,8 +450,8 @@ public BaseResponseExternalResponse getMbData(@javax.annotation.Nonnull Integer 404 No data retrieved from MalwareBazaar for the given analysis_id - */ - public ApiResponse getMbDataWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getMbDataValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getMbDataWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getMbDataValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -486,7 +460,6 @@ public ApiResponse getMbDataWithHttpInfo(@javax.an * Get MalwareBazaar data (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -499,9 +472,9 @@ public ApiResponse getMbDataWithHttpInfo(@javax.an 404 No data retrieved from MalwareBazaar for the given analysis_id - */ - public okhttp3.Call getMbDataAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getMbDataAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getMbDataValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getMbDataValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -509,7 +482,6 @@ public okhttp3.Call getMbDataAsync(@javax.annotation.Nonnull Integer analysisId, /** * Build call for getMbTaskStatus * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -521,7 +493,7 @@ public okhttp3.Call getMbDataAsync(@javax.annotation.Nonnull Integer analysisId, 422 Invalid request parameters - */ - public okhttp3.Call getMbTaskStatusCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getMbTaskStatusCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -562,23 +534,18 @@ public okhttp3.Call getMbTaskStatusCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getMbTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getMbTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getMbTaskStatus(Async)"); } - return getMbTaskStatusCall(analysisId, authorization, _callback); + return getMbTaskStatusCall(analysisId, _callback); } @@ -586,7 +553,6 @@ private okhttp3.Call getMbTaskStatusValidateBeforeCall(@javax.annotation.Nonnull * Check the status of MalwareBazaar data retrieval * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseTaskResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -597,8 +563,8 @@ private okhttp3.Call getMbTaskStatusValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseTaskResponse getMbTaskStatus(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getMbTaskStatusWithHttpInfo(analysisId, authorization); + public BaseResponseTaskResponse getMbTaskStatus(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getMbTaskStatusWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -606,7 +572,6 @@ public BaseResponseTaskResponse getMbTaskStatus(@javax.annotation.Nonnull Intege * Check the status of MalwareBazaar data retrieval * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseTaskResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -617,8 +582,8 @@ public BaseResponseTaskResponse getMbTaskStatus(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public ApiResponse getMbTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getMbTaskStatusValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getMbTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getMbTaskStatusValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -627,7 +592,6 @@ public ApiResponse getMbTaskStatusWithHttpInfo(@javax. * Check the status of MalwareBazaar data retrieval (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -639,9 +603,9 @@ public ApiResponse getMbTaskStatusWithHttpInfo(@javax. 422 Invalid request parameters - */ - public okhttp3.Call getMbTaskStatusAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getMbTaskStatusAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getMbTaskStatusValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getMbTaskStatusValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -649,7 +613,6 @@ public okhttp3.Call getMbTaskStatusAsync(@javax.annotation.Nonnull Integer analy /** * Build call for getVtData * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -662,7 +625,7 @@ public okhttp3.Call getMbTaskStatusAsync(@javax.annotation.Nonnull Integer analy 404 No data retrieved from VirusTotal for the given analysis_id - */ - public okhttp3.Call getVtDataCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getVtDataCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -703,23 +666,18 @@ public okhttp3.Call getVtDataCall(@javax.annotation.Nonnull Integer analysisId, localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getVtDataValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getVtDataValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getVtData(Async)"); } - return getVtDataCall(analysisId, authorization, _callback); + return getVtDataCall(analysisId, _callback); } @@ -727,7 +685,6 @@ private okhttp3.Call getVtDataValidateBeforeCall(@javax.annotation.Nonnull Integ * Get VirusTotal data * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseExternalResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -739,8 +696,8 @@ private okhttp3.Call getVtDataValidateBeforeCall(@javax.annotation.Nonnull Integ 404 No data retrieved from VirusTotal for the given analysis_id - */ - public BaseResponseExternalResponse getVtData(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getVtDataWithHttpInfo(analysisId, authorization); + public BaseResponseExternalResponse getVtData(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getVtDataWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -748,7 +705,6 @@ public BaseResponseExternalResponse getVtData(@javax.annotation.Nonnull Integer * Get VirusTotal data * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseExternalResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -760,8 +716,8 @@ public BaseResponseExternalResponse getVtData(@javax.annotation.Nonnull Integer 404 No data retrieved from VirusTotal for the given analysis_id - */ - public ApiResponse getVtDataWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getVtDataValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getVtDataWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getVtDataValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -770,7 +726,6 @@ public ApiResponse getVtDataWithHttpInfo(@javax.an * Get VirusTotal data (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -783,9 +738,9 @@ public ApiResponse getVtDataWithHttpInfo(@javax.an 404 No data retrieved from VirusTotal for the given analysis_id - */ - public okhttp3.Call getVtDataAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getVtDataAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getVtDataValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getVtDataValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -793,7 +748,6 @@ public okhttp3.Call getVtDataAsync(@javax.annotation.Nonnull Integer analysisId, /** * Build call for getVtTaskStatus * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -805,7 +759,7 @@ public okhttp3.Call getVtDataAsync(@javax.annotation.Nonnull Integer analysisId, 422 Invalid request parameters - */ - public okhttp3.Call getVtTaskStatusCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getVtTaskStatusCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -846,23 +800,18 @@ public okhttp3.Call getVtTaskStatusCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getVtTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getVtTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getVtTaskStatus(Async)"); } - return getVtTaskStatusCall(analysisId, authorization, _callback); + return getVtTaskStatusCall(analysisId, _callback); } @@ -870,7 +819,6 @@ private okhttp3.Call getVtTaskStatusValidateBeforeCall(@javax.annotation.Nonnull * Check the status of VirusTotal data retrieval * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseTaskResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -881,8 +829,8 @@ private okhttp3.Call getVtTaskStatusValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public BaseResponseTaskResponse getVtTaskStatus(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getVtTaskStatusWithHttpInfo(analysisId, authorization); + public BaseResponseTaskResponse getVtTaskStatus(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = getVtTaskStatusWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -890,7 +838,6 @@ public BaseResponseTaskResponse getVtTaskStatus(@javax.annotation.Nonnull Intege * Check the status of VirusTotal data retrieval * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseTaskResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -901,8 +848,8 @@ public BaseResponseTaskResponse getVtTaskStatus(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public ApiResponse getVtTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getVtTaskStatusValidateBeforeCall(analysisId, authorization, null); + public ApiResponse getVtTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = getVtTaskStatusValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -911,7 +858,6 @@ public ApiResponse getVtTaskStatusWithHttpInfo(@javax. * Check the status of VirusTotal data retrieval (asynchronously) * * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -923,9 +869,9 @@ public ApiResponse getVtTaskStatusWithHttpInfo(@javax. 422 Invalid request parameters - */ - public okhttp3.Call getVtTaskStatusAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getVtTaskStatusAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getVtTaskStatusValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = getVtTaskStatusValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FirmwareApi.java b/src/main/java/ai/reveng/api/FirmwareApi.java index 6502440..75bf84d 100644 --- a/src/main/java/ai/reveng/api/FirmwareApi.java +++ b/src/main/java/ai/reveng/api/FirmwareApi.java @@ -75,7 +75,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for getBinariesForFirmwareTask * @param taskId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -87,7 +86,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call getBinariesForFirmwareTaskCall(@javax.annotation.Nonnull String taskId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinariesForFirmwareTaskCall(@javax.annotation.Nonnull String taskId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -128,23 +127,18 @@ public okhttp3.Call getBinariesForFirmwareTaskCall(@javax.annotation.Nonnull Str localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getBinariesForFirmwareTaskValidateBeforeCall(@javax.annotation.Nonnull String taskId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getBinariesForFirmwareTaskValidateBeforeCall(@javax.annotation.Nonnull String taskId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'taskId' is set if (taskId == null) { throw new ApiException("Missing the required parameter 'taskId' when calling getBinariesForFirmwareTask(Async)"); } - return getBinariesForFirmwareTaskCall(taskId, authorization, _callback); + return getBinariesForFirmwareTaskCall(taskId, _callback); } @@ -152,7 +146,6 @@ private okhttp3.Call getBinariesForFirmwareTaskValidateBeforeCall(@javax.annotat * Upload firmware for unpacking * Uploads a firmware file and begins a 'Firmware Unpacker' task. Returns a result identifier, which can be used to poll for the response. * @param taskId (required) - * @param authorization API Key bearer token (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -163,8 +156,8 @@ private okhttp3.Call getBinariesForFirmwareTaskValidateBeforeCall(@javax.annotat 422 Invalid request parameters - */ - public Object getBinariesForFirmwareTask(@javax.annotation.Nonnull String taskId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getBinariesForFirmwareTaskWithHttpInfo(taskId, authorization); + public Object getBinariesForFirmwareTask(@javax.annotation.Nonnull String taskId) throws ApiException { + ApiResponse localVarResp = getBinariesForFirmwareTaskWithHttpInfo(taskId); return localVarResp.getData(); } @@ -172,7 +165,6 @@ public Object getBinariesForFirmwareTask(@javax.annotation.Nonnull String taskId * Upload firmware for unpacking * Uploads a firmware file and begins a 'Firmware Unpacker' task. Returns a result identifier, which can be used to poll for the response. * @param taskId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -183,8 +175,8 @@ public Object getBinariesForFirmwareTask(@javax.annotation.Nonnull String taskId 422 Invalid request parameters - */ - public ApiResponse getBinariesForFirmwareTaskWithHttpInfo(@javax.annotation.Nonnull String taskId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getBinariesForFirmwareTaskValidateBeforeCall(taskId, authorization, null); + public ApiResponse getBinariesForFirmwareTaskWithHttpInfo(@javax.annotation.Nonnull String taskId) throws ApiException { + okhttp3.Call localVarCall = getBinariesForFirmwareTaskValidateBeforeCall(taskId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -193,7 +185,6 @@ public ApiResponse getBinariesForFirmwareTaskWithHttpInfo(@javax.annotat * Upload firmware for unpacking (asynchronously) * Uploads a firmware file and begins a 'Firmware Unpacker' task. Returns a result identifier, which can be used to poll for the response. * @param taskId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -205,9 +196,9 @@ public ApiResponse getBinariesForFirmwareTaskWithHttpInfo(@javax.annotat 422 Invalid request parameters - */ - public okhttp3.Call getBinariesForFirmwareTaskAsync(@javax.annotation.Nonnull String taskId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getBinariesForFirmwareTaskAsync(@javax.annotation.Nonnull String taskId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getBinariesForFirmwareTaskValidateBeforeCall(taskId, authorization, _callback); + okhttp3.Call localVarCall = getBinariesForFirmwareTaskValidateBeforeCall(taskId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -215,7 +206,6 @@ public okhttp3.Call getBinariesForFirmwareTaskAsync(@javax.annotation.Nonnull St /** * Build call for uploadFirmware * @param _file (required) - * @param authorization API Key bearer token (optional) * @param password (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -228,7 +218,7 @@ public okhttp3.Call getBinariesForFirmwareTaskAsync(@javax.annotation.Nonnull St 422 Invalid request parameters - */ - public okhttp3.Call uploadFirmwareCall(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable String password, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uploadFirmwareCall(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String password, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -277,23 +267,18 @@ public okhttp3.Call uploadFirmwareCall(@javax.annotation.Nonnull File _file, @ja localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call uploadFirmwareValidateBeforeCall(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable String password, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uploadFirmwareValidateBeforeCall(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String password, final ApiCallback _callback) throws ApiException { // verify the required parameter '_file' is set if (_file == null) { throw new ApiException("Missing the required parameter '_file' when calling uploadFirmware(Async)"); } - return uploadFirmwareCall(_file, authorization, password, _callback); + return uploadFirmwareCall(_file, password, _callback); } @@ -301,7 +286,6 @@ private okhttp3.Call uploadFirmwareValidateBeforeCall(@javax.annotation.Nonnull * Upload firmware for unpacking * Uploads a firmware file and begins a 'Firmware Unpacker' task. Returns a result identifier, which can be used to poll for the response. * @param _file (required) - * @param authorization API Key bearer token (optional) * @param password (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -313,8 +297,8 @@ private okhttp3.Call uploadFirmwareValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public Object uploadFirmware(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable String password) throws ApiException { - ApiResponse localVarResp = uploadFirmwareWithHttpInfo(_file, authorization, password); + public Object uploadFirmware(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String password) throws ApiException { + ApiResponse localVarResp = uploadFirmwareWithHttpInfo(_file, password); return localVarResp.getData(); } @@ -322,7 +306,6 @@ public Object uploadFirmware(@javax.annotation.Nonnull File _file, @javax.annota * Upload firmware for unpacking * Uploads a firmware file and begins a 'Firmware Unpacker' task. Returns a result identifier, which can be used to poll for the response. * @param _file (required) - * @param authorization API Key bearer token (optional) * @param password (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -334,8 +317,8 @@ public Object uploadFirmware(@javax.annotation.Nonnull File _file, @javax.annota 422 Invalid request parameters - */ - public ApiResponse uploadFirmwareWithHttpInfo(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable String password) throws ApiException { - okhttp3.Call localVarCall = uploadFirmwareValidateBeforeCall(_file, authorization, password, null); + public ApiResponse uploadFirmwareWithHttpInfo(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String password) throws ApiException { + okhttp3.Call localVarCall = uploadFirmwareValidateBeforeCall(_file, password, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -344,7 +327,6 @@ public ApiResponse uploadFirmwareWithHttpInfo(@javax.annotation.Nonnull * Upload firmware for unpacking (asynchronously) * Uploads a firmware file and begins a 'Firmware Unpacker' task. Returns a result identifier, which can be used to poll for the response. * @param _file (required) - * @param authorization API Key bearer token (optional) * @param password (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -357,9 +339,9 @@ public ApiResponse uploadFirmwareWithHttpInfo(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public okhttp3.Call uploadFirmwareAsync(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String authorization, @javax.annotation.Nullable String password, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uploadFirmwareAsync(@javax.annotation.Nonnull File _file, @javax.annotation.Nullable String password, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uploadFirmwareValidateBeforeCall(_file, authorization, password, _callback); + okhttp3.Call localVarCall = uploadFirmwareValidateBeforeCall(_file, password, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FunctionsAiDecompilationApi.java b/src/main/java/ai/reveng/api/FunctionsAiDecompilationApi.java index 94ca2fa..5ab161a 100644 --- a/src/main/java/ai/reveng/api/FunctionsAiDecompilationApi.java +++ b/src/main/java/ai/reveng/api/FunctionsAiDecompilationApi.java @@ -84,7 +84,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for createAiDecompilationComment * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -97,7 +96,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 400 Bad Request - */ - public okhttp3.Call createAiDecompilationCommentCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAiDecompilationCommentCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -139,17 +138,12 @@ public okhttp3.Call createAiDecompilationCommentCall(@javax.annotation.Nonnull I localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createAiDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createAiDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling createAiDecompilationComment(Async)"); @@ -160,7 +154,7 @@ private okhttp3.Call createAiDecompilationCommentValidateBeforeCall(@javax.annot throw new ApiException("Missing the required parameter 'functionCommentCreateRequest' when calling createAiDecompilationComment(Async)"); } - return createAiDecompilationCommentCall(functionId, functionCommentCreateRequest, authorization, _callback); + return createAiDecompilationCommentCall(functionId, functionCommentCreateRequest, _callback); } @@ -169,7 +163,6 @@ private okhttp3.Call createAiDecompilationCommentValidateBeforeCall(@javax.annot * Creates a comment associated with a specified function). * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -181,8 +174,8 @@ private okhttp3.Call createAiDecompilationCommentValidateBeforeCall(@javax.annot 400 Bad Request - */ - public BaseResponseCommentResponse createAiDecompilationComment(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createAiDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, authorization); + public BaseResponseCommentResponse createAiDecompilationComment(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest) throws ApiException { + ApiResponse localVarResp = createAiDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest); return localVarResp.getData(); } @@ -191,7 +184,6 @@ public BaseResponseCommentResponse createAiDecompilationComment(@javax.annotatio * Creates a comment associated with a specified function). * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -203,8 +195,8 @@ public BaseResponseCommentResponse createAiDecompilationComment(@javax.annotatio 400 Bad Request - */ - public ApiResponse createAiDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createAiDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, authorization, null); + public ApiResponse createAiDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest) throws ApiException { + okhttp3.Call localVarCall = createAiDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -214,7 +206,6 @@ public ApiResponse createAiDecompilationCommentWith * Creates a comment associated with a specified function). * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -227,9 +218,9 @@ public ApiResponse createAiDecompilationCommentWith 400 Bad Request - */ - public okhttp3.Call createAiDecompilationCommentAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAiDecompilationCommentAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createAiDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, authorization, _callback); + okhttp3.Call localVarCall = createAiDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -237,7 +228,6 @@ public okhttp3.Call createAiDecompilationCommentAsync(@javax.annotation.Nonnull /** * Build call for createAiDecompilationTask * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -253,7 +243,7 @@ public okhttp3.Call createAiDecompilationCommentAsync(@javax.annotation.Nonnull 400 Bad Request - */ - public okhttp3.Call createAiDecompilationTaskCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAiDecompilationTaskCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -294,23 +284,18 @@ public okhttp3.Call createAiDecompilationTaskCall(@javax.annotation.Nonnull Inte localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createAiDecompilationTaskValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createAiDecompilationTaskValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling createAiDecompilationTask(Async)"); } - return createAiDecompilationTaskCall(functionId, authorization, _callback); + return createAiDecompilationTaskCall(functionId, _callback); } @@ -318,7 +303,6 @@ private okhttp3.Call createAiDecompilationTaskValidateBeforeCall(@javax.annotati * Begins AI Decompilation Process * Begins the AI Decompilation Process * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -333,8 +317,8 @@ private okhttp3.Call createAiDecompilationTaskValidateBeforeCall(@javax.annotati 400 Bad Request - */ - public BaseResponse createAiDecompilationTask(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createAiDecompilationTaskWithHttpInfo(functionId, authorization); + public BaseResponse createAiDecompilationTask(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = createAiDecompilationTaskWithHttpInfo(functionId); return localVarResp.getData(); } @@ -342,7 +326,6 @@ public BaseResponse createAiDecompilationTask(@javax.annotation.Nonnull Integer * Begins AI Decompilation Process * Begins the AI Decompilation Process * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -357,8 +340,8 @@ public BaseResponse createAiDecompilationTask(@javax.annotation.Nonnull Integer 400 Bad Request - */ - public ApiResponse createAiDecompilationTaskWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createAiDecompilationTaskValidateBeforeCall(functionId, authorization, null); + public ApiResponse createAiDecompilationTaskWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = createAiDecompilationTaskValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -367,7 +350,6 @@ public ApiResponse createAiDecompilationTaskWithHttpInfo(@javax.an * Begins AI Decompilation Process (asynchronously) * Begins the AI Decompilation Process * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -383,9 +365,9 @@ public ApiResponse createAiDecompilationTaskWithHttpInfo(@javax.an 400 Bad Request - */ - public okhttp3.Call createAiDecompilationTaskAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createAiDecompilationTaskAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createAiDecompilationTaskValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = createAiDecompilationTaskValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -394,7 +376,6 @@ public okhttp3.Call createAiDecompilationTaskAsync(@javax.annotation.Nonnull Int * Build call for deleteAiDecompilationComment * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -408,7 +389,7 @@ public okhttp3.Call createAiDecompilationTaskAsync(@javax.annotation.Nonnull Int 400 Bad Request - */ - public okhttp3.Call deleteAiDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAiDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -450,17 +431,12 @@ public okhttp3.Call deleteAiDecompilationCommentCall(@javax.annotation.Nonnull I localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteAiDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteAiDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'commentId' is set if (commentId == null) { throw new ApiException("Missing the required parameter 'commentId' when calling deleteAiDecompilationComment(Async)"); @@ -471,7 +447,7 @@ private okhttp3.Call deleteAiDecompilationCommentValidateBeforeCall(@javax.annot throw new ApiException("Missing the required parameter 'functionId' when calling deleteAiDecompilationComment(Async)"); } - return deleteAiDecompilationCommentCall(commentId, functionId, authorization, _callback); + return deleteAiDecompilationCommentCall(commentId, functionId, _callback); } @@ -480,7 +456,6 @@ private okhttp3.Call deleteAiDecompilationCommentValidateBeforeCall(@javax.annot * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBool * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -493,8 +468,8 @@ private okhttp3.Call deleteAiDecompilationCommentValidateBeforeCall(@javax.annot 400 Bad Request - */ - public BaseResponseBool deleteAiDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = deleteAiDecompilationCommentWithHttpInfo(commentId, functionId, authorization); + public BaseResponseBool deleteAiDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = deleteAiDecompilationCommentWithHttpInfo(commentId, functionId); return localVarResp.getData(); } @@ -503,7 +478,6 @@ public BaseResponseBool deleteAiDecompilationComment(@javax.annotation.Nonnull I * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBool> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -516,8 +490,8 @@ public BaseResponseBool deleteAiDecompilationComment(@javax.annotation.Nonnull I 400 Bad Request - */ - public ApiResponse deleteAiDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteAiDecompilationCommentValidateBeforeCall(commentId, functionId, authorization, null); + public ApiResponse deleteAiDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = deleteAiDecompilationCommentValidateBeforeCall(commentId, functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -527,7 +501,6 @@ public ApiResponse deleteAiDecompilationCommentWithHttpInfo(@j * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -541,9 +514,9 @@ public ApiResponse deleteAiDecompilationCommentWithHttpInfo(@j 400 Bad Request - */ - public okhttp3.Call deleteAiDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAiDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteAiDecompilationCommentValidateBeforeCall(commentId, functionId, authorization, _callback); + okhttp3.Call localVarCall = deleteAiDecompilationCommentValidateBeforeCall(commentId, functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -551,7 +524,6 @@ public okhttp3.Call deleteAiDecompilationCommentAsync(@javax.annotation.Nonnull /** * Build call for getAiDecompilationComments * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -563,7 +535,7 @@ public okhttp3.Call deleteAiDecompilationCommentAsync(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public okhttp3.Call getAiDecompilationCommentsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationCommentsCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -604,23 +576,18 @@ public okhttp3.Call getAiDecompilationCommentsCall(@javax.annotation.Nonnull Int localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAiDecompilationCommentsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAiDecompilationCommentsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getAiDecompilationComments(Async)"); } - return getAiDecompilationCommentsCall(functionId, authorization, _callback); + return getAiDecompilationCommentsCall(functionId, _callback); } @@ -628,7 +595,6 @@ private okhttp3.Call getAiDecompilationCommentsValidateBeforeCall(@javax.annotat * Get comments for this function * Retrieves all comments created for a specific function. Only returns comments for resources the requesting user has access to. * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -639,8 +605,8 @@ private okhttp3.Call getAiDecompilationCommentsValidateBeforeCall(@javax.annotat 422 Invalid request parameters - */ - public BaseResponseListCommentResponse getAiDecompilationComments(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAiDecompilationCommentsWithHttpInfo(functionId, authorization); + public BaseResponseListCommentResponse getAiDecompilationComments(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getAiDecompilationCommentsWithHttpInfo(functionId); return localVarResp.getData(); } @@ -648,7 +614,6 @@ public BaseResponseListCommentResponse getAiDecompilationComments(@javax.annotat * Get comments for this function * Retrieves all comments created for a specific function. Only returns comments for resources the requesting user has access to. * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -659,8 +624,8 @@ public BaseResponseListCommentResponse getAiDecompilationComments(@javax.annotat 422 Invalid request parameters - */ - public ApiResponse getAiDecompilationCommentsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationCommentsValidateBeforeCall(functionId, authorization, null); + public ApiResponse getAiDecompilationCommentsWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getAiDecompilationCommentsValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -669,7 +634,6 @@ public ApiResponse getAiDecompilationCommentsWi * Get comments for this function (asynchronously) * Retrieves all comments created for a specific function. Only returns comments for resources the requesting user has access to. * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -681,9 +645,9 @@ public ApiResponse getAiDecompilationCommentsWi 422 Invalid request parameters - */ - public okhttp3.Call getAiDecompilationCommentsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationCommentsAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationCommentsValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getAiDecompilationCommentsValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -691,7 +655,6 @@ public okhttp3.Call getAiDecompilationCommentsAsync(@javax.annotation.Nonnull In /** * Build call for getAiDecompilationRating * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -703,7 +666,7 @@ public okhttp3.Call getAiDecompilationCommentsAsync(@javax.annotation.Nonnull In 422 Invalid request parameters - */ - public okhttp3.Call getAiDecompilationRatingCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationRatingCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -744,23 +707,18 @@ public okhttp3.Call getAiDecompilationRatingCall(@javax.annotation.Nonnull Integ localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAiDecompilationRatingValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAiDecompilationRatingValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getAiDecompilationRating(Async)"); } - return getAiDecompilationRatingCall(functionId, authorization, _callback); + return getAiDecompilationRatingCall(functionId, _callback); } @@ -768,7 +726,6 @@ private okhttp3.Call getAiDecompilationRatingValidateBeforeCall(@javax.annotatio * Get rating for AI decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseGetAiDecompilationRatingResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -779,8 +736,8 @@ private okhttp3.Call getAiDecompilationRatingValidateBeforeCall(@javax.annotatio 422 Invalid request parameters - */ - public BaseResponseGetAiDecompilationRatingResponse getAiDecompilationRating(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAiDecompilationRatingWithHttpInfo(functionId, authorization); + public BaseResponseGetAiDecompilationRatingResponse getAiDecompilationRating(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getAiDecompilationRatingWithHttpInfo(functionId); return localVarResp.getData(); } @@ -788,7 +745,6 @@ public BaseResponseGetAiDecompilationRatingResponse getAiDecompilationRating(@ja * Get rating for AI decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseGetAiDecompilationRatingResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -799,8 +755,8 @@ public BaseResponseGetAiDecompilationRatingResponse getAiDecompilationRating(@ja 422 Invalid request parameters - */ - public ApiResponse getAiDecompilationRatingWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationRatingValidateBeforeCall(functionId, authorization, null); + public ApiResponse getAiDecompilationRatingWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getAiDecompilationRatingValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -809,7 +765,6 @@ public ApiResponse getAiDecompilat * Get rating for AI decompilation (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -821,9 +776,9 @@ public ApiResponse getAiDecompilat 422 Invalid request parameters - */ - public okhttp3.Call getAiDecompilationRatingAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationRatingAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationRatingValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getAiDecompilationRatingValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -833,7 +788,6 @@ public okhttp3.Call getAiDecompilationRatingAsync(@javax.annotation.Nonnull Inte * @param functionId (required) * @param summarise Generate a summary for the decompilation (optional, default to true) * @param generateInlineComments Generate inline comments for the decompilation (only works if summarise is enabled) (optional, default to true) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -846,7 +800,7 @@ public okhttp3.Call getAiDecompilationRatingAsync(@javax.annotation.Nonnull Inte 403 Forbidden - */ - public okhttp3.Call getAiDecompilationTaskResultCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationTaskResultCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -895,23 +849,18 @@ public okhttp3.Call getAiDecompilationTaskResultCall(@javax.annotation.Nonnull I localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAiDecompilationTaskResultValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAiDecompilationTaskResultValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getAiDecompilationTaskResult(Async)"); } - return getAiDecompilationTaskResultCall(functionId, summarise, generateInlineComments, authorization, _callback); + return getAiDecompilationTaskResultCall(functionId, summarise, generateInlineComments, _callback); } @@ -921,7 +870,6 @@ private okhttp3.Call getAiDecompilationTaskResultValidateBeforeCall(@javax.annot * @param functionId (required) * @param summarise Generate a summary for the decompilation (optional, default to true) * @param generateInlineComments Generate inline comments for the decompilation (only works if summarise is enabled) (optional, default to true) - * @param authorization API Key bearer token (optional) * @return BaseResponseGetAiDecompilationTask * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -933,8 +881,8 @@ private okhttp3.Call getAiDecompilationTaskResultValidateBeforeCall(@javax.annot 403 Forbidden - */ - public BaseResponseGetAiDecompilationTask getAiDecompilationTaskResult(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAiDecompilationTaskResultWithHttpInfo(functionId, summarise, generateInlineComments, authorization); + public BaseResponseGetAiDecompilationTask getAiDecompilationTaskResult(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments) throws ApiException { + ApiResponse localVarResp = getAiDecompilationTaskResultWithHttpInfo(functionId, summarise, generateInlineComments); return localVarResp.getData(); } @@ -944,7 +892,6 @@ public BaseResponseGetAiDecompilationTask getAiDecompilationTaskResult(@javax.an * @param functionId (required) * @param summarise Generate a summary for the decompilation (optional, default to true) * @param generateInlineComments Generate inline comments for the decompilation (only works if summarise is enabled) (optional, default to true) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseGetAiDecompilationTask> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -956,8 +903,8 @@ public BaseResponseGetAiDecompilationTask getAiDecompilationTaskResult(@javax.an 403 Forbidden - */ - public ApiResponse getAiDecompilationTaskResultWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationTaskResultValidateBeforeCall(functionId, summarise, generateInlineComments, authorization, null); + public ApiResponse getAiDecompilationTaskResultWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments) throws ApiException { + okhttp3.Call localVarCall = getAiDecompilationTaskResultValidateBeforeCall(functionId, summarise, generateInlineComments, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -968,7 +915,6 @@ public ApiResponse getAiDecompilationTaskRes * @param functionId (required) * @param summarise Generate a summary for the decompilation (optional, default to true) * @param generateInlineComments Generate inline comments for the decompilation (only works if summarise is enabled) (optional, default to true) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -981,9 +927,9 @@ public ApiResponse getAiDecompilationTaskRes 403 Forbidden - */ - public okhttp3.Call getAiDecompilationTaskResultAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationTaskResultAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Boolean summarise, @javax.annotation.Nullable Boolean generateInlineComments, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationTaskResultValidateBeforeCall(functionId, summarise, generateInlineComments, authorization, _callback); + okhttp3.Call localVarCall = getAiDecompilationTaskResultValidateBeforeCall(functionId, summarise, generateInlineComments, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -991,7 +937,6 @@ public okhttp3.Call getAiDecompilationTaskResultAsync(@javax.annotation.Nonnull /** * Build call for getAiDecompilationTaskStatus * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1003,7 +948,7 @@ public okhttp3.Call getAiDecompilationTaskResultAsync(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public okhttp3.Call getAiDecompilationTaskStatusCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationTaskStatusCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1044,23 +989,18 @@ public okhttp3.Call getAiDecompilationTaskStatusCall(@javax.annotation.Nonnull I localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAiDecompilationTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAiDecompilationTaskStatusValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getAiDecompilationTaskStatus(Async)"); } - return getAiDecompilationTaskStatusCall(functionId, authorization, _callback); + return getAiDecompilationTaskStatusCall(functionId, _callback); } @@ -1068,7 +1008,6 @@ private okhttp3.Call getAiDecompilationTaskStatusValidateBeforeCall(@javax.annot * Check the status of a function ai decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionTaskResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1079,8 +1018,8 @@ private okhttp3.Call getAiDecompilationTaskStatusValidateBeforeCall(@javax.annot 422 Invalid request parameters - */ - public BaseResponseFunctionTaskResponse getAiDecompilationTaskStatus(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAiDecompilationTaskStatusWithHttpInfo(functionId, authorization); + public BaseResponseFunctionTaskResponse getAiDecompilationTaskStatus(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getAiDecompilationTaskStatusWithHttpInfo(functionId); return localVarResp.getData(); } @@ -1088,7 +1027,6 @@ public BaseResponseFunctionTaskResponse getAiDecompilationTaskStatus(@javax.anno * Check the status of a function ai decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionTaskResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1099,8 +1037,8 @@ public BaseResponseFunctionTaskResponse getAiDecompilationTaskStatus(@javax.anno 422 Invalid request parameters - */ - public ApiResponse getAiDecompilationTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationTaskStatusValidateBeforeCall(functionId, authorization, null); + public ApiResponse getAiDecompilationTaskStatusWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getAiDecompilationTaskStatusValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1109,7 +1047,6 @@ public ApiResponse getAiDecompilationTaskStatu * Check the status of a function ai decompilation (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1121,9 +1058,9 @@ public ApiResponse getAiDecompilationTaskStatu 422 Invalid request parameters - */ - public okhttp3.Call getAiDecompilationTaskStatusAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAiDecompilationTaskStatusAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAiDecompilationTaskStatusValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getAiDecompilationTaskStatusValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1133,7 +1070,6 @@ public okhttp3.Call getAiDecompilationTaskStatusAsync(@javax.annotation.Nonnull * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1147,7 +1083,7 @@ public okhttp3.Call getAiDecompilationTaskStatusAsync(@javax.annotation.Nonnull 400 Bad Request - */ - public okhttp3.Call updateAiDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAiDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1190,17 +1126,12 @@ public okhttp3.Call updateAiDecompilationCommentCall(@javax.annotation.Nonnull I localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAiDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAiDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'commentId' is set if (commentId == null) { throw new ApiException("Missing the required parameter 'commentId' when calling updateAiDecompilationComment(Async)"); @@ -1216,7 +1147,7 @@ private okhttp3.Call updateAiDecompilationCommentValidateBeforeCall(@javax.annot throw new ApiException("Missing the required parameter 'commentUpdateRequest' when calling updateAiDecompilationComment(Async)"); } - return updateAiDecompilationCommentCall(commentId, functionId, commentUpdateRequest, authorization, _callback); + return updateAiDecompilationCommentCall(commentId, functionId, commentUpdateRequest, _callback); } @@ -1226,7 +1157,6 @@ private okhttp3.Call updateAiDecompilationCommentValidateBeforeCall(@javax.annot * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1239,8 +1169,8 @@ private okhttp3.Call updateAiDecompilationCommentValidateBeforeCall(@javax.annot 400 Bad Request - */ - public BaseResponseCommentResponse updateAiDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateAiDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest, authorization); + public BaseResponseCommentResponse updateAiDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateAiDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest); return localVarResp.getData(); } @@ -1250,7 +1180,6 @@ public BaseResponseCommentResponse updateAiDecompilationComment(@javax.annotatio * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1263,8 +1192,8 @@ public BaseResponseCommentResponse updateAiDecompilationComment(@javax.annotatio 400 Bad Request - */ - public ApiResponse updateAiDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateAiDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, authorization, null); + public ApiResponse updateAiDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateAiDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1275,7 +1204,6 @@ public ApiResponse updateAiDecompilationCommentWith * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1289,9 +1217,9 @@ public ApiResponse updateAiDecompilationCommentWith 400 Bad Request - */ - public okhttp3.Call updateAiDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAiDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAiDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateAiDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1300,7 +1228,6 @@ public okhttp3.Call updateAiDecompilationCommentAsync(@javax.annotation.Nonnull * Build call for upsertAiDecompilationRating * @param functionId (required) * @param upsertAiDecomplationRatingRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1312,7 +1239,7 @@ public okhttp3.Call updateAiDecompilationCommentAsync(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public okhttp3.Call upsertAiDecompilationRatingCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call upsertAiDecompilationRatingCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1354,17 +1281,12 @@ public okhttp3.Call upsertAiDecompilationRatingCall(@javax.annotation.Nonnull In localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call upsertAiDecompilationRatingValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call upsertAiDecompilationRatingValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling upsertAiDecompilationRating(Async)"); @@ -1375,7 +1297,7 @@ private okhttp3.Call upsertAiDecompilationRatingValidateBeforeCall(@javax.annota throw new ApiException("Missing the required parameter 'upsertAiDecomplationRatingRequest' when calling upsertAiDecompilationRating(Async)"); } - return upsertAiDecompilationRatingCall(functionId, upsertAiDecomplationRatingRequest, authorization, _callback); + return upsertAiDecompilationRatingCall(functionId, upsertAiDecomplationRatingRequest, _callback); } @@ -1384,7 +1306,6 @@ private okhttp3.Call upsertAiDecompilationRatingValidateBeforeCall(@javax.annota * * @param functionId (required) * @param upsertAiDecomplationRatingRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1395,8 +1316,8 @@ private okhttp3.Call upsertAiDecompilationRatingValidateBeforeCall(@javax.annota 422 Invalid request parameters - */ - public BaseResponse upsertAiDecompilationRating(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = upsertAiDecompilationRatingWithHttpInfo(functionId, upsertAiDecomplationRatingRequest, authorization); + public BaseResponse upsertAiDecompilationRating(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest) throws ApiException { + ApiResponse localVarResp = upsertAiDecompilationRatingWithHttpInfo(functionId, upsertAiDecomplationRatingRequest); return localVarResp.getData(); } @@ -1405,7 +1326,6 @@ public BaseResponse upsertAiDecompilationRating(@javax.annotation.Nonnull Intege * * @param functionId (required) * @param upsertAiDecomplationRatingRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1416,8 +1336,8 @@ public BaseResponse upsertAiDecompilationRating(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public ApiResponse upsertAiDecompilationRatingWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = upsertAiDecompilationRatingValidateBeforeCall(functionId, upsertAiDecomplationRatingRequest, authorization, null); + public ApiResponse upsertAiDecompilationRatingWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest) throws ApiException { + okhttp3.Call localVarCall = upsertAiDecompilationRatingValidateBeforeCall(functionId, upsertAiDecomplationRatingRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1427,7 +1347,6 @@ public ApiResponse upsertAiDecompilationRatingWithHttpInfo(@javax. * * @param functionId (required) * @param upsertAiDecomplationRatingRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1439,9 +1358,9 @@ public ApiResponse upsertAiDecompilationRatingWithHttpInfo(@javax. 422 Invalid request parameters - */ - public okhttp3.Call upsertAiDecompilationRatingAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call upsertAiDecompilationRatingAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = upsertAiDecompilationRatingValidateBeforeCall(functionId, upsertAiDecomplationRatingRequest, authorization, _callback); + okhttp3.Call localVarCall = upsertAiDecompilationRatingValidateBeforeCall(functionId, upsertAiDecomplationRatingRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FunctionsBlockCommentsApi.java b/src/main/java/ai/reveng/api/FunctionsBlockCommentsApi.java index 9efec6e..ae1b879 100644 --- a/src/main/java/ai/reveng/api/FunctionsBlockCommentsApi.java +++ b/src/main/java/ai/reveng/api/FunctionsBlockCommentsApi.java @@ -78,7 +78,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for generateBlockCommentsForBlockInFunction * @param functionId (required) * @param block (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -90,7 +89,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call generateBlockCommentsForBlockInFunctionCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateBlockCommentsForBlockInFunctionCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -132,17 +131,12 @@ public okhttp3.Call generateBlockCommentsForBlockInFunctionCall(@javax.annotatio localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call generateBlockCommentsForBlockInFunctionValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call generateBlockCommentsForBlockInFunctionValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling generateBlockCommentsForBlockInFunction(Async)"); @@ -153,7 +147,7 @@ private okhttp3.Call generateBlockCommentsForBlockInFunctionValidateBeforeCall(@ throw new ApiException("Missing the required parameter 'block' when calling generateBlockCommentsForBlockInFunction(Async)"); } - return generateBlockCommentsForBlockInFunctionCall(functionId, block, authorization, _callback); + return generateBlockCommentsForBlockInFunctionCall(functionId, block, _callback); } @@ -162,7 +156,6 @@ private okhttp3.Call generateBlockCommentsForBlockInFunctionValidateBeforeCall(@ * * @param functionId (required) * @param block (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBlockCommentsGenerationForFunctionResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -173,8 +166,8 @@ private okhttp3.Call generateBlockCommentsForBlockInFunctionValidateBeforeCall(@ 422 Invalid request parameters - */ - public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForBlockInFunction(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = generateBlockCommentsForBlockInFunctionWithHttpInfo(functionId, block, authorization); + public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForBlockInFunction(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block) throws ApiException { + ApiResponse localVarResp = generateBlockCommentsForBlockInFunctionWithHttpInfo(functionId, block); return localVarResp.getData(); } @@ -183,7 +176,6 @@ public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockComme * * @param functionId (required) * @param block (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBlockCommentsGenerationForFunctionResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -194,8 +186,8 @@ public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockComme 422 Invalid request parameters - */ - public ApiResponse generateBlockCommentsForBlockInFunctionWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = generateBlockCommentsForBlockInFunctionValidateBeforeCall(functionId, block, authorization, null); + public ApiResponse generateBlockCommentsForBlockInFunctionWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block) throws ApiException { + okhttp3.Call localVarCall = generateBlockCommentsForBlockInFunctionValidateBeforeCall(functionId, block, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -205,7 +197,6 @@ public ApiResponse gener * * @param functionId (required) * @param block (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -217,9 +208,9 @@ public ApiResponse gener 422 Invalid request parameters - */ - public okhttp3.Call generateBlockCommentsForBlockInFunctionAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateBlockCommentsForBlockInFunctionAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Block block, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = generateBlockCommentsForBlockInFunctionValidateBeforeCall(functionId, block, authorization, _callback); + okhttp3.Call localVarCall = generateBlockCommentsForBlockInFunctionValidateBeforeCall(functionId, block, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -227,7 +218,6 @@ public okhttp3.Call generateBlockCommentsForBlockInFunctionAsync(@javax.annotati /** * Build call for generateBlockCommentsForFunction * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -239,7 +229,7 @@ public okhttp3.Call generateBlockCommentsForBlockInFunctionAsync(@javax.annotati 422 Invalid request parameters - */ - public okhttp3.Call generateBlockCommentsForFunctionCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateBlockCommentsForFunctionCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -280,23 +270,18 @@ public okhttp3.Call generateBlockCommentsForFunctionCall(@javax.annotation.Nonnu localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call generateBlockCommentsForFunctionValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call generateBlockCommentsForFunctionValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling generateBlockCommentsForFunction(Async)"); } - return generateBlockCommentsForFunctionCall(functionId, authorization, _callback); + return generateBlockCommentsForFunctionCall(functionId, _callback); } @@ -304,7 +289,6 @@ private okhttp3.Call generateBlockCommentsForFunctionValidateBeforeCall(@javax.a * Generate block comments for a function * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBlockCommentsGenerationForFunctionResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -315,8 +299,8 @@ private okhttp3.Call generateBlockCommentsForFunctionValidateBeforeCall(@javax.a 422 Invalid request parameters - */ - public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForFunction(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = generateBlockCommentsForFunctionWithHttpInfo(functionId, authorization); + public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockCommentsForFunction(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = generateBlockCommentsForFunctionWithHttpInfo(functionId); return localVarResp.getData(); } @@ -324,7 +308,6 @@ public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockComme * Generate block comments for a function * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBlockCommentsGenerationForFunctionResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -335,8 +318,8 @@ public BaseResponseBlockCommentsGenerationForFunctionResponse generateBlockComme 422 Invalid request parameters - */ - public ApiResponse generateBlockCommentsForFunctionWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = generateBlockCommentsForFunctionValidateBeforeCall(functionId, authorization, null); + public ApiResponse generateBlockCommentsForFunctionWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = generateBlockCommentsForFunctionValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -345,7 +328,6 @@ public ApiResponse gener * Generate block comments for a function (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -357,9 +339,9 @@ public ApiResponse gener 422 Invalid request parameters - */ - public okhttp3.Call generateBlockCommentsForFunctionAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateBlockCommentsForFunctionAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = generateBlockCommentsForFunctionValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = generateBlockCommentsForFunctionValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -367,7 +349,6 @@ public okhttp3.Call generateBlockCommentsForFunctionAsync(@javax.annotation.Nonn /** * Build call for generateOverviewCommentForFunction * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -379,7 +360,7 @@ public okhttp3.Call generateBlockCommentsForFunctionAsync(@javax.annotation.Nonn 422 Invalid request parameters - */ - public okhttp3.Call generateOverviewCommentForFunctionCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateOverviewCommentForFunctionCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -420,23 +401,18 @@ public okhttp3.Call generateOverviewCommentForFunctionCall(@javax.annotation.Non localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call generateOverviewCommentForFunctionValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call generateOverviewCommentForFunctionValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling generateOverviewCommentForFunction(Async)"); } - return generateOverviewCommentForFunctionCall(functionId, authorization, _callback); + return generateOverviewCommentForFunctionCall(functionId, _callback); } @@ -444,7 +420,6 @@ private okhttp3.Call generateOverviewCommentForFunctionValidateBeforeCall(@javax * Generate overview comment for a function * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBlockCommentsOverviewGenerationResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -455,8 +430,8 @@ private okhttp3.Call generateOverviewCommentForFunctionValidateBeforeCall(@javax 422 Invalid request parameters - */ - public BaseResponseBlockCommentsOverviewGenerationResponse generateOverviewCommentForFunction(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = generateOverviewCommentForFunctionWithHttpInfo(functionId, authorization); + public BaseResponseBlockCommentsOverviewGenerationResponse generateOverviewCommentForFunction(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = generateOverviewCommentForFunctionWithHttpInfo(functionId); return localVarResp.getData(); } @@ -464,7 +439,6 @@ public BaseResponseBlockCommentsOverviewGenerationResponse generateOverviewComme * Generate overview comment for a function * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBlockCommentsOverviewGenerationResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -475,8 +449,8 @@ public BaseResponseBlockCommentsOverviewGenerationResponse generateOverviewComme 422 Invalid request parameters - */ - public ApiResponse generateOverviewCommentForFunctionWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = generateOverviewCommentForFunctionValidateBeforeCall(functionId, authorization, null); + public ApiResponse generateOverviewCommentForFunctionWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = generateOverviewCommentForFunctionValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -485,7 +459,6 @@ public ApiResponse generate * Generate overview comment for a function (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -497,9 +470,9 @@ public ApiResponse generate 422 Invalid request parameters - */ - public okhttp3.Call generateOverviewCommentForFunctionAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateOverviewCommentForFunctionAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = generateOverviewCommentForFunctionValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = generateOverviewCommentForFunctionValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FunctionsCoreApi.java b/src/main/java/ai/reveng/api/FunctionsCoreApi.java index 4a356be..a4961ec 100644 --- a/src/main/java/ai/reveng/api/FunctionsCoreApi.java +++ b/src/main/java/ai/reveng/api/FunctionsCoreApi.java @@ -89,7 +89,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for aiUnstrip * @param analysisId (required) * @param aiUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -101,7 +100,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call aiUnstripCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call aiUnstripCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -143,17 +142,12 @@ public okhttp3.Call aiUnstripCall(@javax.annotation.Nonnull Integer analysisId, localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call aiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call aiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling aiUnstrip(Async)"); @@ -164,7 +158,7 @@ private okhttp3.Call aiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integ throw new ApiException("Missing the required parameter 'aiUnstripRequest' when calling aiUnstrip(Async)"); } - return aiUnstripCall(analysisId, aiUnstripRequest, authorization, _callback); + return aiUnstripCall(analysisId, aiUnstripRequest, _callback); } @@ -173,7 +167,6 @@ private okhttp3.Call aiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integ * Takes in the analysis ID, uses the functions ID's from it and settings to find the nearest function groups for each function that's within the system * @param analysisId (required) * @param aiUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @return AutoUnstripResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -184,8 +177,8 @@ private okhttp3.Call aiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integ 422 Invalid request parameters - */ - public AutoUnstripResponse aiUnstrip(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = aiUnstripWithHttpInfo(analysisId, aiUnstripRequest, authorization); + public AutoUnstripResponse aiUnstrip(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest) throws ApiException { + ApiResponse localVarResp = aiUnstripWithHttpInfo(analysisId, aiUnstripRequest); return localVarResp.getData(); } @@ -194,7 +187,6 @@ public AutoUnstripResponse aiUnstrip(@javax.annotation.Nonnull Integer analysisI * Takes in the analysis ID, uses the functions ID's from it and settings to find the nearest function groups for each function that's within the system * @param analysisId (required) * @param aiUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<AutoUnstripResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -205,8 +197,8 @@ public AutoUnstripResponse aiUnstrip(@javax.annotation.Nonnull Integer analysisI 422 Invalid request parameters - */ - public ApiResponse aiUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = aiUnstripValidateBeforeCall(analysisId, aiUnstripRequest, authorization, null); + public ApiResponse aiUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest) throws ApiException { + okhttp3.Call localVarCall = aiUnstripValidateBeforeCall(analysisId, aiUnstripRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -216,7 +208,6 @@ public ApiResponse aiUnstripWithHttpInfo(@javax.annotation. * Takes in the analysis ID, uses the functions ID's from it and settings to find the nearest function groups for each function that's within the system * @param analysisId (required) * @param aiUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -228,9 +219,9 @@ public ApiResponse aiUnstripWithHttpInfo(@javax.annotation. 422 Invalid request parameters - */ - public okhttp3.Call aiUnstripAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call aiUnstripAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AiUnstripRequest aiUnstripRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = aiUnstripValidateBeforeCall(analysisId, aiUnstripRequest, authorization, _callback); + okhttp3.Call localVarCall = aiUnstripValidateBeforeCall(analysisId, aiUnstripRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -239,7 +230,6 @@ public okhttp3.Call aiUnstripAsync(@javax.annotation.Nonnull Integer analysisId, * Build call for analysisFunctionMatching * @param analysisId (required) * @param analysisFunctionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -251,7 +241,7 @@ public okhttp3.Call aiUnstripAsync(@javax.annotation.Nonnull Integer analysisId, 422 Invalid request parameters - */ - public okhttp3.Call analysisFunctionMatchingCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call analysisFunctionMatchingCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -293,17 +283,12 @@ public okhttp3.Call analysisFunctionMatchingCall(@javax.annotation.Nonnull Integ localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling analysisFunctionMatching(Async)"); @@ -314,7 +299,7 @@ private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotatio throw new ApiException("Missing the required parameter 'analysisFunctionMatchingRequest' when calling analysisFunctionMatching(Async)"); } - return analysisFunctionMatchingCall(analysisId, analysisFunctionMatchingRequest, authorization, _callback); + return analysisFunctionMatchingCall(analysisId, analysisFunctionMatchingRequest, _callback); } @@ -323,7 +308,6 @@ private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotatio * Takes in an analysis id and settings and matches the nearest functions to the ones associated with it. Results can optionally be filtered by collection, binary, debug type or (other) function ids * @param analysisId (required) * @param analysisFunctionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @return FunctionMatchingBatchResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -334,8 +318,8 @@ private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotatio 422 Invalid request parameters - */ - public FunctionMatchingBatchResponse analysisFunctionMatching(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = analysisFunctionMatchingWithHttpInfo(analysisId, analysisFunctionMatchingRequest, authorization); + public FunctionMatchingBatchResponse analysisFunctionMatching(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest) throws ApiException { + ApiResponse localVarResp = analysisFunctionMatchingWithHttpInfo(analysisId, analysisFunctionMatchingRequest); return localVarResp.getData(); } @@ -344,7 +328,6 @@ public FunctionMatchingBatchResponse analysisFunctionMatching(@javax.annotation. * Takes in an analysis id and settings and matches the nearest functions to the ones associated with it. Results can optionally be filtered by collection, binary, debug type or (other) function ids * @param analysisId (required) * @param analysisFunctionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<FunctionMatchingBatchResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -355,8 +338,8 @@ public FunctionMatchingBatchResponse analysisFunctionMatching(@javax.annotation. 422 Invalid request parameters - */ - public ApiResponse analysisFunctionMatchingWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = analysisFunctionMatchingValidateBeforeCall(analysisId, analysisFunctionMatchingRequest, authorization, null); + public ApiResponse analysisFunctionMatchingWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest) throws ApiException { + okhttp3.Call localVarCall = analysisFunctionMatchingValidateBeforeCall(analysisId, analysisFunctionMatchingRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -366,7 +349,6 @@ public ApiResponse analysisFunctionMatchingWithHt * Takes in an analysis id and settings and matches the nearest functions to the ones associated with it. Results can optionally be filtered by collection, binary, debug type or (other) function ids * @param analysisId (required) * @param analysisFunctionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -378,9 +360,9 @@ public ApiResponse analysisFunctionMatchingWithHt 422 Invalid request parameters - */ - public okhttp3.Call analysisFunctionMatchingAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call analysisFunctionMatchingAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = analysisFunctionMatchingValidateBeforeCall(analysisId, analysisFunctionMatchingRequest, authorization, _callback); + okhttp3.Call localVarCall = analysisFunctionMatchingValidateBeforeCall(analysisId, analysisFunctionMatchingRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -389,7 +371,6 @@ public okhttp3.Call analysisFunctionMatchingAsync(@javax.annotation.Nonnull Inte * Build call for autoUnstrip * @param analysisId (required) * @param autoUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -401,7 +382,7 @@ public okhttp3.Call analysisFunctionMatchingAsync(@javax.annotation.Nonnull Inte 422 Invalid request parameters - */ - public okhttp3.Call autoUnstripCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call autoUnstripCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -443,17 +424,12 @@ public okhttp3.Call autoUnstripCall(@javax.annotation.Nonnull Integer analysisId localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call autoUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call autoUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling autoUnstrip(Async)"); @@ -464,7 +440,7 @@ private okhttp3.Call autoUnstripValidateBeforeCall(@javax.annotation.Nonnull Int throw new ApiException("Missing the required parameter 'autoUnstripRequest' when calling autoUnstrip(Async)"); } - return autoUnstripCall(analysisId, autoUnstripRequest, authorization, _callback); + return autoUnstripCall(analysisId, autoUnstripRequest, _callback); } @@ -473,7 +449,6 @@ private okhttp3.Call autoUnstripValidateBeforeCall(@javax.annotation.Nonnull Int * Takes in the analysis ID, uses the functions ID's from it and settings to find the nearest function for each function that's within the system * @param analysisId (required) * @param autoUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @return AutoUnstripResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -484,8 +459,8 @@ private okhttp3.Call autoUnstripValidateBeforeCall(@javax.annotation.Nonnull Int 422 Invalid request parameters - */ - public AutoUnstripResponse autoUnstrip(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = autoUnstripWithHttpInfo(analysisId, autoUnstripRequest, authorization); + public AutoUnstripResponse autoUnstrip(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest) throws ApiException { + ApiResponse localVarResp = autoUnstripWithHttpInfo(analysisId, autoUnstripRequest); return localVarResp.getData(); } @@ -494,7 +469,6 @@ public AutoUnstripResponse autoUnstrip(@javax.annotation.Nonnull Integer analysi * Takes in the analysis ID, uses the functions ID's from it and settings to find the nearest function for each function that's within the system * @param analysisId (required) * @param autoUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<AutoUnstripResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -505,8 +479,8 @@ public AutoUnstripResponse autoUnstrip(@javax.annotation.Nonnull Integer analysi 422 Invalid request parameters - */ - public ApiResponse autoUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = autoUnstripValidateBeforeCall(analysisId, autoUnstripRequest, authorization, null); + public ApiResponse autoUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest) throws ApiException { + okhttp3.Call localVarCall = autoUnstripValidateBeforeCall(analysisId, autoUnstripRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -516,7 +490,6 @@ public ApiResponse autoUnstripWithHttpInfo(@javax.annotatio * Takes in the analysis ID, uses the functions ID's from it and settings to find the nearest function for each function that's within the system * @param analysisId (required) * @param autoUnstripRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -528,9 +501,9 @@ public ApiResponse autoUnstripWithHttpInfo(@javax.annotatio 422 Invalid request parameters - */ - public okhttp3.Call autoUnstripAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call autoUnstripAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull AutoUnstripRequest autoUnstripRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = autoUnstripValidateBeforeCall(analysisId, autoUnstripRequest, authorization, _callback); + okhttp3.Call localVarCall = autoUnstripValidateBeforeCall(analysisId, autoUnstripRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -538,7 +511,6 @@ public okhttp3.Call autoUnstripAsync(@javax.annotation.Nonnull Integer analysisI /** * Build call for batchFunctionMatching * @param functionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -550,7 +522,7 @@ public okhttp3.Call autoUnstripAsync(@javax.annotation.Nonnull Integer analysisI 422 Invalid request parameters - */ - public okhttp3.Call batchFunctionMatchingCall(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call batchFunctionMatchingCall(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -591,23 +563,18 @@ public okhttp3.Call batchFunctionMatchingCall(@javax.annotation.Nonnull Function localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call batchFunctionMatchingValidateBeforeCall(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call batchFunctionMatchingValidateBeforeCall(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionMatchingRequest' is set if (functionMatchingRequest == null) { throw new ApiException("Missing the required parameter 'functionMatchingRequest' when calling batchFunctionMatching(Async)"); } - return batchFunctionMatchingCall(functionMatchingRequest, authorization, _callback); + return batchFunctionMatchingCall(functionMatchingRequest, _callback); } @@ -615,7 +582,6 @@ private okhttp3.Call batchFunctionMatchingValidateBeforeCall(@javax.annotation.N * Perform function matching for an arbitrary batch of functions, binaries or collections * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system * @param functionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @return FunctionMatchingBatchResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -626,8 +592,8 @@ private okhttp3.Call batchFunctionMatchingValidateBeforeCall(@javax.annotation.N 422 Invalid request parameters - */ - public FunctionMatchingBatchResponse batchFunctionMatching(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = batchFunctionMatchingWithHttpInfo(functionMatchingRequest, authorization); + public FunctionMatchingBatchResponse batchFunctionMatching(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest) throws ApiException { + ApiResponse localVarResp = batchFunctionMatchingWithHttpInfo(functionMatchingRequest); return localVarResp.getData(); } @@ -635,7 +601,6 @@ public FunctionMatchingBatchResponse batchFunctionMatching(@javax.annotation.Non * Perform function matching for an arbitrary batch of functions, binaries or collections * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system * @param functionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<FunctionMatchingBatchResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -646,8 +611,8 @@ public FunctionMatchingBatchResponse batchFunctionMatching(@javax.annotation.Non 422 Invalid request parameters - */ - public ApiResponse batchFunctionMatchingWithHttpInfo(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = batchFunctionMatchingValidateBeforeCall(functionMatchingRequest, authorization, null); + public ApiResponse batchFunctionMatchingWithHttpInfo(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest) throws ApiException { + okhttp3.Call localVarCall = batchFunctionMatchingValidateBeforeCall(functionMatchingRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -656,7 +621,6 @@ public ApiResponse batchFunctionMatchingWithHttpI * Perform function matching for an arbitrary batch of functions, binaries or collections (asynchronously) * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system * @param functionMatchingRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -668,9 +632,9 @@ public ApiResponse batchFunctionMatchingWithHttpI 422 Invalid request parameters - */ - public okhttp3.Call batchFunctionMatchingAsync(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call batchFunctionMatchingAsync(@javax.annotation.Nonnull FunctionMatchingRequest functionMatchingRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = batchFunctionMatchingValidateBeforeCall(functionMatchingRequest, authorization, _callback); + okhttp3.Call localVarCall = batchFunctionMatchingValidateBeforeCall(functionMatchingRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -678,7 +642,6 @@ public okhttp3.Call batchFunctionMatchingAsync(@javax.annotation.Nonnull Functio /** * Build call for cancelAiUnstrip * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -690,7 +653,7 @@ public okhttp3.Call batchFunctionMatchingAsync(@javax.annotation.Nonnull Functio 422 Invalid request parameters - */ - public okhttp3.Call cancelAiUnstripCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call cancelAiUnstripCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -731,23 +694,18 @@ public okhttp3.Call cancelAiUnstripCall(@javax.annotation.Nonnull Integer analys localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call cancelAiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call cancelAiUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling cancelAiUnstrip(Async)"); } - return cancelAiUnstripCall(analysisId, authorization, _callback); + return cancelAiUnstripCall(analysisId, _callback); } @@ -755,7 +713,6 @@ private okhttp3.Call cancelAiUnstripValidateBeforeCall(@javax.annotation.Nonnull * Cancels a running ai-unstrip * Takes in the analysis ID and cancels a running ai-unstrip operation * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return AutoUnstripResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -766,8 +723,8 @@ private okhttp3.Call cancelAiUnstripValidateBeforeCall(@javax.annotation.Nonnull 422 Invalid request parameters - */ - public AutoUnstripResponse cancelAiUnstrip(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = cancelAiUnstripWithHttpInfo(analysisId, authorization); + public AutoUnstripResponse cancelAiUnstrip(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = cancelAiUnstripWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -775,7 +732,6 @@ public AutoUnstripResponse cancelAiUnstrip(@javax.annotation.Nonnull Integer ana * Cancels a running ai-unstrip * Takes in the analysis ID and cancels a running ai-unstrip operation * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<AutoUnstripResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -786,8 +742,8 @@ public AutoUnstripResponse cancelAiUnstrip(@javax.annotation.Nonnull Integer ana 422 Invalid request parameters - */ - public ApiResponse cancelAiUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = cancelAiUnstripValidateBeforeCall(analysisId, authorization, null); + public ApiResponse cancelAiUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = cancelAiUnstripValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -796,7 +752,6 @@ public ApiResponse cancelAiUnstripWithHttpInfo(@javax.annot * Cancels a running ai-unstrip (asynchronously) * Takes in the analysis ID and cancels a running ai-unstrip operation * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -808,9 +763,9 @@ public ApiResponse cancelAiUnstripWithHttpInfo(@javax.annot 422 Invalid request parameters - */ - public okhttp3.Call cancelAiUnstripAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call cancelAiUnstripAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = cancelAiUnstripValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = cancelAiUnstripValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -818,7 +773,6 @@ public okhttp3.Call cancelAiUnstripAsync(@javax.annotation.Nonnull Integer analy /** * Build call for cancelAutoUnstrip * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -830,7 +784,7 @@ public okhttp3.Call cancelAiUnstripAsync(@javax.annotation.Nonnull Integer analy 422 Invalid request parameters - */ - public okhttp3.Call cancelAutoUnstripCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call cancelAutoUnstripCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -871,23 +825,18 @@ public okhttp3.Call cancelAutoUnstripCall(@javax.annotation.Nonnull Integer anal localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call cancelAutoUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call cancelAutoUnstripValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling cancelAutoUnstrip(Async)"); } - return cancelAutoUnstripCall(analysisId, authorization, _callback); + return cancelAutoUnstripCall(analysisId, _callback); } @@ -895,7 +844,6 @@ private okhttp3.Call cancelAutoUnstripValidateBeforeCall(@javax.annotation.Nonnu * Cancels a running auto-unstrip * Takes in the analysis ID and cancels a running auto-unstrip operation * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return AutoUnstripResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -906,8 +854,8 @@ private okhttp3.Call cancelAutoUnstripValidateBeforeCall(@javax.annotation.Nonnu 422 Invalid request parameters - */ - public AutoUnstripResponse cancelAutoUnstrip(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = cancelAutoUnstripWithHttpInfo(analysisId, authorization); + public AutoUnstripResponse cancelAutoUnstrip(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + ApiResponse localVarResp = cancelAutoUnstripWithHttpInfo(analysisId); return localVarResp.getData(); } @@ -915,7 +863,6 @@ public AutoUnstripResponse cancelAutoUnstrip(@javax.annotation.Nonnull Integer a * Cancels a running auto-unstrip * Takes in the analysis ID and cancels a running auto-unstrip operation * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<AutoUnstripResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -926,8 +873,8 @@ public AutoUnstripResponse cancelAutoUnstrip(@javax.annotation.Nonnull Integer a 422 Invalid request parameters - */ - public ApiResponse cancelAutoUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = cancelAutoUnstripValidateBeforeCall(analysisId, authorization, null); + public ApiResponse cancelAutoUnstripWithHttpInfo(@javax.annotation.Nonnull Integer analysisId) throws ApiException { + okhttp3.Call localVarCall = cancelAutoUnstripValidateBeforeCall(analysisId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -936,7 +883,6 @@ public ApiResponse cancelAutoUnstripWithHttpInfo(@javax.ann * Cancels a running auto-unstrip (asynchronously) * Takes in the analysis ID and cancels a running auto-unstrip operation * @param analysisId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -948,9 +894,9 @@ public ApiResponse cancelAutoUnstripWithHttpInfo(@javax.ann 422 Invalid request parameters - */ - public okhttp3.Call cancelAutoUnstripAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call cancelAutoUnstripAsync(@javax.annotation.Nonnull Integer analysisId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = cancelAutoUnstripValidateBeforeCall(analysisId, authorization, _callback); + okhttp3.Call localVarCall = cancelAutoUnstripValidateBeforeCall(analysisId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -962,7 +908,6 @@ public okhttp3.Call cancelAutoUnstripAsync(@javax.annotation.Nonnull Integer ana * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) * @param functionSearch Search is applied to function names (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -974,7 +919,7 @@ public okhttp3.Call cancelAutoUnstripAsync(@javax.annotation.Nonnull Integer ana 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisStringsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisStringsCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1031,23 +976,18 @@ public okhttp3.Call getAnalysisStringsCall(@javax.annotation.Nonnull Integer ana localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getAnalysisStringsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAnalysisStringsValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getAnalysisStrings(Async)"); } - return getAnalysisStringsCall(analysisId, page, pageSize, search, functionSearch, authorization, _callback); + return getAnalysisStringsCall(analysisId, page, pageSize, search, functionSearch, _callback); } @@ -1059,7 +999,6 @@ private okhttp3.Call getAnalysisStringsValidateBeforeCall(@javax.annotation.Nonn * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) * @param functionSearch Search is applied to function names (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseAnalysisStringsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1070,8 +1009,8 @@ private okhttp3.Call getAnalysisStringsValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseAnalysisStringsResponse getAnalysisStrings(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getAnalysisStringsWithHttpInfo(analysisId, page, pageSize, search, functionSearch, authorization); + public BaseResponseAnalysisStringsResponse getAnalysisStrings(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch) throws ApiException { + ApiResponse localVarResp = getAnalysisStringsWithHttpInfo(analysisId, page, pageSize, search, functionSearch); return localVarResp.getData(); } @@ -1083,7 +1022,6 @@ public BaseResponseAnalysisStringsResponse getAnalysisStrings(@javax.annotation. * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) * @param functionSearch Search is applied to function names (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseAnalysisStringsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1094,8 +1032,8 @@ public BaseResponseAnalysisStringsResponse getAnalysisStrings(@javax.annotation. 422 Invalid request parameters - */ - public ApiResponse getAnalysisStringsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getAnalysisStringsValidateBeforeCall(analysisId, page, pageSize, search, functionSearch, authorization, null); + public ApiResponse getAnalysisStringsWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch) throws ApiException { + okhttp3.Call localVarCall = getAnalysisStringsValidateBeforeCall(analysisId, page, pageSize, search, functionSearch, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1108,7 +1046,6 @@ public ApiResponse getAnalysisStringsWithHt * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) * @param functionSearch Search is applied to function names (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1120,9 +1057,9 @@ public ApiResponse getAnalysisStringsWithHt 422 Invalid request parameters - */ - public okhttp3.Call getAnalysisStringsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAnalysisStringsAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String functionSearch, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAnalysisStringsValidateBeforeCall(analysisId, page, pageSize, search, functionSearch, authorization, _callback); + okhttp3.Call localVarCall = getAnalysisStringsValidateBeforeCall(analysisId, page, pageSize, search, functionSearch, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1130,7 +1067,6 @@ public okhttp3.Call getAnalysisStringsAsync(@javax.annotation.Nonnull Integer an /** * Build call for getFunctionBlocks * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1143,7 +1079,7 @@ public okhttp3.Call getAnalysisStringsAsync(@javax.annotation.Nonnull Integer an 404 Not Found - */ - public okhttp3.Call getFunctionBlocksCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionBlocksCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1184,23 +1120,18 @@ public okhttp3.Call getFunctionBlocksCall(@javax.annotation.Nonnull Integer func localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionBlocksValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionBlocksValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionBlocks(Async)"); } - return getFunctionBlocksCall(functionId, authorization, _callback); + return getFunctionBlocksCall(functionId, _callback); } @@ -1208,7 +1139,6 @@ private okhttp3.Call getFunctionBlocksValidateBeforeCall(@javax.annotation.Nonnu * Get disassembly blocks related to the function * Get disassembly blocks related to the function * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionBlocksResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1220,8 +1150,8 @@ private okhttp3.Call getFunctionBlocksValidateBeforeCall(@javax.annotation.Nonnu 404 Not Found - */ - public BaseResponseFunctionBlocksResponse getFunctionBlocks(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionBlocksWithHttpInfo(functionId, authorization); + public BaseResponseFunctionBlocksResponse getFunctionBlocks(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionBlocksWithHttpInfo(functionId); return localVarResp.getData(); } @@ -1229,7 +1159,6 @@ public BaseResponseFunctionBlocksResponse getFunctionBlocks(@javax.annotation.No * Get disassembly blocks related to the function * Get disassembly blocks related to the function * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionBlocksResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1241,8 +1170,8 @@ public BaseResponseFunctionBlocksResponse getFunctionBlocks(@javax.annotation.No 404 Not Found - */ - public ApiResponse getFunctionBlocksWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionBlocksValidateBeforeCall(functionId, authorization, null); + public ApiResponse getFunctionBlocksWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionBlocksValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1251,7 +1180,6 @@ public ApiResponse getFunctionBlocksWithHttp * Get disassembly blocks related to the function (asynchronously) * Get disassembly blocks related to the function * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1264,9 +1192,9 @@ public ApiResponse getFunctionBlocksWithHttp 404 Not Found - */ - public okhttp3.Call getFunctionBlocksAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionBlocksAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionBlocksValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionBlocksValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1274,7 +1202,6 @@ public okhttp3.Call getFunctionBlocksAsync(@javax.annotation.Nonnull Integer fun /** * Build call for getFunctionCalleesCallers * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1286,7 +1213,7 @@ public okhttp3.Call getFunctionBlocksAsync(@javax.annotation.Nonnull Integer fun 422 Invalid request parameters - */ - public okhttp3.Call getFunctionCalleesCallersCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionCalleesCallersCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1327,23 +1254,18 @@ public okhttp3.Call getFunctionCalleesCallersCall(@javax.annotation.Nonnull Inte localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionCalleesCallersValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionCalleesCallersValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionCalleesCallers(Async)"); } - return getFunctionCalleesCallersCall(functionId, authorization, _callback); + return getFunctionCalleesCallersCall(functionId, _callback); } @@ -1351,7 +1273,6 @@ private okhttp3.Call getFunctionCalleesCallersValidateBeforeCall(@javax.annotati * Get list of functions that call or are called by the specified function * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCalleesCallerFunctionsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1362,8 +1283,8 @@ private okhttp3.Call getFunctionCalleesCallersValidateBeforeCall(@javax.annotati 422 Invalid request parameters - */ - public BaseResponseCalleesCallerFunctionsResponse getFunctionCalleesCallers(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionCalleesCallersWithHttpInfo(functionId, authorization); + public BaseResponseCalleesCallerFunctionsResponse getFunctionCalleesCallers(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionCalleesCallersWithHttpInfo(functionId); return localVarResp.getData(); } @@ -1371,7 +1292,6 @@ public BaseResponseCalleesCallerFunctionsResponse getFunctionCalleesCallers(@jav * Get list of functions that call or are called by the specified function * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCalleesCallerFunctionsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1382,8 +1302,8 @@ public BaseResponseCalleesCallerFunctionsResponse getFunctionCalleesCallers(@jav 422 Invalid request parameters - */ - public ApiResponse getFunctionCalleesCallersWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionCalleesCallersValidateBeforeCall(functionId, authorization, null); + public ApiResponse getFunctionCalleesCallersWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionCalleesCallersValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1392,7 +1312,6 @@ public ApiResponse getFunctionCallee * Get list of functions that call or are called by the specified function (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1404,9 +1323,9 @@ public ApiResponse getFunctionCallee 422 Invalid request parameters - */ - public okhttp3.Call getFunctionCalleesCallersAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionCalleesCallersAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionCalleesCallersValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionCalleesCallersValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1414,7 +1333,6 @@ public okhttp3.Call getFunctionCalleesCallersAsync(@javax.annotation.Nonnull Int /** * Build call for getFunctionCapabilities * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1427,7 +1345,7 @@ public okhttp3.Call getFunctionCalleesCallersAsync(@javax.annotation.Nonnull Int 404 Not Found - */ - public okhttp3.Call getFunctionCapabilitiesCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionCapabilitiesCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1468,23 +1386,18 @@ public okhttp3.Call getFunctionCapabilitiesCall(@javax.annotation.Nonnull Intege localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionCapabilitiesValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionCapabilitiesValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionCapabilities(Async)"); } - return getFunctionCapabilitiesCall(functionId, authorization, _callback); + return getFunctionCapabilitiesCall(functionId, _callback); } @@ -1492,7 +1405,6 @@ private okhttp3.Call getFunctionCapabilitiesValidateBeforeCall(@javax.annotation * Retrieve a functions capabilities * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionCapabilityResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1504,8 +1416,8 @@ private okhttp3.Call getFunctionCapabilitiesValidateBeforeCall(@javax.annotation 404 Not Found - */ - public BaseResponseFunctionCapabilityResponse getFunctionCapabilities(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionCapabilitiesWithHttpInfo(functionId, authorization); + public BaseResponseFunctionCapabilityResponse getFunctionCapabilities(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionCapabilitiesWithHttpInfo(functionId); return localVarResp.getData(); } @@ -1513,7 +1425,6 @@ public BaseResponseFunctionCapabilityResponse getFunctionCapabilities(@javax.ann * Retrieve a functions capabilities * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionCapabilityResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1525,8 +1436,8 @@ public BaseResponseFunctionCapabilityResponse getFunctionCapabilities(@javax.ann 404 Not Found - */ - public ApiResponse getFunctionCapabilitiesWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionCapabilitiesValidateBeforeCall(functionId, authorization, null); + public ApiResponse getFunctionCapabilitiesWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionCapabilitiesValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1535,7 +1446,6 @@ public ApiResponse getFunctionCapabiliti * Retrieve a functions capabilities (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1548,9 +1458,9 @@ public ApiResponse getFunctionCapabiliti 404 Not Found - */ - public okhttp3.Call getFunctionCapabilitiesAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionCapabilitiesAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionCapabilitiesValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionCapabilitiesValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1558,7 +1468,6 @@ public okhttp3.Call getFunctionCapabilitiesAsync(@javax.annotation.Nonnull Integ /** * Build call for getFunctionDetails * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1570,7 +1479,7 @@ public okhttp3.Call getFunctionCapabilitiesAsync(@javax.annotation.Nonnull Integ 422 Invalid request parameters - */ - public okhttp3.Call getFunctionDetailsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionDetailsCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1611,23 +1520,18 @@ public okhttp3.Call getFunctionDetailsCall(@javax.annotation.Nonnull Integer fun localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionDetailsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionDetailsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionDetails(Async)"); } - return getFunctionDetailsCall(functionId, authorization, _callback); + return getFunctionDetailsCall(functionId, _callback); } @@ -1635,7 +1539,6 @@ private okhttp3.Call getFunctionDetailsValidateBeforeCall(@javax.annotation.Nonn * Get function details * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionsDetailResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1646,8 +1549,8 @@ private okhttp3.Call getFunctionDetailsValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseFunctionsDetailResponse getFunctionDetails(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionDetailsWithHttpInfo(functionId, authorization); + public BaseResponseFunctionsDetailResponse getFunctionDetails(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionDetailsWithHttpInfo(functionId); return localVarResp.getData(); } @@ -1655,7 +1558,6 @@ public BaseResponseFunctionsDetailResponse getFunctionDetails(@javax.annotation. * Get function details * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionsDetailResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1666,8 +1568,8 @@ public BaseResponseFunctionsDetailResponse getFunctionDetails(@javax.annotation. 422 Invalid request parameters - */ - public ApiResponse getFunctionDetailsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionDetailsValidateBeforeCall(functionId, authorization, null); + public ApiResponse getFunctionDetailsWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionDetailsValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1676,7 +1578,6 @@ public ApiResponse getFunctionDetailsWithHt * Get function details (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1688,9 +1589,9 @@ public ApiResponse getFunctionDetailsWithHt 422 Invalid request parameters - */ - public okhttp3.Call getFunctionDetailsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionDetailsAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionDetailsValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionDetailsValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1701,7 +1602,6 @@ public okhttp3.Call getFunctionDetailsAsync(@javax.annotation.Nonnull Integer fu * @param page The page number to retrieve. (optional, default to 1) * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1713,7 +1613,7 @@ public okhttp3.Call getFunctionDetailsAsync(@javax.annotation.Nonnull Integer fu 422 Invalid request parameters - */ - public okhttp3.Call getFunctionStringsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionStringsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1766,23 +1666,18 @@ public okhttp3.Call getFunctionStringsCall(@javax.annotation.Nonnull Integer fun localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionStringsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionStringsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionStrings(Async)"); } - return getFunctionStringsCall(functionId, page, pageSize, search, authorization, _callback); + return getFunctionStringsCall(functionId, page, pageSize, search, _callback); } @@ -1793,7 +1688,6 @@ private okhttp3.Call getFunctionStringsValidateBeforeCall(@javax.annotation.Nonn * @param page The page number to retrieve. (optional, default to 1) * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionStringsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1804,8 +1698,8 @@ private okhttp3.Call getFunctionStringsValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponseFunctionStringsResponse getFunctionStrings(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionStringsWithHttpInfo(functionId, page, pageSize, search, authorization); + public BaseResponseFunctionStringsResponse getFunctionStrings(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search) throws ApiException { + ApiResponse localVarResp = getFunctionStringsWithHttpInfo(functionId, page, pageSize, search); return localVarResp.getData(); } @@ -1816,7 +1710,6 @@ public BaseResponseFunctionStringsResponse getFunctionStrings(@javax.annotation. * @param page The page number to retrieve. (optional, default to 1) * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionStringsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1827,8 +1720,8 @@ public BaseResponseFunctionStringsResponse getFunctionStrings(@javax.annotation. 422 Invalid request parameters - */ - public ApiResponse getFunctionStringsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionStringsValidateBeforeCall(functionId, page, pageSize, search, authorization, null); + public ApiResponse getFunctionStringsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search) throws ApiException { + okhttp3.Call localVarCall = getFunctionStringsValidateBeforeCall(functionId, page, pageSize, search, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1840,7 +1733,6 @@ public ApiResponse getFunctionStringsWithHt * @param page The page number to retrieve. (optional, default to 1) * @param pageSize Number of items per page. (optional, default to 100) * @param search Search is applied to string value (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1852,9 +1744,9 @@ public ApiResponse getFunctionStringsWithHt 422 Invalid request parameters - */ - public okhttp3.Call getFunctionStringsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionStringsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String search, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionStringsValidateBeforeCall(functionId, page, pageSize, search, authorization, _callback); + okhttp3.Call localVarCall = getFunctionStringsValidateBeforeCall(functionId, page, pageSize, search, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1868,7 +1760,6 @@ public okhttp3.Call getFunctionStringsAsync(@javax.annotation.Nonnull Integer fu * @param debug Only return matching debug functions (optional, default to false) * @param debugTypes If limiting results to functions with debug names, which type of debug names to include? (optional) * @param binaryIds Limit similar functions to specific binaries (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -1880,7 +1771,7 @@ public okhttp3.Call getFunctionStringsAsync(@javax.annotation.Nonnull Integer fu 422 Invalid request parameters - */ - public okhttp3.Call getSimilarFunctionsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSimilarFunctionsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1945,23 +1836,18 @@ public okhttp3.Call getSimilarFunctionsCall(@javax.annotation.Nonnull Integer fu localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getSimilarFunctionsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSimilarFunctionsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getSimilarFunctions(Async)"); } - return getSimilarFunctionsCall(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization, _callback); + return getSimilarFunctionsCall(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, _callback); } @@ -1975,7 +1861,6 @@ private okhttp3.Call getSimilarFunctionsValidateBeforeCall(@javax.annotation.Non * @param debug Only return matching debug functions (optional, default to false) * @param debugTypes If limiting results to functions with debug names, which type of debug names to include? (optional) * @param binaryIds Limit similar functions to specific binaries (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseListSimilarFunctionsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1986,8 +1871,8 @@ private okhttp3.Call getSimilarFunctionsValidateBeforeCall(@javax.annotation.Non 422 Invalid request parameters - */ - public BaseResponseListSimilarFunctionsResponse getSimilarFunctions(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getSimilarFunctionsWithHttpInfo(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization); + public BaseResponseListSimilarFunctionsResponse getSimilarFunctions(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds) throws ApiException { + ApiResponse localVarResp = getSimilarFunctionsWithHttpInfo(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds); return localVarResp.getData(); } @@ -2001,7 +1886,6 @@ public BaseResponseListSimilarFunctionsResponse getSimilarFunctions(@javax.annot * @param debug Only return matching debug functions (optional, default to false) * @param debugTypes If limiting results to functions with debug names, which type of debug names to include? (optional) * @param binaryIds Limit similar functions to specific binaries (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListSimilarFunctionsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -2012,8 +1896,8 @@ public BaseResponseListSimilarFunctionsResponse getSimilarFunctions(@javax.annot 422 Invalid request parameters - */ - public ApiResponse getSimilarFunctionsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getSimilarFunctionsValidateBeforeCall(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization, null); + public ApiResponse getSimilarFunctionsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds) throws ApiException { + okhttp3.Call localVarCall = getSimilarFunctionsValidateBeforeCall(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2028,7 +1912,6 @@ public ApiResponse getSimilarFunctions * @param debug Only return matching debug functions (optional, default to false) * @param debugTypes If limiting results to functions with debug names, which type of debug names to include? (optional) * @param binaryIds Limit similar functions to specific binaries (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -2040,9 +1923,9 @@ public ApiResponse getSimilarFunctions 422 Invalid request parameters - */ - public okhttp3.Call getSimilarFunctionsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSimilarFunctionsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable BigDecimal distance, @javax.annotation.Nullable List collectionIds, @javax.annotation.Nullable Boolean debug, @javax.annotation.Nullable List debugTypes, @javax.annotation.Nullable List binaryIds, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSimilarFunctionsValidateBeforeCall(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization, _callback); + okhttp3.Call localVarCall = getSimilarFunctionsValidateBeforeCall(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FunctionsDataTypesApi.java b/src/main/java/ai/reveng/api/FunctionsDataTypesApi.java index 4ce5ed3..71b9897 100644 --- a/src/main/java/ai/reveng/api/FunctionsDataTypesApi.java +++ b/src/main/java/ai/reveng/api/FunctionsDataTypesApi.java @@ -81,7 +81,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for generateFunctionDataTypesForAnalysis * @param analysisId (required) * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -93,7 +92,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call generateFunctionDataTypesForAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateFunctionDataTypesForAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -135,17 +134,12 @@ public okhttp3.Call generateFunctionDataTypesForAnalysisCall(@javax.annotation.N localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call generateFunctionDataTypesForAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call generateFunctionDataTypesForAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling generateFunctionDataTypesForAnalysis(Async)"); @@ -156,7 +150,7 @@ private okhttp3.Call generateFunctionDataTypesForAnalysisValidateBeforeCall(@jav throw new ApiException("Missing the required parameter 'functionDataTypesParams' when calling generateFunctionDataTypesForAnalysis(Async)"); } - return generateFunctionDataTypesForAnalysisCall(analysisId, functionDataTypesParams, authorization, _callback); + return generateFunctionDataTypesForAnalysisCall(analysisId, functionDataTypesParams, _callback); } @@ -165,7 +159,6 @@ private okhttp3.Call generateFunctionDataTypesForAnalysisValidateBeforeCall(@jav * Submits a request to generate the function data types * @param analysisId (required) * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseGenerateFunctionDataTypes * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -176,8 +169,8 @@ private okhttp3.Call generateFunctionDataTypesForAnalysisValidateBeforeCall(@jav 422 Invalid request parameters - */ - public BaseResponseGenerateFunctionDataTypes generateFunctionDataTypesForAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = generateFunctionDataTypesForAnalysisWithHttpInfo(analysisId, functionDataTypesParams, authorization); + public BaseResponseGenerateFunctionDataTypes generateFunctionDataTypesForAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams) throws ApiException { + ApiResponse localVarResp = generateFunctionDataTypesForAnalysisWithHttpInfo(analysisId, functionDataTypesParams); return localVarResp.getData(); } @@ -186,7 +179,6 @@ public BaseResponseGenerateFunctionDataTypes generateFunctionDataTypesForAnalysi * Submits a request to generate the function data types * @param analysisId (required) * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseGenerateFunctionDataTypes> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -197,8 +189,8 @@ public BaseResponseGenerateFunctionDataTypes generateFunctionDataTypesForAnalysi 422 Invalid request parameters - */ - public ApiResponse generateFunctionDataTypesForAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = generateFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionDataTypesParams, authorization, null); + public ApiResponse generateFunctionDataTypesForAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams) throws ApiException { + okhttp3.Call localVarCall = generateFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionDataTypesParams, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -208,7 +200,6 @@ public ApiResponse generateFunctionDataTy * Submits a request to generate the function data types * @param analysisId (required) * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -220,9 +211,9 @@ public ApiResponse generateFunctionDataTy 422 Invalid request parameters - */ - public okhttp3.Call generateFunctionDataTypesForAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateFunctionDataTypesForAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = generateFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionDataTypesParams, authorization, _callback); + okhttp3.Call localVarCall = generateFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionDataTypesParams, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -230,7 +221,6 @@ public okhttp3.Call generateFunctionDataTypesForAnalysisAsync(@javax.annotation. /** * Build call for generateFunctionDataTypesForFunctions * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -242,7 +232,7 @@ public okhttp3.Call generateFunctionDataTypesForAnalysisAsync(@javax.annotation. 422 Invalid request parameters - */ - public okhttp3.Call generateFunctionDataTypesForFunctionsCall(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateFunctionDataTypesForFunctionsCall(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -283,23 +273,18 @@ public okhttp3.Call generateFunctionDataTypesForFunctionsCall(@javax.annotation. localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call generateFunctionDataTypesForFunctionsValidateBeforeCall(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call generateFunctionDataTypesForFunctionsValidateBeforeCall(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionDataTypesParams' is set if (functionDataTypesParams == null) { throw new ApiException("Missing the required parameter 'functionDataTypesParams' when calling generateFunctionDataTypesForFunctions(Async)"); } - return generateFunctionDataTypesForFunctionsCall(functionDataTypesParams, authorization, _callback); + return generateFunctionDataTypesForFunctionsCall(functionDataTypesParams, _callback); } @@ -307,7 +292,6 @@ private okhttp3.Call generateFunctionDataTypesForFunctionsValidateBeforeCall(@ja * Generate Function Data Types for an arbitrary list of functions * Submits a request to generate the function data types * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseGenerationStatusList * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -318,8 +302,8 @@ private okhttp3.Call generateFunctionDataTypesForFunctionsValidateBeforeCall(@ja 422 Invalid request parameters - */ - public BaseResponseGenerationStatusList generateFunctionDataTypesForFunctions(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = generateFunctionDataTypesForFunctionsWithHttpInfo(functionDataTypesParams, authorization); + public BaseResponseGenerationStatusList generateFunctionDataTypesForFunctions(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams) throws ApiException { + ApiResponse localVarResp = generateFunctionDataTypesForFunctionsWithHttpInfo(functionDataTypesParams); return localVarResp.getData(); } @@ -327,7 +311,6 @@ public BaseResponseGenerationStatusList generateFunctionDataTypesForFunctions(@j * Generate Function Data Types for an arbitrary list of functions * Submits a request to generate the function data types * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseGenerationStatusList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -338,8 +321,8 @@ public BaseResponseGenerationStatusList generateFunctionDataTypesForFunctions(@j 422 Invalid request parameters - */ - public ApiResponse generateFunctionDataTypesForFunctionsWithHttpInfo(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = generateFunctionDataTypesForFunctionsValidateBeforeCall(functionDataTypesParams, authorization, null); + public ApiResponse generateFunctionDataTypesForFunctionsWithHttpInfo(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams) throws ApiException { + okhttp3.Call localVarCall = generateFunctionDataTypesForFunctionsValidateBeforeCall(functionDataTypesParams, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -348,7 +331,6 @@ public ApiResponse generateFunctionDataTypesFo * Generate Function Data Types for an arbitrary list of functions (asynchronously) * Submits a request to generate the function data types * @param functionDataTypesParams (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -360,9 +342,9 @@ public ApiResponse generateFunctionDataTypesFo 422 Invalid request parameters - */ - public okhttp3.Call generateFunctionDataTypesForFunctionsAsync(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateFunctionDataTypesForFunctionsAsync(@javax.annotation.Nonnull FunctionDataTypesParams functionDataTypesParams, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = generateFunctionDataTypesForFunctionsValidateBeforeCall(functionDataTypesParams, authorization, _callback); + okhttp3.Call localVarCall = generateFunctionDataTypesForFunctionsValidateBeforeCall(functionDataTypesParams, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -371,7 +353,6 @@ public okhttp3.Call generateFunctionDataTypesForFunctionsAsync(@javax.annotation * Build call for getFunctionDataTypes * @param analysisId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -383,7 +364,7 @@ public okhttp3.Call generateFunctionDataTypesForFunctionsAsync(@javax.annotation 422 Invalid request parameters - */ - public okhttp3.Call getFunctionDataTypesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionDataTypesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -425,17 +406,12 @@ public okhttp3.Call getFunctionDataTypesCall(@javax.annotation.Nonnull Integer a localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionDataTypesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionDataTypesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling getFunctionDataTypes(Async)"); @@ -446,7 +422,7 @@ private okhttp3.Call getFunctionDataTypesValidateBeforeCall(@javax.annotation.No throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionDataTypes(Async)"); } - return getFunctionDataTypesCall(analysisId, functionId, authorization, _callback); + return getFunctionDataTypesCall(analysisId, functionId, _callback); } @@ -455,7 +431,6 @@ private okhttp3.Call getFunctionDataTypesValidateBeforeCall(@javax.annotation.No * Polling endpoint which returns the current status of function generation and once completed the data type information * @param analysisId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionDataTypes * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -466,8 +441,8 @@ private okhttp3.Call getFunctionDataTypesValidateBeforeCall(@javax.annotation.No 422 Invalid request parameters - */ - public BaseResponseFunctionDataTypes getFunctionDataTypes(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionDataTypesWithHttpInfo(analysisId, functionId, authorization); + public BaseResponseFunctionDataTypes getFunctionDataTypes(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionDataTypesWithHttpInfo(analysisId, functionId); return localVarResp.getData(); } @@ -476,7 +451,6 @@ public BaseResponseFunctionDataTypes getFunctionDataTypes(@javax.annotation.Nonn * Polling endpoint which returns the current status of function generation and once completed the data type information * @param analysisId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionDataTypes> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -487,8 +461,8 @@ public BaseResponseFunctionDataTypes getFunctionDataTypes(@javax.annotation.Nonn 422 Invalid request parameters - */ - public ApiResponse getFunctionDataTypesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionDataTypesValidateBeforeCall(analysisId, functionId, authorization, null); + public ApiResponse getFunctionDataTypesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionDataTypesValidateBeforeCall(analysisId, functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -498,7 +472,6 @@ public ApiResponse getFunctionDataTypesWithHttpIn * Polling endpoint which returns the current status of function generation and once completed the data type information * @param analysisId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -510,9 +483,9 @@ public ApiResponse getFunctionDataTypesWithHttpIn 422 Invalid request parameters - */ - public okhttp3.Call getFunctionDataTypesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionDataTypesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionDataTypesValidateBeforeCall(analysisId, functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionDataTypesValidateBeforeCall(analysisId, functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -521,7 +494,6 @@ public okhttp3.Call getFunctionDataTypesAsync(@javax.annotation.Nonnull Integer * Build call for listFunctionDataTypesForAnalysis * @param analysisId (required) * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -533,7 +505,7 @@ public okhttp3.Call getFunctionDataTypesAsync(@javax.annotation.Nonnull Integer 422 Invalid request parameters - */ - public okhttp3.Call listFunctionDataTypesForAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listFunctionDataTypesForAnalysisCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -578,23 +550,18 @@ public okhttp3.Call listFunctionDataTypesForAnalysisCall(@javax.annotation.Nonnu localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call listFunctionDataTypesForAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listFunctionDataTypesForAnalysisValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling listFunctionDataTypesForAnalysis(Async)"); } - return listFunctionDataTypesForAnalysisCall(analysisId, functionIds, authorization, _callback); + return listFunctionDataTypesForAnalysisCall(analysisId, functionIds, _callback); } @@ -603,7 +570,6 @@ private okhttp3.Call listFunctionDataTypesForAnalysisValidateBeforeCall(@javax.a * Returns data types for multiple functions with optional function ID filtering * @param analysisId (required) * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionDataTypesList * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -614,8 +580,8 @@ private okhttp3.Call listFunctionDataTypesForAnalysisValidateBeforeCall(@javax.a 422 Invalid request parameters - */ - public BaseResponseFunctionDataTypesList listFunctionDataTypesForAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = listFunctionDataTypesForAnalysisWithHttpInfo(analysisId, functionIds, authorization); + public BaseResponseFunctionDataTypesList listFunctionDataTypesForAnalysis(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds) throws ApiException { + ApiResponse localVarResp = listFunctionDataTypesForAnalysisWithHttpInfo(analysisId, functionIds); return localVarResp.getData(); } @@ -624,7 +590,6 @@ public BaseResponseFunctionDataTypesList listFunctionDataTypesForAnalysis(@javax * Returns data types for multiple functions with optional function ID filtering * @param analysisId (required) * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionDataTypesList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -635,8 +600,8 @@ public BaseResponseFunctionDataTypesList listFunctionDataTypesForAnalysis(@javax 422 Invalid request parameters - */ - public ApiResponse listFunctionDataTypesForAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = listFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionIds, authorization, null); + public ApiResponse listFunctionDataTypesForAnalysisWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds) throws ApiException { + okhttp3.Call localVarCall = listFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionIds, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -646,7 +611,6 @@ public ApiResponse listFunctionDataTypesForAn * Returns data types for multiple functions with optional function ID filtering * @param analysisId (required) * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -658,9 +622,9 @@ public ApiResponse listFunctionDataTypesForAn 422 Invalid request parameters - */ - public okhttp3.Call listFunctionDataTypesForAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listFunctionDataTypesForAnalysisAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nullable List functionIds, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionIds, authorization, _callback); + okhttp3.Call localVarCall = listFunctionDataTypesForAnalysisValidateBeforeCall(analysisId, functionIds, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -668,7 +632,6 @@ public okhttp3.Call listFunctionDataTypesForAnalysisAsync(@javax.annotation.Nonn /** * Build call for listFunctionDataTypesForFunctions * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -680,7 +643,7 @@ public okhttp3.Call listFunctionDataTypesForAnalysisAsync(@javax.annotation.Nonn 422 Invalid request parameters - */ - public okhttp3.Call listFunctionDataTypesForFunctionsCall(@javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listFunctionDataTypesForFunctionsCall(@javax.annotation.Nullable List functionIds, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -724,18 +687,13 @@ public okhttp3.Call listFunctionDataTypesForFunctionsCall(@javax.annotation.Null localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call listFunctionDataTypesForFunctionsValidateBeforeCall(@javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return listFunctionDataTypesForFunctionsCall(functionIds, authorization, _callback); + private okhttp3.Call listFunctionDataTypesForFunctionsValidateBeforeCall(@javax.annotation.Nullable List functionIds, final ApiCallback _callback) throws ApiException { + return listFunctionDataTypesForFunctionsCall(functionIds, _callback); } @@ -743,7 +701,6 @@ private okhttp3.Call listFunctionDataTypesForFunctionsValidateBeforeCall(@javax. * List Function Data Types * Returns data types for multiple function IDs * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionDataTypesList * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -754,8 +711,8 @@ private okhttp3.Call listFunctionDataTypesForFunctionsValidateBeforeCall(@javax. 422 Invalid request parameters - */ - public BaseResponseFunctionDataTypesList listFunctionDataTypesForFunctions(@javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = listFunctionDataTypesForFunctionsWithHttpInfo(functionIds, authorization); + public BaseResponseFunctionDataTypesList listFunctionDataTypesForFunctions(@javax.annotation.Nullable List functionIds) throws ApiException { + ApiResponse localVarResp = listFunctionDataTypesForFunctionsWithHttpInfo(functionIds); return localVarResp.getData(); } @@ -763,7 +720,6 @@ public BaseResponseFunctionDataTypesList listFunctionDataTypesForFunctions(@java * List Function Data Types * Returns data types for multiple function IDs * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionDataTypesList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -774,8 +730,8 @@ public BaseResponseFunctionDataTypesList listFunctionDataTypesForFunctions(@java 422 Invalid request parameters - */ - public ApiResponse listFunctionDataTypesForFunctionsWithHttpInfo(@javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = listFunctionDataTypesForFunctionsValidateBeforeCall(functionIds, authorization, null); + public ApiResponse listFunctionDataTypesForFunctionsWithHttpInfo(@javax.annotation.Nullable List functionIds) throws ApiException { + okhttp3.Call localVarCall = listFunctionDataTypesForFunctionsValidateBeforeCall(functionIds, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -784,7 +740,6 @@ public ApiResponse listFunctionDataTypesForFu * List Function Data Types (asynchronously) * Returns data types for multiple function IDs * @param functionIds (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -796,9 +751,9 @@ public ApiResponse listFunctionDataTypesForFu 422 Invalid request parameters - */ - public okhttp3.Call listFunctionDataTypesForFunctionsAsync(@javax.annotation.Nullable List functionIds, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listFunctionDataTypesForFunctionsAsync(@javax.annotation.Nullable List functionIds, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listFunctionDataTypesForFunctionsValidateBeforeCall(functionIds, authorization, _callback); + okhttp3.Call localVarCall = listFunctionDataTypesForFunctionsValidateBeforeCall(functionIds, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -808,7 +763,6 @@ public okhttp3.Call listFunctionDataTypesForFunctionsAsync(@javax.annotation.Nul * @param analysisId (required) * @param functionId (required) * @param updateFunctionDataTypes (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -820,7 +774,7 @@ public okhttp3.Call listFunctionDataTypesForFunctionsAsync(@javax.annotation.Nul 422 Invalid request parameters - */ - public okhttp3.Call updateFunctionDataTypesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateFunctionDataTypesCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -863,17 +817,12 @@ public okhttp3.Call updateFunctionDataTypesCall(@javax.annotation.Nonnull Intege localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateFunctionDataTypesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateFunctionDataTypesValidateBeforeCall(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, final ApiCallback _callback) throws ApiException { // verify the required parameter 'analysisId' is set if (analysisId == null) { throw new ApiException("Missing the required parameter 'analysisId' when calling updateFunctionDataTypes(Async)"); @@ -889,7 +838,7 @@ private okhttp3.Call updateFunctionDataTypesValidateBeforeCall(@javax.annotation throw new ApiException("Missing the required parameter 'updateFunctionDataTypes' when calling updateFunctionDataTypes(Async)"); } - return updateFunctionDataTypesCall(analysisId, functionId, updateFunctionDataTypes, authorization, _callback); + return updateFunctionDataTypesCall(analysisId, functionId, updateFunctionDataTypes, _callback); } @@ -899,7 +848,6 @@ private okhttp3.Call updateFunctionDataTypesValidateBeforeCall(@javax.annotation * @param analysisId (required) * @param functionId (required) * @param updateFunctionDataTypes (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionDataTypes * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -910,8 +858,8 @@ private okhttp3.Call updateFunctionDataTypesValidateBeforeCall(@javax.annotation 422 Invalid request parameters - */ - public BaseResponseFunctionDataTypes updateFunctionDataTypes(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateFunctionDataTypesWithHttpInfo(analysisId, functionId, updateFunctionDataTypes, authorization); + public BaseResponseFunctionDataTypes updateFunctionDataTypes(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes) throws ApiException { + ApiResponse localVarResp = updateFunctionDataTypesWithHttpInfo(analysisId, functionId, updateFunctionDataTypes); return localVarResp.getData(); } @@ -921,7 +869,6 @@ public BaseResponseFunctionDataTypes updateFunctionDataTypes(@javax.annotation.N * @param analysisId (required) * @param functionId (required) * @param updateFunctionDataTypes (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionDataTypes> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -932,8 +879,8 @@ public BaseResponseFunctionDataTypes updateFunctionDataTypes(@javax.annotation.N 422 Invalid request parameters - */ - public ApiResponse updateFunctionDataTypesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateFunctionDataTypesValidateBeforeCall(analysisId, functionId, updateFunctionDataTypes, authorization, null); + public ApiResponse updateFunctionDataTypesWithHttpInfo(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes) throws ApiException { + okhttp3.Call localVarCall = updateFunctionDataTypesValidateBeforeCall(analysisId, functionId, updateFunctionDataTypes, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -944,7 +891,6 @@ public ApiResponse updateFunctionDataTypesWithHtt * @param analysisId (required) * @param functionId (required) * @param updateFunctionDataTypes (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -956,9 +902,9 @@ public ApiResponse updateFunctionDataTypesWithHtt 422 Invalid request parameters - */ - public okhttp3.Call updateFunctionDataTypesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateFunctionDataTypesAsync(@javax.annotation.Nonnull Integer analysisId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull UpdateFunctionDataTypes updateFunctionDataTypes, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateFunctionDataTypesValidateBeforeCall(analysisId, functionId, updateFunctionDataTypes, authorization, _callback); + okhttp3.Call localVarCall = updateFunctionDataTypesValidateBeforeCall(analysisId, functionId, updateFunctionDataTypes, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FunctionsDecompilationApi.java b/src/main/java/ai/reveng/api/FunctionsDecompilationApi.java index 8aeefb1..b6fbdcd 100644 --- a/src/main/java/ai/reveng/api/FunctionsDecompilationApi.java +++ b/src/main/java/ai/reveng/api/FunctionsDecompilationApi.java @@ -82,7 +82,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for checkFunctionDecompilationTask * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -94,7 +93,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call checkFunctionDecompilationTaskCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call checkFunctionDecompilationTaskCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -135,23 +134,18 @@ public okhttp3.Call checkFunctionDecompilationTaskCall(@javax.annotation.Nonnull localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call checkFunctionDecompilationTaskValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call checkFunctionDecompilationTaskValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling checkFunctionDecompilationTask(Async)"); } - return checkFunctionDecompilationTaskCall(functionId, authorization, _callback); + return checkFunctionDecompilationTaskCall(functionId, _callback); } @@ -159,7 +153,6 @@ private okhttp3.Call checkFunctionDecompilationTaskValidateBeforeCall(@javax.ann * Check the status of a function decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionTaskResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -170,8 +163,8 @@ private okhttp3.Call checkFunctionDecompilationTaskValidateBeforeCall(@javax.ann 422 Invalid request parameters - */ - public BaseResponseFunctionTaskResponse checkFunctionDecompilationTask(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = checkFunctionDecompilationTaskWithHttpInfo(functionId, authorization); + public BaseResponseFunctionTaskResponse checkFunctionDecompilationTask(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = checkFunctionDecompilationTaskWithHttpInfo(functionId); return localVarResp.getData(); } @@ -179,7 +172,6 @@ public BaseResponseFunctionTaskResponse checkFunctionDecompilationTask(@javax.an * Check the status of a function decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionTaskResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -190,8 +182,8 @@ public BaseResponseFunctionTaskResponse checkFunctionDecompilationTask(@javax.an 422 Invalid request parameters - */ - public ApiResponse checkFunctionDecompilationTaskWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = checkFunctionDecompilationTaskValidateBeforeCall(functionId, authorization, null); + public ApiResponse checkFunctionDecompilationTaskWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = checkFunctionDecompilationTaskValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -200,7 +192,6 @@ public ApiResponse checkFunctionDecompilationT * Check the status of a function decompilation (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -212,9 +203,9 @@ public ApiResponse checkFunctionDecompilationT 422 Invalid request parameters - */ - public okhttp3.Call checkFunctionDecompilationTaskAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call checkFunctionDecompilationTaskAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = checkFunctionDecompilationTaskValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = checkFunctionDecompilationTaskValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -223,7 +214,6 @@ public okhttp3.Call checkFunctionDecompilationTaskAsync(@javax.annotation.Nonnul * Build call for createDecompilationComment * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -236,7 +226,7 @@ public okhttp3.Call checkFunctionDecompilationTaskAsync(@javax.annotation.Nonnul 400 Bad Request - */ - public okhttp3.Call createDecompilationCommentCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createDecompilationCommentCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -278,17 +268,12 @@ public okhttp3.Call createDecompilationCommentCall(@javax.annotation.Nonnull Int localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling createDecompilationComment(Async)"); @@ -299,7 +284,7 @@ private okhttp3.Call createDecompilationCommentValidateBeforeCall(@javax.annotat throw new ApiException("Missing the required parameter 'functionCommentCreateRequest' when calling createDecompilationComment(Async)"); } - return createDecompilationCommentCall(functionId, functionCommentCreateRequest, authorization, _callback); + return createDecompilationCommentCall(functionId, functionCommentCreateRequest, _callback); } @@ -308,7 +293,6 @@ private okhttp3.Call createDecompilationCommentValidateBeforeCall(@javax.annotat * Creates a comment associated with a specified function). * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -320,8 +304,8 @@ private okhttp3.Call createDecompilationCommentValidateBeforeCall(@javax.annotat 400 Bad Request - */ - public BaseResponseCommentResponse createDecompilationComment(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest, authorization); + public BaseResponseCommentResponse createDecompilationComment(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest) throws ApiException { + ApiResponse localVarResp = createDecompilationCommentWithHttpInfo(functionId, functionCommentCreateRequest); return localVarResp.getData(); } @@ -330,7 +314,6 @@ public BaseResponseCommentResponse createDecompilationComment(@javax.annotation. * Creates a comment associated with a specified function). * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -342,8 +325,8 @@ public BaseResponseCommentResponse createDecompilationComment(@javax.annotation. 400 Bad Request - */ - public ApiResponse createDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, authorization, null); + public ApiResponse createDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest) throws ApiException { + okhttp3.Call localVarCall = createDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -353,7 +336,6 @@ public ApiResponse createDecompilationCommentWithHt * Creates a comment associated with a specified function). * @param functionId (required) * @param functionCommentCreateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -366,9 +348,9 @@ public ApiResponse createDecompilationCommentWithHt 400 Bad Request - */ - public okhttp3.Call createDecompilationCommentAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createDecompilationCommentAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionCommentCreateRequest functionCommentCreateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, authorization, _callback); + okhttp3.Call localVarCall = createDecompilationCommentValidateBeforeCall(functionId, functionCommentCreateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -376,7 +358,6 @@ public okhttp3.Call createDecompilationCommentAsync(@javax.annotation.Nonnull In /** * Build call for createFunctionDecompilationTask * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -389,7 +370,7 @@ public okhttp3.Call createDecompilationCommentAsync(@javax.annotation.Nonnull In 409 Security checks already extracted or queued - */ - public okhttp3.Call createFunctionDecompilationTaskCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createFunctionDecompilationTaskCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -430,23 +411,18 @@ public okhttp3.Call createFunctionDecompilationTaskCall(@javax.annotation.Nonnul localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call createFunctionDecompilationTaskValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createFunctionDecompilationTaskValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling createFunctionDecompilationTask(Async)"); } - return createFunctionDecompilationTaskCall(functionId, authorization, _callback); + return createFunctionDecompilationTaskCall(functionId, _callback); } @@ -454,7 +430,6 @@ private okhttp3.Call createFunctionDecompilationTaskValidateBeforeCall(@javax.an * Queues a function decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseStr * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -466,8 +441,8 @@ private okhttp3.Call createFunctionDecompilationTaskValidateBeforeCall(@javax.an 409 Security checks already extracted or queued - */ - public BaseResponseStr createFunctionDecompilationTask(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = createFunctionDecompilationTaskWithHttpInfo(functionId, authorization); + public BaseResponseStr createFunctionDecompilationTask(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = createFunctionDecompilationTaskWithHttpInfo(functionId); return localVarResp.getData(); } @@ -475,7 +450,6 @@ public BaseResponseStr createFunctionDecompilationTask(@javax.annotation.Nonnull * Queues a function decompilation * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseStr> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -487,8 +461,8 @@ public BaseResponseStr createFunctionDecompilationTask(@javax.annotation.Nonnull 409 Security checks already extracted or queued - */ - public ApiResponse createFunctionDecompilationTaskWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = createFunctionDecompilationTaskValidateBeforeCall(functionId, authorization, null); + public ApiResponse createFunctionDecompilationTaskWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = createFunctionDecompilationTaskValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -497,7 +471,6 @@ public ApiResponse createFunctionDecompilationTaskWithHttpInfo( * Queues a function decompilation (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -510,9 +483,9 @@ public ApiResponse createFunctionDecompilationTaskWithHttpInfo( 409 Security checks already extracted or queued - */ - public okhttp3.Call createFunctionDecompilationTaskAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createFunctionDecompilationTaskAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createFunctionDecompilationTaskValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = createFunctionDecompilationTaskValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -521,7 +494,6 @@ public okhttp3.Call createFunctionDecompilationTaskAsync(@javax.annotation.Nonnu * Build call for deleteDecompilationComment * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -535,7 +507,7 @@ public okhttp3.Call createFunctionDecompilationTaskAsync(@javax.annotation.Nonnu 400 Bad Request - */ - public okhttp3.Call deleteDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -577,17 +549,12 @@ public okhttp3.Call deleteDecompilationCommentCall(@javax.annotation.Nonnull Int localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'commentId' is set if (commentId == null) { throw new ApiException("Missing the required parameter 'commentId' when calling deleteDecompilationComment(Async)"); @@ -598,7 +565,7 @@ private okhttp3.Call deleteDecompilationCommentValidateBeforeCall(@javax.annotat throw new ApiException("Missing the required parameter 'functionId' when calling deleteDecompilationComment(Async)"); } - return deleteDecompilationCommentCall(commentId, functionId, authorization, _callback); + return deleteDecompilationCommentCall(commentId, functionId, _callback); } @@ -607,7 +574,6 @@ private okhttp3.Call deleteDecompilationCommentValidateBeforeCall(@javax.annotat * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseBool * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -620,8 +586,8 @@ private okhttp3.Call deleteDecompilationCommentValidateBeforeCall(@javax.annotat 400 Bad Request - */ - public BaseResponseBool deleteDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = deleteDecompilationCommentWithHttpInfo(commentId, functionId, authorization); + public BaseResponseBool deleteDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = deleteDecompilationCommentWithHttpInfo(commentId, functionId); return localVarResp.getData(); } @@ -630,7 +596,6 @@ public BaseResponseBool deleteDecompilationComment(@javax.annotation.Nonnull Int * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBool> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -643,8 +608,8 @@ public BaseResponseBool deleteDecompilationComment(@javax.annotation.Nonnull Int 400 Bad Request - */ - public ApiResponse deleteDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteDecompilationCommentValidateBeforeCall(commentId, functionId, authorization, null); + public ApiResponse deleteDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = deleteDecompilationCommentValidateBeforeCall(commentId, functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -654,7 +619,6 @@ public ApiResponse deleteDecompilationCommentWithHttpInfo(@jav * Deletes an existing comment. Users can only delete their own comments. * @param commentId (required) * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -668,9 +632,9 @@ public ApiResponse deleteDecompilationCommentWithHttpInfo(@jav 400 Bad Request - */ - public okhttp3.Call deleteDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteDecompilationCommentValidateBeforeCall(commentId, functionId, authorization, _callback); + okhttp3.Call localVarCall = deleteDecompilationCommentValidateBeforeCall(commentId, functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -678,7 +642,6 @@ public okhttp3.Call deleteDecompilationCommentAsync(@javax.annotation.Nonnull In /** * Build call for getDecompilationComments * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -690,7 +653,7 @@ public okhttp3.Call deleteDecompilationCommentAsync(@javax.annotation.Nonnull In 422 Invalid request parameters - */ - public okhttp3.Call getDecompilationCommentsCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getDecompilationCommentsCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -731,23 +694,18 @@ public okhttp3.Call getDecompilationCommentsCall(@javax.annotation.Nonnull Integ localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getDecompilationCommentsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getDecompilationCommentsValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getDecompilationComments(Async)"); } - return getDecompilationCommentsCall(functionId, authorization, _callback); + return getDecompilationCommentsCall(functionId, _callback); } @@ -755,7 +713,6 @@ private okhttp3.Call getDecompilationCommentsValidateBeforeCall(@javax.annotatio * Get comments for this function * Retrieves all comments created for a specific function. Only returns comments for resources the requesting user has access to. * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -766,8 +723,8 @@ private okhttp3.Call getDecompilationCommentsValidateBeforeCall(@javax.annotatio 422 Invalid request parameters - */ - public BaseResponseListCommentResponse getDecompilationComments(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getDecompilationCommentsWithHttpInfo(functionId, authorization); + public BaseResponseListCommentResponse getDecompilationComments(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getDecompilationCommentsWithHttpInfo(functionId); return localVarResp.getData(); } @@ -775,7 +732,6 @@ public BaseResponseListCommentResponse getDecompilationComments(@javax.annotatio * Get comments for this function * Retrieves all comments created for a specific function. Only returns comments for resources the requesting user has access to. * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -786,8 +742,8 @@ public BaseResponseListCommentResponse getDecompilationComments(@javax.annotatio 422 Invalid request parameters - */ - public ApiResponse getDecompilationCommentsWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getDecompilationCommentsValidateBeforeCall(functionId, authorization, null); + public ApiResponse getDecompilationCommentsWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getDecompilationCommentsValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -796,7 +752,6 @@ public ApiResponse getDecompilationCommentsWith * Get comments for this function (asynchronously) * Retrieves all comments created for a specific function. Only returns comments for resources the requesting user has access to. * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -808,9 +763,9 @@ public ApiResponse getDecompilationCommentsWith 422 Invalid request parameters - */ - public okhttp3.Call getDecompilationCommentsAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getDecompilationCommentsAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getDecompilationCommentsValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getDecompilationCommentsValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -818,7 +773,6 @@ public okhttp3.Call getDecompilationCommentsAsync(@javax.annotation.Nonnull Inte /** * Build call for getFunctionDecompilation * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -831,7 +785,7 @@ public okhttp3.Call getDecompilationCommentsAsync(@javax.annotation.Nonnull Inte 404 Unable to find a decompilation for the function_id given - */ - public okhttp3.Call getFunctionDecompilationCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionDecompilationCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -872,23 +826,18 @@ public okhttp3.Call getFunctionDecompilationCall(@javax.annotation.Nonnull Integ localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionDecompilationValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionDecompilationValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionDecompilation(Async)"); } - return getFunctionDecompilationCall(functionId, authorization, _callback); + return getFunctionDecompilationCall(functionId, _callback); } @@ -896,7 +845,6 @@ private okhttp3.Call getFunctionDecompilationValidateBeforeCall(@javax.annotatio * Get decompilation result * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseDecompilationResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -908,8 +856,8 @@ private okhttp3.Call getFunctionDecompilationValidateBeforeCall(@javax.annotatio 404 Unable to find a decompilation for the function_id given - */ - public BaseResponseDecompilationResponse getFunctionDecompilation(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionDecompilationWithHttpInfo(functionId, authorization); + public BaseResponseDecompilationResponse getFunctionDecompilation(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionDecompilationWithHttpInfo(functionId); return localVarResp.getData(); } @@ -917,7 +865,6 @@ public BaseResponseDecompilationResponse getFunctionDecompilation(@javax.annotat * Get decompilation result * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseDecompilationResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -929,8 +876,8 @@ public BaseResponseDecompilationResponse getFunctionDecompilation(@javax.annotat 404 Unable to find a decompilation for the function_id given - */ - public ApiResponse getFunctionDecompilationWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionDecompilationValidateBeforeCall(functionId, authorization, null); + public ApiResponse getFunctionDecompilationWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionDecompilationValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -939,7 +886,6 @@ public ApiResponse getFunctionDecompilationWi * Get decompilation result (asynchronously) * * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -952,9 +898,9 @@ public ApiResponse getFunctionDecompilationWi 404 Unable to find a decompilation for the function_id given - */ - public okhttp3.Call getFunctionDecompilationAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionDecompilationAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionDecompilationValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionDecompilationValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -964,7 +910,6 @@ public okhttp3.Call getFunctionDecompilationAsync(@javax.annotation.Nonnull Inte * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -978,7 +923,7 @@ public okhttp3.Call getFunctionDecompilationAsync(@javax.annotation.Nonnull Inte 400 Bad Request - */ - public okhttp3.Call updateDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDecompilationCommentCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1021,17 +966,12 @@ public okhttp3.Call updateDecompilationCommentCall(@javax.annotation.Nonnull Int localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call updateDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateDecompilationCommentValidateBeforeCall(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { // verify the required parameter 'commentId' is set if (commentId == null) { throw new ApiException("Missing the required parameter 'commentId' when calling updateDecompilationComment(Async)"); @@ -1047,7 +987,7 @@ private okhttp3.Call updateDecompilationCommentValidateBeforeCall(@javax.annotat throw new ApiException("Missing the required parameter 'commentUpdateRequest' when calling updateDecompilationComment(Async)"); } - return updateDecompilationCommentCall(commentId, functionId, commentUpdateRequest, authorization, _callback); + return updateDecompilationCommentCall(commentId, functionId, commentUpdateRequest, _callback); } @@ -1057,7 +997,6 @@ private okhttp3.Call updateDecompilationCommentValidateBeforeCall(@javax.annotat * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseCommentResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1070,8 +1009,8 @@ private okhttp3.Call updateDecompilationCommentValidateBeforeCall(@javax.annotat 400 Bad Request - */ - public BaseResponseCommentResponse updateDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = updateDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest, authorization); + public BaseResponseCommentResponse updateDecompilationComment(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest) throws ApiException { + ApiResponse localVarResp = updateDecompilationCommentWithHttpInfo(commentId, functionId, commentUpdateRequest); return localVarResp.getData(); } @@ -1081,7 +1020,6 @@ public BaseResponseCommentResponse updateDecompilationComment(@javax.annotation. * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCommentResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -1094,8 +1032,8 @@ public BaseResponseCommentResponse updateDecompilationComment(@javax.annotation. 400 Bad Request - */ - public ApiResponse updateDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = updateDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, authorization, null); + public ApiResponse updateDecompilationCommentWithHttpInfo(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest) throws ApiException { + okhttp3.Call localVarCall = updateDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1106,7 +1044,6 @@ public ApiResponse updateDecompilationCommentWithHt * @param commentId (required) * @param functionId (required) * @param commentUpdateRequest (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -1120,9 +1057,9 @@ public ApiResponse updateDecompilationCommentWithHt 400 Bad Request - */ - public okhttp3.Call updateDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDecompilationCommentAsync(@javax.annotation.Nonnull Integer commentId, @javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull CommentUpdateRequest commentUpdateRequest, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, authorization, _callback); + okhttp3.Call localVarCall = updateDecompilationCommentValidateBeforeCall(commentId, functionId, commentUpdateRequest, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/FunctionsRenamingHistoryApi.java b/src/main/java/ai/reveng/api/FunctionsRenamingHistoryApi.java index 9e4d374..951e7cc 100644 --- a/src/main/java/ai/reveng/api/FunctionsRenamingHistoryApi.java +++ b/src/main/java/ai/reveng/api/FunctionsRenamingHistoryApi.java @@ -77,7 +77,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for batchRenameFunction * @param functionsListRename (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -89,7 +88,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call batchRenameFunctionCall(@javax.annotation.Nonnull FunctionsListRename functionsListRename, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call batchRenameFunctionCall(@javax.annotation.Nonnull FunctionsListRename functionsListRename, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -130,23 +129,18 @@ public okhttp3.Call batchRenameFunctionCall(@javax.annotation.Nonnull FunctionsL localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call batchRenameFunctionValidateBeforeCall(@javax.annotation.Nonnull FunctionsListRename functionsListRename, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call batchRenameFunctionValidateBeforeCall(@javax.annotation.Nonnull FunctionsListRename functionsListRename, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionsListRename' is set if (functionsListRename == null) { throw new ApiException("Missing the required parameter 'functionsListRename' when calling batchRenameFunction(Async)"); } - return batchRenameFunctionCall(functionsListRename, authorization, _callback); + return batchRenameFunctionCall(functionsListRename, _callback); } @@ -154,7 +148,6 @@ private okhttp3.Call batchRenameFunctionValidateBeforeCall(@javax.annotation.Non * Batch Rename Functions * Renames a list of functions using the function IDs Will record name changes in history * @param functionsListRename (required) - * @param authorization API Key bearer token (optional) * @return BaseResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -165,8 +158,8 @@ private okhttp3.Call batchRenameFunctionValidateBeforeCall(@javax.annotation.Non 422 Invalid request parameters - */ - public BaseResponse batchRenameFunction(@javax.annotation.Nonnull FunctionsListRename functionsListRename, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = batchRenameFunctionWithHttpInfo(functionsListRename, authorization); + public BaseResponse batchRenameFunction(@javax.annotation.Nonnull FunctionsListRename functionsListRename) throws ApiException { + ApiResponse localVarResp = batchRenameFunctionWithHttpInfo(functionsListRename); return localVarResp.getData(); } @@ -174,7 +167,6 @@ public BaseResponse batchRenameFunction(@javax.annotation.Nonnull FunctionsListR * Batch Rename Functions * Renames a list of functions using the function IDs Will record name changes in history * @param functionsListRename (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -185,8 +177,8 @@ public BaseResponse batchRenameFunction(@javax.annotation.Nonnull FunctionsListR 422 Invalid request parameters - */ - public ApiResponse batchRenameFunctionWithHttpInfo(@javax.annotation.Nonnull FunctionsListRename functionsListRename, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = batchRenameFunctionValidateBeforeCall(functionsListRename, authorization, null); + public ApiResponse batchRenameFunctionWithHttpInfo(@javax.annotation.Nonnull FunctionsListRename functionsListRename) throws ApiException { + okhttp3.Call localVarCall = batchRenameFunctionValidateBeforeCall(functionsListRename, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -195,7 +187,6 @@ public ApiResponse batchRenameFunctionWithHttpInfo(@javax.annotati * Batch Rename Functions (asynchronously) * Renames a list of functions using the function IDs Will record name changes in history * @param functionsListRename (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -207,9 +198,9 @@ public ApiResponse batchRenameFunctionWithHttpInfo(@javax.annotati 422 Invalid request parameters - */ - public okhttp3.Call batchRenameFunctionAsync(@javax.annotation.Nonnull FunctionsListRename functionsListRename, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call batchRenameFunctionAsync(@javax.annotation.Nonnull FunctionsListRename functionsListRename, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = batchRenameFunctionValidateBeforeCall(functionsListRename, authorization, _callback); + okhttp3.Call localVarCall = batchRenameFunctionValidateBeforeCall(functionsListRename, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -217,7 +208,6 @@ public okhttp3.Call batchRenameFunctionAsync(@javax.annotation.Nonnull Functions /** * Build call for getFunctionNameHistory * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -229,7 +219,7 @@ public okhttp3.Call batchRenameFunctionAsync(@javax.annotation.Nonnull Functions 422 Invalid request parameters - */ - public okhttp3.Call getFunctionNameHistoryCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionNameHistoryCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -270,23 +260,18 @@ public okhttp3.Call getFunctionNameHistoryCall(@javax.annotation.Nonnull Integer localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getFunctionNameHistoryValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getFunctionNameHistoryValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling getFunctionNameHistory(Async)"); } - return getFunctionNameHistoryCall(functionId, authorization, _callback); + return getFunctionNameHistoryCall(functionId, _callback); } @@ -294,7 +279,6 @@ private okhttp3.Call getFunctionNameHistoryValidateBeforeCall(@javax.annotation. * Get Function Name History * Gets the name history of a function using the function ID * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponseListFunctionNameHistory * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -305,8 +289,8 @@ private okhttp3.Call getFunctionNameHistoryValidateBeforeCall(@javax.annotation. 422 Invalid request parameters - */ - public BaseResponseListFunctionNameHistory getFunctionNameHistory(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getFunctionNameHistoryWithHttpInfo(functionId, authorization); + public BaseResponseListFunctionNameHistory getFunctionNameHistory(@javax.annotation.Nonnull Integer functionId) throws ApiException { + ApiResponse localVarResp = getFunctionNameHistoryWithHttpInfo(functionId); return localVarResp.getData(); } @@ -314,7 +298,6 @@ public BaseResponseListFunctionNameHistory getFunctionNameHistory(@javax.annotat * Get Function Name History * Gets the name history of a function using the function ID * @param functionId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseListFunctionNameHistory> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -325,8 +308,8 @@ public BaseResponseListFunctionNameHistory getFunctionNameHistory(@javax.annotat 422 Invalid request parameters - */ - public ApiResponse getFunctionNameHistoryWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getFunctionNameHistoryValidateBeforeCall(functionId, authorization, null); + public ApiResponse getFunctionNameHistoryWithHttpInfo(@javax.annotation.Nonnull Integer functionId) throws ApiException { + okhttp3.Call localVarCall = getFunctionNameHistoryValidateBeforeCall(functionId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -335,7 +318,6 @@ public ApiResponse getFunctionNameHistoryWi * Get Function Name History (asynchronously) * Gets the name history of a function using the function ID * @param functionId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -347,9 +329,9 @@ public ApiResponse getFunctionNameHistoryWi 422 Invalid request parameters - */ - public okhttp3.Call getFunctionNameHistoryAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getFunctionNameHistoryAsync(@javax.annotation.Nonnull Integer functionId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getFunctionNameHistoryValidateBeforeCall(functionId, authorization, _callback); + okhttp3.Call localVarCall = getFunctionNameHistoryValidateBeforeCall(functionId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -358,7 +340,6 @@ public okhttp3.Call getFunctionNameHistoryAsync(@javax.annotation.Nonnull Intege * Build call for renameFunctionId * @param functionId (required) * @param functionRename (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -370,7 +351,7 @@ public okhttp3.Call getFunctionNameHistoryAsync(@javax.annotation.Nonnull Intege 422 Invalid request parameters - */ - public okhttp3.Call renameFunctionIdCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call renameFunctionIdCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -412,17 +393,12 @@ public okhttp3.Call renameFunctionIdCall(@javax.annotation.Nonnull Integer funct localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call renameFunctionIdValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call renameFunctionIdValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling renameFunctionId(Async)"); @@ -433,7 +409,7 @@ private okhttp3.Call renameFunctionIdValidateBeforeCall(@javax.annotation.Nonnul throw new ApiException("Missing the required parameter 'functionRename' when calling renameFunctionId(Async)"); } - return renameFunctionIdCall(functionId, functionRename, authorization, _callback); + return renameFunctionIdCall(functionId, functionRename, _callback); } @@ -442,7 +418,6 @@ private okhttp3.Call renameFunctionIdValidateBeforeCall(@javax.annotation.Nonnul * Renames a function using the function ID Will record name change history * @param functionId (required) * @param functionRename (required) - * @param authorization API Key bearer token (optional) * @return BaseResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -453,8 +428,8 @@ private okhttp3.Call renameFunctionIdValidateBeforeCall(@javax.annotation.Nonnul 422 Invalid request parameters - */ - public BaseResponse renameFunctionId(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = renameFunctionIdWithHttpInfo(functionId, functionRename, authorization); + public BaseResponse renameFunctionId(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename) throws ApiException { + ApiResponse localVarResp = renameFunctionIdWithHttpInfo(functionId, functionRename); return localVarResp.getData(); } @@ -463,7 +438,6 @@ public BaseResponse renameFunctionId(@javax.annotation.Nonnull Integer functionI * Renames a function using the function ID Will record name change history * @param functionId (required) * @param functionRename (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -474,8 +448,8 @@ public BaseResponse renameFunctionId(@javax.annotation.Nonnull Integer functionI 422 Invalid request parameters - */ - public ApiResponse renameFunctionIdWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = renameFunctionIdValidateBeforeCall(functionId, functionRename, authorization, null); + public ApiResponse renameFunctionIdWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename) throws ApiException { + okhttp3.Call localVarCall = renameFunctionIdValidateBeforeCall(functionId, functionRename, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -485,7 +459,6 @@ public ApiResponse renameFunctionIdWithHttpInfo(@javax.annotation. * Renames a function using the function ID Will record name change history * @param functionId (required) * @param functionRename (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -497,9 +470,9 @@ public ApiResponse renameFunctionIdWithHttpInfo(@javax.annotation. 422 Invalid request parameters - */ - public okhttp3.Call renameFunctionIdAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call renameFunctionIdAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull FunctionRename functionRename, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = renameFunctionIdValidateBeforeCall(functionId, functionRename, authorization, _callback); + okhttp3.Call localVarCall = renameFunctionIdValidateBeforeCall(functionId, functionRename, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -508,7 +481,6 @@ public okhttp3.Call renameFunctionIdAsync(@javax.annotation.Nonnull Integer func * Build call for revertFunctionName * @param functionId (required) * @param historyId (required) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -520,7 +492,7 @@ public okhttp3.Call renameFunctionIdAsync(@javax.annotation.Nonnull Integer func 422 Invalid request parameters - */ - public okhttp3.Call revertFunctionNameCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call revertFunctionNameCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -562,17 +534,12 @@ public okhttp3.Call revertFunctionNameCall(@javax.annotation.Nonnull Integer fun localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call revertFunctionNameValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call revertFunctionNameValidateBeforeCall(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, final ApiCallback _callback) throws ApiException { // verify the required parameter 'functionId' is set if (functionId == null) { throw new ApiException("Missing the required parameter 'functionId' when calling revertFunctionName(Async)"); @@ -583,7 +550,7 @@ private okhttp3.Call revertFunctionNameValidateBeforeCall(@javax.annotation.Nonn throw new ApiException("Missing the required parameter 'historyId' when calling revertFunctionName(Async)"); } - return revertFunctionNameCall(functionId, historyId, authorization, _callback); + return revertFunctionNameCall(functionId, historyId, _callback); } @@ -592,7 +559,6 @@ private okhttp3.Call revertFunctionNameValidateBeforeCall(@javax.annotation.Nonn * Reverts the function name to a previous name using the function ID and history ID * @param functionId (required) * @param historyId (required) - * @param authorization API Key bearer token (optional) * @return BaseResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -603,8 +569,8 @@ private okhttp3.Call revertFunctionNameValidateBeforeCall(@javax.annotation.Nonn 422 Invalid request parameters - */ - public BaseResponse revertFunctionName(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = revertFunctionNameWithHttpInfo(functionId, historyId, authorization); + public BaseResponse revertFunctionName(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId) throws ApiException { + ApiResponse localVarResp = revertFunctionNameWithHttpInfo(functionId, historyId); return localVarResp.getData(); } @@ -613,7 +579,6 @@ public BaseResponse revertFunctionName(@javax.annotation.Nonnull Integer functio * Reverts the function name to a previous name using the function ID and history ID * @param functionId (required) * @param historyId (required) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -624,8 +589,8 @@ public BaseResponse revertFunctionName(@javax.annotation.Nonnull Integer functio 422 Invalid request parameters - */ - public ApiResponse revertFunctionNameWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = revertFunctionNameValidateBeforeCall(functionId, historyId, authorization, null); + public ApiResponse revertFunctionNameWithHttpInfo(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId) throws ApiException { + okhttp3.Call localVarCall = revertFunctionNameValidateBeforeCall(functionId, historyId, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -635,7 +600,6 @@ public ApiResponse revertFunctionNameWithHttpInfo(@javax.annotatio * Reverts the function name to a previous name using the function ID and history ID * @param functionId (required) * @param historyId (required) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -647,9 +611,9 @@ public ApiResponse revertFunctionNameWithHttpInfo(@javax.annotatio 422 Invalid request parameters - */ - public okhttp3.Call revertFunctionNameAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call revertFunctionNameAsync(@javax.annotation.Nonnull Integer functionId, @javax.annotation.Nonnull Integer historyId, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = revertFunctionNameValidateBeforeCall(functionId, historyId, authorization, _callback); + okhttp3.Call localVarCall = revertFunctionNameValidateBeforeCall(functionId, historyId, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/ModelsApi.java b/src/main/java/ai/reveng/api/ModelsApi.java index c9f898c..2242805 100644 --- a/src/main/java/ai/reveng/api/ModelsApi.java +++ b/src/main/java/ai/reveng/api/ModelsApi.java @@ -74,7 +74,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for getModels - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -86,7 +85,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Invalid request parameters - */ - public okhttp3.Call getModelsCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getModelsCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -126,25 +125,19 @@ public okhttp3.Call getModelsCall(@javax.annotation.Nullable String authorizatio localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call getModelsValidateBeforeCall(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return getModelsCall(authorization, _callback); + private okhttp3.Call getModelsValidateBeforeCall(final ApiCallback _callback) throws ApiException { + return getModelsCall(_callback); } /** * Gets models * Gets active models available for analysis. - * @param authorization API Key bearer token (optional) * @return BaseResponseModelsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -155,15 +148,14 @@ private okhttp3.Call getModelsValidateBeforeCall(@javax.annotation.Nullable Stri 422 Invalid request parameters - */ - public BaseResponseModelsResponse getModels(@javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = getModelsWithHttpInfo(authorization); + public BaseResponseModelsResponse getModels() throws ApiException { + ApiResponse localVarResp = getModelsWithHttpInfo(); return localVarResp.getData(); } /** * Gets models * Gets active models available for analysis. - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseModelsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -174,8 +166,8 @@ public BaseResponseModelsResponse getModels(@javax.annotation.Nullable String au 422 Invalid request parameters - */ - public ApiResponse getModelsWithHttpInfo(@javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = getModelsValidateBeforeCall(authorization, null); + public ApiResponse getModelsWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = getModelsValidateBeforeCall(null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -183,7 +175,6 @@ public ApiResponse getModelsWithHttpInfo(@javax.anno /** * Gets models (asynchronously) * Gets active models available for analysis. - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -195,9 +186,9 @@ public ApiResponse getModelsWithHttpInfo(@javax.anno 422 Invalid request parameters - */ - public okhttp3.Call getModelsAsync(@javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getModelsAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getModelsValidateBeforeCall(authorization, _callback); + okhttp3.Call localVarCall = getModelsValidateBeforeCall(_callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/api/SearchApi.java b/src/main/java/ai/reveng/api/SearchApi.java index 2ec4001..a8a3cbc 100644 --- a/src/main/java/ai/reveng/api/SearchApi.java +++ b/src/main/java/ai/reveng/api/SearchApi.java @@ -87,7 +87,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * @param tags The tags to be searched for (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) * @param userFilesOnly Whether to only search user's uploaded files (optional, default to false) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -99,7 +98,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 You must provide at least one of the filters; partial_name, partial_sha256, tags or model_name to search - */ - public okhttp3.Call searchBinariesCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call searchBinariesCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -167,18 +166,13 @@ public okhttp3.Call searchBinariesCall(@javax.annotation.Nullable Integer page, localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call searchBinariesValidateBeforeCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return searchBinariesCall(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization, _callback); + private okhttp3.Call searchBinariesValidateBeforeCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, final ApiCallback _callback) throws ApiException { + return searchBinariesCall(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, _callback); } @@ -192,7 +186,6 @@ private okhttp3.Call searchBinariesValidateBeforeCall(@javax.annotation.Nullable * @param tags The tags to be searched for (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) * @param userFilesOnly Whether to only search user's uploaded files (optional, default to false) - * @param authorization API Key bearer token (optional) * @return BaseResponseBinarySearchResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -203,8 +196,8 @@ private okhttp3.Call searchBinariesValidateBeforeCall(@javax.annotation.Nullable 422 You must provide at least one of the filters; partial_name, partial_sha256, tags or model_name to search - */ - public BaseResponseBinarySearchResponse searchBinaries(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = searchBinariesWithHttpInfo(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization); + public BaseResponseBinarySearchResponse searchBinaries(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly) throws ApiException { + ApiResponse localVarResp = searchBinariesWithHttpInfo(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly); return localVarResp.getData(); } @@ -218,7 +211,6 @@ public BaseResponseBinarySearchResponse searchBinaries(@javax.annotation.Nullabl * @param tags The tags to be searched for (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) * @param userFilesOnly Whether to only search user's uploaded files (optional, default to false) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseBinarySearchResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -229,8 +221,8 @@ public BaseResponseBinarySearchResponse searchBinaries(@javax.annotation.Nullabl 422 You must provide at least one of the filters; partial_name, partial_sha256, tags or model_name to search - */ - public ApiResponse searchBinariesWithHttpInfo(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = searchBinariesValidateBeforeCall(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization, null); + public ApiResponse searchBinariesWithHttpInfo(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly) throws ApiException { + okhttp3.Call localVarCall = searchBinariesValidateBeforeCall(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -245,7 +237,6 @@ public ApiResponse searchBinariesWithHttpInfo( * @param tags The tags to be searched for (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) * @param userFilesOnly Whether to only search user's uploaded files (optional, default to false) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -257,9 +248,9 @@ public ApiResponse searchBinariesWithHttpInfo( 422 You must provide at least one of the filters; partial_name, partial_sha256, tags or model_name to search - */ - public okhttp3.Call searchBinariesAsync(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call searchBinariesAsync(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String partialSha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable Boolean userFilesOnly, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = searchBinariesValidateBeforeCall(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization, _callback); + okhttp3.Call localVarCall = searchBinariesValidateBeforeCall(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -276,7 +267,6 @@ public okhttp3.Call searchBinariesAsync(@javax.annotation.Nullable Integer page, * @param filters The filters to be used for the search (optional) * @param orderBy The field to sort the order by in the results (optional) * @param orderByDirection The order direction in which to return results (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -289,7 +279,7 @@ public okhttp3.Call searchBinariesAsync(@javax.annotation.Nullable Integer page, 404 The model name provided does not exist - */ - public okhttp3.Call searchCollectionsCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call searchCollectionsCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -369,18 +359,13 @@ public okhttp3.Call searchCollectionsCall(@javax.annotation.Nullable Integer pag localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call searchCollectionsValidateBeforeCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return searchCollectionsCall(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization, _callback); + private okhttp3.Call searchCollectionsValidateBeforeCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, final ApiCallback _callback) throws ApiException { + return searchCollectionsCall(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, _callback); } @@ -397,7 +382,6 @@ private okhttp3.Call searchCollectionsValidateBeforeCall(@javax.annotation.Nulla * @param filters The filters to be used for the search (optional) * @param orderBy The field to sort the order by in the results (optional) * @param orderByDirection The order direction in which to return results (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseCollectionSearchResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -409,8 +393,8 @@ private okhttp3.Call searchCollectionsValidateBeforeCall(@javax.annotation.Nulla 404 The model name provided does not exist - */ - public BaseResponseCollectionSearchResponse searchCollections(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = searchCollectionsWithHttpInfo(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization); + public BaseResponseCollectionSearchResponse searchCollections(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection) throws ApiException { + ApiResponse localVarResp = searchCollectionsWithHttpInfo(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection); return localVarResp.getData(); } @@ -427,7 +411,6 @@ public BaseResponseCollectionSearchResponse searchCollections(@javax.annotation. * @param filters The filters to be used for the search (optional) * @param orderBy The field to sort the order by in the results (optional) * @param orderByDirection The order direction in which to return results (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseCollectionSearchResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -439,8 +422,8 @@ public BaseResponseCollectionSearchResponse searchCollections(@javax.annotation. 404 The model name provided does not exist - */ - public ApiResponse searchCollectionsWithHttpInfo(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = searchCollectionsValidateBeforeCall(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization, null); + public ApiResponse searchCollectionsWithHttpInfo(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection) throws ApiException { + okhttp3.Call localVarCall = searchCollectionsValidateBeforeCall(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -458,7 +441,6 @@ public ApiResponse searchCollectionsWithHt * @param filters The filters to be used for the search (optional) * @param orderBy The field to sort the order by in the results (optional) * @param orderByDirection The order direction in which to return results (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -471,9 +453,9 @@ public ApiResponse searchCollectionsWithHt 404 The model name provided does not exist - */ - public okhttp3.Call searchCollectionsAsync(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call searchCollectionsAsync(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialCollectionName, @javax.annotation.Nullable String partialBinaryName, @javax.annotation.Nullable String partialBinarySha256, @javax.annotation.Nullable List tags, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable List filters, @javax.annotation.Nullable AppApiRestV2CollectionsEnumsOrderBy orderBy, @javax.annotation.Nullable Order orderByDirection, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = searchCollectionsValidateBeforeCall(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization, _callback); + okhttp3.Call localVarCall = searchCollectionsValidateBeforeCall(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -484,7 +466,6 @@ public okhttp3.Call searchCollectionsAsync(@javax.annotation.Nullable Integer pa * @param pageSize Number of items per page. (optional, default to 10) * @param partialName The partial or full name of the function being searched (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) - * @param authorization API Key bearer token (optional) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object @@ -496,7 +477,7 @@ public okhttp3.Call searchCollectionsAsync(@javax.annotation.Nullable Integer pa 422 You must provide at least one of the filters; partial_name, or model_name to search - */ - public okhttp3.Call searchFunctionsCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call searchFunctionsCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -552,18 +533,13 @@ public okhttp3.Call searchFunctionsCall(@javax.annotation.Nullable Integer page, localVarHeaderParams.put("Content-Type", localVarContentType); } - if (authorization != null) { - localVarHeaderParams.put("authorization", localVarApiClient.parameterToString(authorization)); - } - - String[] localVarAuthNames = new String[] { "APIKey" }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call searchFunctionsValidateBeforeCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { - return searchFunctionsCall(page, pageSize, partialName, modelName, authorization, _callback); + private okhttp3.Call searchFunctionsValidateBeforeCall(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, final ApiCallback _callback) throws ApiException { + return searchFunctionsCall(page, pageSize, partialName, modelName, _callback); } @@ -574,7 +550,6 @@ private okhttp3.Call searchFunctionsValidateBeforeCall(@javax.annotation.Nullabl * @param pageSize Number of items per page. (optional, default to 10) * @param partialName The partial or full name of the function being searched (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) - * @param authorization API Key bearer token (optional) * @return BaseResponseFunctionSearchResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -585,8 +560,8 @@ private okhttp3.Call searchFunctionsValidateBeforeCall(@javax.annotation.Nullabl 422 You must provide at least one of the filters; partial_name, or model_name to search - */ - public BaseResponseFunctionSearchResponse searchFunctions(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable String authorization) throws ApiException { - ApiResponse localVarResp = searchFunctionsWithHttpInfo(page, pageSize, partialName, modelName, authorization); + public BaseResponseFunctionSearchResponse searchFunctions(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName) throws ApiException { + ApiResponse localVarResp = searchFunctionsWithHttpInfo(page, pageSize, partialName, modelName); return localVarResp.getData(); } @@ -597,7 +572,6 @@ public BaseResponseFunctionSearchResponse searchFunctions(@javax.annotation.Null * @param pageSize Number of items per page. (optional, default to 10) * @param partialName The partial or full name of the function being searched (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) - * @param authorization API Key bearer token (optional) * @return ApiResponse<BaseResponseFunctionSearchResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details @@ -608,8 +582,8 @@ public BaseResponseFunctionSearchResponse searchFunctions(@javax.annotation.Null 422 You must provide at least one of the filters; partial_name, or model_name to search - */ - public ApiResponse searchFunctionsWithHttpInfo(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable String authorization) throws ApiException { - okhttp3.Call localVarCall = searchFunctionsValidateBeforeCall(page, pageSize, partialName, modelName, authorization, null); + public ApiResponse searchFunctionsWithHttpInfo(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName) throws ApiException { + okhttp3.Call localVarCall = searchFunctionsValidateBeforeCall(page, pageSize, partialName, modelName, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -621,7 +595,6 @@ public ApiResponse searchFunctionsWithHttpIn * @param pageSize Number of items per page. (optional, default to 10) * @param partialName The partial or full name of the function being searched (optional) * @param modelName The name of the model used to analyze the binary the function belongs to (optional) - * @param authorization API Key bearer token (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object @@ -633,9 +606,9 @@ public ApiResponse searchFunctionsWithHttpIn 422 You must provide at least one of the filters; partial_name, or model_name to search - */ - public okhttp3.Call searchFunctionsAsync(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, @javax.annotation.Nullable String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call searchFunctionsAsync(@javax.annotation.Nullable Integer page, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String partialName, @javax.annotation.Nullable String modelName, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = searchFunctionsValidateBeforeCall(page, pageSize, partialName, modelName, authorization, _callback); + okhttp3.Call localVarCall = searchFunctionsValidateBeforeCall(page, pageSize, partialName, modelName, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/reveng/invoker/ApiClient.java b/src/main/java/ai/reveng/invoker/ApiClient.java index f0caf5f..ab3471a 100644 --- a/src/main/java/ai/reveng/invoker/ApiClient.java +++ b/src/main/java/ai/reveng/invoker/ApiClient.java @@ -140,7 +140,7 @@ protected void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/v1.94.0/java"); + setUserAgent("OpenAPI-Generator/v1.95.0/java"); authentications = new HashMap(); } diff --git a/src/main/java/ai/reveng/invoker/ApiException.java b/src/main/java/ai/reveng/invoker/ApiException.java index 17cd0bf..b8330d4 100644 --- a/src/main/java/ai/reveng/invoker/ApiException.java +++ b/src/main/java/ai/reveng/invoker/ApiException.java @@ -21,7 +21,7 @@ *

ApiException class.

*/ @SuppressWarnings("serial") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ApiException extends Exception { private static final long serialVersionUID = 1L; diff --git a/src/main/java/ai/reveng/invoker/Configuration.java b/src/main/java/ai/reveng/invoker/Configuration.java index a0fd2a8..7546397 100644 --- a/src/main/java/ai/reveng/invoker/Configuration.java +++ b/src/main/java/ai/reveng/invoker/Configuration.java @@ -16,9 +16,9 @@ import java.util.concurrent.atomic.AtomicReference; import java.util.function.Supplier; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Configuration { - public static final String VERSION = "v1.94.0"; + public static final String VERSION = "v1.95.0"; private static final AtomicReference defaultApiClient = new AtomicReference<>(); private static volatile Supplier apiClientFactory = ApiClient::new; diff --git a/src/main/java/ai/reveng/invoker/Pair.java b/src/main/java/ai/reveng/invoker/Pair.java index a37af3e..469b4a5 100644 --- a/src/main/java/ai/reveng/invoker/Pair.java +++ b/src/main/java/ai/reveng/invoker/Pair.java @@ -12,7 +12,7 @@ package ai.reveng.invoker; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Pair { private final String name; private final String value; diff --git a/src/main/java/ai/reveng/invoker/ServerConfiguration.java b/src/main/java/ai/reveng/invoker/ServerConfiguration.java index 02b14b1..fd078cf 100644 --- a/src/main/java/ai/reveng/invoker/ServerConfiguration.java +++ b/src/main/java/ai/reveng/invoker/ServerConfiguration.java @@ -17,7 +17,7 @@ /** * Representing a Server configuration. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ServerConfiguration { public String URL; public String description; diff --git a/src/main/java/ai/reveng/invoker/ServerVariable.java b/src/main/java/ai/reveng/invoker/ServerVariable.java index 072b423..f6b0f3c 100644 --- a/src/main/java/ai/reveng/invoker/ServerVariable.java +++ b/src/main/java/ai/reveng/invoker/ServerVariable.java @@ -17,7 +17,7 @@ /** * Representing a Server Variable for server URL template substitution. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ServerVariable { public String description; public String defaultValue; diff --git a/src/main/java/ai/reveng/invoker/StringUtil.java b/src/main/java/ai/reveng/invoker/StringUtil.java index 13d811d..acfdc5b 100644 --- a/src/main/java/ai/reveng/invoker/StringUtil.java +++ b/src/main/java/ai/reveng/invoker/StringUtil.java @@ -15,7 +15,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/src/main/java/ai/reveng/invoker/auth/ApiKeyAuth.java b/src/main/java/ai/reveng/invoker/auth/ApiKeyAuth.java index 8867211..09937a6 100644 --- a/src/main/java/ai/reveng/invoker/auth/ApiKeyAuth.java +++ b/src/main/java/ai/reveng/invoker/auth/ApiKeyAuth.java @@ -19,7 +19,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/src/main/java/ai/reveng/invoker/auth/Authentication.java b/src/main/java/ai/reveng/invoker/auth/Authentication.java index 28772c8..de6116c 100644 --- a/src/main/java/ai/reveng/invoker/auth/Authentication.java +++ b/src/main/java/ai/reveng/invoker/auth/Authentication.java @@ -19,7 +19,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public interface Authentication { /** * Apply authentication settings to header and query params. diff --git a/src/main/java/ai/reveng/invoker/auth/HttpBearerAuth.java b/src/main/java/ai/reveng/invoker/auth/HttpBearerAuth.java index 1b5a424..0ab8cda 100644 --- a/src/main/java/ai/reveng/invoker/auth/HttpBearerAuth.java +++ b/src/main/java/ai/reveng/invoker/auth/HttpBearerAuth.java @@ -21,7 +21,7 @@ import java.util.Optional; import java.util.function.Supplier; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class HttpBearerAuth implements Authentication { private final String scheme; private Supplier tokenSupplier; diff --git a/src/main/java/ai/reveng/model/AbstractOpenApiSchema.java b/src/main/java/ai/reveng/model/AbstractOpenApiSchema.java index c5eef89..3921397 100644 --- a/src/main/java/ai/reveng/model/AbstractOpenApiSchema.java +++ b/src/main/java/ai/reveng/model/AbstractOpenApiSchema.java @@ -20,7 +20,7 @@ /** * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public abstract class AbstractOpenApiSchema { // store the actual instance of the schema/object diff --git a/src/main/java/ai/reveng/model/Addr.java b/src/main/java/ai/reveng/model/Addr.java index 970e71f..f0c47f1 100644 --- a/src/main/java/ai/reveng/model/Addr.java +++ b/src/main/java/ai/reveng/model/Addr.java @@ -51,7 +51,7 @@ import ai.reveng.invoker.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Addr extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Addr.class.getName()); diff --git a/src/main/java/ai/reveng/model/AiUnstripRequest.java b/src/main/java/ai/reveng/model/AiUnstripRequest.java index a074aad..23d865d 100644 --- a/src/main/java/ai/reveng/model/AiUnstripRequest.java +++ b/src/main/java/ai/reveng/model/AiUnstripRequest.java @@ -49,7 +49,7 @@ /** * AiUnstripRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AiUnstripRequest { public static final String SERIALIZED_NAME_APPLY = "apply"; @SerializedName(SERIALIZED_NAME_APPLY) diff --git a/src/main/java/ai/reveng/model/AnalysisAccessInfo.java b/src/main/java/ai/reveng/model/AnalysisAccessInfo.java index a869a7c..ffeaef5 100644 --- a/src/main/java/ai/reveng/model/AnalysisAccessInfo.java +++ b/src/main/java/ai/reveng/model/AnalysisAccessInfo.java @@ -49,7 +49,7 @@ /** * AnalysisAccessInfo */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisAccessInfo { public static final String SERIALIZED_NAME_OWNER = "owner"; @SerializedName(SERIALIZED_NAME_OWNER) diff --git a/src/main/java/ai/reveng/model/AnalysisConfig.java b/src/main/java/ai/reveng/model/AnalysisConfig.java index 913bf38..8f05d83 100644 --- a/src/main/java/ai/reveng/model/AnalysisConfig.java +++ b/src/main/java/ai/reveng/model/AnalysisConfig.java @@ -51,7 +51,7 @@ /** * AnalysisConfig */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisConfig { public static final String SERIALIZED_NAME_SCRAPE_THIRD_PARTY_CONFIG = "scrape_third_party_config"; @SerializedName(SERIALIZED_NAME_SCRAPE_THIRD_PARTY_CONFIG) diff --git a/src/main/java/ai/reveng/model/AnalysisCreateRequest.java b/src/main/java/ai/reveng/model/AnalysisCreateRequest.java index be58a25..a591dd4 100644 --- a/src/main/java/ai/reveng/model/AnalysisCreateRequest.java +++ b/src/main/java/ai/reveng/model/AnalysisCreateRequest.java @@ -57,7 +57,7 @@ /** * AnalysisCreateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisCreateRequest { public static final String SERIALIZED_NAME_FILENAME = "filename"; @SerializedName(SERIALIZED_NAME_FILENAME) diff --git a/src/main/java/ai/reveng/model/AnalysisCreateResponse.java b/src/main/java/ai/reveng/model/AnalysisCreateResponse.java index 36345cf..dd1f2ae 100644 --- a/src/main/java/ai/reveng/model/AnalysisCreateResponse.java +++ b/src/main/java/ai/reveng/model/AnalysisCreateResponse.java @@ -49,7 +49,7 @@ /** * AnalysisCreateResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisCreateResponse { public static final String SERIALIZED_NAME_ANALYSIS_ID = "analysis_id"; @SerializedName(SERIALIZED_NAME_ANALYSIS_ID) diff --git a/src/main/java/ai/reveng/model/AnalysisDetailResponse.java b/src/main/java/ai/reveng/model/AnalysisDetailResponse.java index 0e6ec7e..33bd682 100644 --- a/src/main/java/ai/reveng/model/AnalysisDetailResponse.java +++ b/src/main/java/ai/reveng/model/AnalysisDetailResponse.java @@ -53,7 +53,7 @@ /** * AnalysisDetailResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisDetailResponse { public static final String SERIALIZED_NAME_ACCESS = "access"; @SerializedName(SERIALIZED_NAME_ACCESS) diff --git a/src/main/java/ai/reveng/model/AnalysisFunctionMapping.java b/src/main/java/ai/reveng/model/AnalysisFunctionMapping.java index a300b96..55bd5a1 100644 --- a/src/main/java/ai/reveng/model/AnalysisFunctionMapping.java +++ b/src/main/java/ai/reveng/model/AnalysisFunctionMapping.java @@ -50,7 +50,7 @@ /** * AnalysisFunctionMapping */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisFunctionMapping { public static final String SERIALIZED_NAME_FUNCTION_MAPS = "function_maps"; @SerializedName(SERIALIZED_NAME_FUNCTION_MAPS) diff --git a/src/main/java/ai/reveng/model/AnalysisFunctionMatchingRequest.java b/src/main/java/ai/reveng/model/AnalysisFunctionMatchingRequest.java index debd162..fac70d4 100644 --- a/src/main/java/ai/reveng/model/AnalysisFunctionMatchingRequest.java +++ b/src/main/java/ai/reveng/model/AnalysisFunctionMatchingRequest.java @@ -52,7 +52,7 @@ /** * AnalysisFunctionMatchingRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisFunctionMatchingRequest { public static final String SERIALIZED_NAME_MIN_SIMILARITY = "min_similarity"; @SerializedName(SERIALIZED_NAME_MIN_SIMILARITY) diff --git a/src/main/java/ai/reveng/model/AnalysisFunctions.java b/src/main/java/ai/reveng/model/AnalysisFunctions.java index 2d02178..c1cdc8a 100644 --- a/src/main/java/ai/reveng/model/AnalysisFunctions.java +++ b/src/main/java/ai/reveng/model/AnalysisFunctions.java @@ -52,7 +52,7 @@ /** * AnalysisFunctions */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisFunctions { public static final String SERIALIZED_NAME_FUNCTIONS = "functions"; @SerializedName(SERIALIZED_NAME_FUNCTIONS) diff --git a/src/main/java/ai/reveng/model/AnalysisRecord.java b/src/main/java/ai/reveng/model/AnalysisRecord.java index 89292dc..c458f3a 100644 --- a/src/main/java/ai/reveng/model/AnalysisRecord.java +++ b/src/main/java/ai/reveng/model/AnalysisRecord.java @@ -52,7 +52,7 @@ /** * AnalysisRecord */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisRecord { public static final String SERIALIZED_NAME_ANALYSIS_ID = "analysis_id"; @SerializedName(SERIALIZED_NAME_ANALYSIS_ID) diff --git a/src/main/java/ai/reveng/model/AnalysisStringsResponse.java b/src/main/java/ai/reveng/model/AnalysisStringsResponse.java index 6dafbc7..3b2d9c1 100644 --- a/src/main/java/ai/reveng/model/AnalysisStringsResponse.java +++ b/src/main/java/ai/reveng/model/AnalysisStringsResponse.java @@ -52,7 +52,7 @@ /** * AnalysisStringsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisStringsResponse { public static final String SERIALIZED_NAME_STRINGS = "strings"; @SerializedName(SERIALIZED_NAME_STRINGS) diff --git a/src/main/java/ai/reveng/model/AnalysisTags.java b/src/main/java/ai/reveng/model/AnalysisTags.java index b35b2a7..e88003b 100644 --- a/src/main/java/ai/reveng/model/AnalysisTags.java +++ b/src/main/java/ai/reveng/model/AnalysisTags.java @@ -52,7 +52,7 @@ /** * AnalysisTags */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisTags { public static final String SERIALIZED_NAME_ANALYSIS_TAGS = "analysis_tags"; @SerializedName(SERIALIZED_NAME_ANALYSIS_TAGS) diff --git a/src/main/java/ai/reveng/model/AnalysisUpdateRequest.java b/src/main/java/ai/reveng/model/AnalysisUpdateRequest.java index d8cbe5e..c406944 100644 --- a/src/main/java/ai/reveng/model/AnalysisUpdateRequest.java +++ b/src/main/java/ai/reveng/model/AnalysisUpdateRequest.java @@ -50,7 +50,7 @@ /** * AnalysisUpdateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisUpdateRequest { public static final String SERIALIZED_NAME_BINARY_NAME = "binary_name"; @SerializedName(SERIALIZED_NAME_BINARY_NAME) diff --git a/src/main/java/ai/reveng/model/AnalysisUpdateTagsRequest.java b/src/main/java/ai/reveng/model/AnalysisUpdateTagsRequest.java index 52f1a70..60e66e9 100644 --- a/src/main/java/ai/reveng/model/AnalysisUpdateTagsRequest.java +++ b/src/main/java/ai/reveng/model/AnalysisUpdateTagsRequest.java @@ -51,7 +51,7 @@ /** * AnalysisUpdateTagsRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisUpdateTagsRequest { public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) diff --git a/src/main/java/ai/reveng/model/AnalysisUpdateTagsResponse.java b/src/main/java/ai/reveng/model/AnalysisUpdateTagsResponse.java index 0d8a311..88470e0 100644 --- a/src/main/java/ai/reveng/model/AnalysisUpdateTagsResponse.java +++ b/src/main/java/ai/reveng/model/AnalysisUpdateTagsResponse.java @@ -52,7 +52,7 @@ /** * AnalysisUpdateTagsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AnalysisUpdateTagsResponse { public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) diff --git a/src/main/java/ai/reveng/model/AnyOf.java b/src/main/java/ai/reveng/model/AnyOf.java index 5ba1d34..8ba0730 100644 --- a/src/main/java/ai/reveng/model/AnyOf.java +++ b/src/main/java/ai/reveng/model/AnyOf.java @@ -1,15 +1,6 @@ /* - * RevEng.AI API - * RevEng.AI is Similarity Search Engine for executable binaries - * - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. + * Model for AnyOf. The generator is not creating this model automatically, so we create it manually. */ - - package ai.reveng.model; import java.util.Objects; @@ -106,8 +97,8 @@ public boolean equals(Object o) { } AnyOf anyOf = (AnyOf) o; return Objects.equals(this.getActualInstance(), anyOf.getActualInstance()) && - Objects.equals(this.isNullable(), anyOf.isNullable()) && - Objects.equals(this.getSchemaType(), anyOf.getSchemaType()); + Objects.equals(this.isNullable(), anyOf.isNullable()) && + Objects.equals(this.getSchemaType(), anyOf.getSchemaType()); } @Override diff --git a/src/main/java/ai/reveng/model/AppApiRestV1AnnSchemaANNFunction.java b/src/main/java/ai/reveng/model/AppApiRestV1AnnSchemaANNFunction.java index 914515a..59ff382 100644 --- a/src/main/java/ai/reveng/model/AppApiRestV1AnnSchemaANNFunction.java +++ b/src/main/java/ai/reveng/model/AppApiRestV1AnnSchemaANNFunction.java @@ -53,7 +53,7 @@ /** * AppApiRestV1AnnSchemaANNFunction */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppApiRestV1AnnSchemaANNFunction { public static final String SERIALIZED_NAME_RESULT_PER_FUNCTION = "result_per_function"; @SerializedName(SERIALIZED_NAME_RESULT_PER_FUNCTION) diff --git a/src/main/java/ai/reveng/model/AppApiRestV2AnalysesResponsesTagItem.java b/src/main/java/ai/reveng/model/AppApiRestV2AnalysesResponsesTagItem.java index cab2c12..794aac3 100644 --- a/src/main/java/ai/reveng/model/AppApiRestV2AnalysesResponsesTagItem.java +++ b/src/main/java/ai/reveng/model/AppApiRestV2AnalysesResponsesTagItem.java @@ -50,7 +50,7 @@ /** * AppApiRestV2AnalysesResponsesTagItem */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppApiRestV2AnalysesResponsesTagItem { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/AppApiRestV2FunctionsResponsesFunction.java b/src/main/java/ai/reveng/model/AppApiRestV2FunctionsResponsesFunction.java index 8802948..594896a 100644 --- a/src/main/java/ai/reveng/model/AppApiRestV2FunctionsResponsesFunction.java +++ b/src/main/java/ai/reveng/model/AppApiRestV2FunctionsResponsesFunction.java @@ -49,7 +49,7 @@ /** * Function schema used in function strings response. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppApiRestV2FunctionsResponsesFunction { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/AppApiRestV2FunctionsTypesFunction.java b/src/main/java/ai/reveng/model/AppApiRestV2FunctionsTypesFunction.java index 80994be..b9db6ad 100644 --- a/src/main/java/ai/reveng/model/AppApiRestV2FunctionsTypesFunction.java +++ b/src/main/java/ai/reveng/model/AppApiRestV2FunctionsTypesFunction.java @@ -52,7 +52,7 @@ /** * AppApiRestV2FunctionsTypesFunction */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppApiRestV2FunctionsTypesFunction { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/AppApiRestV2SimilaritySchemaANNFunction.java b/src/main/java/ai/reveng/model/AppApiRestV2SimilaritySchemaANNFunction.java index 3b489ba..d17ae0e 100644 --- a/src/main/java/ai/reveng/model/AppApiRestV2SimilaritySchemaANNFunction.java +++ b/src/main/java/ai/reveng/model/AppApiRestV2SimilaritySchemaANNFunction.java @@ -54,7 +54,7 @@ /** * AppApiRestV2SimilaritySchemaANNFunction */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppApiRestV2SimilaritySchemaANNFunction { public static final String SERIALIZED_NAME_LIMIT = "limit"; @SerializedName(SERIALIZED_NAME_LIMIT) diff --git a/src/main/java/ai/reveng/model/AppServicesBinaryAnnSchemaTagItem.java b/src/main/java/ai/reveng/model/AppServicesBinaryAnnSchemaTagItem.java index 975c67c..19652e1 100644 --- a/src/main/java/ai/reveng/model/AppServicesBinaryAnnSchemaTagItem.java +++ b/src/main/java/ai/reveng/model/AppServicesBinaryAnnSchemaTagItem.java @@ -50,7 +50,7 @@ /** * AppServicesBinaryAnnSchemaTagItem */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppServicesBinaryAnnSchemaTagItem { public static final String SERIALIZED_NAME_TAG = "tag"; @SerializedName(SERIALIZED_NAME_TAG) diff --git a/src/main/java/ai/reveng/model/AppServicesDynamicExecutionSchemasDynamicExecutionStatus.java b/src/main/java/ai/reveng/model/AppServicesDynamicExecutionSchemasDynamicExecutionStatus.java index e6b5d5a..dc0e63f 100644 --- a/src/main/java/ai/reveng/model/AppServicesDynamicExecutionSchemasDynamicExecutionStatus.java +++ b/src/main/java/ai/reveng/model/AppServicesDynamicExecutionSchemasDynamicExecutionStatus.java @@ -49,7 +49,7 @@ /** * AppServicesDynamicExecutionSchemasDynamicExecutionStatus */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AppServicesDynamicExecutionSchemasDynamicExecutionStatus { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/Argument.java b/src/main/java/ai/reveng/model/Argument.java index 70dc2c8..f8bb482 100644 --- a/src/main/java/ai/reveng/model/Argument.java +++ b/src/main/java/ai/reveng/model/Argument.java @@ -50,7 +50,7 @@ /** * Argument */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Argument { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/AutoUnstripRequest.java b/src/main/java/ai/reveng/model/AutoUnstripRequest.java index fdc110e..e661614 100644 --- a/src/main/java/ai/reveng/model/AutoUnstripRequest.java +++ b/src/main/java/ai/reveng/model/AutoUnstripRequest.java @@ -50,7 +50,7 @@ /** * AutoUnstripRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AutoUnstripRequest { public static final String SERIALIZED_NAME_MIN_SIMILARITY = "min_similarity"; @SerializedName(SERIALIZED_NAME_MIN_SIMILARITY) diff --git a/src/main/java/ai/reveng/model/AutoUnstripResponse.java b/src/main/java/ai/reveng/model/AutoUnstripResponse.java index 47941db..f26dde6 100644 --- a/src/main/java/ai/reveng/model/AutoUnstripResponse.java +++ b/src/main/java/ai/reveng/model/AutoUnstripResponse.java @@ -53,7 +53,7 @@ /** * AutoUnstripResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AutoUnstripResponse { public static final String SERIALIZED_NAME_PROGRESS = "progress"; @SerializedName(SERIALIZED_NAME_PROGRESS) diff --git a/src/main/java/ai/reveng/model/BaseResponse.java b/src/main/java/ai/reveng/model/BaseResponse.java index d1a0648..1ff572a 100644 --- a/src/main/java/ai/reveng/model/BaseResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponse.java @@ -55,7 +55,7 @@ /** * BaseResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisCreateResponse.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisCreateResponse.java index 9d189e4..a9eaafa 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisCreateResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisCreateResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisCreateResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisCreateResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisDetailResponse.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisDetailResponse.java index 92d3e1a..98bf54d 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisDetailResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisDetailResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisDetailResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisDetailResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctionMapping.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctionMapping.java index 105da0f..7539f19 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctionMapping.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctionMapping.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisFunctionMapping */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisFunctionMapping { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctions.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctions.java index bca3990..a2881e4 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctions.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisFunctions.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisFunctions */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisFunctions { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisStringsResponse.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisStringsResponse.java index c86cec7..588e35a 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisStringsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisStringsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisStringsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisStringsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisTags.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisTags.java index 22c5a16..a0fab52 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisTags.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisTags.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisTags */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisTags { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseAnalysisUpdateTagsResponse.java b/src/main/java/ai/reveng/model/BaseResponseAnalysisUpdateTagsResponse.java index 77fafdb..d3bf1da 100644 --- a/src/main/java/ai/reveng/model/BaseResponseAnalysisUpdateTagsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseAnalysisUpdateTagsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseAnalysisUpdateTagsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseAnalysisUpdateTagsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBasic.java b/src/main/java/ai/reveng/model/BaseResponseBasic.java index 18568a6..7caa3e0 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBasic.java +++ b/src/main/java/ai/reveng/model/BaseResponseBasic.java @@ -55,7 +55,7 @@ /** * BaseResponseBasic */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBasic { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBinaryAdditionalResponse.java b/src/main/java/ai/reveng/model/BaseResponseBinaryAdditionalResponse.java index 34de4d3..0986bce 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBinaryAdditionalResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBinaryAdditionalResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseBinaryAdditionalResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBinaryAdditionalResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBinaryAnnListResponse.java b/src/main/java/ai/reveng/model/BaseResponseBinaryAnnListResponse.java index 9040564..83ab57a 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBinaryAnnListResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBinaryAnnListResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseBinaryAnnListResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBinaryAnnListResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBinaryDetailsResponse.java b/src/main/java/ai/reveng/model/BaseResponseBinaryDetailsResponse.java index 3eb2dac..941ca5b 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBinaryDetailsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBinaryDetailsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseBinaryDetailsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBinaryDetailsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBinaryExternalsResponse.java b/src/main/java/ai/reveng/model/BaseResponseBinaryExternalsResponse.java index c2281a7..8e39e36 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBinaryExternalsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBinaryExternalsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseBinaryExternalsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBinaryExternalsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBinarySearchResponse.java b/src/main/java/ai/reveng/model/BaseResponseBinarySearchResponse.java index eaafa6f..83393da 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBinarySearchResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBinarySearchResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseBinarySearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBinarySearchResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBlockCommentsGenerationForFunctionResponse.java b/src/main/java/ai/reveng/model/BaseResponseBlockCommentsGenerationForFunctionResponse.java index 65ad1a0..630b5e5 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBlockCommentsGenerationForFunctionResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBlockCommentsGenerationForFunctionResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseBlockCommentsGenerationForFunctionResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBlockCommentsGenerationForFunctionResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBlockCommentsOverviewGenerationResponse.java b/src/main/java/ai/reveng/model/BaseResponseBlockCommentsOverviewGenerationResponse.java index d0b8afa..613f016 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBlockCommentsOverviewGenerationResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseBlockCommentsOverviewGenerationResponse.java @@ -54,7 +54,7 @@ /** * BaseResponseBlockCommentsOverviewGenerationResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBlockCommentsOverviewGenerationResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBool.java b/src/main/java/ai/reveng/model/BaseResponseBool.java index 5a06acd..9d06351 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBool.java +++ b/src/main/java/ai/reveng/model/BaseResponseBool.java @@ -54,7 +54,7 @@ /** * BaseResponseBool */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBool { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseBoxPlotConfidence.java b/src/main/java/ai/reveng/model/BaseResponseBoxPlotConfidence.java index 1bfda3c..2bb91c6 100644 --- a/src/main/java/ai/reveng/model/BaseResponseBoxPlotConfidence.java +++ b/src/main/java/ai/reveng/model/BaseResponseBoxPlotConfidence.java @@ -55,7 +55,7 @@ /** * BaseResponseBoxPlotConfidence */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseBoxPlotConfidence { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCalleesCallerFunctionsResponse.java b/src/main/java/ai/reveng/model/BaseResponseCalleesCallerFunctionsResponse.java index acc9b7f..cab0a8c 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCalleesCallerFunctionsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCalleesCallerFunctionsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCalleesCallerFunctionsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCalleesCallerFunctionsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCapabilities.java b/src/main/java/ai/reveng/model/BaseResponseCapabilities.java index f30f54c..314e620 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCapabilities.java +++ b/src/main/java/ai/reveng/model/BaseResponseCapabilities.java @@ -55,7 +55,7 @@ /** * BaseResponseCapabilities */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCapabilities { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCheckSecurityChecksTaskResponse.java b/src/main/java/ai/reveng/model/BaseResponseCheckSecurityChecksTaskResponse.java index fb4ae8f..591387f 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCheckSecurityChecksTaskResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCheckSecurityChecksTaskResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCheckSecurityChecksTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCheckSecurityChecksTaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseChildBinariesResponse.java b/src/main/java/ai/reveng/model/BaseResponseChildBinariesResponse.java index 6a70a0e..40282e0 100644 --- a/src/main/java/ai/reveng/model/BaseResponseChildBinariesResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseChildBinariesResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseChildBinariesResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseChildBinariesResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCollectionBinariesUpdateResponse.java b/src/main/java/ai/reveng/model/BaseResponseCollectionBinariesUpdateResponse.java index 6bd616d..a20e40b 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCollectionBinariesUpdateResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCollectionBinariesUpdateResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCollectionBinariesUpdateResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCollectionBinariesUpdateResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCollectionResponse.java b/src/main/java/ai/reveng/model/BaseResponseCollectionResponse.java index ed0d9ba..4d3e82e 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCollectionResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCollectionResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCollectionResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCollectionResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCollectionSearchResponse.java b/src/main/java/ai/reveng/model/BaseResponseCollectionSearchResponse.java index 7e31d6c..4164d5c 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCollectionSearchResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCollectionSearchResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCollectionSearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCollectionSearchResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCollectionTagsUpdateResponse.java b/src/main/java/ai/reveng/model/BaseResponseCollectionTagsUpdateResponse.java index cd77753..eb58cb9 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCollectionTagsUpdateResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCollectionTagsUpdateResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCollectionTagsUpdateResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCollectionTagsUpdateResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCommentResponse.java b/src/main/java/ai/reveng/model/BaseResponseCommentResponse.java index 8afe1b2..0e4e9bf 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCommentResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseCommentResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseCommentResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCommentResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCommunities.java b/src/main/java/ai/reveng/model/BaseResponseCommunities.java index 18e3434..0f67efd 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCommunities.java +++ b/src/main/java/ai/reveng/model/BaseResponseCommunities.java @@ -55,7 +55,7 @@ /** * BaseResponseCommunities */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCommunities { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseCreated.java b/src/main/java/ai/reveng/model/BaseResponseCreated.java index 1b6342d..eaffa8d 100644 --- a/src/main/java/ai/reveng/model/BaseResponseCreated.java +++ b/src/main/java/ai/reveng/model/BaseResponseCreated.java @@ -55,7 +55,7 @@ /** * BaseResponseCreated */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseCreated { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseDecompilationResponse.java b/src/main/java/ai/reveng/model/BaseResponseDecompilationResponse.java index a4ff1d6..80d9380 100644 --- a/src/main/java/ai/reveng/model/BaseResponseDecompilationResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseDecompilationResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseDecompilationResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseDecompilationResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseDict.java b/src/main/java/ai/reveng/model/BaseResponseDict.java index aaee853..e9e5c3d 100644 --- a/src/main/java/ai/reveng/model/BaseResponseDict.java +++ b/src/main/java/ai/reveng/model/BaseResponseDict.java @@ -56,7 +56,7 @@ /** * BaseResponseDict */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseDict { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseDynamicExecutionStatus.java b/src/main/java/ai/reveng/model/BaseResponseDynamicExecutionStatus.java index 26cd132..5e6c2ca 100644 --- a/src/main/java/ai/reveng/model/BaseResponseDynamicExecutionStatus.java +++ b/src/main/java/ai/reveng/model/BaseResponseDynamicExecutionStatus.java @@ -55,7 +55,7 @@ /** * BaseResponseDynamicExecutionStatus */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseDynamicExecutionStatus { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseExternalResponse.java b/src/main/java/ai/reveng/model/BaseResponseExternalResponse.java index f06201c..cc5f1ff 100644 --- a/src/main/java/ai/reveng/model/BaseResponseExternalResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseExternalResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseExternalResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseExternalResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionBlocksResponse.java b/src/main/java/ai/reveng/model/BaseResponseFunctionBlocksResponse.java index 8cd76e5..518ec69 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionBlocksResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionBlocksResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionBlocksResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionBlocksResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionCapabilityResponse.java b/src/main/java/ai/reveng/model/BaseResponseFunctionCapabilityResponse.java index 29367b8..7fcde5a 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionCapabilityResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionCapabilityResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionCapabilityResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionCapabilityResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypes.java b/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypes.java index 66db538..7b55f77 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypes.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypes.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionDataTypes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionDataTypes { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypesList.java b/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypesList.java index 60ff981..5f76d59 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypesList.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionDataTypesList.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionDataTypesList */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionDataTypesList { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionSearchResponse.java b/src/main/java/ai/reveng/model/BaseResponseFunctionSearchResponse.java index f23b0d5..0c2c81e 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionSearchResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionSearchResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionSearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionSearchResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionStringsResponse.java b/src/main/java/ai/reveng/model/BaseResponseFunctionStringsResponse.java index 42e4a2c..7ec6e5a 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionStringsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionStringsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionStringsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionStringsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionTaskResponse.java b/src/main/java/ai/reveng/model/BaseResponseFunctionTaskResponse.java index f09598b..306d685 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionTaskResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionTaskResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionTaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseFunctionsDetailResponse.java b/src/main/java/ai/reveng/model/BaseResponseFunctionsDetailResponse.java index 23c4de9..76574fd 100644 --- a/src/main/java/ai/reveng/model/BaseResponseFunctionsDetailResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseFunctionsDetailResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseFunctionsDetailResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseFunctionsDetailResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseGenerateFunctionDataTypes.java b/src/main/java/ai/reveng/model/BaseResponseGenerateFunctionDataTypes.java index 0944b11..7836bfd 100644 --- a/src/main/java/ai/reveng/model/BaseResponseGenerateFunctionDataTypes.java +++ b/src/main/java/ai/reveng/model/BaseResponseGenerateFunctionDataTypes.java @@ -55,7 +55,7 @@ /** * BaseResponseGenerateFunctionDataTypes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseGenerateFunctionDataTypes { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseGenerationStatusList.java b/src/main/java/ai/reveng/model/BaseResponseGenerationStatusList.java index ba2c2d6..f3b3667 100644 --- a/src/main/java/ai/reveng/model/BaseResponseGenerationStatusList.java +++ b/src/main/java/ai/reveng/model/BaseResponseGenerationStatusList.java @@ -55,7 +55,7 @@ /** * BaseResponseGenerationStatusList */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseGenerationStatusList { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationRatingResponse.java b/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationRatingResponse.java index 794f2b6..80b599e 100644 --- a/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationRatingResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationRatingResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseGetAiDecompilationRatingResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseGetAiDecompilationRatingResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationTask.java b/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationTask.java index 904f21a..d6799cc 100644 --- a/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationTask.java +++ b/src/main/java/ai/reveng/model/BaseResponseGetAiDecompilationTask.java @@ -55,7 +55,7 @@ /** * BaseResponseGetAiDecompilationTask */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseGetAiDecompilationTask { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseGetPublicUserResponse.java b/src/main/java/ai/reveng/model/BaseResponseGetPublicUserResponse.java index bbdfe74..2682428 100644 --- a/src/main/java/ai/reveng/model/BaseResponseGetPublicUserResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseGetPublicUserResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseGetPublicUserResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseGetPublicUserResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseGetUserResponse.java b/src/main/java/ai/reveng/model/BaseResponseGetUserResponse.java index 8188189..3292174 100644 --- a/src/main/java/ai/reveng/model/BaseResponseGetUserResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseGetUserResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseGetUserResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseGetUserResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListCollectionResults.java b/src/main/java/ai/reveng/model/BaseResponseListCollectionResults.java index c61351e..93f9e9f 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListCollectionResults.java +++ b/src/main/java/ai/reveng/model/BaseResponseListCollectionResults.java @@ -55,7 +55,7 @@ /** * BaseResponseListCollectionResults */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListCollectionResults { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListCommentResponse.java b/src/main/java/ai/reveng/model/BaseResponseListCommentResponse.java index 696bf15..086187d 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListCommentResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseListCommentResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseListCommentResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListCommentResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListDieMatch.java b/src/main/java/ai/reveng/model/BaseResponseListDieMatch.java index 1c9dc3a..00e9c32 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListDieMatch.java +++ b/src/main/java/ai/reveng/model/BaseResponseListDieMatch.java @@ -55,7 +55,7 @@ /** * BaseResponseListDieMatch */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListDieMatch { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListFunctionBoxPlotConfidence.java b/src/main/java/ai/reveng/model/BaseResponseListFunctionBoxPlotConfidence.java index c7da85c..8dcb079 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListFunctionBoxPlotConfidence.java +++ b/src/main/java/ai/reveng/model/BaseResponseListFunctionBoxPlotConfidence.java @@ -55,7 +55,7 @@ /** * BaseResponseListFunctionBoxPlotConfidence */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListFunctionBoxPlotConfidence { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListFunctionNameHistory.java b/src/main/java/ai/reveng/model/BaseResponseListFunctionNameHistory.java index 789ee3f..51bc904 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListFunctionNameHistory.java +++ b/src/main/java/ai/reveng/model/BaseResponseListFunctionNameHistory.java @@ -55,7 +55,7 @@ /** * BaseResponseListFunctionNameHistory */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListFunctionNameHistory { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListSBOM.java b/src/main/java/ai/reveng/model/BaseResponseListSBOM.java index 0f73b1e..c9cf511 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListSBOM.java +++ b/src/main/java/ai/reveng/model/BaseResponseListSBOM.java @@ -55,7 +55,7 @@ /** * BaseResponseListSBOM */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListSBOM { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListSimilarFunctionsResponse.java b/src/main/java/ai/reveng/model/BaseResponseListSimilarFunctionsResponse.java index 4c281a8..45ffa40 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListSimilarFunctionsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseListSimilarFunctionsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseListSimilarFunctionsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListSimilarFunctionsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListTagOriginBoxPlotConfidence.java b/src/main/java/ai/reveng/model/BaseResponseListTagOriginBoxPlotConfidence.java index c6338b7..68c18c5 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListTagOriginBoxPlotConfidence.java +++ b/src/main/java/ai/reveng/model/BaseResponseListTagOriginBoxPlotConfidence.java @@ -55,7 +55,7 @@ /** * BaseResponseListTagOriginBoxPlotConfidence */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListTagOriginBoxPlotConfidence { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseListUserActivityResponse.java b/src/main/java/ai/reveng/model/BaseResponseListUserActivityResponse.java index 3435c4f..2fb0f97 100644 --- a/src/main/java/ai/reveng/model/BaseResponseListUserActivityResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseListUserActivityResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseListUserActivityResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseListUserActivityResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseLoginResponse.java b/src/main/java/ai/reveng/model/BaseResponseLoginResponse.java index 7019138..a8f60c4 100644 --- a/src/main/java/ai/reveng/model/BaseResponseLoginResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseLoginResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseLoginResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseLoginResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseLogs.java b/src/main/java/ai/reveng/model/BaseResponseLogs.java index b6fc959..4f5fe2a 100644 --- a/src/main/java/ai/reveng/model/BaseResponseLogs.java +++ b/src/main/java/ai/reveng/model/BaseResponseLogs.java @@ -55,7 +55,7 @@ /** * BaseResponseLogs */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseLogs { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseModelsResponse.java b/src/main/java/ai/reveng/model/BaseResponseModelsResponse.java index 29fddbf..071cbfa 100644 --- a/src/main/java/ai/reveng/model/BaseResponseModelsResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseModelsResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseModelsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseModelsResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseNearestNeighborAnalysis.java b/src/main/java/ai/reveng/model/BaseResponseNearestNeighborAnalysis.java index 6f4919e..24e3302 100644 --- a/src/main/java/ai/reveng/model/BaseResponseNearestNeighborAnalysis.java +++ b/src/main/java/ai/reveng/model/BaseResponseNearestNeighborAnalysis.java @@ -57,7 +57,7 @@ /** * BaseResponseNearestNeighborAnalysis */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseNearestNeighborAnalysis { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseNetworkOverviewResponse.java b/src/main/java/ai/reveng/model/BaseResponseNetworkOverviewResponse.java index c9df053..341eaa5 100644 --- a/src/main/java/ai/reveng/model/BaseResponseNetworkOverviewResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseNetworkOverviewResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseNetworkOverviewResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseNetworkOverviewResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseParams.java b/src/main/java/ai/reveng/model/BaseResponseParams.java index fee6c87..5f049c7 100644 --- a/src/main/java/ai/reveng/model/BaseResponseParams.java +++ b/src/main/java/ai/reveng/model/BaseResponseParams.java @@ -55,7 +55,7 @@ /** * BaseResponseParams */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseParams { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseProcessDumps.java b/src/main/java/ai/reveng/model/BaseResponseProcessDumps.java index 24e580e..55cf5e9 100644 --- a/src/main/java/ai/reveng/model/BaseResponseProcessDumps.java +++ b/src/main/java/ai/reveng/model/BaseResponseProcessDumps.java @@ -55,7 +55,7 @@ /** * BaseResponseProcessDumps */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseProcessDumps { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseProcessRegistry.java b/src/main/java/ai/reveng/model/BaseResponseProcessRegistry.java index 86d87c4..714d151 100644 --- a/src/main/java/ai/reveng/model/BaseResponseProcessRegistry.java +++ b/src/main/java/ai/reveng/model/BaseResponseProcessRegistry.java @@ -55,7 +55,7 @@ /** * BaseResponseProcessRegistry */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseProcessRegistry { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseProcessTree.java b/src/main/java/ai/reveng/model/BaseResponseProcessTree.java index eb10569..1c71836 100644 --- a/src/main/java/ai/reveng/model/BaseResponseProcessTree.java +++ b/src/main/java/ai/reveng/model/BaseResponseProcessTree.java @@ -55,7 +55,7 @@ /** * BaseResponseProcessTree */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseProcessTree { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseQueuedSecurityChecksTaskResponse.java b/src/main/java/ai/reveng/model/BaseResponseQueuedSecurityChecksTaskResponse.java index fba0f18..0730b8e 100644 --- a/src/main/java/ai/reveng/model/BaseResponseQueuedSecurityChecksTaskResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseQueuedSecurityChecksTaskResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseQueuedSecurityChecksTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseQueuedSecurityChecksTaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseRecent.java b/src/main/java/ai/reveng/model/BaseResponseRecent.java index 491ac23..b1c828e 100644 --- a/src/main/java/ai/reveng/model/BaseResponseRecent.java +++ b/src/main/java/ai/reveng/model/BaseResponseRecent.java @@ -55,7 +55,7 @@ /** * BaseResponseRecent */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseRecent { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseSecurityChecksResponse.java b/src/main/java/ai/reveng/model/BaseResponseSecurityChecksResponse.java index 934353a..e77eb34 100644 --- a/src/main/java/ai/reveng/model/BaseResponseSecurityChecksResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseSecurityChecksResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseSecurityChecksResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseSecurityChecksResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseStatus.java b/src/main/java/ai/reveng/model/BaseResponseStatus.java index 5b13e67..5373971 100644 --- a/src/main/java/ai/reveng/model/BaseResponseStatus.java +++ b/src/main/java/ai/reveng/model/BaseResponseStatus.java @@ -55,7 +55,7 @@ /** * BaseResponseStatus */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseStatus { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseStr.java b/src/main/java/ai/reveng/model/BaseResponseStr.java index 31ecef7..3d26ebb 100644 --- a/src/main/java/ai/reveng/model/BaseResponseStr.java +++ b/src/main/java/ai/reveng/model/BaseResponseStr.java @@ -54,7 +54,7 @@ /** * BaseResponseStr */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseStr { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseTTPS.java b/src/main/java/ai/reveng/model/BaseResponseTTPS.java index 85ebe9e..973b444 100644 --- a/src/main/java/ai/reveng/model/BaseResponseTTPS.java +++ b/src/main/java/ai/reveng/model/BaseResponseTTPS.java @@ -55,7 +55,7 @@ /** * BaseResponseTTPS */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseTTPS { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseTagSearchResponse.java b/src/main/java/ai/reveng/model/BaseResponseTagSearchResponse.java index 2fae9bd..6b03b48 100644 --- a/src/main/java/ai/reveng/model/BaseResponseTagSearchResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseTagSearchResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseTagSearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseTagSearchResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseTaskResponse.java b/src/main/java/ai/reveng/model/BaseResponseTaskResponse.java index 0d999bc..f55b446 100644 --- a/src/main/java/ai/reveng/model/BaseResponseTaskResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseTaskResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseTaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseUploadResponse.java b/src/main/java/ai/reveng/model/BaseResponseUploadResponse.java index 02217bd..876d57d 100644 --- a/src/main/java/ai/reveng/model/BaseResponseUploadResponse.java +++ b/src/main/java/ai/reveng/model/BaseResponseUploadResponse.java @@ -55,7 +55,7 @@ /** * BaseResponseUploadResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseUploadResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/BaseResponseVulnerabilities.java b/src/main/java/ai/reveng/model/BaseResponseVulnerabilities.java index 7dad791..379d781 100644 --- a/src/main/java/ai/reveng/model/BaseResponseVulnerabilities.java +++ b/src/main/java/ai/reveng/model/BaseResponseVulnerabilities.java @@ -55,7 +55,7 @@ /** * BaseResponseVulnerabilities */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BaseResponseVulnerabilities { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/Basic.java b/src/main/java/ai/reveng/model/Basic.java index d071fda..300d767 100644 --- a/src/main/java/ai/reveng/model/Basic.java +++ b/src/main/java/ai/reveng/model/Basic.java @@ -50,7 +50,7 @@ /** * Basic */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Basic { public static final String SERIALIZED_NAME_BINARY_NAME = "binary_name"; @SerializedName(SERIALIZED_NAME_BINARY_NAME) diff --git a/src/main/java/ai/reveng/model/BinaryAdditionalDetailsDataResponse.java b/src/main/java/ai/reveng/model/BinaryAdditionalDetailsDataResponse.java index ce545f8..3c6ec76 100644 --- a/src/main/java/ai/reveng/model/BinaryAdditionalDetailsDataResponse.java +++ b/src/main/java/ai/reveng/model/BinaryAdditionalDetailsDataResponse.java @@ -53,7 +53,7 @@ /** * BinaryAdditionalDetailsDataResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryAdditionalDetailsDataResponse { public static final String SERIALIZED_NAME_FILE = "file"; @SerializedName(SERIALIZED_NAME_FILE) diff --git a/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java b/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java index fe87828..6c8e64d 100644 --- a/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java +++ b/src/main/java/ai/reveng/model/BinaryAdditionalResponse.java @@ -52,7 +52,7 @@ /** * BinaryAdditionalResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryAdditionalResponse { public static final String SERIALIZED_NAME_BINARY_ID = "binary_id"; @SerializedName(SERIALIZED_NAME_BINARY_ID) diff --git a/src/main/java/ai/reveng/model/BinaryAnnForm.java b/src/main/java/ai/reveng/model/BinaryAnnForm.java index e204aea..7b02aca 100644 --- a/src/main/java/ai/reveng/model/BinaryAnnForm.java +++ b/src/main/java/ai/reveng/model/BinaryAnnForm.java @@ -52,7 +52,7 @@ /** * BinaryAnnForm */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryAnnForm { public static final String SERIALIZED_NAME_CONFIDENCE = "confidence"; @SerializedName(SERIALIZED_NAME_CONFIDENCE) diff --git a/src/main/java/ai/reveng/model/BinaryAnnListResponse.java b/src/main/java/ai/reveng/model/BinaryAnnListResponse.java index 7dfed41..b5adc62 100644 --- a/src/main/java/ai/reveng/model/BinaryAnnListResponse.java +++ b/src/main/java/ai/reveng/model/BinaryAnnListResponse.java @@ -52,7 +52,7 @@ /** * BinaryAnnListResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryAnnListResponse { public static final String SERIALIZED_NAME_LIST = "list"; @SerializedName(SERIALIZED_NAME_LIST) diff --git a/src/main/java/ai/reveng/model/BinaryConfig.java b/src/main/java/ai/reveng/model/BinaryConfig.java index 543adea..7440c73 100644 --- a/src/main/java/ai/reveng/model/BinaryConfig.java +++ b/src/main/java/ai/reveng/model/BinaryConfig.java @@ -53,7 +53,7 @@ /** * BinaryConfig */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryConfig { public static final String SERIALIZED_NAME_ISA = "isa"; @SerializedName(SERIALIZED_NAME_ISA) diff --git a/src/main/java/ai/reveng/model/BinaryDetailsResponse.java b/src/main/java/ai/reveng/model/BinaryDetailsResponse.java index 6e7a750..198d65a 100644 --- a/src/main/java/ai/reveng/model/BinaryDetailsResponse.java +++ b/src/main/java/ai/reveng/model/BinaryDetailsResponse.java @@ -51,7 +51,7 @@ /** * BinaryDetailsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryDetailsResponse { public static final String SERIALIZED_NAME_ARCH = "arch"; @SerializedName(SERIALIZED_NAME_ARCH) diff --git a/src/main/java/ai/reveng/model/BinaryExternalsResponse.java b/src/main/java/ai/reveng/model/BinaryExternalsResponse.java index 3925c3c..26d698c 100644 --- a/src/main/java/ai/reveng/model/BinaryExternalsResponse.java +++ b/src/main/java/ai/reveng/model/BinaryExternalsResponse.java @@ -52,7 +52,7 @@ /** * BinaryExternalsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinaryExternalsResponse { public static final String SERIALIZED_NAME_SHA256_HASH = "sha_256_hash"; @SerializedName(SERIALIZED_NAME_SHA256_HASH) diff --git a/src/main/java/ai/reveng/model/BinarySearchResponse.java b/src/main/java/ai/reveng/model/BinarySearchResponse.java index 4cdc3f4..c91c510 100644 --- a/src/main/java/ai/reveng/model/BinarySearchResponse.java +++ b/src/main/java/ai/reveng/model/BinarySearchResponse.java @@ -52,7 +52,7 @@ /** * BinarySearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinarySearchResponse { public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) diff --git a/src/main/java/ai/reveng/model/BinarySearchResult.java b/src/main/java/ai/reveng/model/BinarySearchResult.java index 3dca838..c1bc1fb 100644 --- a/src/main/java/ai/reveng/model/BinarySearchResult.java +++ b/src/main/java/ai/reveng/model/BinarySearchResult.java @@ -52,7 +52,7 @@ /** * BinarySearchResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BinarySearchResult { public static final String SERIALIZED_NAME_BINARY_ID = "binary_id"; @SerializedName(SERIALIZED_NAME_BINARY_ID) diff --git a/src/main/java/ai/reveng/model/Block.java b/src/main/java/ai/reveng/model/Block.java index 318ef4c..093fdc4 100644 --- a/src/main/java/ai/reveng/model/Block.java +++ b/src/main/java/ai/reveng/model/Block.java @@ -49,7 +49,7 @@ /** * Block */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Block { public static final String SERIALIZED_NAME_VIRTUAL_ADDRESS = "virtual_address"; @SerializedName(SERIALIZED_NAME_VIRTUAL_ADDRESS) diff --git a/src/main/java/ai/reveng/model/BlockCommentsGenerationForFunctionResponse.java b/src/main/java/ai/reveng/model/BlockCommentsGenerationForFunctionResponse.java index a08bc92..770d437 100644 --- a/src/main/java/ai/reveng/model/BlockCommentsGenerationForFunctionResponse.java +++ b/src/main/java/ai/reveng/model/BlockCommentsGenerationForFunctionResponse.java @@ -49,7 +49,7 @@ /** * BlockCommentsGenerationForFunctionResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BlockCommentsGenerationForFunctionResponse { public static final String SERIALIZED_NAME_UPDATED_BLOCKS = "updated_blocks"; @SerializedName(SERIALIZED_NAME_UPDATED_BLOCKS) diff --git a/src/main/java/ai/reveng/model/BoxPlotConfidence.java b/src/main/java/ai/reveng/model/BoxPlotConfidence.java index c91e379..82e5012 100644 --- a/src/main/java/ai/reveng/model/BoxPlotConfidence.java +++ b/src/main/java/ai/reveng/model/BoxPlotConfidence.java @@ -50,7 +50,7 @@ /** * Format for confidence - returned in the box plot format */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class BoxPlotConfidence { public static final String SERIALIZED_NAME_MIN = "min"; @SerializedName(SERIALIZED_NAME_MIN) diff --git a/src/main/java/ai/reveng/model/CalleeFunctionInfo.java b/src/main/java/ai/reveng/model/CalleeFunctionInfo.java index b211161..955e9e1 100644 --- a/src/main/java/ai/reveng/model/CalleeFunctionInfo.java +++ b/src/main/java/ai/reveng/model/CalleeFunctionInfo.java @@ -49,7 +49,7 @@ /** * CalleeFunctionInfo */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CalleeFunctionInfo { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/CalleesCallerFunctionsResponse.java b/src/main/java/ai/reveng/model/CalleesCallerFunctionsResponse.java index 2d38bd9..bca7eb4 100644 --- a/src/main/java/ai/reveng/model/CalleesCallerFunctionsResponse.java +++ b/src/main/java/ai/reveng/model/CalleesCallerFunctionsResponse.java @@ -53,7 +53,7 @@ /** * CalleesCallerFunctionsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CalleesCallerFunctionsResponse { public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address"; @SerializedName(SERIALIZED_NAME_BASE_ADDRESS) diff --git a/src/main/java/ai/reveng/model/CallerFunctionInfo.java b/src/main/java/ai/reveng/model/CallerFunctionInfo.java index d7e44db..ff7b133 100644 --- a/src/main/java/ai/reveng/model/CallerFunctionInfo.java +++ b/src/main/java/ai/reveng/model/CallerFunctionInfo.java @@ -49,7 +49,7 @@ /** * CallerFunctionInfo */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CallerFunctionInfo { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/Capabilities.java b/src/main/java/ai/reveng/model/Capabilities.java index 27922a9..5d6fcf7 100644 --- a/src/main/java/ai/reveng/model/Capabilities.java +++ b/src/main/java/ai/reveng/model/Capabilities.java @@ -52,7 +52,7 @@ /** * Capabilities */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Capabilities { public static final String SERIALIZED_NAME_CAPABILITIES = "capabilities"; @SerializedName(SERIALIZED_NAME_CAPABILITIES) diff --git a/src/main/java/ai/reveng/model/Capability.java b/src/main/java/ai/reveng/model/Capability.java index 214a703..9227045 100644 --- a/src/main/java/ai/reveng/model/Capability.java +++ b/src/main/java/ai/reveng/model/Capability.java @@ -51,7 +51,7 @@ /** * Capability */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Capability { public static final String SERIALIZED_NAME_FUNCTION_NAME = "function_name"; @SerializedName(SERIALIZED_NAME_FUNCTION_NAME) diff --git a/src/main/java/ai/reveng/model/CheckSecurityChecksTaskResponse.java b/src/main/java/ai/reveng/model/CheckSecurityChecksTaskResponse.java index 9c50d9d..6c3fc72 100644 --- a/src/main/java/ai/reveng/model/CheckSecurityChecksTaskResponse.java +++ b/src/main/java/ai/reveng/model/CheckSecurityChecksTaskResponse.java @@ -50,7 +50,7 @@ /** * CheckSecurityChecksTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CheckSecurityChecksTaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/ChildBinariesResponse.java b/src/main/java/ai/reveng/model/ChildBinariesResponse.java index d942990..c568062 100644 --- a/src/main/java/ai/reveng/model/ChildBinariesResponse.java +++ b/src/main/java/ai/reveng/model/ChildBinariesResponse.java @@ -53,7 +53,7 @@ /** * ChildBinariesResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ChildBinariesResponse { public static final String SERIALIZED_NAME_CHILDREN = "children"; @SerializedName(SERIALIZED_NAME_CHILDREN) diff --git a/src/main/java/ai/reveng/model/CodeSignatureModel.java b/src/main/java/ai/reveng/model/CodeSignatureModel.java index 8f0cf6d..5f6476b 100644 --- a/src/main/java/ai/reveng/model/CodeSignatureModel.java +++ b/src/main/java/ai/reveng/model/CodeSignatureModel.java @@ -52,7 +52,7 @@ /** * CodeSignatureModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CodeSignatureModel { public static final String SERIALIZED_NAME_SIGNED = "signed"; @SerializedName(SERIALIZED_NAME_SIGNED) diff --git a/src/main/java/ai/reveng/model/CollectionBinariesUpdateRequest.java b/src/main/java/ai/reveng/model/CollectionBinariesUpdateRequest.java index cfb7814..e0b34be 100644 --- a/src/main/java/ai/reveng/model/CollectionBinariesUpdateRequest.java +++ b/src/main/java/ai/reveng/model/CollectionBinariesUpdateRequest.java @@ -51,7 +51,7 @@ /** * CollectionBinariesUpdateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionBinariesUpdateRequest { public static final String SERIALIZED_NAME_BINARIES = "binaries"; @SerializedName(SERIALIZED_NAME_BINARIES) diff --git a/src/main/java/ai/reveng/model/CollectionBinariesUpdateResponse.java b/src/main/java/ai/reveng/model/CollectionBinariesUpdateResponse.java index c7683b0..e16af1d 100644 --- a/src/main/java/ai/reveng/model/CollectionBinariesUpdateResponse.java +++ b/src/main/java/ai/reveng/model/CollectionBinariesUpdateResponse.java @@ -52,7 +52,7 @@ /** * CollectionBinariesUpdateResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionBinariesUpdateResponse { public static final String SERIALIZED_NAME_BINARIES = "binaries"; @SerializedName(SERIALIZED_NAME_BINARIES) diff --git a/src/main/java/ai/reveng/model/CollectionBinaryResponse.java b/src/main/java/ai/reveng/model/CollectionBinaryResponse.java index 5671ae9..5bc3963 100644 --- a/src/main/java/ai/reveng/model/CollectionBinaryResponse.java +++ b/src/main/java/ai/reveng/model/CollectionBinaryResponse.java @@ -50,7 +50,7 @@ /** * CollectionBinaryResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionBinaryResponse { public static final String SERIALIZED_NAME_ANALYSIS_ID = "analysis_id"; @SerializedName(SERIALIZED_NAME_ANALYSIS_ID) diff --git a/src/main/java/ai/reveng/model/CollectionCreateRequest.java b/src/main/java/ai/reveng/model/CollectionCreateRequest.java index 96221e8..51e08e7 100644 --- a/src/main/java/ai/reveng/model/CollectionCreateRequest.java +++ b/src/main/java/ai/reveng/model/CollectionCreateRequest.java @@ -53,7 +53,7 @@ /** * CollectionCreateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionCreateRequest { public static final String SERIALIZED_NAME_COLLECTION_NAME = "collection_name"; @SerializedName(SERIALIZED_NAME_COLLECTION_NAME) diff --git a/src/main/java/ai/reveng/model/CollectionListItem.java b/src/main/java/ai/reveng/model/CollectionListItem.java index 535b610..2a7b528 100644 --- a/src/main/java/ai/reveng/model/CollectionListItem.java +++ b/src/main/java/ai/reveng/model/CollectionListItem.java @@ -53,7 +53,7 @@ /** * CollectionListItem */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionListItem { public static final String SERIALIZED_NAME_COLLECTION_NAME = "collection_name"; @SerializedName(SERIALIZED_NAME_COLLECTION_NAME) diff --git a/src/main/java/ai/reveng/model/CollectionResponse.java b/src/main/java/ai/reveng/model/CollectionResponse.java index 3ebcff5..f3582bd 100644 --- a/src/main/java/ai/reveng/model/CollectionResponse.java +++ b/src/main/java/ai/reveng/model/CollectionResponse.java @@ -55,7 +55,7 @@ /** * CollectionResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionResponse { public static final String SERIALIZED_NAME_COLLECTION_ID = "collection_id"; @SerializedName(SERIALIZED_NAME_COLLECTION_ID) diff --git a/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java b/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java index 8fd814e..7b5b0a0 100644 --- a/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java +++ b/src/main/java/ai/reveng/model/CollectionResponseBinariesInner.java @@ -60,7 +60,7 @@ import ai.reveng.invoker.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionResponseBinariesInner extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(CollectionResponseBinariesInner.class.getName()); diff --git a/src/main/java/ai/reveng/model/CollectionSearchResponse.java b/src/main/java/ai/reveng/model/CollectionSearchResponse.java index e39ff73..1080d08 100644 --- a/src/main/java/ai/reveng/model/CollectionSearchResponse.java +++ b/src/main/java/ai/reveng/model/CollectionSearchResponse.java @@ -52,7 +52,7 @@ /** * CollectionSearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionSearchResponse { public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) diff --git a/src/main/java/ai/reveng/model/CollectionSearchResult.java b/src/main/java/ai/reveng/model/CollectionSearchResult.java index 1067a3f..4596d77 100644 --- a/src/main/java/ai/reveng/model/CollectionSearchResult.java +++ b/src/main/java/ai/reveng/model/CollectionSearchResult.java @@ -53,7 +53,7 @@ /** * CollectionSearchResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionSearchResult { public static final String SERIALIZED_NAME_COLLECTION_ID = "collection_id"; @SerializedName(SERIALIZED_NAME_COLLECTION_ID) diff --git a/src/main/java/ai/reveng/model/CollectionTagsUpdateRequest.java b/src/main/java/ai/reveng/model/CollectionTagsUpdateRequest.java index efe1d8d..50be31d 100644 --- a/src/main/java/ai/reveng/model/CollectionTagsUpdateRequest.java +++ b/src/main/java/ai/reveng/model/CollectionTagsUpdateRequest.java @@ -51,7 +51,7 @@ /** * CollectionTagsUpdateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionTagsUpdateRequest { public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) diff --git a/src/main/java/ai/reveng/model/CollectionTagsUpdateResponse.java b/src/main/java/ai/reveng/model/CollectionTagsUpdateResponse.java index fe6cf69..a47a79d 100644 --- a/src/main/java/ai/reveng/model/CollectionTagsUpdateResponse.java +++ b/src/main/java/ai/reveng/model/CollectionTagsUpdateResponse.java @@ -51,7 +51,7 @@ /** * CollectionTagsUpdateResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionTagsUpdateResponse { public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) diff --git a/src/main/java/ai/reveng/model/CollectionUpdateRequest.java b/src/main/java/ai/reveng/model/CollectionUpdateRequest.java index 4b71d5d..d2f7ace 100644 --- a/src/main/java/ai/reveng/model/CollectionUpdateRequest.java +++ b/src/main/java/ai/reveng/model/CollectionUpdateRequest.java @@ -51,7 +51,7 @@ /** * CollectionUpdateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CollectionUpdateRequest { public static final String SERIALIZED_NAME_COLLECTION_NAME = "collection_name"; @SerializedName(SERIALIZED_NAME_COLLECTION_NAME) diff --git a/src/main/java/ai/reveng/model/CommentBase.java b/src/main/java/ai/reveng/model/CommentBase.java index 1ebcd7f..7bf76d5 100644 --- a/src/main/java/ai/reveng/model/CommentBase.java +++ b/src/main/java/ai/reveng/model/CommentBase.java @@ -49,7 +49,7 @@ /** * CommentBase */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CommentBase { public static final String SERIALIZED_NAME_CONTENT = "content"; @SerializedName(SERIALIZED_NAME_CONTENT) diff --git a/src/main/java/ai/reveng/model/CommentResponse.java b/src/main/java/ai/reveng/model/CommentResponse.java index a3f394d..857c9bc 100644 --- a/src/main/java/ai/reveng/model/CommentResponse.java +++ b/src/main/java/ai/reveng/model/CommentResponse.java @@ -52,7 +52,7 @@ /** * CommentResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CommentResponse { public static final String SERIALIZED_NAME_CONTENT = "content"; @SerializedName(SERIALIZED_NAME_CONTENT) diff --git a/src/main/java/ai/reveng/model/CommentUpdateRequest.java b/src/main/java/ai/reveng/model/CommentUpdateRequest.java index 22b1e34..0d57629 100644 --- a/src/main/java/ai/reveng/model/CommentUpdateRequest.java +++ b/src/main/java/ai/reveng/model/CommentUpdateRequest.java @@ -49,7 +49,7 @@ /** * CommentUpdateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CommentUpdateRequest { public static final String SERIALIZED_NAME_CONTENT = "content"; @SerializedName(SERIALIZED_NAME_CONTENT) diff --git a/src/main/java/ai/reveng/model/Communities.java b/src/main/java/ai/reveng/model/Communities.java index f625b23..2204bb6 100644 --- a/src/main/java/ai/reveng/model/Communities.java +++ b/src/main/java/ai/reveng/model/Communities.java @@ -53,7 +53,7 @@ /** * Communities */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Communities { public static final String SERIALIZED_NAME_TOTAL_FUNCTIONS = "total_functions"; @SerializedName(SERIALIZED_NAME_TOTAL_FUNCTIONS) diff --git a/src/main/java/ai/reveng/model/CommunityMatchPercentages.java b/src/main/java/ai/reveng/model/CommunityMatchPercentages.java index 323caf4..e31b1bb 100644 --- a/src/main/java/ai/reveng/model/CommunityMatchPercentages.java +++ b/src/main/java/ai/reveng/model/CommunityMatchPercentages.java @@ -50,7 +50,7 @@ /** * CommunityMatchPercentages */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CommunityMatchPercentages { public static final String SERIALIZED_NAME_BINARY_NAME = "binary_name"; @SerializedName(SERIALIZED_NAME_BINARY_NAME) diff --git a/src/main/java/ai/reveng/model/Context.java b/src/main/java/ai/reveng/model/Context.java index a704edd..b7d5da7 100644 --- a/src/main/java/ai/reveng/model/Context.java +++ b/src/main/java/ai/reveng/model/Context.java @@ -59,7 +59,7 @@ import ai.reveng.invoker.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Context extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Context.class.getName()); diff --git a/src/main/java/ai/reveng/model/Created.java b/src/main/java/ai/reveng/model/Created.java index ecef074..461ec08 100644 --- a/src/main/java/ai/reveng/model/Created.java +++ b/src/main/java/ai/reveng/model/Created.java @@ -49,7 +49,7 @@ /** * Created */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Created { public static final String SERIALIZED_NAME_ANALYSIS_ID = "analysis_id"; @SerializedName(SERIALIZED_NAME_ANALYSIS_ID) diff --git a/src/main/java/ai/reveng/model/DecompilationCommentContext.java b/src/main/java/ai/reveng/model/DecompilationCommentContext.java index 6412c21..26a98c0 100644 --- a/src/main/java/ai/reveng/model/DecompilationCommentContext.java +++ b/src/main/java/ai/reveng/model/DecompilationCommentContext.java @@ -49,7 +49,7 @@ /** * DecompilationCommentContext */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class DecompilationCommentContext { public static final String SERIALIZED_NAME_START_LINE = "start_line"; @SerializedName(SERIALIZED_NAME_START_LINE) diff --git a/src/main/java/ai/reveng/model/DecompilationResponse.java b/src/main/java/ai/reveng/model/DecompilationResponse.java index 72a73b8..c8aeeee 100644 --- a/src/main/java/ai/reveng/model/DecompilationResponse.java +++ b/src/main/java/ai/reveng/model/DecompilationResponse.java @@ -49,7 +49,7 @@ /** * DecompilationResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class DecompilationResponse { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/DieMatch.java b/src/main/java/ai/reveng/model/DieMatch.java index b2d4855..2758b94 100644 --- a/src/main/java/ai/reveng/model/DieMatch.java +++ b/src/main/java/ai/reveng/model/DieMatch.java @@ -49,7 +49,7 @@ /** * DieMatch */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class DieMatch { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/ELFImportModel.java b/src/main/java/ai/reveng/model/ELFImportModel.java index 17fc37e..a5229ac 100644 --- a/src/main/java/ai/reveng/model/ELFImportModel.java +++ b/src/main/java/ai/reveng/model/ELFImportModel.java @@ -51,7 +51,7 @@ /** * ELFImportModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFImportModel { public static final String SERIALIZED_NAME_NUMBER_OF_IMPORTS = "number_of_imports"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_IMPORTS) diff --git a/src/main/java/ai/reveng/model/ELFModel.java b/src/main/java/ai/reveng/model/ELFModel.java index 33b77b0..d8a941c 100644 --- a/src/main/java/ai/reveng/model/ELFModel.java +++ b/src/main/java/ai/reveng/model/ELFModel.java @@ -60,7 +60,7 @@ /** * ELFModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFModel { public static final String SERIALIZED_NAME_FILE_TYPE = "file_type"; @SerializedName(SERIALIZED_NAME_FILE_TYPE) diff --git a/src/main/java/ai/reveng/model/ELFRelocation.java b/src/main/java/ai/reveng/model/ELFRelocation.java index 2aec450..82441ba 100644 --- a/src/main/java/ai/reveng/model/ELFRelocation.java +++ b/src/main/java/ai/reveng/model/ELFRelocation.java @@ -49,7 +49,7 @@ /** * ELFRelocation */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFRelocation { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/ai/reveng/model/ELFSection.java b/src/main/java/ai/reveng/model/ELFSection.java index 531cc66..fbc6e60 100644 --- a/src/main/java/ai/reveng/model/ELFSection.java +++ b/src/main/java/ai/reveng/model/ELFSection.java @@ -50,7 +50,7 @@ /** * ELFSection */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFSection { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/ELFSecurity.java b/src/main/java/ai/reveng/model/ELFSecurity.java index 405af3a..fbab05a 100644 --- a/src/main/java/ai/reveng/model/ELFSecurity.java +++ b/src/main/java/ai/reveng/model/ELFSecurity.java @@ -49,7 +49,7 @@ /** * ELFSecurity */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFSecurity { public static final String SERIALIZED_NAME_PIE = "pie"; @SerializedName(SERIALIZED_NAME_PIE) diff --git a/src/main/java/ai/reveng/model/ELFSegment.java b/src/main/java/ai/reveng/model/ELFSegment.java index 25380be..5da6661 100644 --- a/src/main/java/ai/reveng/model/ELFSegment.java +++ b/src/main/java/ai/reveng/model/ELFSegment.java @@ -49,7 +49,7 @@ /** * ELFSegment */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFSegment { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/ai/reveng/model/ELFSymbol.java b/src/main/java/ai/reveng/model/ELFSymbol.java index 11a861f..d7b3db0 100644 --- a/src/main/java/ai/reveng/model/ELFSymbol.java +++ b/src/main/java/ai/reveng/model/ELFSymbol.java @@ -49,7 +49,7 @@ /** * ELFSymbol */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ELFSymbol { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/ElfDynamicEntry.java b/src/main/java/ai/reveng/model/ElfDynamicEntry.java index 35a5ba0..4f5290f 100644 --- a/src/main/java/ai/reveng/model/ElfDynamicEntry.java +++ b/src/main/java/ai/reveng/model/ElfDynamicEntry.java @@ -49,7 +49,7 @@ /** * ElfDynamicEntry */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ElfDynamicEntry { public static final String SERIALIZED_NAME_TAG = "tag"; @SerializedName(SERIALIZED_NAME_TAG) diff --git a/src/main/java/ai/reveng/model/EntrypointModel.java b/src/main/java/ai/reveng/model/EntrypointModel.java index 0382b1f..bea9c3a 100644 --- a/src/main/java/ai/reveng/model/EntrypointModel.java +++ b/src/main/java/ai/reveng/model/EntrypointModel.java @@ -49,7 +49,7 @@ /** * EntrypointModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class EntrypointModel { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/ai/reveng/model/Enumeration.java b/src/main/java/ai/reveng/model/Enumeration.java index d416d48..6334ca6 100644 --- a/src/main/java/ai/reveng/model/Enumeration.java +++ b/src/main/java/ai/reveng/model/Enumeration.java @@ -52,7 +52,7 @@ /** * Enumeration */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Enumeration { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/ErrorModel.java b/src/main/java/ai/reveng/model/ErrorModel.java index 1dbb1a3..a693fee 100644 --- a/src/main/java/ai/reveng/model/ErrorModel.java +++ b/src/main/java/ai/reveng/model/ErrorModel.java @@ -49,7 +49,7 @@ /** * ErrorModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ErrorModel { public static final String SERIALIZED_NAME_CODE = "code"; @SerializedName(SERIALIZED_NAME_CODE) diff --git a/src/main/java/ai/reveng/model/ExportModel.java b/src/main/java/ai/reveng/model/ExportModel.java index d8df667..211d1f5 100644 --- a/src/main/java/ai/reveng/model/ExportModel.java +++ b/src/main/java/ai/reveng/model/ExportModel.java @@ -52,7 +52,7 @@ /** * ExportModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ExportModel { public static final String SERIALIZED_NAME_NUMBER_OF_EXPORTS = "number_of_exports"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_EXPORTS) diff --git a/src/main/java/ai/reveng/model/ExportedBinaryAnnResult.java b/src/main/java/ai/reveng/model/ExportedBinaryAnnResult.java index 407ac60..63dd0f8 100644 --- a/src/main/java/ai/reveng/model/ExportedBinaryAnnResult.java +++ b/src/main/java/ai/reveng/model/ExportedBinaryAnnResult.java @@ -53,7 +53,7 @@ /** * ExportedBinaryAnnResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ExportedBinaryAnnResult { public static final String SERIALIZED_NAME_ANALYSIS_ID = "analysis_id"; @SerializedName(SERIALIZED_NAME_ANALYSIS_ID) diff --git a/src/main/java/ai/reveng/model/ExternalResponse.java b/src/main/java/ai/reveng/model/ExternalResponse.java index f5a167c..fe6f8f9 100644 --- a/src/main/java/ai/reveng/model/ExternalResponse.java +++ b/src/main/java/ai/reveng/model/ExternalResponse.java @@ -52,7 +52,7 @@ /** * ExternalResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ExternalResponse { public static final String SERIALIZED_NAME_SHA256_HASH = "sha_256_hash"; @SerializedName(SERIALIZED_NAME_SHA256_HASH) diff --git a/src/main/java/ai/reveng/model/FileHashes.java b/src/main/java/ai/reveng/model/FileHashes.java index 690cc65..15427d3 100644 --- a/src/main/java/ai/reveng/model/FileHashes.java +++ b/src/main/java/ai/reveng/model/FileHashes.java @@ -49,7 +49,7 @@ /** * FileHashes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FileHashes { public static final String SERIALIZED_NAME_MD5 = "md5"; @SerializedName(SERIALIZED_NAME_MD5) diff --git a/src/main/java/ai/reveng/model/FileMetadata.java b/src/main/java/ai/reveng/model/FileMetadata.java index 6b46c77..490c7db 100644 --- a/src/main/java/ai/reveng/model/FileMetadata.java +++ b/src/main/java/ai/reveng/model/FileMetadata.java @@ -51,7 +51,7 @@ /** * FileMetadata */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FileMetadata { public static final String SERIALIZED_NAME_SIZE = "size"; @SerializedName(SERIALIZED_NAME_SIZE) diff --git a/src/main/java/ai/reveng/model/FunctionBatchAnn.java b/src/main/java/ai/reveng/model/FunctionBatchAnn.java index b1b672b..85847b2 100644 --- a/src/main/java/ai/reveng/model/FunctionBatchAnn.java +++ b/src/main/java/ai/reveng/model/FunctionBatchAnn.java @@ -50,7 +50,7 @@ /** * FunctionBatchAnn */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionBatchAnn { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) diff --git a/src/main/java/ai/reveng/model/FunctionBlockDestinationResponse.java b/src/main/java/ai/reveng/model/FunctionBlockDestinationResponse.java index 140e0dc..397c6fb 100644 --- a/src/main/java/ai/reveng/model/FunctionBlockDestinationResponse.java +++ b/src/main/java/ai/reveng/model/FunctionBlockDestinationResponse.java @@ -49,7 +49,7 @@ /** * FunctionBlockDestinationResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionBlockDestinationResponse { public static final String SERIALIZED_NAME_DESTINATION_BLOCK_ID = "destination_block_id"; @SerializedName(SERIALIZED_NAME_DESTINATION_BLOCK_ID) diff --git a/src/main/java/ai/reveng/model/FunctionBlockResponse.java b/src/main/java/ai/reveng/model/FunctionBlockResponse.java index 5f8ddb6..e1b7fdc 100644 --- a/src/main/java/ai/reveng/model/FunctionBlockResponse.java +++ b/src/main/java/ai/reveng/model/FunctionBlockResponse.java @@ -53,7 +53,7 @@ /** * FunctionBlockResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionBlockResponse { public static final String SERIALIZED_NAME_ASM = "asm"; @SerializedName(SERIALIZED_NAME_ASM) diff --git a/src/main/java/ai/reveng/model/FunctionBlocksResponse.java b/src/main/java/ai/reveng/model/FunctionBlocksResponse.java index 573bcaa..e35035d 100644 --- a/src/main/java/ai/reveng/model/FunctionBlocksResponse.java +++ b/src/main/java/ai/reveng/model/FunctionBlocksResponse.java @@ -54,7 +54,7 @@ /** * Response for returning disassembly of a function. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionBlocksResponse { public static final String SERIALIZED_NAME_BLOCKS = "blocks"; @SerializedName(SERIALIZED_NAME_BLOCKS) diff --git a/src/main/java/ai/reveng/model/FunctionBoundary.java b/src/main/java/ai/reveng/model/FunctionBoundary.java index ec700d7..5856219 100644 --- a/src/main/java/ai/reveng/model/FunctionBoundary.java +++ b/src/main/java/ai/reveng/model/FunctionBoundary.java @@ -49,7 +49,7 @@ /** * FunctionBoundary */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionBoundary { public static final String SERIALIZED_NAME_MANGLED_NAME = "mangled_name"; @SerializedName(SERIALIZED_NAME_MANGLED_NAME) diff --git a/src/main/java/ai/reveng/model/FunctionBoxPlotConfidence.java b/src/main/java/ai/reveng/model/FunctionBoxPlotConfidence.java index 55b5719..c45bf39 100644 --- a/src/main/java/ai/reveng/model/FunctionBoxPlotConfidence.java +++ b/src/main/java/ai/reveng/model/FunctionBoxPlotConfidence.java @@ -50,7 +50,7 @@ /** * FunctionBoxPlotConfidence */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionBoxPlotConfidence { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionCapabilityResponse.java b/src/main/java/ai/reveng/model/FunctionCapabilityResponse.java index 9c3ce3b..fd06642 100644 --- a/src/main/java/ai/reveng/model/FunctionCapabilityResponse.java +++ b/src/main/java/ai/reveng/model/FunctionCapabilityResponse.java @@ -51,7 +51,7 @@ /** * FunctionCapabilityResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionCapabilityResponse { public static final String SERIALIZED_NAME_CAPABILITIES = "capabilities"; @SerializedName(SERIALIZED_NAME_CAPABILITIES) diff --git a/src/main/java/ai/reveng/model/FunctionCommentCreateRequest.java b/src/main/java/ai/reveng/model/FunctionCommentCreateRequest.java index 12e78f9..7990bb2 100644 --- a/src/main/java/ai/reveng/model/FunctionCommentCreateRequest.java +++ b/src/main/java/ai/reveng/model/FunctionCommentCreateRequest.java @@ -50,7 +50,7 @@ /** * FunctionCommentCreateRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionCommentCreateRequest { public static final String SERIALIZED_NAME_CONTENT = "content"; @SerializedName(SERIALIZED_NAME_CONTENT) diff --git a/src/main/java/ai/reveng/model/FunctionDataTypes.java b/src/main/java/ai/reveng/model/FunctionDataTypes.java index 8f2c033..111bf0f 100644 --- a/src/main/java/ai/reveng/model/FunctionDataTypes.java +++ b/src/main/java/ai/reveng/model/FunctionDataTypes.java @@ -51,7 +51,7 @@ /** * FunctionDataTypes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionDataTypes { public static final String SERIALIZED_NAME_COMPLETED = "completed"; @SerializedName(SERIALIZED_NAME_COMPLETED) diff --git a/src/main/java/ai/reveng/model/FunctionDataTypesList.java b/src/main/java/ai/reveng/model/FunctionDataTypesList.java index 2dc6bee..3b6dd6f 100644 --- a/src/main/java/ai/reveng/model/FunctionDataTypesList.java +++ b/src/main/java/ai/reveng/model/FunctionDataTypesList.java @@ -52,7 +52,7 @@ /** * FunctionDataTypesList */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionDataTypesList { public static final String SERIALIZED_NAME_TOTAL_COUNT = "total_count"; @SerializedName(SERIALIZED_NAME_TOTAL_COUNT) diff --git a/src/main/java/ai/reveng/model/FunctionDataTypesListItem.java b/src/main/java/ai/reveng/model/FunctionDataTypesListItem.java index fdb1610..958b9d2 100644 --- a/src/main/java/ai/reveng/model/FunctionDataTypesListItem.java +++ b/src/main/java/ai/reveng/model/FunctionDataTypesListItem.java @@ -51,7 +51,7 @@ /** * FunctionDataTypesListItem */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionDataTypesListItem { public static final String SERIALIZED_NAME_COMPLETED = "completed"; @SerializedName(SERIALIZED_NAME_COMPLETED) diff --git a/src/main/java/ai/reveng/model/FunctionDataTypesParams.java b/src/main/java/ai/reveng/model/FunctionDataTypesParams.java index 8bbe640..4a4e815 100644 --- a/src/main/java/ai/reveng/model/FunctionDataTypesParams.java +++ b/src/main/java/ai/reveng/model/FunctionDataTypesParams.java @@ -51,7 +51,7 @@ /** * FunctionDataTypesParams */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionDataTypesParams { public static final String SERIALIZED_NAME_FUNCTION_IDS = "function_ids"; @SerializedName(SERIALIZED_NAME_FUNCTION_IDS) diff --git a/src/main/java/ai/reveng/model/FunctionDataTypesStatus.java b/src/main/java/ai/reveng/model/FunctionDataTypesStatus.java index e9d11cb..bcb349d 100644 --- a/src/main/java/ai/reveng/model/FunctionDataTypesStatus.java +++ b/src/main/java/ai/reveng/model/FunctionDataTypesStatus.java @@ -49,7 +49,7 @@ /** * FunctionDataTypesStatus */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionDataTypesStatus { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionHeader.java b/src/main/java/ai/reveng/model/FunctionHeader.java index f6acff0..561e20d 100644 --- a/src/main/java/ai/reveng/model/FunctionHeader.java +++ b/src/main/java/ai/reveng/model/FunctionHeader.java @@ -53,7 +53,7 @@ /** * FunctionHeader */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionHeader { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/FunctionInfoInput.java b/src/main/java/ai/reveng/model/FunctionInfoInput.java index de31164..8367b8c 100644 --- a/src/main/java/ai/reveng/model/FunctionInfoInput.java +++ b/src/main/java/ai/reveng/model/FunctionInfoInput.java @@ -54,7 +54,7 @@ /** * FunctionInfoInput */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionInfoInput { public static final String SERIALIZED_NAME_FUNC_TYPES = "func_types"; @SerializedName(SERIALIZED_NAME_FUNC_TYPES) diff --git a/src/main/java/ai/reveng/model/FunctionInfoInputFuncDepsInner.java b/src/main/java/ai/reveng/model/FunctionInfoInputFuncDepsInner.java index 80e450f..6299cb7 100644 --- a/src/main/java/ai/reveng/model/FunctionInfoInputFuncDepsInner.java +++ b/src/main/java/ai/reveng/model/FunctionInfoInputFuncDepsInner.java @@ -64,7 +64,7 @@ import ai.reveng.invoker.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionInfoInputFuncDepsInner extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(FunctionInfoInputFuncDepsInner.class.getName()); diff --git a/src/main/java/ai/reveng/model/FunctionInfoOutput.java b/src/main/java/ai/reveng/model/FunctionInfoOutput.java index ae9a8a3..3a2d9d1 100644 --- a/src/main/java/ai/reveng/model/FunctionInfoOutput.java +++ b/src/main/java/ai/reveng/model/FunctionInfoOutput.java @@ -54,7 +54,7 @@ /** * FunctionInfoOutput */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionInfoOutput { public static final String SERIALIZED_NAME_FUNC_TYPES = "func_types"; @SerializedName(SERIALIZED_NAME_FUNC_TYPES) diff --git a/src/main/java/ai/reveng/model/FunctionLocalVariableResponse.java b/src/main/java/ai/reveng/model/FunctionLocalVariableResponse.java index b9a385d..794c5ed 100644 --- a/src/main/java/ai/reveng/model/FunctionLocalVariableResponse.java +++ b/src/main/java/ai/reveng/model/FunctionLocalVariableResponse.java @@ -49,7 +49,7 @@ /** * FunctionLocalVariableResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionLocalVariableResponse { public static final String SERIALIZED_NAME_ADDRESS = "address"; @SerializedName(SERIALIZED_NAME_ADDRESS) diff --git a/src/main/java/ai/reveng/model/FunctionMapping.java b/src/main/java/ai/reveng/model/FunctionMapping.java index dd2433e..7104323 100644 --- a/src/main/java/ai/reveng/model/FunctionMapping.java +++ b/src/main/java/ai/reveng/model/FunctionMapping.java @@ -51,7 +51,7 @@ /** * FunctionMapping */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionMapping { public static final String SERIALIZED_NAME_FUNCTION_MAP = "function_map"; @SerializedName(SERIALIZED_NAME_FUNCTION_MAP) diff --git a/src/main/java/ai/reveng/model/FunctionMappingFull.java b/src/main/java/ai/reveng/model/FunctionMappingFull.java index 0ebd9d1..b288e2d 100644 --- a/src/main/java/ai/reveng/model/FunctionMappingFull.java +++ b/src/main/java/ai/reveng/model/FunctionMappingFull.java @@ -54,7 +54,7 @@ /** * FunctionMappingFull */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionMappingFull { public static final String SERIALIZED_NAME_INVERSE_STRING_MAP = "inverse_string_map"; @SerializedName(SERIALIZED_NAME_INVERSE_STRING_MAP) diff --git a/src/main/java/ai/reveng/model/FunctionMatchingBatchResponse.java b/src/main/java/ai/reveng/model/FunctionMatchingBatchResponse.java index 031ff29..b43a38e 100644 --- a/src/main/java/ai/reveng/model/FunctionMatchingBatchResponse.java +++ b/src/main/java/ai/reveng/model/FunctionMatchingBatchResponse.java @@ -53,7 +53,7 @@ /** * FunctionMatchingBatchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionMatchingBatchResponse { public static final String SERIALIZED_NAME_PROGRESS = "progress"; @SerializedName(SERIALIZED_NAME_PROGRESS) diff --git a/src/main/java/ai/reveng/model/FunctionMatchingFilters.java b/src/main/java/ai/reveng/model/FunctionMatchingFilters.java index e1573a2..4d5345e 100644 --- a/src/main/java/ai/reveng/model/FunctionMatchingFilters.java +++ b/src/main/java/ai/reveng/model/FunctionMatchingFilters.java @@ -51,7 +51,7 @@ /** * FunctionMatchingFilters */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionMatchingFilters { public static final String SERIALIZED_NAME_BINARY_IDS = "binary_ids"; @SerializedName(SERIALIZED_NAME_BINARY_IDS) diff --git a/src/main/java/ai/reveng/model/FunctionMatchingRequest.java b/src/main/java/ai/reveng/model/FunctionMatchingRequest.java index 85dbd0d..a793d07 100644 --- a/src/main/java/ai/reveng/model/FunctionMatchingRequest.java +++ b/src/main/java/ai/reveng/model/FunctionMatchingRequest.java @@ -54,7 +54,7 @@ /** * FunctionMatchingRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionMatchingRequest { public static final String SERIALIZED_NAME_MODEL_ID = "model_id"; @SerializedName(SERIALIZED_NAME_MODEL_ID) diff --git a/src/main/java/ai/reveng/model/FunctionMatchingResultWithBestMatch.java b/src/main/java/ai/reveng/model/FunctionMatchingResultWithBestMatch.java index b9e1345..633d323 100644 --- a/src/main/java/ai/reveng/model/FunctionMatchingResultWithBestMatch.java +++ b/src/main/java/ai/reveng/model/FunctionMatchingResultWithBestMatch.java @@ -54,7 +54,7 @@ /** * FunctionMatchingResultWithBestMatch */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionMatchingResultWithBestMatch { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionNameConfidenceBody.java b/src/main/java/ai/reveng/model/FunctionNameConfidenceBody.java index ce2fed4..7b92d59 100644 --- a/src/main/java/ai/reveng/model/FunctionNameConfidenceBody.java +++ b/src/main/java/ai/reveng/model/FunctionNameConfidenceBody.java @@ -52,7 +52,7 @@ /** * FunctionNameConfidenceBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionNameConfidenceBody { public static final String SERIALIZED_NAME_FUNCTIONS = "functions"; @SerializedName(SERIALIZED_NAME_FUNCTIONS) diff --git a/src/main/java/ai/reveng/model/FunctionNameHistory.java b/src/main/java/ai/reveng/model/FunctionNameHistory.java index 1610229..5310582 100644 --- a/src/main/java/ai/reveng/model/FunctionNameHistory.java +++ b/src/main/java/ai/reveng/model/FunctionNameHistory.java @@ -49,7 +49,7 @@ /** * FunctionNameHistory */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionNameHistory { public static final String SERIALIZED_NAME_HISTORY_ID = "history_id"; @SerializedName(SERIALIZED_NAME_HISTORY_ID) diff --git a/src/main/java/ai/reveng/model/FunctionNameInput.java b/src/main/java/ai/reveng/model/FunctionNameInput.java index 25fd3bf..12233c3 100644 --- a/src/main/java/ai/reveng/model/FunctionNameInput.java +++ b/src/main/java/ai/reveng/model/FunctionNameInput.java @@ -49,7 +49,7 @@ /** * FunctionNameInput */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionNameInput { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionParamResponse.java b/src/main/java/ai/reveng/model/FunctionParamResponse.java index edb09aa..3a0bf85 100644 --- a/src/main/java/ai/reveng/model/FunctionParamResponse.java +++ b/src/main/java/ai/reveng/model/FunctionParamResponse.java @@ -49,7 +49,7 @@ /** * FunctionParamResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionParamResponse { public static final String SERIALIZED_NAME_D_TYPE = "d_type"; @SerializedName(SERIALIZED_NAME_D_TYPE) diff --git a/src/main/java/ai/reveng/model/FunctionRename.java b/src/main/java/ai/reveng/model/FunctionRename.java index 06dec60..3e24705 100644 --- a/src/main/java/ai/reveng/model/FunctionRename.java +++ b/src/main/java/ai/reveng/model/FunctionRename.java @@ -50,7 +50,7 @@ /** * FunctionRename */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionRename { public static final String SERIALIZED_NAME_NEW_NAME = "new_name"; @SerializedName(SERIALIZED_NAME_NEW_NAME) diff --git a/src/main/java/ai/reveng/model/FunctionRenameMap.java b/src/main/java/ai/reveng/model/FunctionRenameMap.java index 21613d1..52744b8 100644 --- a/src/main/java/ai/reveng/model/FunctionRenameMap.java +++ b/src/main/java/ai/reveng/model/FunctionRenameMap.java @@ -50,7 +50,7 @@ /** * FunctionRenameMap */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionRenameMap { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionSearchResponse.java b/src/main/java/ai/reveng/model/FunctionSearchResponse.java index f1a72a1..0796000 100644 --- a/src/main/java/ai/reveng/model/FunctionSearchResponse.java +++ b/src/main/java/ai/reveng/model/FunctionSearchResponse.java @@ -52,7 +52,7 @@ /** * FunctionSearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionSearchResponse { public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) diff --git a/src/main/java/ai/reveng/model/FunctionSearchResult.java b/src/main/java/ai/reveng/model/FunctionSearchResult.java index 91f88cf..2c0be52 100644 --- a/src/main/java/ai/reveng/model/FunctionSearchResult.java +++ b/src/main/java/ai/reveng/model/FunctionSearchResult.java @@ -50,7 +50,7 @@ /** * FunctionSearchResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionSearchResult { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionString.java b/src/main/java/ai/reveng/model/FunctionString.java index 1e38d2c..ba79ef7 100644 --- a/src/main/java/ai/reveng/model/FunctionString.java +++ b/src/main/java/ai/reveng/model/FunctionString.java @@ -49,7 +49,7 @@ /** * FunctionString */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionString { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/ai/reveng/model/FunctionStringsResponse.java b/src/main/java/ai/reveng/model/FunctionStringsResponse.java index d6c432f..c8bebd9 100644 --- a/src/main/java/ai/reveng/model/FunctionStringsResponse.java +++ b/src/main/java/ai/reveng/model/FunctionStringsResponse.java @@ -52,7 +52,7 @@ /** * Response for listing all the strings of a function. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionStringsResponse { public static final String SERIALIZED_NAME_STRINGS = "strings"; @SerializedName(SERIALIZED_NAME_STRINGS) diff --git a/src/main/java/ai/reveng/model/FunctionTaskResponse.java b/src/main/java/ai/reveng/model/FunctionTaskResponse.java index 0d1e87e..3906973 100644 --- a/src/main/java/ai/reveng/model/FunctionTaskResponse.java +++ b/src/main/java/ai/reveng/model/FunctionTaskResponse.java @@ -51,7 +51,7 @@ /** * FunctionTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionTaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/FunctionTypeInput.java b/src/main/java/ai/reveng/model/FunctionTypeInput.java index c7390ea..4ee97c1 100644 --- a/src/main/java/ai/reveng/model/FunctionTypeInput.java +++ b/src/main/java/ai/reveng/model/FunctionTypeInput.java @@ -54,7 +54,7 @@ /** * FunctionTypeInput */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionTypeInput { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/FunctionTypeOutput.java b/src/main/java/ai/reveng/model/FunctionTypeOutput.java index 3ade456..9fa3a01 100644 --- a/src/main/java/ai/reveng/model/FunctionTypeOutput.java +++ b/src/main/java/ai/reveng/model/FunctionTypeOutput.java @@ -54,7 +54,7 @@ /** * FunctionTypeOutput */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionTypeOutput { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/FunctionsDetailResponse.java b/src/main/java/ai/reveng/model/FunctionsDetailResponse.java index 2cdd535..af2679a 100644 --- a/src/main/java/ai/reveng/model/FunctionsDetailResponse.java +++ b/src/main/java/ai/reveng/model/FunctionsDetailResponse.java @@ -53,7 +53,7 @@ /** * FunctionsDetailResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionsDetailResponse { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/FunctionsListRename.java b/src/main/java/ai/reveng/model/FunctionsListRename.java index ebe82a6..fdd20b7 100644 --- a/src/main/java/ai/reveng/model/FunctionsListRename.java +++ b/src/main/java/ai/reveng/model/FunctionsListRename.java @@ -52,7 +52,7 @@ /** * FunctionsListRename */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class FunctionsListRename { public static final String SERIALIZED_NAME_FUNCTIONS = "functions"; @SerializedName(SERIALIZED_NAME_FUNCTIONS) diff --git a/src/main/java/ai/reveng/model/GenerateFunctionDataTypes.java b/src/main/java/ai/reveng/model/GenerateFunctionDataTypes.java index 2801f56..6f9ea9a 100644 --- a/src/main/java/ai/reveng/model/GenerateFunctionDataTypes.java +++ b/src/main/java/ai/reveng/model/GenerateFunctionDataTypes.java @@ -50,7 +50,7 @@ /** * GenerateFunctionDataTypes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GenerateFunctionDataTypes { public static final String SERIALIZED_NAME_QUEUED = "queued"; @Deprecated diff --git a/src/main/java/ai/reveng/model/GenerationStatusList.java b/src/main/java/ai/reveng/model/GenerationStatusList.java index d139b69..8eab297 100644 --- a/src/main/java/ai/reveng/model/GenerationStatusList.java +++ b/src/main/java/ai/reveng/model/GenerationStatusList.java @@ -52,7 +52,7 @@ /** * GenerationStatusList */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GenerationStatusList { public static final String SERIALIZED_NAME_TOTAL_COUNT = "total_count"; @SerializedName(SERIALIZED_NAME_TOTAL_COUNT) diff --git a/src/main/java/ai/reveng/model/GetAiDecompilationRatingResponse.java b/src/main/java/ai/reveng/model/GetAiDecompilationRatingResponse.java index b96a32f..e58c586 100644 --- a/src/main/java/ai/reveng/model/GetAiDecompilationRatingResponse.java +++ b/src/main/java/ai/reveng/model/GetAiDecompilationRatingResponse.java @@ -50,7 +50,7 @@ /** * GetAiDecompilationRatingResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GetAiDecompilationRatingResponse { public static final String SERIALIZED_NAME_RATING = "rating"; @SerializedName(SERIALIZED_NAME_RATING) diff --git a/src/main/java/ai/reveng/model/GetAiDecompilationTask.java b/src/main/java/ai/reveng/model/GetAiDecompilationTask.java index 1337ab7..4f104ce 100644 --- a/src/main/java/ai/reveng/model/GetAiDecompilationTask.java +++ b/src/main/java/ai/reveng/model/GetAiDecompilationTask.java @@ -54,7 +54,7 @@ /** * GetAiDecompilationTask */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GetAiDecompilationTask { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/GetPublicUserResponse.java b/src/main/java/ai/reveng/model/GetPublicUserResponse.java index c33a9dc..d0b6bba 100644 --- a/src/main/java/ai/reveng/model/GetPublicUserResponse.java +++ b/src/main/java/ai/reveng/model/GetPublicUserResponse.java @@ -49,7 +49,7 @@ /** * GetPublicUserResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GetPublicUserResponse { public static final String SERIALIZED_NAME_USERNAME = "username"; @SerializedName(SERIALIZED_NAME_USERNAME) diff --git a/src/main/java/ai/reveng/model/GetUserResponse.java b/src/main/java/ai/reveng/model/GetUserResponse.java index 1a2b090..284eb20 100644 --- a/src/main/java/ai/reveng/model/GetUserResponse.java +++ b/src/main/java/ai/reveng/model/GetUserResponse.java @@ -50,7 +50,7 @@ /** * GetUserResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GetUserResponse { public static final String SERIALIZED_NAME_USERNAME = "username"; @SerializedName(SERIALIZED_NAME_USERNAME) diff --git a/src/main/java/ai/reveng/model/GlobalVariable.java b/src/main/java/ai/reveng/model/GlobalVariable.java index 941992f..215560d 100644 --- a/src/main/java/ai/reveng/model/GlobalVariable.java +++ b/src/main/java/ai/reveng/model/GlobalVariable.java @@ -50,7 +50,7 @@ /** * GlobalVariable */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GlobalVariable { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/IconModel.java b/src/main/java/ai/reveng/model/IconModel.java index d5c6ead..b605bd1 100644 --- a/src/main/java/ai/reveng/model/IconModel.java +++ b/src/main/java/ai/reveng/model/IconModel.java @@ -49,7 +49,7 @@ /** * IconModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class IconModel { public static final String SERIALIZED_NAME_CONTENT = "content"; @SerializedName(SERIALIZED_NAME_CONTENT) diff --git a/src/main/java/ai/reveng/model/ImportModel.java b/src/main/java/ai/reveng/model/ImportModel.java index a83cd74..cb9d78e 100644 --- a/src/main/java/ai/reveng/model/ImportModel.java +++ b/src/main/java/ai/reveng/model/ImportModel.java @@ -52,7 +52,7 @@ /** * ImportModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ImportModel { public static final String SERIALIZED_NAME_NUMBER_OF_IMPORTS = "number_of_imports"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_IMPORTS) diff --git a/src/main/java/ai/reveng/model/InverseFunctionMapItem.java b/src/main/java/ai/reveng/model/InverseFunctionMapItem.java index 91a8a1f..e91e0f9 100644 --- a/src/main/java/ai/reveng/model/InverseFunctionMapItem.java +++ b/src/main/java/ai/reveng/model/InverseFunctionMapItem.java @@ -50,7 +50,7 @@ /** * InverseFunctionMapItem */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class InverseFunctionMapItem { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/InverseStringMapItem.java b/src/main/java/ai/reveng/model/InverseStringMapItem.java index f0aa84d..34db91a 100644 --- a/src/main/java/ai/reveng/model/InverseStringMapItem.java +++ b/src/main/java/ai/reveng/model/InverseStringMapItem.java @@ -49,7 +49,7 @@ /** * InverseStringMapItem */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class InverseStringMapItem { public static final String SERIALIZED_NAME_STRING = "string"; @SerializedName(SERIALIZED_NAME_STRING) diff --git a/src/main/java/ai/reveng/model/InverseValue.java b/src/main/java/ai/reveng/model/InverseValue.java index 865f2f0..3a89ca7 100644 --- a/src/main/java/ai/reveng/model/InverseValue.java +++ b/src/main/java/ai/reveng/model/InverseValue.java @@ -49,7 +49,7 @@ /** * InverseValue */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class InverseValue { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/ai/reveng/model/ListCollectionResults.java b/src/main/java/ai/reveng/model/ListCollectionResults.java index 12cece5..e9f3555 100644 --- a/src/main/java/ai/reveng/model/ListCollectionResults.java +++ b/src/main/java/ai/reveng/model/ListCollectionResults.java @@ -52,7 +52,7 @@ /** * ListCollectionResults */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ListCollectionResults { public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) diff --git a/src/main/java/ai/reveng/model/LoginRequest.java b/src/main/java/ai/reveng/model/LoginRequest.java index a8b041b..65d2dc1 100644 --- a/src/main/java/ai/reveng/model/LoginRequest.java +++ b/src/main/java/ai/reveng/model/LoginRequest.java @@ -49,7 +49,7 @@ /** * LoginRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class LoginRequest { public static final String SERIALIZED_NAME_USERNAME = "username"; @SerializedName(SERIALIZED_NAME_USERNAME) diff --git a/src/main/java/ai/reveng/model/LoginResponse.java b/src/main/java/ai/reveng/model/LoginResponse.java index f456d71..e85e85a 100644 --- a/src/main/java/ai/reveng/model/LoginResponse.java +++ b/src/main/java/ai/reveng/model/LoginResponse.java @@ -49,7 +49,7 @@ /** * LoginResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class LoginResponse { public static final String SERIALIZED_NAME_TOKEN = "token"; @SerializedName(SERIALIZED_NAME_TOKEN) diff --git a/src/main/java/ai/reveng/model/Logs.java b/src/main/java/ai/reveng/model/Logs.java index f0d9814..5306ea6 100644 --- a/src/main/java/ai/reveng/model/Logs.java +++ b/src/main/java/ai/reveng/model/Logs.java @@ -49,7 +49,7 @@ /** * Logs */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Logs { public static final String SERIALIZED_NAME_LOGS = "logs"; @SerializedName(SERIALIZED_NAME_LOGS) diff --git a/src/main/java/ai/reveng/model/MatchedFunction.java b/src/main/java/ai/reveng/model/MatchedFunction.java index 11877bf..83cca02 100644 --- a/src/main/java/ai/reveng/model/MatchedFunction.java +++ b/src/main/java/ai/reveng/model/MatchedFunction.java @@ -51,7 +51,7 @@ /** * MatchedFunction */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class MatchedFunction { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/MatchedFunctionSuggestion.java b/src/main/java/ai/reveng/model/MatchedFunctionSuggestion.java index 45fd4e6..800c273 100644 --- a/src/main/java/ai/reveng/model/MatchedFunctionSuggestion.java +++ b/src/main/java/ai/reveng/model/MatchedFunctionSuggestion.java @@ -49,7 +49,7 @@ /** * MatchedFunctionSuggestion */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class MatchedFunctionSuggestion { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/MetaModel.java b/src/main/java/ai/reveng/model/MetaModel.java index 01d58aa..22f083e 100644 --- a/src/main/java/ai/reveng/model/MetaModel.java +++ b/src/main/java/ai/reveng/model/MetaModel.java @@ -51,7 +51,7 @@ /** * MetaModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class MetaModel { public static final String SERIALIZED_NAME_PAGINATION = "pagination"; @SerializedName(SERIALIZED_NAME_PAGINATION) diff --git a/src/main/java/ai/reveng/model/ModelsResponse.java b/src/main/java/ai/reveng/model/ModelsResponse.java index 8ce6dcd..2de5ba5 100644 --- a/src/main/java/ai/reveng/model/ModelsResponse.java +++ b/src/main/java/ai/reveng/model/ModelsResponse.java @@ -51,7 +51,7 @@ /** * ModelsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ModelsResponse { public static final String SERIALIZED_NAME_MODELS = "models"; @SerializedName(SERIALIZED_NAME_MODELS) diff --git a/src/main/java/ai/reveng/model/NameConfidence.java b/src/main/java/ai/reveng/model/NameConfidence.java index 9d9a308..9294c3c 100644 --- a/src/main/java/ai/reveng/model/NameConfidence.java +++ b/src/main/java/ai/reveng/model/NameConfidence.java @@ -50,7 +50,7 @@ /** * NameConfidence */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class NameConfidence { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/NearestNeighbor.java b/src/main/java/ai/reveng/model/NearestNeighbor.java index b6fe342..d70d75d 100644 --- a/src/main/java/ai/reveng/model/NearestNeighbor.java +++ b/src/main/java/ai/reveng/model/NearestNeighbor.java @@ -50,7 +50,7 @@ /** * NearestNeighbor */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class NearestNeighbor { public static final String SERIALIZED_NAME_DISTANCE = "distance"; @SerializedName(SERIALIZED_NAME_DISTANCE) diff --git a/src/main/java/ai/reveng/model/NetworkOverviewDns.java b/src/main/java/ai/reveng/model/NetworkOverviewDns.java index 5a5caa7..06d026a 100644 --- a/src/main/java/ai/reveng/model/NetworkOverviewDns.java +++ b/src/main/java/ai/reveng/model/NetworkOverviewDns.java @@ -52,7 +52,7 @@ /** * NetworkOverviewDns */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class NetworkOverviewDns { public static final String SERIALIZED_NAME_HOST = "host"; @SerializedName(SERIALIZED_NAME_HOST) diff --git a/src/main/java/ai/reveng/model/NetworkOverviewDnsAnswer.java b/src/main/java/ai/reveng/model/NetworkOverviewDnsAnswer.java index 0acdbd3..23d5c5b 100644 --- a/src/main/java/ai/reveng/model/NetworkOverviewDnsAnswer.java +++ b/src/main/java/ai/reveng/model/NetworkOverviewDnsAnswer.java @@ -49,7 +49,7 @@ /** * NetworkOverviewDnsAnswer */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class NetworkOverviewDnsAnswer { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/ai/reveng/model/NetworkOverviewMetadata.java b/src/main/java/ai/reveng/model/NetworkOverviewMetadata.java index 113f78c..769c5bc 100644 --- a/src/main/java/ai/reveng/model/NetworkOverviewMetadata.java +++ b/src/main/java/ai/reveng/model/NetworkOverviewMetadata.java @@ -49,7 +49,7 @@ /** * NetworkOverviewMetadata */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class NetworkOverviewMetadata { public static final String SERIALIZED_NAME_HOST = "host"; @SerializedName(SERIALIZED_NAME_HOST) diff --git a/src/main/java/ai/reveng/model/NetworkOverviewResponse.java b/src/main/java/ai/reveng/model/NetworkOverviewResponse.java index 07e4e37..df183a5 100644 --- a/src/main/java/ai/reveng/model/NetworkOverviewResponse.java +++ b/src/main/java/ai/reveng/model/NetworkOverviewResponse.java @@ -53,7 +53,7 @@ /** * NetworkOverviewResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class NetworkOverviewResponse { public static final String SERIALIZED_NAME_DNS = "dns"; @SerializedName(SERIALIZED_NAME_DNS) diff --git a/src/main/java/ai/reveng/model/PDBDebugModel.java b/src/main/java/ai/reveng/model/PDBDebugModel.java index 3dc2059..98a7ebe 100644 --- a/src/main/java/ai/reveng/model/PDBDebugModel.java +++ b/src/main/java/ai/reveng/model/PDBDebugModel.java @@ -52,7 +52,7 @@ /** * PDBDebugModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class PDBDebugModel { public static final String SERIALIZED_NAME_DEBUG_ENTRIES = "debug_entries"; @SerializedName(SERIALIZED_NAME_DEBUG_ENTRIES) diff --git a/src/main/java/ai/reveng/model/PEModel.java b/src/main/java/ai/reveng/model/PEModel.java index 7d90806..899768f 100644 --- a/src/main/java/ai/reveng/model/PEModel.java +++ b/src/main/java/ai/reveng/model/PEModel.java @@ -60,7 +60,7 @@ /** * PEModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class PEModel { public static final String SERIALIZED_NAME_TYPE = "type"; @SerializedName(SERIALIZED_NAME_TYPE) diff --git a/src/main/java/ai/reveng/model/PaginationModel.java b/src/main/java/ai/reveng/model/PaginationModel.java index 418017d..3dca324 100644 --- a/src/main/java/ai/reveng/model/PaginationModel.java +++ b/src/main/java/ai/reveng/model/PaginationModel.java @@ -49,7 +49,7 @@ /** * PaginationModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class PaginationModel { public static final String SERIALIZED_NAME_PAGE_SIZE = "page_size"; @SerializedName(SERIALIZED_NAME_PAGE_SIZE) diff --git a/src/main/java/ai/reveng/model/Params.java b/src/main/java/ai/reveng/model/Params.java index 4afd69b..b6243d5 100644 --- a/src/main/java/ai/reveng/model/Params.java +++ b/src/main/java/ai/reveng/model/Params.java @@ -49,7 +49,7 @@ /** * Params */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Params { public static final String SERIALIZED_NAME_DEBUG_HASH = "debug_hash"; @SerializedName(SERIALIZED_NAME_DEBUG_HASH) diff --git a/src/main/java/ai/reveng/model/Process.java b/src/main/java/ai/reveng/model/Process.java index 577bd7f..a6bbd54 100644 --- a/src/main/java/ai/reveng/model/Process.java +++ b/src/main/java/ai/reveng/model/Process.java @@ -52,7 +52,7 @@ /** * Process */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Process { public static final String SERIALIZED_NAME_PID = "pid"; @SerializedName(SERIALIZED_NAME_PID) diff --git a/src/main/java/ai/reveng/model/ProcessDump.java b/src/main/java/ai/reveng/model/ProcessDump.java index b3f8796..5020455 100644 --- a/src/main/java/ai/reveng/model/ProcessDump.java +++ b/src/main/java/ai/reveng/model/ProcessDump.java @@ -50,7 +50,7 @@ /** * ProcessDump */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ProcessDump { public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address"; @SerializedName(SERIALIZED_NAME_BASE_ADDRESS) diff --git a/src/main/java/ai/reveng/model/ProcessDumpMetadata.java b/src/main/java/ai/reveng/model/ProcessDumpMetadata.java index 8b9f6c4..ac05490 100644 --- a/src/main/java/ai/reveng/model/ProcessDumpMetadata.java +++ b/src/main/java/ai/reveng/model/ProcessDumpMetadata.java @@ -49,7 +49,7 @@ /** * ProcessDumpMetadata */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ProcessDumpMetadata { public static final String SERIALIZED_NAME_SHA256 = "sha256"; @SerializedName(SERIALIZED_NAME_SHA256) diff --git a/src/main/java/ai/reveng/model/ProcessDumps.java b/src/main/java/ai/reveng/model/ProcessDumps.java index 6f75506..ed56e70 100644 --- a/src/main/java/ai/reveng/model/ProcessDumps.java +++ b/src/main/java/ai/reveng/model/ProcessDumps.java @@ -50,7 +50,7 @@ /** * ProcessDumps */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ProcessDumps { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) diff --git a/src/main/java/ai/reveng/model/ProcessDumpsData.java b/src/main/java/ai/reveng/model/ProcessDumpsData.java index 9f4a438..a1ebafa 100644 --- a/src/main/java/ai/reveng/model/ProcessDumpsData.java +++ b/src/main/java/ai/reveng/model/ProcessDumpsData.java @@ -52,7 +52,7 @@ /** * ProcessDumpsData */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ProcessDumpsData { public static final String SERIALIZED_NAME_COUNT = "count"; @SerializedName(SERIALIZED_NAME_COUNT) diff --git a/src/main/java/ai/reveng/model/ProcessRegistry.java b/src/main/java/ai/reveng/model/ProcessRegistry.java index dd8893c..3936bc5 100644 --- a/src/main/java/ai/reveng/model/ProcessRegistry.java +++ b/src/main/java/ai/reveng/model/ProcessRegistry.java @@ -53,7 +53,7 @@ /** * ProcessRegistry */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ProcessRegistry { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) diff --git a/src/main/java/ai/reveng/model/ProcessTree.java b/src/main/java/ai/reveng/model/ProcessTree.java index c9b9817..3b9b5fa 100644 --- a/src/main/java/ai/reveng/model/ProcessTree.java +++ b/src/main/java/ai/reveng/model/ProcessTree.java @@ -52,7 +52,7 @@ /** * ProcessTree */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ProcessTree { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) diff --git a/src/main/java/ai/reveng/model/QueuedSecurityChecksTaskResponse.java b/src/main/java/ai/reveng/model/QueuedSecurityChecksTaskResponse.java index 21b2a63..3c39bbd 100644 --- a/src/main/java/ai/reveng/model/QueuedSecurityChecksTaskResponse.java +++ b/src/main/java/ai/reveng/model/QueuedSecurityChecksTaskResponse.java @@ -49,7 +49,7 @@ /** * QueuedSecurityChecksTaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class QueuedSecurityChecksTaskResponse { public static final String SERIALIZED_NAME_TASK_ID = "task_id"; @SerializedName(SERIALIZED_NAME_TASK_ID) diff --git a/src/main/java/ai/reveng/model/ReAnalysisForm.java b/src/main/java/ai/reveng/model/ReAnalysisForm.java index 6e4711b..3d8cfab 100644 --- a/src/main/java/ai/reveng/model/ReAnalysisForm.java +++ b/src/main/java/ai/reveng/model/ReAnalysisForm.java @@ -52,7 +52,7 @@ /** * Form Model for receiving the analysis request */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ReAnalysisForm { public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) diff --git a/src/main/java/ai/reveng/model/Recent.java b/src/main/java/ai/reveng/model/Recent.java index e121d3f..c4b0cd4 100644 --- a/src/main/java/ai/reveng/model/Recent.java +++ b/src/main/java/ai/reveng/model/Recent.java @@ -52,7 +52,7 @@ /** * Recent */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Recent { public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) diff --git a/src/main/java/ai/reveng/model/Registry.java b/src/main/java/ai/reveng/model/Registry.java index 0a3eab5..5f4d248 100644 --- a/src/main/java/ai/reveng/model/Registry.java +++ b/src/main/java/ai/reveng/model/Registry.java @@ -49,7 +49,7 @@ /** * Registry */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Registry { public static final String SERIALIZED_NAME_METHOD = "method"; @SerializedName(SERIALIZED_NAME_METHOD) diff --git a/src/main/java/ai/reveng/model/RelativeBinaryResponse.java b/src/main/java/ai/reveng/model/RelativeBinaryResponse.java index f86434a..2cce75f 100644 --- a/src/main/java/ai/reveng/model/RelativeBinaryResponse.java +++ b/src/main/java/ai/reveng/model/RelativeBinaryResponse.java @@ -49,7 +49,7 @@ /** * RelativeBinaryResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class RelativeBinaryResponse { public static final String SERIALIZED_NAME_BINARY_ID = "binary_id"; @SerializedName(SERIALIZED_NAME_BINARY_ID) diff --git a/src/main/java/ai/reveng/model/SBOM.java b/src/main/java/ai/reveng/model/SBOM.java index eba9b03..a595360 100644 --- a/src/main/java/ai/reveng/model/SBOM.java +++ b/src/main/java/ai/reveng/model/SBOM.java @@ -52,7 +52,7 @@ /** * SBOM */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SBOM { public static final String SERIALIZED_NAME_PACKAGES = "packages"; @SerializedName(SERIALIZED_NAME_PACKAGES) diff --git a/src/main/java/ai/reveng/model/SBOMPackage.java b/src/main/java/ai/reveng/model/SBOMPackage.java index 6fcb0af..2a24a31 100644 --- a/src/main/java/ai/reveng/model/SBOMPackage.java +++ b/src/main/java/ai/reveng/model/SBOMPackage.java @@ -49,7 +49,7 @@ /** * SBOMPackage */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SBOMPackage { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/SandboxOptions.java b/src/main/java/ai/reveng/model/SandboxOptions.java index bfd6162..d95f0ef 100644 --- a/src/main/java/ai/reveng/model/SandboxOptions.java +++ b/src/main/java/ai/reveng/model/SandboxOptions.java @@ -49,7 +49,7 @@ /** * SandboxOptions */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SandboxOptions { public static final String SERIALIZED_NAME_ENABLED = "enabled"; @SerializedName(SERIALIZED_NAME_ENABLED) diff --git a/src/main/java/ai/reveng/model/ScrapeThirdPartyConfig.java b/src/main/java/ai/reveng/model/ScrapeThirdPartyConfig.java index eedee88..5662892 100644 --- a/src/main/java/ai/reveng/model/ScrapeThirdPartyConfig.java +++ b/src/main/java/ai/reveng/model/ScrapeThirdPartyConfig.java @@ -49,7 +49,7 @@ /** * ScrapeThirdPartyConfig */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ScrapeThirdPartyConfig { public static final String SERIALIZED_NAME_ENABLED = "enabled"; @SerializedName(SERIALIZED_NAME_ENABLED) diff --git a/src/main/java/ai/reveng/model/SearchBinaryIds.java b/src/main/java/ai/reveng/model/SearchBinaryIds.java index 728b1ae..bb84253 100644 --- a/src/main/java/ai/reveng/model/SearchBinaryIds.java +++ b/src/main/java/ai/reveng/model/SearchBinaryIds.java @@ -52,7 +52,7 @@ import ai.reveng.invoker.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SearchBinaryIds extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(SearchBinaryIds.class.getName()); diff --git a/src/main/java/ai/reveng/model/SearchFunctionIds.java b/src/main/java/ai/reveng/model/SearchFunctionIds.java index 55a5944..86663ea 100644 --- a/src/main/java/ai/reveng/model/SearchFunctionIds.java +++ b/src/main/java/ai/reveng/model/SearchFunctionIds.java @@ -52,7 +52,7 @@ import ai.reveng.invoker.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SearchFunctionIds extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(SearchFunctionIds.class.getName()); diff --git a/src/main/java/ai/reveng/model/SectionModel.java b/src/main/java/ai/reveng/model/SectionModel.java index 5561917..0a34411 100644 --- a/src/main/java/ai/reveng/model/SectionModel.java +++ b/src/main/java/ai/reveng/model/SectionModel.java @@ -52,7 +52,7 @@ /** * SectionModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SectionModel { public static final String SERIALIZED_NAME_NUMBER_OF_SECTIONS = "number_of_sections"; @SerializedName(SERIALIZED_NAME_NUMBER_OF_SECTIONS) diff --git a/src/main/java/ai/reveng/model/SecurityChecksResponse.java b/src/main/java/ai/reveng/model/SecurityChecksResponse.java index 36b29c9..e4c505d 100644 --- a/src/main/java/ai/reveng/model/SecurityChecksResponse.java +++ b/src/main/java/ai/reveng/model/SecurityChecksResponse.java @@ -52,7 +52,7 @@ /** * SecurityChecksResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SecurityChecksResponse { public static final String SERIALIZED_NAME_BINARY_ID = "binary_id"; @SerializedName(SERIALIZED_NAME_BINARY_ID) diff --git a/src/main/java/ai/reveng/model/SecurityChecksResult.java b/src/main/java/ai/reveng/model/SecurityChecksResult.java index 4122ecc..449ae26 100644 --- a/src/main/java/ai/reveng/model/SecurityChecksResult.java +++ b/src/main/java/ai/reveng/model/SecurityChecksResult.java @@ -52,7 +52,7 @@ /** * SecurityChecksResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SecurityChecksResult { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/SecurityModel.java b/src/main/java/ai/reveng/model/SecurityModel.java index f2999c2..46d8e88 100644 --- a/src/main/java/ai/reveng/model/SecurityModel.java +++ b/src/main/java/ai/reveng/model/SecurityModel.java @@ -49,7 +49,7 @@ /** * SecurityModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SecurityModel { public static final String SERIALIZED_NAME_ASLR = "aslr"; @SerializedName(SERIALIZED_NAME_ASLR) diff --git a/src/main/java/ai/reveng/model/SimilarFunctionsResponse.java b/src/main/java/ai/reveng/model/SimilarFunctionsResponse.java index 2021231..12b9145 100644 --- a/src/main/java/ai/reveng/model/SimilarFunctionsResponse.java +++ b/src/main/java/ai/reveng/model/SimilarFunctionsResponse.java @@ -52,7 +52,7 @@ /** * SimilarFunctionsResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SimilarFunctionsResponse { public static final String SERIALIZED_NAME_FUNCTION_ID = "function_id"; @SerializedName(SERIALIZED_NAME_FUNCTION_ID) diff --git a/src/main/java/ai/reveng/model/SingleCodeCertificateModel.java b/src/main/java/ai/reveng/model/SingleCodeCertificateModel.java index e6ea813..58fdf5b 100644 --- a/src/main/java/ai/reveng/model/SingleCodeCertificateModel.java +++ b/src/main/java/ai/reveng/model/SingleCodeCertificateModel.java @@ -49,7 +49,7 @@ /** * SingleCodeCertificateModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SingleCodeCertificateModel { public static final String SERIALIZED_NAME_VERSION = "version"; @SerializedName(SERIALIZED_NAME_VERSION) diff --git a/src/main/java/ai/reveng/model/SingleCodeSignatureModel.java b/src/main/java/ai/reveng/model/SingleCodeSignatureModel.java index 84e8b9b..730fdea 100644 --- a/src/main/java/ai/reveng/model/SingleCodeSignatureModel.java +++ b/src/main/java/ai/reveng/model/SingleCodeSignatureModel.java @@ -52,7 +52,7 @@ /** * SingleCodeSignatureModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SingleCodeSignatureModel { public static final String SERIALIZED_NAME_CERTIFICATES = "certificates"; @SerializedName(SERIALIZED_NAME_CERTIFICATES) diff --git a/src/main/java/ai/reveng/model/SinglePDBEntryModel.java b/src/main/java/ai/reveng/model/SinglePDBEntryModel.java index 1c83633..78b384a 100644 --- a/src/main/java/ai/reveng/model/SinglePDBEntryModel.java +++ b/src/main/java/ai/reveng/model/SinglePDBEntryModel.java @@ -49,7 +49,7 @@ /** * SinglePDBEntryModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SinglePDBEntryModel { public static final String SERIALIZED_NAME_GUID = "guid"; @SerializedName(SERIALIZED_NAME_GUID) diff --git a/src/main/java/ai/reveng/model/SingleSectionModel.java b/src/main/java/ai/reveng/model/SingleSectionModel.java index b5c3056..e1dba36 100644 --- a/src/main/java/ai/reveng/model/SingleSectionModel.java +++ b/src/main/java/ai/reveng/model/SingleSectionModel.java @@ -50,7 +50,7 @@ /** * SingleSectionModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class SingleSectionModel { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/StackVariable.java b/src/main/java/ai/reveng/model/StackVariable.java index 12d1eef..94c90f2 100644 --- a/src/main/java/ai/reveng/model/StackVariable.java +++ b/src/main/java/ai/reveng/model/StackVariable.java @@ -50,7 +50,7 @@ /** * StackVariable */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class StackVariable { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/StatusOutput.java b/src/main/java/ai/reveng/model/StatusOutput.java index a21c541..e961dd4 100644 --- a/src/main/java/ai/reveng/model/StatusOutput.java +++ b/src/main/java/ai/reveng/model/StatusOutput.java @@ -49,7 +49,7 @@ /** * StatusOutput */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class StatusOutput { public static final String SERIALIZED_NAME_ANALYSIS_ID = "analysis_id"; @SerializedName(SERIALIZED_NAME_ANALYSIS_ID) diff --git a/src/main/java/ai/reveng/model/StringFunctions.java b/src/main/java/ai/reveng/model/StringFunctions.java index 3960b22..41a4564 100644 --- a/src/main/java/ai/reveng/model/StringFunctions.java +++ b/src/main/java/ai/reveng/model/StringFunctions.java @@ -52,7 +52,7 @@ /** * This is a string with the functions where the string is used. A function string is a string literal referenced within a function. When analyzing stripped or obfuscated binaries, function strings can help identify the function’s purpose. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class StringFunctions { public static final String SERIALIZED_NAME_VALUE = "value"; @SerializedName(SERIALIZED_NAME_VALUE) diff --git a/src/main/java/ai/reveng/model/Structure.java b/src/main/java/ai/reveng/model/Structure.java index a2fee9c..8d6c5a9 100644 --- a/src/main/java/ai/reveng/model/Structure.java +++ b/src/main/java/ai/reveng/model/Structure.java @@ -53,7 +53,7 @@ /** * Structure */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Structure { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/StructureMember.java b/src/main/java/ai/reveng/model/StructureMember.java index b0ce1d6..f33fe38 100644 --- a/src/main/java/ai/reveng/model/StructureMember.java +++ b/src/main/java/ai/reveng/model/StructureMember.java @@ -50,7 +50,7 @@ /** * StructureMember */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class StructureMember { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/Symbols.java b/src/main/java/ai/reveng/model/Symbols.java index 6775832..73d352b 100644 --- a/src/main/java/ai/reveng/model/Symbols.java +++ b/src/main/java/ai/reveng/model/Symbols.java @@ -52,7 +52,7 @@ /** * Symbols */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Symbols { public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address"; @SerializedName(SERIALIZED_NAME_BASE_ADDRESS) diff --git a/src/main/java/ai/reveng/model/TTPS.java b/src/main/java/ai/reveng/model/TTPS.java index cca430d..4d683a0 100644 --- a/src/main/java/ai/reveng/model/TTPS.java +++ b/src/main/java/ai/reveng/model/TTPS.java @@ -50,7 +50,7 @@ /** * TTPS */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TTPS { public static final String SERIALIZED_NAME_SUCCESS = "success"; @SerializedName(SERIALIZED_NAME_SUCCESS) diff --git a/src/main/java/ai/reveng/model/TTPSAttack.java b/src/main/java/ai/reveng/model/TTPSAttack.java index dcf259c..387d022 100644 --- a/src/main/java/ai/reveng/model/TTPSAttack.java +++ b/src/main/java/ai/reveng/model/TTPSAttack.java @@ -49,7 +49,7 @@ /** * TTPSAttack */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TTPSAttack { public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/src/main/java/ai/reveng/model/TTPSData.java b/src/main/java/ai/reveng/model/TTPSData.java index b0b09bb..12b0a30 100644 --- a/src/main/java/ai/reveng/model/TTPSData.java +++ b/src/main/java/ai/reveng/model/TTPSData.java @@ -52,7 +52,7 @@ /** * TTPSData */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TTPSData { public static final String SERIALIZED_NAME_SCORE = "score"; @SerializedName(SERIALIZED_NAME_SCORE) diff --git a/src/main/java/ai/reveng/model/TTPSElement.java b/src/main/java/ai/reveng/model/TTPSElement.java index c01b308..3ebe01a 100644 --- a/src/main/java/ai/reveng/model/TTPSElement.java +++ b/src/main/java/ai/reveng/model/TTPSElement.java @@ -53,7 +53,7 @@ /** * TTPSElement */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TTPSElement { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/TTPSOccurance.java b/src/main/java/ai/reveng/model/TTPSOccurance.java index 4f454b7..b314211 100644 --- a/src/main/java/ai/reveng/model/TTPSOccurance.java +++ b/src/main/java/ai/reveng/model/TTPSOccurance.java @@ -49,7 +49,7 @@ /** * TTPSOccurance */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TTPSOccurance { public static final String SERIALIZED_NAME_PPID = "ppid"; @SerializedName(SERIALIZED_NAME_PPID) diff --git a/src/main/java/ai/reveng/model/Tag.java b/src/main/java/ai/reveng/model/Tag.java index 4091df0..8f5163f 100644 --- a/src/main/java/ai/reveng/model/Tag.java +++ b/src/main/java/ai/reveng/model/Tag.java @@ -49,7 +49,7 @@ /** * Tag */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Tag { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/TagConfidenceBody.java b/src/main/java/ai/reveng/model/TagConfidenceBody.java index 1df6699..d21056a 100644 --- a/src/main/java/ai/reveng/model/TagConfidenceBody.java +++ b/src/main/java/ai/reveng/model/TagConfidenceBody.java @@ -52,7 +52,7 @@ /** * TagConfidenceBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TagConfidenceBody { public static final String SERIALIZED_NAME_TAGS = "tags"; @SerializedName(SERIALIZED_NAME_TAGS) diff --git a/src/main/java/ai/reveng/model/TagOriginBoxPlotConfidence.java b/src/main/java/ai/reveng/model/TagOriginBoxPlotConfidence.java index a325f88..54e5a85 100644 --- a/src/main/java/ai/reveng/model/TagOriginBoxPlotConfidence.java +++ b/src/main/java/ai/reveng/model/TagOriginBoxPlotConfidence.java @@ -51,7 +51,7 @@ /** * TagOriginBoxPlotConfidence */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TagOriginBoxPlotConfidence { public static final String SERIALIZED_NAME_TAG = "tag"; @SerializedName(SERIALIZED_NAME_TAG) diff --git a/src/main/java/ai/reveng/model/TagResponse.java b/src/main/java/ai/reveng/model/TagResponse.java index 95ec3b7..826ccc7 100644 --- a/src/main/java/ai/reveng/model/TagResponse.java +++ b/src/main/java/ai/reveng/model/TagResponse.java @@ -49,7 +49,7 @@ /** * TagResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TagResponse { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/reveng/model/TagSearchResponse.java b/src/main/java/ai/reveng/model/TagSearchResponse.java index 59da458..8f34ae2 100644 --- a/src/main/java/ai/reveng/model/TagSearchResponse.java +++ b/src/main/java/ai/reveng/model/TagSearchResponse.java @@ -52,7 +52,7 @@ /** * TagSearchResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TagSearchResponse { public static final String SERIALIZED_NAME_RESULTS = "results"; @SerializedName(SERIALIZED_NAME_RESULTS) diff --git a/src/main/java/ai/reveng/model/TagSearchResult.java b/src/main/java/ai/reveng/model/TagSearchResult.java index 1fce55a..d54b37a 100644 --- a/src/main/java/ai/reveng/model/TagSearchResult.java +++ b/src/main/java/ai/reveng/model/TagSearchResult.java @@ -49,7 +49,7 @@ /** * TagSearchResult */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TagSearchResult { public static final String SERIALIZED_NAME_TAG_ID = "tag_id"; @SerializedName(SERIALIZED_NAME_TAG_ID) diff --git a/src/main/java/ai/reveng/model/Tags.java b/src/main/java/ai/reveng/model/Tags.java index afa8712..6e40622 100644 --- a/src/main/java/ai/reveng/model/Tags.java +++ b/src/main/java/ai/reveng/model/Tags.java @@ -50,7 +50,7 @@ /** * Tags */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Tags { public static final String SERIALIZED_NAME_TAG = "tag"; @SerializedName(SERIALIZED_NAME_TAG) diff --git a/src/main/java/ai/reveng/model/TaskResponse.java b/src/main/java/ai/reveng/model/TaskResponse.java index 6a730cd..ecfadaf 100644 --- a/src/main/java/ai/reveng/model/TaskResponse.java +++ b/src/main/java/ai/reveng/model/TaskResponse.java @@ -51,7 +51,7 @@ /** * TaskResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TaskResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/reveng/model/ThreatScoreFunctionBody.java b/src/main/java/ai/reveng/model/ThreatScoreFunctionBody.java index 2afae1a..5bd6126 100644 --- a/src/main/java/ai/reveng/model/ThreatScoreFunctionBody.java +++ b/src/main/java/ai/reveng/model/ThreatScoreFunctionBody.java @@ -51,7 +51,7 @@ /** * ThreatScoreFunctionBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class ThreatScoreFunctionBody { public static final String SERIALIZED_NAME_FUNCTION_IDS = "function_ids"; @SerializedName(SERIALIZED_NAME_FUNCTION_IDS) diff --git a/src/main/java/ai/reveng/model/TimestampModel.java b/src/main/java/ai/reveng/model/TimestampModel.java index 53afe1b..3b32a04 100644 --- a/src/main/java/ai/reveng/model/TimestampModel.java +++ b/src/main/java/ai/reveng/model/TimestampModel.java @@ -49,7 +49,7 @@ /** * TimestampModel */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TimestampModel { public static final String SERIALIZED_NAME_PE_TIMESTAMP = "pe_timestamp"; @SerializedName(SERIALIZED_NAME_PE_TIMESTAMP) diff --git a/src/main/java/ai/reveng/model/TypeDefinition.java b/src/main/java/ai/reveng/model/TypeDefinition.java index c386373..37ff114 100644 --- a/src/main/java/ai/reveng/model/TypeDefinition.java +++ b/src/main/java/ai/reveng/model/TypeDefinition.java @@ -50,7 +50,7 @@ /** * TypeDefinition */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class TypeDefinition { public static final String SERIALIZED_NAME_LAST_CHANGE = "last_change"; @SerializedName(SERIALIZED_NAME_LAST_CHANGE) diff --git a/src/main/java/ai/reveng/model/UpdateFunctionDataTypes.java b/src/main/java/ai/reveng/model/UpdateFunctionDataTypes.java index ed6a991..7a7fffd 100644 --- a/src/main/java/ai/reveng/model/UpdateFunctionDataTypes.java +++ b/src/main/java/ai/reveng/model/UpdateFunctionDataTypes.java @@ -50,7 +50,7 @@ /** * UpdateFunctionDataTypes */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class UpdateFunctionDataTypes { public static final String SERIALIZED_NAME_DATA_TYPES_VERSION = "data_types_version"; @SerializedName(SERIALIZED_NAME_DATA_TYPES_VERSION) diff --git a/src/main/java/ai/reveng/model/UploadResponse.java b/src/main/java/ai/reveng/model/UploadResponse.java index a0b47ba..39e10f1 100644 --- a/src/main/java/ai/reveng/model/UploadResponse.java +++ b/src/main/java/ai/reveng/model/UploadResponse.java @@ -50,7 +50,7 @@ /** * UploadResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class UploadResponse { public static final String SERIALIZED_NAME_SHA256_HASH = "sha_256_hash"; @SerializedName(SERIALIZED_NAME_SHA256_HASH) diff --git a/src/main/java/ai/reveng/model/UpsertAiDecomplationRatingRequest.java b/src/main/java/ai/reveng/model/UpsertAiDecomplationRatingRequest.java index 865a01d..3e69cf5 100644 --- a/src/main/java/ai/reveng/model/UpsertAiDecomplationRatingRequest.java +++ b/src/main/java/ai/reveng/model/UpsertAiDecomplationRatingRequest.java @@ -50,7 +50,7 @@ /** * UpsertAiDecomplationRatingRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class UpsertAiDecomplationRatingRequest { public static final String SERIALIZED_NAME_RATING = "rating"; @SerializedName(SERIALIZED_NAME_RATING) diff --git a/src/main/java/ai/reveng/model/UserActivityResponse.java b/src/main/java/ai/reveng/model/UserActivityResponse.java index c993e2e..17614e0 100644 --- a/src/main/java/ai/reveng/model/UserActivityResponse.java +++ b/src/main/java/ai/reveng/model/UserActivityResponse.java @@ -50,7 +50,7 @@ /** * UserActivityResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class UserActivityResponse { public static final String SERIALIZED_NAME_ACTIONS = "actions"; @SerializedName(SERIALIZED_NAME_ACTIONS) diff --git a/src/main/java/ai/reveng/model/Vulnerabilities.java b/src/main/java/ai/reveng/model/Vulnerabilities.java index cac80be..f9f0a21 100644 --- a/src/main/java/ai/reveng/model/Vulnerabilities.java +++ b/src/main/java/ai/reveng/model/Vulnerabilities.java @@ -52,7 +52,7 @@ /** * Vulnerabilities */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Vulnerabilities { public static final String SERIALIZED_NAME_VULNERABILITIES = "vulnerabilities"; @SerializedName(SERIALIZED_NAME_VULNERABILITIES) diff --git a/src/main/java/ai/reveng/model/Vulnerability.java b/src/main/java/ai/reveng/model/Vulnerability.java index 620ba4c..5403e25 100644 --- a/src/main/java/ai/reveng/model/Vulnerability.java +++ b/src/main/java/ai/reveng/model/Vulnerability.java @@ -50,7 +50,7 @@ /** * Vulnerability */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class Vulnerability { public static final String SERIALIZED_NAME_VENDOR = "vendor"; @SerializedName(SERIALIZED_NAME_VENDOR) diff --git a/src/test/java/ai/reveng/api/AnalysesCommentsApiTest.java b/src/test/java/ai/reveng/api/AnalysesCommentsApiTest.java index e266344..833bee3 100644 --- a/src/test/java/ai/reveng/api/AnalysesCommentsApiTest.java +++ b/src/test/java/ai/reveng/api/AnalysesCommentsApiTest.java @@ -46,8 +46,7 @@ public class AnalysesCommentsApiTest { public void createAnalysisCommentTest() throws ApiException { Integer analysisId = null; CommentBase commentBase = null; - String authorization = null; - BaseResponseCommentResponse response = api.createAnalysisComment(analysisId, commentBase, authorization); + BaseResponseCommentResponse response = api.createAnalysisComment(analysisId, commentBase); // TODO: test validations } @@ -62,8 +61,7 @@ public void createAnalysisCommentTest() throws ApiException { public void deleteAnalysisCommentTest() throws ApiException { Integer commentId = null; Integer analysisId = null; - String authorization = null; - BaseResponseBool response = api.deleteAnalysisComment(commentId, analysisId, authorization); + BaseResponseBool response = api.deleteAnalysisComment(commentId, analysisId); // TODO: test validations } @@ -77,8 +75,7 @@ public void deleteAnalysisCommentTest() throws ApiException { @Test public void getAnalysisCommentsTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseListCommentResponse response = api.getAnalysisComments(analysisId, authorization); + BaseResponseListCommentResponse response = api.getAnalysisComments(analysisId); // TODO: test validations } @@ -94,8 +91,7 @@ public void updateAnalysisCommentTest() throws ApiException { Integer commentId = null; Integer analysisId = null; CommentUpdateRequest commentUpdateRequest = null; - String authorization = null; - BaseResponseCommentResponse response = api.updateAnalysisComment(commentId, analysisId, commentUpdateRequest, authorization); + BaseResponseCommentResponse response = api.updateAnalysisComment(commentId, analysisId, commentUpdateRequest); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/AnalysesCoreApiTest.java b/src/test/java/ai/reveng/api/AnalysesCoreApiTest.java index 1e113e4..5a5386f 100644 --- a/src/test/java/ai/reveng/api/AnalysesCoreApiTest.java +++ b/src/test/java/ai/reveng/api/AnalysesCoreApiTest.java @@ -70,8 +70,7 @@ public class AnalysesCoreApiTest { @Test public void batchSymbolAnnTest() throws ApiException { AppApiRestV1AnnSchemaANNFunction appApiRestV1AnnSchemaANNFunction = null; - String authorization = null; - FunctionBatchAnn response = api.batchSymbolAnn(appApiRestV1AnnSchemaANNFunction, authorization); + FunctionBatchAnn response = api.batchSymbolAnn(appApiRestV1AnnSchemaANNFunction); // TODO: test validations } @@ -85,8 +84,7 @@ public void batchSymbolAnnTest() throws ApiException { @Test public void createAnalysisTest() throws ApiException { AnalysisCreateRequest analysisCreateRequest = null; - String authorization = null; - BaseResponseAnalysisCreateResponse response = api.createAnalysis(analysisCreateRequest, authorization); + BaseResponseAnalysisCreateResponse response = api.createAnalysis(analysisCreateRequest); // TODO: test validations } @@ -100,8 +98,7 @@ public void createAnalysisTest() throws ApiException { @Test public void deleteAnalysisTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseDict response = api.deleteAnalysis(analysisId, authorization); + BaseResponseDict response = api.deleteAnalysis(analysisId); // TODO: test validations } @@ -116,8 +113,7 @@ public void deleteAnalysisTest() throws ApiException { public void findSimilarFunctionsBatchTest() throws ApiException { Integer analysisId = null; AppApiRestV2SimilaritySchemaANNFunction appApiRestV2SimilaritySchemaANNFunction = null; - String authorization = null; - BaseResponseNearestNeighborAnalysis response = api.findSimilarFunctionsBatch(analysisId, appApiRestV2SimilaritySchemaANNFunction, authorization); + BaseResponseNearestNeighborAnalysis response = api.findSimilarFunctionsBatch(analysisId, appApiRestV2SimilaritySchemaANNFunction); // TODO: test validations } @@ -131,8 +127,7 @@ public void findSimilarFunctionsBatchTest() throws ApiException { @Test public void getAnalysisBasicInfoTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseBasic response = api.getAnalysisBasicInfo(analysisId, authorization); + BaseResponseBasic response = api.getAnalysisBasicInfo(analysisId); // TODO: test validations } @@ -146,8 +141,7 @@ public void getAnalysisBasicInfoTest() throws ApiException { @Test public void getAnalysisFunctionMapTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseAnalysisFunctionMapping response = api.getAnalysisFunctionMap(analysisId, authorization); + BaseResponseAnalysisFunctionMapping response = api.getAnalysisFunctionMap(analysisId); // TODO: test validations } @@ -161,8 +155,7 @@ public void getAnalysisFunctionMapTest() throws ApiException { @Test public void getAnalysisLogsTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseLogs response = api.getAnalysisLogs(analysisId, authorization); + BaseResponseLogs response = api.getAnalysisLogs(analysisId); // TODO: test validations } @@ -176,8 +169,7 @@ public void getAnalysisLogsTest() throws ApiException { @Test public void getAnalysisParamsTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseParams response = api.getAnalysisParams(analysisId, authorization); + BaseResponseParams response = api.getAnalysisParams(analysisId); // TODO: test validations } @@ -191,8 +183,7 @@ public void getAnalysisParamsTest() throws ApiException { @Test public void getAnalysisStatusTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseStatus response = api.getAnalysisStatus(analysisId, authorization); + BaseResponseStatus response = api.getAnalysisStatus(analysisId); // TODO: test validations } @@ -207,8 +198,7 @@ public void getAnalysisStatusTest() throws ApiException { public void getBinaryAnnTest() throws ApiException { Integer analysisId = null; BinaryAnnForm binaryAnnForm = null; - String authorization = null; - BaseResponseBinaryAnnListResponse response = api.getBinaryAnn(analysisId, binaryAnnForm, authorization); + BaseResponseBinaryAnnListResponse response = api.getBinaryAnn(analysisId, binaryAnnForm); // TODO: test validations } @@ -232,8 +222,7 @@ public void listAnalysesTest() throws ApiException { Integer offset = null; AppApiRestV2AnalysesEnumsOrderBy orderBy = null; Order order = null; - String authorization = null; - BaseResponseRecent response = api.listAnalyses(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order, authorization); + BaseResponseRecent response = api.listAnalyses(searchTerm, workspace, status, modelName, dynamicExecutionStatus, usernames, sha256Hash, limit, offset, orderBy, order); // TODO: test validations } @@ -247,8 +236,7 @@ public void listAnalysesTest() throws ApiException { @Test public void lookupBinaryIdTest() throws ApiException { Integer binaryId = null; - String authorization = null; - Object response = api.lookupBinaryId(binaryId, authorization); + Object response = api.lookupBinaryId(binaryId); // TODO: test validations } @@ -263,8 +251,7 @@ public void lookupBinaryIdTest() throws ApiException { public void requeueAnalysisTest() throws ApiException { Integer analysisId = null; ReAnalysisForm reAnalysisForm = null; - String authorization = null; - BaseResponseCreated response = api.requeueAnalysis(analysisId, reAnalysisForm, authorization); + BaseResponseCreated response = api.requeueAnalysis(analysisId, reAnalysisForm); // TODO: test validations } @@ -279,8 +266,7 @@ public void requeueAnalysisTest() throws ApiException { public void updateAnalysisTest() throws ApiException { Integer analysisId = null; AnalysisUpdateRequest analysisUpdateRequest = null; - String authorization = null; - BaseResponseAnalysisDetailResponse response = api.updateAnalysis(analysisId, analysisUpdateRequest, authorization); + BaseResponseAnalysisDetailResponse response = api.updateAnalysis(analysisId, analysisUpdateRequest); // TODO: test validations } @@ -295,8 +281,7 @@ public void updateAnalysisTest() throws ApiException { public void updateAnalysisTagsTest() throws ApiException { Integer analysisId = null; AnalysisUpdateTagsRequest analysisUpdateTagsRequest = null; - String authorization = null; - BaseResponseAnalysisUpdateTagsResponse response = api.updateAnalysisTags(analysisId, analysisUpdateTagsRequest, authorization); + BaseResponseAnalysisUpdateTagsResponse response = api.updateAnalysisTags(analysisId, analysisUpdateTagsRequest); // TODO: test validations } @@ -310,9 +295,8 @@ public void uploadFileTest() throws ApiException { UploadFileType uploadFileType = null; File _file = null; String packedPassword = null; - String authorization = null; Boolean forceOverwrite = null; - BaseResponseUploadResponse response = api.uploadFile(uploadFileType, _file, packedPassword, authorization, forceOverwrite); + BaseResponseUploadResponse response = api.uploadFile(uploadFileType, _file, packedPassword, forceOverwrite); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/AnalysesDynamicExecutionApiTest.java b/src/test/java/ai/reveng/api/AnalysesDynamicExecutionApiTest.java index ee7f09c..9e9c9ef 100644 --- a/src/test/java/ai/reveng/api/AnalysesDynamicExecutionApiTest.java +++ b/src/test/java/ai/reveng/api/AnalysesDynamicExecutionApiTest.java @@ -44,8 +44,7 @@ public class AnalysesDynamicExecutionApiTest { @Test public void getDynamicExecutionStatusTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseDynamicExecutionStatus response = api.getDynamicExecutionStatus(analysisId, authorization); + BaseResponseDynamicExecutionStatus response = api.getDynamicExecutionStatus(analysisId); // TODO: test validations } @@ -57,8 +56,7 @@ public void getDynamicExecutionStatusTest() throws ApiException { @Test public void getNetworkOverviewTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseNetworkOverviewResponse response = api.getNetworkOverview(analysisId, authorization); + BaseResponseNetworkOverviewResponse response = api.getNetworkOverview(analysisId); // TODO: test validations } @@ -71,8 +69,7 @@ public void getNetworkOverviewTest() throws ApiException { public void getProcessDumpTest() throws ApiException { Integer analysisId = null; String dumpName = null; - String authorization = null; - Object response = api.getProcessDump(analysisId, dumpName, authorization); + Object response = api.getProcessDump(analysisId, dumpName); // TODO: test validations } @@ -84,8 +81,7 @@ public void getProcessDumpTest() throws ApiException { @Test public void getProcessDumpsTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseProcessDumps response = api.getProcessDumps(analysisId, authorization); + BaseResponseProcessDumps response = api.getProcessDumps(analysisId); // TODO: test validations } @@ -97,8 +93,7 @@ public void getProcessDumpsTest() throws ApiException { @Test public void getProcessRegistryTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseProcessRegistry response = api.getProcessRegistry(analysisId, authorization); + BaseResponseProcessRegistry response = api.getProcessRegistry(analysisId); // TODO: test validations } @@ -110,8 +105,7 @@ public void getProcessRegistryTest() throws ApiException { @Test public void getProcessTreeTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseProcessTree response = api.getProcessTree(analysisId, authorization); + BaseResponseProcessTree response = api.getProcessTree(analysisId); // TODO: test validations } @@ -123,8 +117,7 @@ public void getProcessTreeTest() throws ApiException { @Test public void getTtpsTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseTTPS response = api.getTtps(analysisId, authorization); + BaseResponseTTPS response = api.getTtps(analysisId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/AnalysesResultsMetadataApiTest.java b/src/test/java/ai/reveng/api/AnalysesResultsMetadataApiTest.java index f23b9db..a4073b7 100644 --- a/src/test/java/ai/reveng/api/AnalysesResultsMetadataApiTest.java +++ b/src/test/java/ai/reveng/api/AnalysesResultsMetadataApiTest.java @@ -44,8 +44,7 @@ public class AnalysesResultsMetadataApiTest { @Test public void getCapabilitiesTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseCapabilities response = api.getCapabilities(analysisId, authorization); + BaseResponseCapabilities response = api.getCapabilities(analysisId); // TODO: test validations } @@ -58,8 +57,7 @@ public void getCapabilitiesTest() throws ApiException { public void getCommunitiesTest() throws ApiException { Integer analysisId = null; String userName = null; - String authorization = null; - BaseResponseCommunities response = api.getCommunities(analysisId, userName, authorization); + BaseResponseCommunities response = api.getCommunities(analysisId, userName); // TODO: test validations } @@ -76,8 +74,7 @@ public void getFunctionsListTest() throws ApiException { String searchTerm = null; Integer minVAddr = null; Integer maxVAddr = null; - String authorization = null; - BaseResponseAnalysisFunctions response = api.getFunctionsList(analysisId, searchTerm, minVAddr, maxVAddr, authorization); + BaseResponseAnalysisFunctions response = api.getFunctionsList(analysisId, searchTerm, minVAddr, maxVAddr); // TODO: test validations } @@ -89,8 +86,7 @@ public void getFunctionsListTest() throws ApiException { @Test public void getPdfTest() throws ApiException { Integer analysisId = null; - String authorization = null; - Object response = api.getPdf(analysisId, authorization); + Object response = api.getPdf(analysisId); // TODO: test validations } @@ -102,8 +98,7 @@ public void getPdfTest() throws ApiException { @Test public void getSbomTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseListSBOM response = api.getSbom(analysisId, authorization); + BaseResponseListSBOM response = api.getSbom(analysisId); // TODO: test validations } @@ -115,8 +110,7 @@ public void getSbomTest() throws ApiException { @Test public void getTagsTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseAnalysisTags response = api.getTags(analysisId, authorization); + BaseResponseAnalysisTags response = api.getTags(analysisId); // TODO: test validations } @@ -128,8 +122,7 @@ public void getTagsTest() throws ApiException { @Test public void getVulnerabilitiesTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseVulnerabilities response = api.getVulnerabilities(analysisId, authorization); + BaseResponseVulnerabilities response = api.getVulnerabilities(analysisId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/AnalysesSecurityChecksApiTest.java b/src/test/java/ai/reveng/api/AnalysesSecurityChecksApiTest.java index 6c51c50..f14d937 100644 --- a/src/test/java/ai/reveng/api/AnalysesSecurityChecksApiTest.java +++ b/src/test/java/ai/reveng/api/AnalysesSecurityChecksApiTest.java @@ -42,8 +42,7 @@ public class AnalysesSecurityChecksApiTest { @Test public void createScurityChecksTaskTest() throws ApiException { Integer analysisId = null; - String authorization = null; - QueuedSecurityChecksTaskResponse response = api.createScurityChecksTask(analysisId, authorization); + QueuedSecurityChecksTaskResponse response = api.createScurityChecksTask(analysisId); // TODO: test validations } @@ -59,8 +58,7 @@ public void getSecurityChecksTest() throws ApiException { Integer analysisId = null; Integer page = null; Integer pageSize = null; - String authorization = null; - BaseResponseSecurityChecksResponse response = api.getSecurityChecks(analysisId, page, pageSize, authorization); + BaseResponseSecurityChecksResponse response = api.getSecurityChecks(analysisId, page, pageSize); // TODO: test validations } @@ -72,8 +70,7 @@ public void getSecurityChecksTest() throws ApiException { @Test public void getSecurityChecksTaskStatusTest() throws ApiException { Integer analysisId = null; - String authorization = null; - CheckSecurityChecksTaskResponse response = api.getSecurityChecksTaskStatus(analysisId, authorization); + CheckSecurityChecksTaskResponse response = api.getSecurityChecksTaskStatus(analysisId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/AuthenticationUsersApiTest.java b/src/test/java/ai/reveng/api/AuthenticationUsersApiTest.java index 2f567da..b8785c8 100644 --- a/src/test/java/ai/reveng/api/AuthenticationUsersApiTest.java +++ b/src/test/java/ai/reveng/api/AuthenticationUsersApiTest.java @@ -43,8 +43,7 @@ public class AuthenticationUsersApiTest { */ @Test public void getRequesterUserInfoTest() throws ApiException { - String authorization = null; - BaseResponseGetUserResponse response = api.getRequesterUserInfo(authorization); + BaseResponseGetUserResponse response = api.getRequesterUserInfo(); // TODO: test validations } @@ -56,8 +55,7 @@ public void getRequesterUserInfoTest() throws ApiException { @Test public void getUserTest() throws ApiException { Integer userId = null; - String authorization = null; - BaseResponseGetPublicUserResponse response = api.getUser(userId, authorization); + BaseResponseGetPublicUserResponse response = api.getUser(userId); // TODO: test validations } @@ -68,8 +66,7 @@ public void getUserTest() throws ApiException { */ @Test public void getUserActivityTest() throws ApiException { - String authorization = null; - BaseResponseListUserActivityResponse response = api.getUserActivity(authorization); + BaseResponseListUserActivityResponse response = api.getUserActivity(); // TODO: test validations } @@ -82,8 +79,7 @@ public void getUserActivityTest() throws ApiException { */ @Test public void getUserCommentsTest() throws ApiException { - String authorization = null; - BaseResponseListCommentResponse response = api.getUserComments(authorization); + BaseResponseListCommentResponse response = api.getUserComments(); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/BinariesApiTest.java b/src/test/java/ai/reveng/api/BinariesApiTest.java index 7f2d3ff..8bc5720 100644 --- a/src/test/java/ai/reveng/api/BinariesApiTest.java +++ b/src/test/java/ai/reveng/api/BinariesApiTest.java @@ -43,8 +43,7 @@ public class BinariesApiTest { @Test public void downloadZippedBinaryTest() throws ApiException { Integer binaryId = null; - String authorization = null; - Object response = api.downloadZippedBinary(binaryId, authorization); + Object response = api.downloadZippedBinary(binaryId); // TODO: test validations } @@ -56,8 +55,7 @@ public void downloadZippedBinaryTest() throws ApiException { @Test public void getBinaryAdditionalDetailsTest() throws ApiException { Integer binaryId = null; - String authorization = null; - BaseResponseBinaryAdditionalResponse response = api.getBinaryAdditionalDetails(binaryId, authorization); + BaseResponseBinaryAdditionalResponse response = api.getBinaryAdditionalDetails(binaryId); // TODO: test validations } @@ -69,8 +67,7 @@ public void getBinaryAdditionalDetailsTest() throws ApiException { @Test public void getBinaryDetailsTest() throws ApiException { Integer binaryId = null; - String authorization = null; - BaseResponseBinaryDetailsResponse response = api.getBinaryDetails(binaryId, authorization); + BaseResponseBinaryDetailsResponse response = api.getBinaryDetails(binaryId); // TODO: test validations } @@ -82,8 +79,7 @@ public void getBinaryDetailsTest() throws ApiException { @Test public void getBinaryDieInfoTest() throws ApiException { Integer binaryId = null; - String authorization = null; - BaseResponseListDieMatch response = api.getBinaryDieInfo(binaryId, authorization); + BaseResponseListDieMatch response = api.getBinaryDieInfo(binaryId); // TODO: test validations } @@ -95,8 +91,7 @@ public void getBinaryDieInfoTest() throws ApiException { @Test public void getBinaryExternalsTest() throws ApiException { Integer binaryId = null; - String authorization = null; - BaseResponseBinaryExternalsResponse response = api.getBinaryExternals(binaryId, authorization); + BaseResponseBinaryExternalsResponse response = api.getBinaryExternals(binaryId); // TODO: test validations } @@ -108,8 +103,7 @@ public void getBinaryExternalsTest() throws ApiException { @Test public void getRelatedBinariesTest() throws ApiException { Integer binaryId = null; - String authorization = null; - BaseResponseChildBinariesResponse response = api.getRelatedBinaries(binaryId, authorization); + BaseResponseChildBinariesResponse response = api.getRelatedBinaries(binaryId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/CollectionsApiTest.java b/src/test/java/ai/reveng/api/CollectionsApiTest.java index b6e1547..b7fb485 100644 --- a/src/test/java/ai/reveng/api/CollectionsApiTest.java +++ b/src/test/java/ai/reveng/api/CollectionsApiTest.java @@ -52,8 +52,7 @@ public class CollectionsApiTest { @Test public void createCollectionTest() throws ApiException { CollectionCreateRequest collectionCreateRequest = null; - String authorization = null; - BaseResponseCollectionResponse response = api.createCollection(collectionCreateRequest, authorization); + BaseResponseCollectionResponse response = api.createCollection(collectionCreateRequest); // TODO: test validations } @@ -67,8 +66,7 @@ public void createCollectionTest() throws ApiException { @Test public void deleteCollectionTest() throws ApiException { Integer collectionId = null; - String authorization = null; - BaseResponseBool response = api.deleteCollection(collectionId, authorization); + BaseResponseBool response = api.deleteCollection(collectionId); // TODO: test validations } @@ -84,8 +82,7 @@ public void getCollectionTest() throws ApiException { Integer collectionId = null; Boolean includeTags = null; Boolean includeBinaries = null; - String authorization = null; - BaseResponseCollectionResponse response = api.getCollection(collectionId, includeTags, includeBinaries, authorization); + BaseResponseCollectionResponse response = api.getCollection(collectionId, includeTags, includeBinaries); // TODO: test validations } @@ -104,8 +101,7 @@ public void listCollectionsTest() throws ApiException { Integer offset = null; AppApiRestV2CollectionsEnumsOrderBy orderBy = null; Order order = null; - String authorization = null; - BaseResponseListCollectionResults response = api.listCollections(searchTerm, filters, limit, offset, orderBy, order, authorization); + BaseResponseListCollectionResults response = api.listCollections(searchTerm, filters, limit, offset, orderBy, order); // TODO: test validations } @@ -120,8 +116,7 @@ public void listCollectionsTest() throws ApiException { public void updateCollectionTest() throws ApiException { Integer collectionId = null; CollectionUpdateRequest collectionUpdateRequest = null; - String authorization = null; - BaseResponseCollectionResponse response = api.updateCollection(collectionId, collectionUpdateRequest, authorization); + BaseResponseCollectionResponse response = api.updateCollection(collectionId, collectionUpdateRequest); // TODO: test validations } @@ -136,8 +131,7 @@ public void updateCollectionTest() throws ApiException { public void updateCollectionBinariesTest() throws ApiException { Integer collectionId = null; CollectionBinariesUpdateRequest collectionBinariesUpdateRequest = null; - String authorization = null; - BaseResponseCollectionBinariesUpdateResponse response = api.updateCollectionBinaries(collectionId, collectionBinariesUpdateRequest, authorization); + BaseResponseCollectionBinariesUpdateResponse response = api.updateCollectionBinaries(collectionId, collectionBinariesUpdateRequest); // TODO: test validations } @@ -152,8 +146,7 @@ public void updateCollectionBinariesTest() throws ApiException { public void updateCollectionTagsTest() throws ApiException { Integer collectionId = null; CollectionTagsUpdateRequest collectionTagsUpdateRequest = null; - String authorization = null; - BaseResponseCollectionTagsUpdateResponse response = api.updateCollectionTags(collectionId, collectionTagsUpdateRequest, authorization); + BaseResponseCollectionTagsUpdateResponse response = api.updateCollectionTags(collectionId, collectionTagsUpdateRequest); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/ConfidenceApiTest.java b/src/test/java/ai/reveng/api/ConfidenceApiTest.java index c1525b2..774872d 100644 --- a/src/test/java/ai/reveng/api/ConfidenceApiTest.java +++ b/src/test/java/ai/reveng/api/ConfidenceApiTest.java @@ -47,8 +47,7 @@ public class ConfidenceApiTest { public void getAnalysisTagScoreTest() throws ApiException { Integer analysisId = null; TagConfidenceBody tagConfidenceBody = null; - String authorization = null; - BaseResponseListTagOriginBoxPlotConfidence response = api.getAnalysisTagScore(analysisId, tagConfidenceBody, authorization); + BaseResponseListTagOriginBoxPlotConfidence response = api.getAnalysisTagScore(analysisId, tagConfidenceBody); // TODO: test validations } @@ -62,8 +61,7 @@ public void getAnalysisTagScoreTest() throws ApiException { @Test public void getAnalysisThreatScoreTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseBoxPlotConfidence response = api.getAnalysisThreatScore(analysisId, authorization); + BaseResponseBoxPlotConfidence response = api.getAnalysisThreatScore(analysisId); // TODO: test validations } @@ -77,8 +75,7 @@ public void getAnalysisThreatScoreTest() throws ApiException { @Test public void getFunctionsNameScoreTest() throws ApiException { FunctionNameConfidenceBody functionNameConfidenceBody = null; - String authorization = null; - BaseResponseListFunctionBoxPlotConfidence response = api.getFunctionsNameScore(functionNameConfidenceBody, authorization); + BaseResponseListFunctionBoxPlotConfidence response = api.getFunctionsNameScore(functionNameConfidenceBody); // TODO: test validations } @@ -92,8 +89,7 @@ public void getFunctionsNameScoreTest() throws ApiException { @Test public void getFunctionsThreatScoreTest() throws ApiException { ThreatScoreFunctionBody threatScoreFunctionBody = null; - String authorization = null; - BaseResponseListFunctionBoxPlotConfidence response = api.getFunctionsThreatScore(threatScoreFunctionBody, authorization); + BaseResponseListFunctionBoxPlotConfidence response = api.getFunctionsThreatScore(threatScoreFunctionBody); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/ExternalSourcesApiTest.java b/src/test/java/ai/reveng/api/ExternalSourcesApiTest.java index c31c40d..a84dc8f 100644 --- a/src/test/java/ai/reveng/api/ExternalSourcesApiTest.java +++ b/src/test/java/ai/reveng/api/ExternalSourcesApiTest.java @@ -41,8 +41,7 @@ public class ExternalSourcesApiTest { @Test public void createExternalTaskMbTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseStr response = api.createExternalTaskMb(analysisId, authorization); + BaseResponseStr response = api.createExternalTaskMb(analysisId); // TODO: test validations } @@ -54,8 +53,7 @@ public void createExternalTaskMbTest() throws ApiException { @Test public void createExternalTaskVtTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseStr response = api.createExternalTaskVt(analysisId, authorization); + BaseResponseStr response = api.createExternalTaskVt(analysisId); // TODO: test validations } @@ -67,8 +65,7 @@ public void createExternalTaskVtTest() throws ApiException { @Test public void getMbDataTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseExternalResponse response = api.getMbData(analysisId, authorization); + BaseResponseExternalResponse response = api.getMbData(analysisId); // TODO: test validations } @@ -80,8 +77,7 @@ public void getMbDataTest() throws ApiException { @Test public void getMbTaskStatusTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseTaskResponse response = api.getMbTaskStatus(analysisId, authorization); + BaseResponseTaskResponse response = api.getMbTaskStatus(analysisId); // TODO: test validations } @@ -93,8 +89,7 @@ public void getMbTaskStatusTest() throws ApiException { @Test public void getVtDataTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseExternalResponse response = api.getVtData(analysisId, authorization); + BaseResponseExternalResponse response = api.getVtData(analysisId); // TODO: test validations } @@ -106,8 +101,7 @@ public void getVtDataTest() throws ApiException { @Test public void getVtTaskStatusTest() throws ApiException { Integer analysisId = null; - String authorization = null; - BaseResponseTaskResponse response = api.getVtTaskStatus(analysisId, authorization); + BaseResponseTaskResponse response = api.getVtTaskStatus(analysisId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FirmwareApiTest.java b/src/test/java/ai/reveng/api/FirmwareApiTest.java index c1459df..e7621f9 100644 --- a/src/test/java/ai/reveng/api/FirmwareApiTest.java +++ b/src/test/java/ai/reveng/api/FirmwareApiTest.java @@ -41,8 +41,7 @@ public class FirmwareApiTest { @Test public void getBinariesForFirmwareTaskTest() throws ApiException { String taskId = null; - String authorization = null; - Object response = api.getBinariesForFirmwareTask(taskId, authorization); + Object response = api.getBinariesForFirmwareTask(taskId); // TODO: test validations } @@ -56,9 +55,8 @@ public void getBinariesForFirmwareTaskTest() throws ApiException { @Test public void uploadFirmwareTest() throws ApiException { File _file = null; - String authorization = null; String password = null; - Object response = api.uploadFirmware(_file, authorization, password); + Object response = api.uploadFirmware(_file, password); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FunctionsAiDecompilationApiTest.java b/src/test/java/ai/reveng/api/FunctionsAiDecompilationApiTest.java index d5a4269..9bd4939 100644 --- a/src/test/java/ai/reveng/api/FunctionsAiDecompilationApiTest.java +++ b/src/test/java/ai/reveng/api/FunctionsAiDecompilationApiTest.java @@ -50,8 +50,7 @@ public class FunctionsAiDecompilationApiTest { public void createAiDecompilationCommentTest() throws ApiException { Integer functionId = null; FunctionCommentCreateRequest functionCommentCreateRequest = null; - String authorization = null; - BaseResponseCommentResponse response = api.createAiDecompilationComment(functionId, functionCommentCreateRequest, authorization); + BaseResponseCommentResponse response = api.createAiDecompilationComment(functionId, functionCommentCreateRequest); // TODO: test validations } @@ -65,8 +64,7 @@ public void createAiDecompilationCommentTest() throws ApiException { @Test public void createAiDecompilationTaskTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponse response = api.createAiDecompilationTask(functionId, authorization); + BaseResponse response = api.createAiDecompilationTask(functionId); // TODO: test validations } @@ -81,8 +79,7 @@ public void createAiDecompilationTaskTest() throws ApiException { public void deleteAiDecompilationCommentTest() throws ApiException { Integer commentId = null; Integer functionId = null; - String authorization = null; - BaseResponseBool response = api.deleteAiDecompilationComment(commentId, functionId, authorization); + BaseResponseBool response = api.deleteAiDecompilationComment(commentId, functionId); // TODO: test validations } @@ -96,8 +93,7 @@ public void deleteAiDecompilationCommentTest() throws ApiException { @Test public void getAiDecompilationCommentsTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseListCommentResponse response = api.getAiDecompilationComments(functionId, authorization); + BaseResponseListCommentResponse response = api.getAiDecompilationComments(functionId); // TODO: test validations } @@ -109,8 +105,7 @@ public void getAiDecompilationCommentsTest() throws ApiException { @Test public void getAiDecompilationRatingTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseGetAiDecompilationRatingResponse response = api.getAiDecompilationRating(functionId, authorization); + BaseResponseGetAiDecompilationRatingResponse response = api.getAiDecompilationRating(functionId); // TODO: test validations } @@ -126,8 +121,7 @@ public void getAiDecompilationTaskResultTest() throws ApiException { Integer functionId = null; Boolean summarise = null; Boolean generateInlineComments = null; - String authorization = null; - BaseResponseGetAiDecompilationTask response = api.getAiDecompilationTaskResult(functionId, summarise, generateInlineComments, authorization); + BaseResponseGetAiDecompilationTask response = api.getAiDecompilationTaskResult(functionId, summarise, generateInlineComments); // TODO: test validations } @@ -139,8 +133,7 @@ public void getAiDecompilationTaskResultTest() throws ApiException { @Test public void getAiDecompilationTaskStatusTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseFunctionTaskResponse response = api.getAiDecompilationTaskStatus(functionId, authorization); + BaseResponseFunctionTaskResponse response = api.getAiDecompilationTaskStatus(functionId); // TODO: test validations } @@ -156,8 +149,7 @@ public void updateAiDecompilationCommentTest() throws ApiException { Integer commentId = null; Integer functionId = null; CommentUpdateRequest commentUpdateRequest = null; - String authorization = null; - BaseResponseCommentResponse response = api.updateAiDecompilationComment(commentId, functionId, commentUpdateRequest, authorization); + BaseResponseCommentResponse response = api.updateAiDecompilationComment(commentId, functionId, commentUpdateRequest); // TODO: test validations } @@ -170,8 +162,7 @@ public void updateAiDecompilationCommentTest() throws ApiException { public void upsertAiDecompilationRatingTest() throws ApiException { Integer functionId = null; UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest = null; - String authorization = null; - BaseResponse response = api.upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest, authorization); + BaseResponse response = api.upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FunctionsBlockCommentsApiTest.java b/src/test/java/ai/reveng/api/FunctionsBlockCommentsApiTest.java index 0be2c4e..278bf33 100644 --- a/src/test/java/ai/reveng/api/FunctionsBlockCommentsApiTest.java +++ b/src/test/java/ai/reveng/api/FunctionsBlockCommentsApiTest.java @@ -42,8 +42,7 @@ public class FunctionsBlockCommentsApiTest { public void generateBlockCommentsForBlockInFunctionTest() throws ApiException { Integer functionId = null; Block block = null; - String authorization = null; - BaseResponseBlockCommentsGenerationForFunctionResponse response = api.generateBlockCommentsForBlockInFunction(functionId, block, authorization); + BaseResponseBlockCommentsGenerationForFunctionResponse response = api.generateBlockCommentsForBlockInFunction(functionId, block); // TODO: test validations } @@ -55,8 +54,7 @@ public void generateBlockCommentsForBlockInFunctionTest() throws ApiException { @Test public void generateBlockCommentsForFunctionTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseBlockCommentsGenerationForFunctionResponse response = api.generateBlockCommentsForFunction(functionId, authorization); + BaseResponseBlockCommentsGenerationForFunctionResponse response = api.generateBlockCommentsForFunction(functionId); // TODO: test validations } @@ -68,8 +66,7 @@ public void generateBlockCommentsForFunctionTest() throws ApiException { @Test public void generateOverviewCommentForFunctionTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseBlockCommentsOverviewGenerationResponse response = api.generateOverviewCommentForFunction(functionId, authorization); + BaseResponseBlockCommentsOverviewGenerationResponse response = api.generateOverviewCommentForFunction(functionId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FunctionsCoreApiTest.java b/src/test/java/ai/reveng/api/FunctionsCoreApiTest.java index 5443a7e..fb7143e 100644 --- a/src/test/java/ai/reveng/api/FunctionsCoreApiTest.java +++ b/src/test/java/ai/reveng/api/FunctionsCoreApiTest.java @@ -55,8 +55,7 @@ public class FunctionsCoreApiTest { public void aiUnstripTest() throws ApiException { Integer analysisId = null; AiUnstripRequest aiUnstripRequest = null; - String authorization = null; - AutoUnstripResponse response = api.aiUnstrip(analysisId, aiUnstripRequest, authorization); + AutoUnstripResponse response = api.aiUnstrip(analysisId, aiUnstripRequest); // TODO: test validations } @@ -71,8 +70,7 @@ public void aiUnstripTest() throws ApiException { public void analysisFunctionMatchingTest() throws ApiException { Integer analysisId = null; AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest = null; - String authorization = null; - FunctionMatchingBatchResponse response = api.analysisFunctionMatching(analysisId, analysisFunctionMatchingRequest, authorization); + FunctionMatchingBatchResponse response = api.analysisFunctionMatching(analysisId, analysisFunctionMatchingRequest); // TODO: test validations } @@ -87,8 +85,7 @@ public void analysisFunctionMatchingTest() throws ApiException { public void autoUnstripTest() throws ApiException { Integer analysisId = null; AutoUnstripRequest autoUnstripRequest = null; - String authorization = null; - AutoUnstripResponse response = api.autoUnstrip(analysisId, autoUnstripRequest, authorization); + AutoUnstripResponse response = api.autoUnstrip(analysisId, autoUnstripRequest); // TODO: test validations } @@ -102,8 +99,7 @@ public void autoUnstripTest() throws ApiException { @Test public void batchFunctionMatchingTest() throws ApiException { FunctionMatchingRequest functionMatchingRequest = null; - String authorization = null; - FunctionMatchingBatchResponse response = api.batchFunctionMatching(functionMatchingRequest, authorization); + FunctionMatchingBatchResponse response = api.batchFunctionMatching(functionMatchingRequest); // TODO: test validations } @@ -117,8 +113,7 @@ public void batchFunctionMatchingTest() throws ApiException { @Test public void cancelAiUnstripTest() throws ApiException { Integer analysisId = null; - String authorization = null; - AutoUnstripResponse response = api.cancelAiUnstrip(analysisId, authorization); + AutoUnstripResponse response = api.cancelAiUnstrip(analysisId); // TODO: test validations } @@ -132,8 +127,7 @@ public void cancelAiUnstripTest() throws ApiException { @Test public void cancelAutoUnstripTest() throws ApiException { Integer analysisId = null; - String authorization = null; - AutoUnstripResponse response = api.cancelAutoUnstrip(analysisId, authorization); + AutoUnstripResponse response = api.cancelAutoUnstrip(analysisId); // TODO: test validations } @@ -151,8 +145,7 @@ public void getAnalysisStringsTest() throws ApiException { Integer pageSize = null; String search = null; String functionSearch = null; - String authorization = null; - BaseResponseAnalysisStringsResponse response = api.getAnalysisStrings(analysisId, page, pageSize, search, functionSearch, authorization); + BaseResponseAnalysisStringsResponse response = api.getAnalysisStrings(analysisId, page, pageSize, search, functionSearch); // TODO: test validations } @@ -166,8 +159,7 @@ public void getAnalysisStringsTest() throws ApiException { @Test public void getFunctionBlocksTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseFunctionBlocksResponse response = api.getFunctionBlocks(functionId, authorization); + BaseResponseFunctionBlocksResponse response = api.getFunctionBlocks(functionId); // TODO: test validations } @@ -179,8 +171,7 @@ public void getFunctionBlocksTest() throws ApiException { @Test public void getFunctionCalleesCallersTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseCalleesCallerFunctionsResponse response = api.getFunctionCalleesCallers(functionId, authorization); + BaseResponseCalleesCallerFunctionsResponse response = api.getFunctionCalleesCallers(functionId); // TODO: test validations } @@ -192,8 +183,7 @@ public void getFunctionCalleesCallersTest() throws ApiException { @Test public void getFunctionCapabilitiesTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseFunctionCapabilityResponse response = api.getFunctionCapabilities(functionId, authorization); + BaseResponseFunctionCapabilityResponse response = api.getFunctionCapabilities(functionId); // TODO: test validations } @@ -205,8 +195,7 @@ public void getFunctionCapabilitiesTest() throws ApiException { @Test public void getFunctionDetailsTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseFunctionsDetailResponse response = api.getFunctionDetails(functionId, authorization); + BaseResponseFunctionsDetailResponse response = api.getFunctionDetails(functionId); // TODO: test validations } @@ -223,8 +212,7 @@ public void getFunctionStringsTest() throws ApiException { Integer page = null; Integer pageSize = null; String search = null; - String authorization = null; - BaseResponseFunctionStringsResponse response = api.getFunctionStrings(functionId, page, pageSize, search, authorization); + BaseResponseFunctionStringsResponse response = api.getFunctionStrings(functionId, page, pageSize, search); // TODO: test validations } @@ -242,8 +230,7 @@ public void getSimilarFunctionsTest() throws ApiException { Boolean debug = null; List debugTypes = null; List binaryIds = null; - String authorization = null; - BaseResponseListSimilarFunctionsResponse response = api.getSimilarFunctions(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds, authorization); + BaseResponseListSimilarFunctionsResponse response = api.getSimilarFunctions(functionId, limit, distance, collectionIds, debug, debugTypes, binaryIds); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FunctionsDataTypesApiTest.java b/src/test/java/ai/reveng/api/FunctionsDataTypesApiTest.java index 3cdc366..7126334 100644 --- a/src/test/java/ai/reveng/api/FunctionsDataTypesApiTest.java +++ b/src/test/java/ai/reveng/api/FunctionsDataTypesApiTest.java @@ -47,8 +47,7 @@ public class FunctionsDataTypesApiTest { public void generateFunctionDataTypesForAnalysisTest() throws ApiException { Integer analysisId = null; FunctionDataTypesParams functionDataTypesParams = null; - String authorization = null; - BaseResponseGenerateFunctionDataTypes response = api.generateFunctionDataTypesForAnalysis(analysisId, functionDataTypesParams, authorization); + BaseResponseGenerateFunctionDataTypes response = api.generateFunctionDataTypesForAnalysis(analysisId, functionDataTypesParams); // TODO: test validations } @@ -62,8 +61,7 @@ public void generateFunctionDataTypesForAnalysisTest() throws ApiException { @Test public void generateFunctionDataTypesForFunctionsTest() throws ApiException { FunctionDataTypesParams functionDataTypesParams = null; - String authorization = null; - BaseResponseGenerationStatusList response = api.generateFunctionDataTypesForFunctions(functionDataTypesParams, authorization); + BaseResponseGenerationStatusList response = api.generateFunctionDataTypesForFunctions(functionDataTypesParams); // TODO: test validations } @@ -78,8 +76,7 @@ public void generateFunctionDataTypesForFunctionsTest() throws ApiException { public void getFunctionDataTypesTest() throws ApiException { Integer analysisId = null; Integer functionId = null; - String authorization = null; - BaseResponseFunctionDataTypes response = api.getFunctionDataTypes(analysisId, functionId, authorization); + BaseResponseFunctionDataTypes response = api.getFunctionDataTypes(analysisId, functionId); // TODO: test validations } @@ -94,8 +91,7 @@ public void getFunctionDataTypesTest() throws ApiException { public void listFunctionDataTypesForAnalysisTest() throws ApiException { Integer analysisId = null; List functionIds = null; - String authorization = null; - BaseResponseFunctionDataTypesList response = api.listFunctionDataTypesForAnalysis(analysisId, functionIds, authorization); + BaseResponseFunctionDataTypesList response = api.listFunctionDataTypesForAnalysis(analysisId, functionIds); // TODO: test validations } @@ -109,8 +105,7 @@ public void listFunctionDataTypesForAnalysisTest() throws ApiException { @Test public void listFunctionDataTypesForFunctionsTest() throws ApiException { List functionIds = null; - String authorization = null; - BaseResponseFunctionDataTypesList response = api.listFunctionDataTypesForFunctions(functionIds, authorization); + BaseResponseFunctionDataTypesList response = api.listFunctionDataTypesForFunctions(functionIds); // TODO: test validations } @@ -126,8 +121,7 @@ public void updateFunctionDataTypesTest() throws ApiException { Integer analysisId = null; Integer functionId = null; UpdateFunctionDataTypes updateFunctionDataTypes = null; - String authorization = null; - BaseResponseFunctionDataTypes response = api.updateFunctionDataTypes(analysisId, functionId, updateFunctionDataTypes, authorization); + BaseResponseFunctionDataTypes response = api.updateFunctionDataTypes(analysisId, functionId, updateFunctionDataTypes); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FunctionsDecompilationApiTest.java b/src/test/java/ai/reveng/api/FunctionsDecompilationApiTest.java index f1f63aa..24a9d9b 100644 --- a/src/test/java/ai/reveng/api/FunctionsDecompilationApiTest.java +++ b/src/test/java/ai/reveng/api/FunctionsDecompilationApiTest.java @@ -46,8 +46,7 @@ public class FunctionsDecompilationApiTest { @Test public void checkFunctionDecompilationTaskTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseFunctionTaskResponse response = api.checkFunctionDecompilationTask(functionId, authorization); + BaseResponseFunctionTaskResponse response = api.checkFunctionDecompilationTask(functionId); // TODO: test validations } @@ -62,8 +61,7 @@ public void checkFunctionDecompilationTaskTest() throws ApiException { public void createDecompilationCommentTest() throws ApiException { Integer functionId = null; FunctionCommentCreateRequest functionCommentCreateRequest = null; - String authorization = null; - BaseResponseCommentResponse response = api.createDecompilationComment(functionId, functionCommentCreateRequest, authorization); + BaseResponseCommentResponse response = api.createDecompilationComment(functionId, functionCommentCreateRequest); // TODO: test validations } @@ -75,8 +73,7 @@ public void createDecompilationCommentTest() throws ApiException { @Test public void createFunctionDecompilationTaskTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseStr response = api.createFunctionDecompilationTask(functionId, authorization); + BaseResponseStr response = api.createFunctionDecompilationTask(functionId); // TODO: test validations } @@ -91,8 +88,7 @@ public void createFunctionDecompilationTaskTest() throws ApiException { public void deleteDecompilationCommentTest() throws ApiException { Integer commentId = null; Integer functionId = null; - String authorization = null; - BaseResponseBool response = api.deleteDecompilationComment(commentId, functionId, authorization); + BaseResponseBool response = api.deleteDecompilationComment(commentId, functionId); // TODO: test validations } @@ -106,8 +102,7 @@ public void deleteDecompilationCommentTest() throws ApiException { @Test public void getDecompilationCommentsTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseListCommentResponse response = api.getDecompilationComments(functionId, authorization); + BaseResponseListCommentResponse response = api.getDecompilationComments(functionId); // TODO: test validations } @@ -119,8 +114,7 @@ public void getDecompilationCommentsTest() throws ApiException { @Test public void getFunctionDecompilationTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseDecompilationResponse response = api.getFunctionDecompilation(functionId, authorization); + BaseResponseDecompilationResponse response = api.getFunctionDecompilation(functionId); // TODO: test validations } @@ -136,8 +130,7 @@ public void updateDecompilationCommentTest() throws ApiException { Integer commentId = null; Integer functionId = null; CommentUpdateRequest commentUpdateRequest = null; - String authorization = null; - BaseResponseCommentResponse response = api.updateDecompilationComment(commentId, functionId, commentUpdateRequest, authorization); + BaseResponseCommentResponse response = api.updateDecompilationComment(commentId, functionId, commentUpdateRequest); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/FunctionsRenamingHistoryApiTest.java b/src/test/java/ai/reveng/api/FunctionsRenamingHistoryApiTest.java index 12a810a..2284c0a 100644 --- a/src/test/java/ai/reveng/api/FunctionsRenamingHistoryApiTest.java +++ b/src/test/java/ai/reveng/api/FunctionsRenamingHistoryApiTest.java @@ -43,8 +43,7 @@ public class FunctionsRenamingHistoryApiTest { @Test public void batchRenameFunctionTest() throws ApiException { FunctionsListRename functionsListRename = null; - String authorization = null; - BaseResponse response = api.batchRenameFunction(functionsListRename, authorization); + BaseResponse response = api.batchRenameFunction(functionsListRename); // TODO: test validations } @@ -58,8 +57,7 @@ public void batchRenameFunctionTest() throws ApiException { @Test public void getFunctionNameHistoryTest() throws ApiException { Integer functionId = null; - String authorization = null; - BaseResponseListFunctionNameHistory response = api.getFunctionNameHistory(functionId, authorization); + BaseResponseListFunctionNameHistory response = api.getFunctionNameHistory(functionId); // TODO: test validations } @@ -74,8 +72,7 @@ public void getFunctionNameHistoryTest() throws ApiException { public void renameFunctionIdTest() throws ApiException { Integer functionId = null; FunctionRename functionRename = null; - String authorization = null; - BaseResponse response = api.renameFunctionId(functionId, functionRename, authorization); + BaseResponse response = api.renameFunctionId(functionId, functionRename); // TODO: test validations } @@ -90,8 +87,7 @@ public void renameFunctionIdTest() throws ApiException { public void revertFunctionNameTest() throws ApiException { Integer functionId = null; Integer historyId = null; - String authorization = null; - BaseResponse response = api.revertFunctionName(functionId, historyId, authorization); + BaseResponse response = api.revertFunctionName(functionId, historyId); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/ModelsApiTest.java b/src/test/java/ai/reveng/api/ModelsApiTest.java index 1d5596c..15f772e 100644 --- a/src/test/java/ai/reveng/api/ModelsApiTest.java +++ b/src/test/java/ai/reveng/api/ModelsApiTest.java @@ -40,8 +40,7 @@ public class ModelsApiTest { */ @Test public void getModelsTest() throws ApiException { - String authorization = null; - BaseResponseModelsResponse response = api.getModels(authorization); + BaseResponseModelsResponse response = api.getModels(); // TODO: test validations } diff --git a/src/test/java/ai/reveng/api/SearchApiTest.java b/src/test/java/ai/reveng/api/SearchApiTest.java index bc14692..ac63d77 100644 --- a/src/test/java/ai/reveng/api/SearchApiTest.java +++ b/src/test/java/ai/reveng/api/SearchApiTest.java @@ -53,8 +53,7 @@ public void searchBinariesTest() throws ApiException { List tags = null; String modelName = null; Boolean userFilesOnly = null; - String authorization = null; - BaseResponseBinarySearchResponse response = api.searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly, authorization); + BaseResponseBinarySearchResponse response = api.searchBinaries(page, pageSize, partialName, partialSha256, tags, modelName, userFilesOnly); // TODO: test validations } @@ -77,8 +76,7 @@ public void searchCollectionsTest() throws ApiException { List filters = null; AppApiRestV2CollectionsEnumsOrderBy orderBy = null; Order orderByDirection = null; - String authorization = null; - BaseResponseCollectionSearchResponse response = api.searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection, authorization); + BaseResponseCollectionSearchResponse response = api.searchCollections(page, pageSize, partialCollectionName, partialBinaryName, partialBinarySha256, tags, modelName, filters, orderBy, orderByDirection); // TODO: test validations } @@ -95,8 +93,7 @@ public void searchFunctionsTest() throws ApiException { Integer pageSize = null; String partialName = null; String modelName = null; - String authorization = null; - BaseResponseFunctionSearchResponse response = api.searchFunctions(page, pageSize, partialName, modelName, authorization); + BaseResponseFunctionSearchResponse response = api.searchFunctions(page, pageSize, partialName, modelName); // TODO: test validations } diff --git a/src/test/java/ai/reveng/model/FunctionBoundaryTest.java b/src/test/java/ai/reveng/model/FunctionBoundaryTest.java index 78cdd4a..da433af 100644 --- a/src/test/java/ai/reveng/model/FunctionBoundaryTest.java +++ b/src/test/java/ai/reveng/model/FunctionBoundaryTest.java @@ -37,11 +37,11 @@ public void testFunctionBoundary() { } /** - * Test the property 'name' + * Test the property 'mangledName' */ @Test - public void nameTest() { - // TODO: test name + public void mangledNameTest() { + // TODO: test mangledName } /** diff --git a/templates/generatedAnnotation.mustache b/templates/generatedAnnotation.mustache new file mode 100644 index 0000000..f408f31 --- /dev/null +++ b/templates/generatedAnnotation.mustache @@ -0,0 +1 @@ +@{{javaxPackage}}.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}}) \ No newline at end of file