|
28 | 28 | from revengai.models.base_response_function_capability_response import BaseResponseFunctionCapabilityResponse |
29 | 29 | from revengai.models.base_response_function_strings_response import BaseResponseFunctionStringsResponse |
30 | 30 | from revengai.models.base_response_functions_detail_response import BaseResponseFunctionsDetailResponse |
31 | | -from revengai.models.function_matching_batch_response import FunctionMatchingBatchResponse |
32 | 31 | from revengai.models.function_matching_request import FunctionMatchingRequest |
| 32 | +from revengai.models.function_matching_response import FunctionMatchingResponse |
33 | 33 |
|
34 | 34 | from revengai.api_client import ApiClient, RequestSerialized |
35 | 35 | from revengai.api_response import ApiResponse |
@@ -358,7 +358,7 @@ def analysis_function_matching( |
358 | 358 | _content_type: Optional[StrictStr] = None, |
359 | 359 | _headers: Optional[Dict[StrictStr, Any]] = None, |
360 | 360 | _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, |
361 | | - ) -> FunctionMatchingBatchResponse: |
| 361 | + ) -> FunctionMatchingResponse: |
362 | 362 | """Perform matching for the functions of an analysis |
363 | 363 |
|
364 | 364 | 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 |
@@ -399,7 +399,7 @@ def analysis_function_matching( |
399 | 399 | ) |
400 | 400 |
|
401 | 401 | _response_types_map: Dict[str, Optional[str]] = { |
402 | | - '200': "FunctionMatchingBatchResponse", |
| 402 | + '200': "FunctionMatchingResponse", |
403 | 403 | '422': "BaseResponse", |
404 | 404 | } |
405 | 405 | response_data = self.api_client.call_api( |
@@ -430,7 +430,7 @@ def analysis_function_matching_with_http_info( |
430 | 430 | _content_type: Optional[StrictStr] = None, |
431 | 431 | _headers: Optional[Dict[StrictStr, Any]] = None, |
432 | 432 | _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, |
433 | | - ) -> ApiResponse[FunctionMatchingBatchResponse]: |
| 433 | + ) -> ApiResponse[FunctionMatchingResponse]: |
434 | 434 | """Perform matching for the functions of an analysis |
435 | 435 |
|
436 | 436 | 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 |
@@ -471,7 +471,7 @@ def analysis_function_matching_with_http_info( |
471 | 471 | ) |
472 | 472 |
|
473 | 473 | _response_types_map: Dict[str, Optional[str]] = { |
474 | | - '200': "FunctionMatchingBatchResponse", |
| 474 | + '200': "FunctionMatchingResponse", |
475 | 475 | '422': "BaseResponse", |
476 | 476 | } |
477 | 477 | response_data = self.api_client.call_api( |
@@ -543,7 +543,7 @@ def analysis_function_matching_without_preload_content( |
543 | 543 | ) |
544 | 544 |
|
545 | 545 | _response_types_map: Dict[str, Optional[str]] = { |
546 | | - '200': "FunctionMatchingBatchResponse", |
| 546 | + '200': "FunctionMatchingResponse", |
547 | 547 | '422': "BaseResponse", |
548 | 548 | } |
549 | 549 | response_data = self.api_client.call_api( |
@@ -941,7 +941,7 @@ def batch_function_matching( |
941 | 941 | _content_type: Optional[StrictStr] = None, |
942 | 942 | _headers: Optional[Dict[StrictStr, Any]] = None, |
943 | 943 | _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, |
944 | | - ) -> FunctionMatchingBatchResponse: |
| 944 | + ) -> FunctionMatchingResponse: |
945 | 945 | """Perform function matching for an arbitrary batch of functions, binaries or collections |
946 | 946 |
|
947 | 947 | Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system |
@@ -979,7 +979,7 @@ def batch_function_matching( |
979 | 979 | ) |
980 | 980 |
|
981 | 981 | _response_types_map: Dict[str, Optional[str]] = { |
982 | | - '200': "FunctionMatchingBatchResponse", |
| 982 | + '200': "FunctionMatchingResponse", |
983 | 983 | '422': "BaseResponse", |
984 | 984 | } |
985 | 985 | response_data = self.api_client.call_api( |
@@ -1009,7 +1009,7 @@ def batch_function_matching_with_http_info( |
1009 | 1009 | _content_type: Optional[StrictStr] = None, |
1010 | 1010 | _headers: Optional[Dict[StrictStr, Any]] = None, |
1011 | 1011 | _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, |
1012 | | - ) -> ApiResponse[FunctionMatchingBatchResponse]: |
| 1012 | + ) -> ApiResponse[FunctionMatchingResponse]: |
1013 | 1013 | """Perform function matching for an arbitrary batch of functions, binaries or collections |
1014 | 1014 |
|
1015 | 1015 | Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system |
@@ -1047,7 +1047,7 @@ def batch_function_matching_with_http_info( |
1047 | 1047 | ) |
1048 | 1048 |
|
1049 | 1049 | _response_types_map: Dict[str, Optional[str]] = { |
1050 | | - '200': "FunctionMatchingBatchResponse", |
| 1050 | + '200': "FunctionMatchingResponse", |
1051 | 1051 | '422': "BaseResponse", |
1052 | 1052 | } |
1053 | 1053 | response_data = self.api_client.call_api( |
@@ -1115,7 +1115,7 @@ def batch_function_matching_without_preload_content( |
1115 | 1115 | ) |
1116 | 1116 |
|
1117 | 1117 | _response_types_map: Dict[str, Optional[str]] = { |
1118 | | - '200': "FunctionMatchingBatchResponse", |
| 1118 | + '200': "FunctionMatchingResponse", |
1119 | 1119 | '422': "BaseResponse", |
1120 | 1120 | } |
1121 | 1121 | response_data = self.api_client.call_api( |
|
0 commit comments