You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*AnalysesCoreApi* | [**get_analysis_status**](docs/AnalysesCoreApi.md#get_analysis_status) | **GET** /v2/analyses/{analysis_id}/status | Gets the status of an analysis
56
56
*AnalysesCoreApi* | [**get_binary_ann**](docs/AnalysesCoreApi.md#get_binary_ann) | **POST** /v2/binary_ann/{analysis_id} | Binary Ann
57
-
*AnalysesCoreApi* | [**get_symbol_info_for_binary**](docs/AnalysesCoreApi.md#get_symbol_info_for_binary) | **GET** /v2/analyses/symbol_info/{binary_id} | Gets the symbol information of a binary
58
57
*AnalysesCoreApi* | [**list_analyses**](docs/AnalysesCoreApi.md#list_analyses) | **GET** /v2/analyses/list | Gets the most recent analyses
59
58
*AnalysesCoreApi* | [**lookup_binary_id**](docs/AnalysesCoreApi.md#lookup_binary_id) | **GET** /v2/analyses/lookup/{binary_id} | Gets the analysis ID from binary ID
[**get_analysis_params**](AnalysesCoreApi.md#get_analysis_params) | **GET** /v2/analyses/{analysis_id}/params | Gets analysis param information
14
14
[**get_analysis_status**](AnalysesCoreApi.md#get_analysis_status) | **GET** /v2/analyses/{analysis_id}/status | Gets the status of an analysis
15
15
[**get_binary_ann**](AnalysesCoreApi.md#get_binary_ann) | **POST** /v2/binary_ann/{analysis_id} | Binary Ann
16
-
[**get_symbol_info_for_binary**](AnalysesCoreApi.md#get_symbol_info_for_binary) | **GET** /v2/analyses/symbol_info/{binary_id} | Gets the symbol information of a binary
17
16
[**list_analyses**](AnalysesCoreApi.md#list_analyses) | **GET** /v2/analyses/list | Gets the most recent analyses
18
17
[**lookup_binary_id**](AnalysesCoreApi.md#lookup_binary_id) | **GET** /v2/analyses/lookup/{binary_id} | Gets the analysis ID from binary ID
@@ -771,90 +770,6 @@ Name | Type | Description | Notes
771
770
772
771
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/FunctionsCoreApi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -893,10 +893,10 @@ with revengai.ApiClient(configuration) as api_client:
893
893
function_id =56# int |
894
894
limit =20# int | Number of similar functions to return (optional) (default to 20)
895
895
distance =1.0# float | Maximum cosine distance (optional) (default to 1.0)
896
-
collection_ids = [] # List[int] | Collection filtering by IDs (optional) (default to [])
896
+
collection_ids = [] # List[Optional[int]] | Collection filtering by IDs (optional) (default to [])
897
897
debug =False# bool | Only return matching debug functions (optional) (default to False)
898
898
debug_types = ["SYSTEM"] # List[str] | If limiting results to functions with debug names, which type of debug names to include? (optional) (default to ["SYSTEM"])
899
-
binary_ids = [] # List[int] | Limit similar functions to specific binaries (optional) (default to [])
899
+
binary_ids = [] # List[Optional[int]] | Limit similar functions to specific binaries (optional) (default to [])
900
900
authorization ='authorization_example'# str | API Key bearer token (optional)
901
901
902
902
try:
@@ -918,10 +918,10 @@ Name | Type | Description | Notes
918
918
**function_id** | **int**| |
919
919
**limit** | **int**| Number of similar functions to return | [optional][default to 20]
920
920
**distance** | **float**| Maximum cosine distance | [optional][default to 1.0]
921
-
**collection_ids** | [**List[int]**](int.md)| Collection filtering by IDs | [optional][default to []]
921
+
**collection_ids** | [**List[Optional[int]]**](int.md)| Collection filtering by IDs | [optional][default to []]
922
922
**debug** | **bool**| Only return matching debug functions | [optional][default to False]
923
923
**debug_types** | [**List[str]**](str.md)| If limiting results to functions with debug names, which type of debug names to include? | [optional][default to ["SYSTEM"]]
924
-
**binary_ids** | [**List[int]**](int.md)| Limit similar functions to specific binaries | [optional][default to []]
924
+
**binary_ids** | [**List[Optional[int]]**](int.md)| Limit similar functions to specific binaries | [optional][default to []]
925
925
**authorization** | **str**| API Key bearer token | [optional]
0 commit comments