revengai 2.74.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (314) hide show
  1. revengai/__init__.py +647 -0
  2. revengai/api/__init__.py +22 -0
  3. revengai/api/analyses_comments_api.py +1198 -0
  4. revengai/api/analyses_core_api.py +3870 -0
  5. revengai/api/analyses_dynamic_execution_api.py +1884 -0
  6. revengai/api/analyses_results_metadata_api.py +2240 -0
  7. revengai/api/analyses_security_checks_api.py +862 -0
  8. revengai/api/authentication_users_api.py +1323 -0
  9. revengai/api/binaries_api.py +1610 -0
  10. revengai/api/collections_api.py +2167 -0
  11. revengai/api/external_sources_api.py +827 -0
  12. revengai/api/firmware_api.py +592 -0
  13. revengai/api/functions_ai_decompilation_api.py +2592 -0
  14. revengai/api/functions_block_comments_api.py +849 -0
  15. revengai/api/functions_core_api.py +3430 -0
  16. revengai/api/functions_data_types_api.py +1746 -0
  17. revengai/api/functions_decompilation_api.py +1198 -0
  18. revengai/api/functions_renaming_history_api.py +1151 -0
  19. revengai/api/models_api.py +284 -0
  20. revengai/api/search_api.py +1454 -0
  21. revengai/api_client.py +803 -0
  22. revengai/api_response.py +21 -0
  23. revengai/configuration.py +605 -0
  24. revengai/exceptions.py +215 -0
  25. revengai/models/__init__.py +298 -0
  26. revengai/models/addr.py +143 -0
  27. revengai/models/ai_decompilation_rating.py +37 -0
  28. revengai/models/ai_unstrip_request.py +86 -0
  29. revengai/models/analysis_access_info.py +88 -0
  30. revengai/models/analysis_config.py +106 -0
  31. revengai/models/analysis_create_request.py +131 -0
  32. revengai/models/analysis_create_response.py +88 -0
  33. revengai/models/analysis_detail_response.py +121 -0
  34. revengai/models/analysis_function_mapping.py +90 -0
  35. revengai/models/analysis_function_matching_request.py +110 -0
  36. revengai/models/analysis_functions.py +94 -0
  37. revengai/models/analysis_functions_list.py +94 -0
  38. revengai/models/analysis_record.py +128 -0
  39. revengai/models/analysis_scope.py +36 -0
  40. revengai/models/analysis_strings_response.py +96 -0
  41. revengai/models/analysis_tags.py +94 -0
  42. revengai/models/analysis_update_request.py +108 -0
  43. revengai/models/analysis_update_tags_request.py +86 -0
  44. revengai/models/analysis_update_tags_response.py +94 -0
  45. revengai/models/app_api_rest_v2_analyses_enums_dynamic_execution_status.py +38 -0
  46. revengai/models/app_api_rest_v2_analyses_enums_order_by.py +37 -0
  47. revengai/models/app_api_rest_v2_collections_enums_order_by.py +40 -0
  48. revengai/models/app_api_rest_v2_functions_responses_function.py +93 -0
  49. revengai/models/app_api_rest_v2_functions_types_function.py +110 -0
  50. revengai/models/app_services_dynamic_execution_schemas_dynamic_execution_status.py +86 -0
  51. revengai/models/argument.py +99 -0
  52. revengai/models/auto_unstrip_request.py +99 -0
  53. revengai/models/auto_unstrip_response.py +129 -0
  54. revengai/models/base_response.py +124 -0
  55. revengai/models/base_response_analysis_create_response.py +125 -0
  56. revengai/models/base_response_analysis_detail_response.py +125 -0
  57. revengai/models/base_response_analysis_function_mapping.py +125 -0
  58. revengai/models/base_response_analysis_functions.py +125 -0
  59. revengai/models/base_response_analysis_functions_list.py +125 -0
  60. revengai/models/base_response_analysis_strings_response.py +125 -0
  61. revengai/models/base_response_analysis_tags.py +125 -0
  62. revengai/models/base_response_analysis_update_tags_response.py +125 -0
  63. revengai/models/base_response_basic.py +125 -0
  64. revengai/models/base_response_binary_additional_response.py +125 -0
  65. revengai/models/base_response_binary_details_response.py +125 -0
  66. revengai/models/base_response_binary_externals_response.py +125 -0
  67. revengai/models/base_response_binary_search_response.py +125 -0
  68. revengai/models/base_response_block_comments_generation_for_function_response.py +125 -0
  69. revengai/models/base_response_block_comments_overview_generation_response.py +116 -0
  70. revengai/models/base_response_bool.py +121 -0
  71. revengai/models/base_response_callees_caller_functions_response.py +125 -0
  72. revengai/models/base_response_capabilities.py +125 -0
  73. revengai/models/base_response_check_security_checks_task_response.py +125 -0
  74. revengai/models/base_response_child_binaries_response.py +125 -0
  75. revengai/models/base_response_collection_binaries_update_response.py +125 -0
  76. revengai/models/base_response_collection_response.py +125 -0
  77. revengai/models/base_response_collection_search_response.py +125 -0
  78. revengai/models/base_response_collection_tags_update_response.py +125 -0
  79. revengai/models/base_response_comment_response.py +125 -0
  80. revengai/models/base_response_communities.py +125 -0
  81. revengai/models/base_response_created.py +125 -0
  82. revengai/models/base_response_dict.py +121 -0
  83. revengai/models/base_response_dynamic_execution_status.py +125 -0
  84. revengai/models/base_response_external_response.py +125 -0
  85. revengai/models/base_response_function_blocks_response.py +125 -0
  86. revengai/models/base_response_function_capability_response.py +125 -0
  87. revengai/models/base_response_function_data_types.py +125 -0
  88. revengai/models/base_response_function_data_types_list.py +125 -0
  89. revengai/models/base_response_function_search_response.py +125 -0
  90. revengai/models/base_response_function_strings_response.py +125 -0
  91. revengai/models/base_response_function_task_response.py +125 -0
  92. revengai/models/base_response_functions_detail_response.py +125 -0
  93. revengai/models/base_response_generate_function_data_types.py +125 -0
  94. revengai/models/base_response_generation_status_list.py +125 -0
  95. revengai/models/base_response_get_ai_decompilation_rating_response.py +125 -0
  96. revengai/models/base_response_get_ai_decompilation_task.py +125 -0
  97. revengai/models/base_response_get_me_response.py +125 -0
  98. revengai/models/base_response_get_public_user_response.py +125 -0
  99. revengai/models/base_response_list_collection_results.py +125 -0
  100. revengai/models/base_response_list_comment_response.py +129 -0
  101. revengai/models/base_response_list_die_match.py +129 -0
  102. revengai/models/base_response_list_function_name_history.py +129 -0
  103. revengai/models/base_response_list_sbom.py +129 -0
  104. revengai/models/base_response_list_user_activity_response.py +129 -0
  105. revengai/models/base_response_login_response.py +125 -0
  106. revengai/models/base_response_logs.py +125 -0
  107. revengai/models/base_response_models_response.py +125 -0
  108. revengai/models/base_response_network_overview_response.py +125 -0
  109. revengai/models/base_response_params.py +125 -0
  110. revengai/models/base_response_process_dumps.py +125 -0
  111. revengai/models/base_response_process_registry.py +125 -0
  112. revengai/models/base_response_process_tree.py +125 -0
  113. revengai/models/base_response_queued_security_checks_task_response.py +125 -0
  114. revengai/models/base_response_recent.py +125 -0
  115. revengai/models/base_response_security_checks_response.py +125 -0
  116. revengai/models/base_response_status.py +125 -0
  117. revengai/models/base_response_str.py +121 -0
  118. revengai/models/base_response_tag_search_response.py +125 -0
  119. revengai/models/base_response_task_response.py +125 -0
  120. revengai/models/base_response_ttps.py +125 -0
  121. revengai/models/base_response_upload_response.py +125 -0
  122. revengai/models/base_response_vulnerabilities.py +125 -0
  123. revengai/models/basic.py +116 -0
  124. revengai/models/binary_additional_details_data_response.py +112 -0
  125. revengai/models/binary_additional_response.py +105 -0
  126. revengai/models/binary_config.py +108 -0
  127. revengai/models/binary_details_response.py +125 -0
  128. revengai/models/binary_externals_response.py +95 -0
  129. revengai/models/binary_search_response.py +94 -0
  130. revengai/models/binary_search_result.py +108 -0
  131. revengai/models/binary_task_status.py +39 -0
  132. revengai/models/block.py +86 -0
  133. revengai/models/block_comments_generation_for_function_response.py +86 -0
  134. revengai/models/callee_function_info.py +106 -0
  135. revengai/models/callees_caller_functions_response.py +106 -0
  136. revengai/models/caller_function_info.py +106 -0
  137. revengai/models/capabilities.py +94 -0
  138. revengai/models/capability.py +90 -0
  139. revengai/models/check_security_checks_task_response.py +87 -0
  140. revengai/models/child_binaries_response.py +104 -0
  141. revengai/models/code_signature_model.py +98 -0
  142. revengai/models/collection_binaries_update_request.py +86 -0
  143. revengai/models/collection_binaries_update_response.py +94 -0
  144. revengai/models/collection_binary_response.py +97 -0
  145. revengai/models/collection_create_request.py +107 -0
  146. revengai/models/collection_list_item.py +112 -0
  147. revengai/models/collection_response.py +131 -0
  148. revengai/models/collection_response_binaries_inner.py +135 -0
  149. revengai/models/collection_scope.py +38 -0
  150. revengai/models/collection_search_response.py +94 -0
  151. revengai/models/collection_search_result.py +124 -0
  152. revengai/models/collection_tags_update_request.py +86 -0
  153. revengai/models/collection_tags_update_response.py +86 -0
  154. revengai/models/collection_update_request.py +106 -0
  155. revengai/models/comment_base.py +86 -0
  156. revengai/models/comment_response.py +110 -0
  157. revengai/models/comment_update_request.py +86 -0
  158. revengai/models/communities.py +100 -0
  159. revengai/models/community_match_percentages.py +92 -0
  160. revengai/models/confidence_type.py +39 -0
  161. revengai/models/context.py +141 -0
  162. revengai/models/created.py +90 -0
  163. revengai/models/decompilation_comment_context.py +98 -0
  164. revengai/models/die_match.py +92 -0
  165. revengai/models/dynamic_execution_status_input.py +38 -0
  166. revengai/models/elf_dynamic_entry.py +88 -0
  167. revengai/models/elf_import_model.py +88 -0
  168. revengai/models/elf_model.py +179 -0
  169. revengai/models/elf_relocation.py +98 -0
  170. revengai/models/elf_section.py +104 -0
  171. revengai/models/elf_security.py +94 -0
  172. revengai/models/elf_segment.py +102 -0
  173. revengai/models/elf_symbol.py +98 -0
  174. revengai/models/entrypoint_model.py +88 -0
  175. revengai/models/enumeration.py +97 -0
  176. revengai/models/error_model.py +88 -0
  177. revengai/models/export_model.py +88 -0
  178. revengai/models/external_response.py +91 -0
  179. revengai/models/file_format.py +37 -0
  180. revengai/models/file_hashes.py +140 -0
  181. revengai/models/file_metadata.py +96 -0
  182. revengai/models/filters.py +39 -0
  183. revengai/models/function_block_destination_response.py +95 -0
  184. revengai/models/function_block_response.py +109 -0
  185. revengai/models/function_blocks_response.py +121 -0
  186. revengai/models/function_boundary.py +90 -0
  187. revengai/models/function_capability_response.py +86 -0
  188. revengai/models/function_comment_create_request.py +92 -0
  189. revengai/models/function_data_types.py +106 -0
  190. revengai/models/function_data_types_list.py +98 -0
  191. revengai/models/function_data_types_list_item.py +108 -0
  192. revengai/models/function_data_types_params.py +86 -0
  193. revengai/models/function_data_types_status.py +90 -0
  194. revengai/models/function_header.py +112 -0
  195. revengai/models/function_info_input.py +105 -0
  196. revengai/models/function_info_input_func_deps_inner.py +163 -0
  197. revengai/models/function_info_output.py +105 -0
  198. revengai/models/function_list_item.py +96 -0
  199. revengai/models/function_local_variable_response.py +94 -0
  200. revengai/models/function_mapping.py +90 -0
  201. revengai/models/function_mapping_full.py +275 -0
  202. revengai/models/function_match.py +111 -0
  203. revengai/models/function_matching_filters.py +103 -0
  204. revengai/models/function_matching_request.py +114 -0
  205. revengai/models/function_matching_response.py +157 -0
  206. revengai/models/function_name_history.py +99 -0
  207. revengai/models/function_param_response.py +94 -0
  208. revengai/models/function_rename.py +88 -0
  209. revengai/models/function_rename_map.py +90 -0
  210. revengai/models/function_search_response.py +94 -0
  211. revengai/models/function_search_result.py +99 -0
  212. revengai/models/function_source_type.py +39 -0
  213. revengai/models/function_string.py +88 -0
  214. revengai/models/function_strings_response.py +96 -0
  215. revengai/models/function_task_response.py +94 -0
  216. revengai/models/function_task_status.py +39 -0
  217. revengai/models/function_type_input.py +127 -0
  218. revengai/models/function_type_output.py +127 -0
  219. revengai/models/functions_detail_response.py +125 -0
  220. revengai/models/functions_list_rename.py +94 -0
  221. revengai/models/generate_function_data_types.py +94 -0
  222. revengai/models/generation_status_list.py +98 -0
  223. revengai/models/get_ai_decompilation_rating_response.py +94 -0
  224. revengai/models/get_ai_decompilation_task.py +159 -0
  225. revengai/models/get_me_response.py +108 -0
  226. revengai/models/get_public_user_response.py +88 -0
  227. revengai/models/global_variable.py +101 -0
  228. revengai/models/icon_model.py +91 -0
  229. revengai/models/import_model.py +88 -0
  230. revengai/models/inverse_function_map_item.py +99 -0
  231. revengai/models/inverse_string_map_item.py +93 -0
  232. revengai/models/inverse_value.py +86 -0
  233. revengai/models/isa.py +37 -0
  234. revengai/models/list_collection_results.py +94 -0
  235. revengai/models/login_request.py +89 -0
  236. revengai/models/login_response.py +86 -0
  237. revengai/models/logs.py +86 -0
  238. revengai/models/matched_function.py +116 -0
  239. revengai/models/matched_function_suggestion.py +97 -0
  240. revengai/models/meta_model.py +95 -0
  241. revengai/models/model_name.py +40 -0
  242. revengai/models/models_response.py +86 -0
  243. revengai/models/name_confidence.py +89 -0
  244. revengai/models/network_overview_dns.py +98 -0
  245. revengai/models/network_overview_dns_answer.py +88 -0
  246. revengai/models/network_overview_metadata.py +99 -0
  247. revengai/models/network_overview_response.py +104 -0
  248. revengai/models/order.py +36 -0
  249. revengai/models/pagination_model.py +90 -0
  250. revengai/models/params.py +103 -0
  251. revengai/models/pdb_debug_model.py +94 -0
  252. revengai/models/pe_model.py +215 -0
  253. revengai/models/platform.py +36 -0
  254. revengai/models/process.py +103 -0
  255. revengai/models/process_dump.py +96 -0
  256. revengai/models/process_dump_metadata.py +90 -0
  257. revengai/models/process_dumps.py +92 -0
  258. revengai/models/process_dumps_data.py +96 -0
  259. revengai/models/process_registry.py +105 -0
  260. revengai/models/process_tree.py +96 -0
  261. revengai/models/queued_security_checks_task_response.py +86 -0
  262. revengai/models/re_analysis_form.py +101 -0
  263. revengai/models/recent.py +94 -0
  264. revengai/models/registry.py +102 -0
  265. revengai/models/relative_binary_response.py +90 -0
  266. revengai/models/sandbox_options.py +88 -0
  267. revengai/models/sbom.py +96 -0
  268. revengai/models/sbom_package.py +88 -0
  269. revengai/models/scrape_third_party_config.py +86 -0
  270. revengai/models/section_model.py +96 -0
  271. revengai/models/security_checks_response.py +98 -0
  272. revengai/models/security_checks_result.py +103 -0
  273. revengai/models/security_model.py +106 -0
  274. revengai/models/severity_type.py +40 -0
  275. revengai/models/single_code_certificate_model.py +96 -0
  276. revengai/models/single_code_signature_model.py +96 -0
  277. revengai/models/single_pdb_entry_model.py +90 -0
  278. revengai/models/single_section_model.py +98 -0
  279. revengai/models/stack_variable.py +101 -0
  280. revengai/models/status_input.py +40 -0
  281. revengai/models/status_output.py +88 -0
  282. revengai/models/string_functions.py +96 -0
  283. revengai/models/structure.py +117 -0
  284. revengai/models/structure_member.py +99 -0
  285. revengai/models/symbols.py +96 -0
  286. revengai/models/tag.py +86 -0
  287. revengai/models/tag_item.py +95 -0
  288. revengai/models/tag_response.py +88 -0
  289. revengai/models/tag_search_response.py +94 -0
  290. revengai/models/tag_search_result.py +88 -0
  291. revengai/models/task_response.py +94 -0
  292. revengai/models/task_status.py +39 -0
  293. revengai/models/timestamp_model.py +90 -0
  294. revengai/models/ttps.py +92 -0
  295. revengai/models/ttps_attack.py +88 -0
  296. revengai/models/ttps_data.py +96 -0
  297. revengai/models/ttps_element.py +108 -0
  298. revengai/models/ttps_occurance.py +88 -0
  299. revengai/models/type_definition.py +97 -0
  300. revengai/models/update_function_data_types.py +92 -0
  301. revengai/models/upload_file_type.py +38 -0
  302. revengai/models/upload_response.py +91 -0
  303. revengai/models/upsert_ai_decomplation_rating_request.py +94 -0
  304. revengai/models/user_activity_response.py +97 -0
  305. revengai/models/vulnerabilities.py +94 -0
  306. revengai/models/vulnerability.py +113 -0
  307. revengai/models/vulnerability_type.py +40 -0
  308. revengai/models/workspace.py +37 -0
  309. revengai/py.typed +0 -0
  310. revengai/rest.py +257 -0
  311. revengai-2.74.0.dist-info/METADATA +447 -0
  312. revengai-2.74.0.dist-info/RECORD +314 -0
  313. revengai-2.74.0.dist-info/WHEEL +4 -0
  314. revengai-2.74.0.dist-info/licenses/LICENSE.md +19 -0
@@ -0,0 +1,447 @@
1
+ Metadata-Version: 2.4
2
+ Name: revengai
3
+ Version: 2.74.0
4
+ Summary: RevEng.AI API
5
+ Project-URL: Repository, https://github.com/RevEngAI/sdk-python
6
+ License-Expression: MIT
7
+ License-File: LICENSE.md
8
+ Keywords: RevEng.AI API
9
+ Requires-Python: >=3.10
10
+ Requires-Dist: lazy-imports<2,>=1
11
+ Requires-Dist: pydantic>=2
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: typing-extensions>=4.7.1
14
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
15
+ Description-Content-Type: text/markdown
16
+
17
+ # RevEng.AI Python SDK
18
+
19
+ This is the Python SDK for the RevEng.AI API.
20
+
21
+ To use the SDK you will first need to obtain an API key from [https://reveng.ai](https://reveng.ai/register).
22
+
23
+ ## Installation
24
+ Once you have the API key you can install the SDK via pip:
25
+ ```bash
26
+ pip install revengai
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ The following is an example of how to use the SDK to get the logs of an analysis:
32
+
33
+ ```python
34
+ import os
35
+ import revengai
36
+
37
+ configuration = revengai.Configuration(api_key={'APIKey': os.environ["API_KEY"]})
38
+
39
+ # Enter a context with an instance of the API client
40
+ with revengai.ApiClient(configuration) as api_client:
41
+ # Create an instance of the API class
42
+ api_instance = revengai.AnalysesCoreApi(api_client)
43
+ analysis_id = 715320
44
+
45
+ try:
46
+ # Gets the logs of an analysis
47
+ api_response = api_instance.get_analysis_logs(analysis_id)
48
+ print("The response of AnalysesCoreApi->get_analysis_logs:\n")
49
+ print(api_response)
50
+ except Exception as e:
51
+ print("Exception when calling AnalysesCoreApi->get_analysis_logs: %s\n" % e)
52
+ ```
53
+
54
+ ## Documentation for API Endpoints
55
+
56
+ All URIs are relative to *https://api.reveng.ai*
57
+
58
+ Class | Method | HTTP request | Description
59
+ ------------ | ------------- | ------------- | -------------
60
+ *AnalysesCommentsApi* | [**create_analysis_comment**](docs/AnalysesCommentsApi.md#create_analysis_comment) | **POST** /v2/analyses/{analysis_id}/comments | Create a comment for this analysis
61
+ *AnalysesCommentsApi* | [**delete_analysis_comment**](docs/AnalysesCommentsApi.md#delete_analysis_comment) | **DELETE** /v2/analyses/{analysis_id}/comments/{comment_id} | Delete a comment
62
+ *AnalysesCommentsApi* | [**get_analysis_comments**](docs/AnalysesCommentsApi.md#get_analysis_comments) | **GET** /v2/analyses/{analysis_id}/comments | Get comments for this analysis
63
+ *AnalysesCommentsApi* | [**update_analysis_comment**](docs/AnalysesCommentsApi.md#update_analysis_comment) | **PATCH** /v2/analyses/{analysis_id}/comments/{comment_id} | Update a comment
64
+ *AnalysesCoreApi* | [**create_analysis**](docs/AnalysesCoreApi.md#create_analysis) | **POST** /v2/analyses | Create Analysis
65
+ *AnalysesCoreApi* | [**delete_analysis**](docs/AnalysesCoreApi.md#delete_analysis) | **DELETE** /v2/analyses/{analysis_id} | Delete Analysis
66
+ *AnalysesCoreApi* | [**get_analysis_basic_info**](docs/AnalysesCoreApi.md#get_analysis_basic_info) | **GET** /v2/analyses/{analysis_id}/basic | Gets basic analysis information
67
+ *AnalysesCoreApi* | [**get_analysis_function_map**](docs/AnalysesCoreApi.md#get_analysis_function_map) | **GET** /v2/analyses/{analysis_id}/func_maps | Get Analysis Function Map
68
+ *AnalysesCoreApi* | [**get_analysis_logs**](docs/AnalysesCoreApi.md#get_analysis_logs) | **GET** /v2/analyses/{analysis_id}/logs | Gets the logs of an analysis
69
+ *AnalysesCoreApi* | [**get_analysis_params**](docs/AnalysesCoreApi.md#get_analysis_params) | **GET** /v2/analyses/{analysis_id}/params | Gets analysis param information
70
+ *AnalysesCoreApi* | [**get_analysis_status**](docs/AnalysesCoreApi.md#get_analysis_status) | **GET** /v2/analyses/{analysis_id}/status | Gets the status of an analysis
71
+ *AnalysesCoreApi* | [**list_analyses**](docs/AnalysesCoreApi.md#list_analyses) | **GET** /v2/analyses/list | Gets the most recent analyses
72
+ *AnalysesCoreApi* | [**lookup_binary_id**](docs/AnalysesCoreApi.md#lookup_binary_id) | **GET** /v2/analyses/lookup/{binary_id} | Gets the analysis ID from binary ID
73
+ *AnalysesCoreApi* | [**requeue_analysis**](docs/AnalysesCoreApi.md#requeue_analysis) | **POST** /v2/analyses/{analysis_id}/requeue | Requeue Analysis
74
+ *AnalysesCoreApi* | [**update_analysis**](docs/AnalysesCoreApi.md#update_analysis) | **PATCH** /v2/analyses/{analysis_id} | Update Analysis
75
+ *AnalysesCoreApi* | [**update_analysis_tags**](docs/AnalysesCoreApi.md#update_analysis_tags) | **PATCH** /v2/analyses/{analysis_id}/tags | Update Analysis Tags
76
+ *AnalysesCoreApi* | [**upload_file**](docs/AnalysesCoreApi.md#upload_file) | **POST** /v2/upload | Upload File
77
+ *AnalysesDynamicExecutionApi* | [**get_dynamic_execution_status**](docs/AnalysesDynamicExecutionApi.md#get_dynamic_execution_status) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/status | Get the status of a dynamic execution task
78
+ *AnalysesDynamicExecutionApi* | [**get_network_overview**](docs/AnalysesDynamicExecutionApi.md#get_network_overview) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/network-overview | Get the dynamic execution results for network overview
79
+ *AnalysesDynamicExecutionApi* | [**get_process_dump**](docs/AnalysesDynamicExecutionApi.md#get_process_dump) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/process-dumps/{dump_name} | Get the dynamic execution results for a specific process dump
80
+ *AnalysesDynamicExecutionApi* | [**get_process_dumps**](docs/AnalysesDynamicExecutionApi.md#get_process_dumps) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/process-dumps | Get the dynamic execution results for process dumps
81
+ *AnalysesDynamicExecutionApi* | [**get_process_registry**](docs/AnalysesDynamicExecutionApi.md#get_process_registry) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/process-registry | Get the dynamic execution results for process registry
82
+ *AnalysesDynamicExecutionApi* | [**get_process_tree**](docs/AnalysesDynamicExecutionApi.md#get_process_tree) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/process-tree | Get the dynamic execution results for process tree
83
+ *AnalysesDynamicExecutionApi* | [**get_ttps**](docs/AnalysesDynamicExecutionApi.md#get_ttps) | **GET** /v2/analyses/{analysis_id}/dynamic-execution/ttps | Get the dynamic execution results for ttps
84
+ *AnalysesResultsMetadataApi* | [**get_analysis_functions_paginated**](docs/AnalysesResultsMetadataApi.md#get_analysis_functions_paginated) | **GET** /v2/analyses/{analysis_id}/functions | Get functions from analysis
85
+ *AnalysesResultsMetadataApi* | [**get_capabilities**](docs/AnalysesResultsMetadataApi.md#get_capabilities) | **GET** /v2/analyses/{analysis_id}/capabilities | Gets the capabilities from the analysis
86
+ *AnalysesResultsMetadataApi* | [**get_communities**](docs/AnalysesResultsMetadataApi.md#get_communities) | **GET** /v2/analyses/{analysis_id}/communities | Gets the communities found in the analysis
87
+ *AnalysesResultsMetadataApi* | [**get_functions_list**](docs/AnalysesResultsMetadataApi.md#get_functions_list) | **GET** /v2/analyses/{analysis_id}/functions/list | Gets functions from analysis
88
+ *AnalysesResultsMetadataApi* | [**get_pdf**](docs/AnalysesResultsMetadataApi.md#get_pdf) | **GET** /v2/analyses/{analysis_id}/pdf | Gets the PDF found in the analysis
89
+ *AnalysesResultsMetadataApi* | [**get_sbom**](docs/AnalysesResultsMetadataApi.md#get_sbom) | **GET** /v2/analyses/{analysis_id}/sbom | Gets the software-bill-of-materials (SBOM) found in the analysis
90
+ *AnalysesResultsMetadataApi* | [**get_tags**](docs/AnalysesResultsMetadataApi.md#get_tags) | **GET** /v2/analyses/{analysis_id}/tags | Get function tags with maliciousness score
91
+ *AnalysesResultsMetadataApi* | [**get_vulnerabilities**](docs/AnalysesResultsMetadataApi.md#get_vulnerabilities) | **GET** /v2/analyses/{analysis_id}/vulnerabilities | Gets the vulnerabilities found in the analysis
92
+ *AnalysesSecurityChecksApi* | [**create_scurity_checks_task**](docs/AnalysesSecurityChecksApi.md#create_scurity_checks_task) | **POST** /v2/analyses/{analysis_id}/security-checks | Queues a security check process
93
+ *AnalysesSecurityChecksApi* | [**get_security_checks**](docs/AnalysesSecurityChecksApi.md#get_security_checks) | **GET** /v2/analyses/{analysis_id}/security-checks | Get Security Checks
94
+ *AnalysesSecurityChecksApi* | [**get_security_checks_task_status**](docs/AnalysesSecurityChecksApi.md#get_security_checks_task_status) | **GET** /v2/analyses/{analysis_id}/security-checks/status | Check the status of a security check process
95
+ *AuthenticationUsersApi* | [**get_requester_user_info**](docs/AuthenticationUsersApi.md#get_requester_user_info) | **GET** /v2/users/me | Get the requesters user information
96
+ *AuthenticationUsersApi* | [**get_user**](docs/AuthenticationUsersApi.md#get_user) | **GET** /v2/users/{user_id} | Get a user&#39;s public information
97
+ *AuthenticationUsersApi* | [**get_user_activity**](docs/AuthenticationUsersApi.md#get_user_activity) | **GET** /v2/users/activity | Get auth user activity
98
+ *AuthenticationUsersApi* | [**get_user_comments**](docs/AuthenticationUsersApi.md#get_user_comments) | **GET** /v2/users/me/comments | Get comments by user
99
+ *AuthenticationUsersApi* | [**login_user**](docs/AuthenticationUsersApi.md#login_user) | **POST** /v2/auth/login | Authenticate a user
100
+ *BinariesApi* | [**download_zipped_binary**](docs/BinariesApi.md#download_zipped_binary) | **GET** /v2/binaries/{binary_id}/download-zipped | Downloads a zipped binary with password protection
101
+ *BinariesApi* | [**get_binary_additional_details**](docs/BinariesApi.md#get_binary_additional_details) | **GET** /v2/binaries/{binary_id}/additional-details | Gets the additional details of a binary
102
+ *BinariesApi* | [**get_binary_details**](docs/BinariesApi.md#get_binary_details) | **GET** /v2/binaries/{binary_id}/details | Gets the details of a binary
103
+ *BinariesApi* | [**get_binary_die_info**](docs/BinariesApi.md#get_binary_die_info) | **GET** /v2/binaries/{binary_id}/die-info | Gets the die info of a binary
104
+ *BinariesApi* | [**get_binary_externals**](docs/BinariesApi.md#get_binary_externals) | **GET** /v2/binaries/{binary_id}/externals | Gets the external details of a binary
105
+ *BinariesApi* | [**get_related_binaries**](docs/BinariesApi.md#get_related_binaries) | **GET** /v2/binaries/{binary_id}/related | Gets the related binaries of a binary.
106
+ *CollectionsApi* | [**create_collection**](docs/CollectionsApi.md#create_collection) | **POST** /v2/collections | Creates new collection information
107
+ *CollectionsApi* | [**delete_collection**](docs/CollectionsApi.md#delete_collection) | **DELETE** /v2/collections/{collection_id} | Deletes a collection
108
+ *CollectionsApi* | [**get_collection**](docs/CollectionsApi.md#get_collection) | **GET** /v2/collections/{collection_id} | Returns a collection
109
+ *CollectionsApi* | [**list_collections**](docs/CollectionsApi.md#list_collections) | **GET** /v2/collections | Gets basic collections information
110
+ *CollectionsApi* | [**update_collection**](docs/CollectionsApi.md#update_collection) | **PATCH** /v2/collections/{collection_id} | Updates a collection
111
+ *CollectionsApi* | [**update_collection_binaries**](docs/CollectionsApi.md#update_collection_binaries) | **PATCH** /v2/collections/{collection_id}/binaries | Updates a collection binaries
112
+ *CollectionsApi* | [**update_collection_tags**](docs/CollectionsApi.md#update_collection_tags) | **PATCH** /v2/collections/{collection_id}/tags | Updates a collection tags
113
+ *ExternalSourcesApi* | [**create_external_task_vt**](docs/ExternalSourcesApi.md#create_external_task_vt) | **POST** /v2/analysis/{analysis_id}/external/vt | Pulls data from VirusTotal
114
+ *ExternalSourcesApi* | [**get_vt_data**](docs/ExternalSourcesApi.md#get_vt_data) | **GET** /v2/analysis/{analysis_id}/external/vt | Get VirusTotal data
115
+ *ExternalSourcesApi* | [**get_vt_task_status**](docs/ExternalSourcesApi.md#get_vt_task_status) | **GET** /v2/analysis/{analysis_id}/external/vt/status | Check the status of VirusTotal data retrieval
116
+ *FirmwareApi* | [**get_binaries_for_firmware_task**](docs/FirmwareApi.md#get_binaries_for_firmware_task) | **GET** /v2/firmware/get-binaries/{task_id} | Upload firmware for unpacking
117
+ *FirmwareApi* | [**upload_firmware**](docs/FirmwareApi.md#upload_firmware) | **POST** /v2/firmware | Upload firmware for unpacking
118
+ *FunctionsAIDecompilationApi* | [**create_ai_decompilation_comment**](docs/FunctionsAIDecompilationApi.md#create_ai_decompilation_comment) | **POST** /v2/functions/{function_id}/ai-decompilation/comments | Create a comment for this function
119
+ *FunctionsAIDecompilationApi* | [**create_ai_decompilation_task**](docs/FunctionsAIDecompilationApi.md#create_ai_decompilation_task) | **POST** /v2/functions/{function_id}/ai-decompilation | Begins AI Decompilation Process
120
+ *FunctionsAIDecompilationApi* | [**delete_ai_decompilation_comment**](docs/FunctionsAIDecompilationApi.md#delete_ai_decompilation_comment) | **DELETE** /v2/functions/{function_id}/ai-decompilation/comments/{comment_id} | Delete a comment
121
+ *FunctionsAIDecompilationApi* | [**get_ai_decompilation_comments**](docs/FunctionsAIDecompilationApi.md#get_ai_decompilation_comments) | **GET** /v2/functions/{function_id}/ai-decompilation/comments | Get comments for this function
122
+ *FunctionsAIDecompilationApi* | [**get_ai_decompilation_rating**](docs/FunctionsAIDecompilationApi.md#get_ai_decompilation_rating) | **GET** /v2/functions/{function_id}/ai-decompilation/rating | Get rating for AI decompilation
123
+ *FunctionsAIDecompilationApi* | [**get_ai_decompilation_task_result**](docs/FunctionsAIDecompilationApi.md#get_ai_decompilation_task_result) | **GET** /v2/functions/{function_id}/ai-decompilation | Polls AI Decompilation Process
124
+ *FunctionsAIDecompilationApi* | [**get_ai_decompilation_task_status**](docs/FunctionsAIDecompilationApi.md#get_ai_decompilation_task_status) | **GET** /v2/functions/{function_id}/ai-decompilation/status | Check the status of a function ai decompilation
125
+ *FunctionsAIDecompilationApi* | [**update_ai_decompilation_comment**](docs/FunctionsAIDecompilationApi.md#update_ai_decompilation_comment) | **PATCH** /v2/functions/{function_id}/ai-decompilation/comments/{comment_id} | Update a comment
126
+ *FunctionsAIDecompilationApi* | [**upsert_ai_decompilation_rating**](docs/FunctionsAIDecompilationApi.md#upsert_ai_decompilation_rating) | **PATCH** /v2/functions/{function_id}/ai-decompilation/rating | Upsert rating for AI decompilation
127
+ *FunctionsBlockCommentsApi* | [**generate_block_comments_for_block_in_function**](docs/FunctionsBlockCommentsApi.md#generate_block_comments_for_block_in_function) | **POST** /v2/functions/{function_id}/block-comments/single | Generate block comments for a specific block in a function
128
+ *FunctionsBlockCommentsApi* | [**generate_block_comments_for_function**](docs/FunctionsBlockCommentsApi.md#generate_block_comments_for_function) | **POST** /v2/functions/{function_id}/block-comments | Generate block comments for a function
129
+ *FunctionsBlockCommentsApi* | [**generate_overview_comment_for_function**](docs/FunctionsBlockCommentsApi.md#generate_overview_comment_for_function) | **POST** /v2/functions/{function_id}/block-comments/overview | Generate overview comment for a function
130
+ *FunctionsCoreApi* | [**ai_unstrip**](docs/FunctionsCoreApi.md#ai_unstrip) | **POST** /v2/analyses/{analysis_id}/functions/ai-unstrip | Performs matching and auto-unstrip for an analysis and its functions
131
+ *FunctionsCoreApi* | [**analysis_function_matching**](docs/FunctionsCoreApi.md#analysis_function_matching) | **POST** /v2/analyses/{analysis_id}/functions/matches | Perform matching for the functions of an analysis
132
+ *FunctionsCoreApi* | [**auto_unstrip**](docs/FunctionsCoreApi.md#auto_unstrip) | **POST** /v2/analyses/{analysis_id}/functions/auto-unstrip | Performs matching and auto-unstrip for an analysis and its functions
133
+ *FunctionsCoreApi* | [**batch_function_matching**](docs/FunctionsCoreApi.md#batch_function_matching) | **POST** /v2/functions/matches | Perform function matching for an arbitrary batch of functions, binaries or collections
134
+ *FunctionsCoreApi* | [**cancel_ai_unstrip**](docs/FunctionsCoreApi.md#cancel_ai_unstrip) | **DELETE** /v2/analyses/{analysis_id}/functions/ai-unstrip/cancel | Cancels a running ai-unstrip
135
+ *FunctionsCoreApi* | [**cancel_auto_unstrip**](docs/FunctionsCoreApi.md#cancel_auto_unstrip) | **DELETE** /v2/analyses/{analysis_id}/functions/unstrip/cancel | Cancels a running auto-unstrip
136
+ *FunctionsCoreApi* | [**get_analysis_strings**](docs/FunctionsCoreApi.md#get_analysis_strings) | **GET** /v2/analyses/{analysis_id}/functions/strings | Get string information found in the Analysis
137
+ *FunctionsCoreApi* | [**get_function_blocks**](docs/FunctionsCoreApi.md#get_function_blocks) | **GET** /v2/functions/{function_id}/blocks | Get disassembly blocks related to the function
138
+ *FunctionsCoreApi* | [**get_function_callees_callers**](docs/FunctionsCoreApi.md#get_function_callees_callers) | **GET** /v2/functions/{function_id}/callees_callers | Get list of functions that call or are called by the specified function
139
+ *FunctionsCoreApi* | [**get_function_capabilities**](docs/FunctionsCoreApi.md#get_function_capabilities) | **GET** /v2/functions/{function_id}/capabilities | Retrieve a functions capabilities
140
+ *FunctionsCoreApi* | [**get_function_details**](docs/FunctionsCoreApi.md#get_function_details) | **GET** /v2/functions/{function_id} | Get function details
141
+ *FunctionsCoreApi* | [**get_function_strings**](docs/FunctionsCoreApi.md#get_function_strings) | **GET** /v2/functions/{function_id}/strings | Get string information found in the function
142
+ *FunctionsDataTypesApi* | [**generate_function_data_types_for_analysis**](docs/FunctionsDataTypesApi.md#generate_function_data_types_for_analysis) | **POST** /v2/analyses/{analysis_id}/functions/data_types | Generate Function Data Types
143
+ *FunctionsDataTypesApi* | [**generate_function_data_types_for_functions**](docs/FunctionsDataTypesApi.md#generate_function_data_types_for_functions) | **POST** /v2/functions/data_types | Generate Function Data Types for an arbitrary list of functions
144
+ *FunctionsDataTypesApi* | [**get_function_data_types**](docs/FunctionsDataTypesApi.md#get_function_data_types) | **GET** /v2/analyses/{analysis_id}/functions/{function_id}/data_types | Get Function Data Types
145
+ *FunctionsDataTypesApi* | [**list_function_data_types_for_analysis**](docs/FunctionsDataTypesApi.md#list_function_data_types_for_analysis) | **GET** /v2/analyses/{analysis_id}/functions/data_types | List Function Data Types
146
+ *FunctionsDataTypesApi* | [**list_function_data_types_for_functions**](docs/FunctionsDataTypesApi.md#list_function_data_types_for_functions) | **GET** /v2/functions/data_types | List Function Data Types
147
+ *FunctionsDataTypesApi* | [**update_function_data_types**](docs/FunctionsDataTypesApi.md#update_function_data_types) | **PUT** /v2/analyses/{analysis_id}/functions/{function_id}/data_types | Update Function Data Types
148
+ *FunctionsDecompilationApi* | [**create_decompilation_comment**](docs/FunctionsDecompilationApi.md#create_decompilation_comment) | **POST** /v2/functions/{function_id}/decompilation/comments | Create a comment for this function
149
+ *FunctionsDecompilationApi* | [**delete_decompilation_comment**](docs/FunctionsDecompilationApi.md#delete_decompilation_comment) | **DELETE** /v2/functions/{function_id}/decompilation/comments/{comment_id} | Delete a comment
150
+ *FunctionsDecompilationApi* | [**get_decompilation_comments**](docs/FunctionsDecompilationApi.md#get_decompilation_comments) | **GET** /v2/functions/{function_id}/decompilation/comments | Get comments for this function
151
+ *FunctionsDecompilationApi* | [**update_decompilation_comment**](docs/FunctionsDecompilationApi.md#update_decompilation_comment) | **PATCH** /v2/functions/{function_id}/decompilation/comments/{comment_id} | Update a comment
152
+ *FunctionsRenamingHistoryApi* | [**batch_rename_function**](docs/FunctionsRenamingHistoryApi.md#batch_rename_function) | **POST** /v2/functions/rename/batch | Batch Rename Functions
153
+ *FunctionsRenamingHistoryApi* | [**get_function_name_history**](docs/FunctionsRenamingHistoryApi.md#get_function_name_history) | **GET** /v2/functions/history/{function_id} | Get Function Name History
154
+ *FunctionsRenamingHistoryApi* | [**rename_function_id**](docs/FunctionsRenamingHistoryApi.md#rename_function_id) | **POST** /v2/functions/rename/{function_id} | Rename Function
155
+ *FunctionsRenamingHistoryApi* | [**revert_function_name**](docs/FunctionsRenamingHistoryApi.md#revert_function_name) | **POST** /v2/functions/history/{function_id}/{history_id} | Revert the function name
156
+ *ModelsApi* | [**get_models**](docs/ModelsApi.md#get_models) | **GET** /v2/models | Gets models
157
+ *SearchApi* | [**search_binaries**](docs/SearchApi.md#search_binaries) | **GET** /v2/search/binaries | Binaries search
158
+ *SearchApi* | [**search_collections**](docs/SearchApi.md#search_collections) | **GET** /v2/search/collections | Collections search
159
+ *SearchApi* | [**search_functions**](docs/SearchApi.md#search_functions) | **GET** /v2/search/functions | Functions search
160
+ *SearchApi* | [**search_tags**](docs/SearchApi.md#search_tags) | **GET** /v2/search/tags | Tags search
161
+
162
+
163
+ ## Documentation For Models
164
+
165
+ - [Addr](docs/Addr.md)
166
+ - [AiDecompilationRating](docs/AiDecompilationRating.md)
167
+ - [AiUnstripRequest](docs/AiUnstripRequest.md)
168
+ - [AnalysisAccessInfo](docs/AnalysisAccessInfo.md)
169
+ - [AnalysisConfig](docs/AnalysisConfig.md)
170
+ - [AnalysisCreateRequest](docs/AnalysisCreateRequest.md)
171
+ - [AnalysisCreateResponse](docs/AnalysisCreateResponse.md)
172
+ - [AnalysisDetailResponse](docs/AnalysisDetailResponse.md)
173
+ - [AnalysisFunctionMapping](docs/AnalysisFunctionMapping.md)
174
+ - [AnalysisFunctionMatchingRequest](docs/AnalysisFunctionMatchingRequest.md)
175
+ - [AnalysisFunctions](docs/AnalysisFunctions.md)
176
+ - [AnalysisFunctionsList](docs/AnalysisFunctionsList.md)
177
+ - [AnalysisRecord](docs/AnalysisRecord.md)
178
+ - [AnalysisScope](docs/AnalysisScope.md)
179
+ - [AnalysisStringsResponse](docs/AnalysisStringsResponse.md)
180
+ - [AnalysisTags](docs/AnalysisTags.md)
181
+ - [AnalysisUpdateRequest](docs/AnalysisUpdateRequest.md)
182
+ - [AnalysisUpdateTagsRequest](docs/AnalysisUpdateTagsRequest.md)
183
+ - [AnalysisUpdateTagsResponse](docs/AnalysisUpdateTagsResponse.md)
184
+ - [AppApiRestV2AnalysesEnumsDynamicExecutionStatus](docs/AppApiRestV2AnalysesEnumsDynamicExecutionStatus.md)
185
+ - [AppApiRestV2AnalysesEnumsOrderBy](docs/AppApiRestV2AnalysesEnumsOrderBy.md)
186
+ - [AppApiRestV2CollectionsEnumsOrderBy](docs/AppApiRestV2CollectionsEnumsOrderBy.md)
187
+ - [AppApiRestV2FunctionsResponsesFunction](docs/AppApiRestV2FunctionsResponsesFunction.md)
188
+ - [AppApiRestV2FunctionsTypesFunction](docs/AppApiRestV2FunctionsTypesFunction.md)
189
+ - [AppServicesDynamicExecutionSchemasDynamicExecutionStatus](docs/AppServicesDynamicExecutionSchemasDynamicExecutionStatus.md)
190
+ - [Argument](docs/Argument.md)
191
+ - [AutoUnstripRequest](docs/AutoUnstripRequest.md)
192
+ - [AutoUnstripResponse](docs/AutoUnstripResponse.md)
193
+ - [BaseResponse](docs/BaseResponse.md)
194
+ - [BaseResponseAnalysisCreateResponse](docs/BaseResponseAnalysisCreateResponse.md)
195
+ - [BaseResponseAnalysisDetailResponse](docs/BaseResponseAnalysisDetailResponse.md)
196
+ - [BaseResponseAnalysisFunctionMapping](docs/BaseResponseAnalysisFunctionMapping.md)
197
+ - [BaseResponseAnalysisFunctions](docs/BaseResponseAnalysisFunctions.md)
198
+ - [BaseResponseAnalysisFunctionsList](docs/BaseResponseAnalysisFunctionsList.md)
199
+ - [BaseResponseAnalysisStringsResponse](docs/BaseResponseAnalysisStringsResponse.md)
200
+ - [BaseResponseAnalysisTags](docs/BaseResponseAnalysisTags.md)
201
+ - [BaseResponseAnalysisUpdateTagsResponse](docs/BaseResponseAnalysisUpdateTagsResponse.md)
202
+ - [BaseResponseBasic](docs/BaseResponseBasic.md)
203
+ - [BaseResponseBinaryAdditionalResponse](docs/BaseResponseBinaryAdditionalResponse.md)
204
+ - [BaseResponseBinaryDetailsResponse](docs/BaseResponseBinaryDetailsResponse.md)
205
+ - [BaseResponseBinaryExternalsResponse](docs/BaseResponseBinaryExternalsResponse.md)
206
+ - [BaseResponseBinarySearchResponse](docs/BaseResponseBinarySearchResponse.md)
207
+ - [BaseResponseBlockCommentsGenerationForFunctionResponse](docs/BaseResponseBlockCommentsGenerationForFunctionResponse.md)
208
+ - [BaseResponseBlockCommentsOverviewGenerationResponse](docs/BaseResponseBlockCommentsOverviewGenerationResponse.md)
209
+ - [BaseResponseBool](docs/BaseResponseBool.md)
210
+ - [BaseResponseCalleesCallerFunctionsResponse](docs/BaseResponseCalleesCallerFunctionsResponse.md)
211
+ - [BaseResponseCapabilities](docs/BaseResponseCapabilities.md)
212
+ - [BaseResponseCheckSecurityChecksTaskResponse](docs/BaseResponseCheckSecurityChecksTaskResponse.md)
213
+ - [BaseResponseChildBinariesResponse](docs/BaseResponseChildBinariesResponse.md)
214
+ - [BaseResponseCollectionBinariesUpdateResponse](docs/BaseResponseCollectionBinariesUpdateResponse.md)
215
+ - [BaseResponseCollectionResponse](docs/BaseResponseCollectionResponse.md)
216
+ - [BaseResponseCollectionSearchResponse](docs/BaseResponseCollectionSearchResponse.md)
217
+ - [BaseResponseCollectionTagsUpdateResponse](docs/BaseResponseCollectionTagsUpdateResponse.md)
218
+ - [BaseResponseCommentResponse](docs/BaseResponseCommentResponse.md)
219
+ - [BaseResponseCommunities](docs/BaseResponseCommunities.md)
220
+ - [BaseResponseCreated](docs/BaseResponseCreated.md)
221
+ - [BaseResponseDict](docs/BaseResponseDict.md)
222
+ - [BaseResponseDynamicExecutionStatus](docs/BaseResponseDynamicExecutionStatus.md)
223
+ - [BaseResponseExternalResponse](docs/BaseResponseExternalResponse.md)
224
+ - [BaseResponseFunctionBlocksResponse](docs/BaseResponseFunctionBlocksResponse.md)
225
+ - [BaseResponseFunctionCapabilityResponse](docs/BaseResponseFunctionCapabilityResponse.md)
226
+ - [BaseResponseFunctionDataTypes](docs/BaseResponseFunctionDataTypes.md)
227
+ - [BaseResponseFunctionDataTypesList](docs/BaseResponseFunctionDataTypesList.md)
228
+ - [BaseResponseFunctionSearchResponse](docs/BaseResponseFunctionSearchResponse.md)
229
+ - [BaseResponseFunctionStringsResponse](docs/BaseResponseFunctionStringsResponse.md)
230
+ - [BaseResponseFunctionTaskResponse](docs/BaseResponseFunctionTaskResponse.md)
231
+ - [BaseResponseFunctionsDetailResponse](docs/BaseResponseFunctionsDetailResponse.md)
232
+ - [BaseResponseGenerateFunctionDataTypes](docs/BaseResponseGenerateFunctionDataTypes.md)
233
+ - [BaseResponseGenerationStatusList](docs/BaseResponseGenerationStatusList.md)
234
+ - [BaseResponseGetAiDecompilationRatingResponse](docs/BaseResponseGetAiDecompilationRatingResponse.md)
235
+ - [BaseResponseGetAiDecompilationTask](docs/BaseResponseGetAiDecompilationTask.md)
236
+ - [BaseResponseGetMeResponse](docs/BaseResponseGetMeResponse.md)
237
+ - [BaseResponseGetPublicUserResponse](docs/BaseResponseGetPublicUserResponse.md)
238
+ - [BaseResponseListCollectionResults](docs/BaseResponseListCollectionResults.md)
239
+ - [BaseResponseListCommentResponse](docs/BaseResponseListCommentResponse.md)
240
+ - [BaseResponseListDieMatch](docs/BaseResponseListDieMatch.md)
241
+ - [BaseResponseListFunctionNameHistory](docs/BaseResponseListFunctionNameHistory.md)
242
+ - [BaseResponseListSBOM](docs/BaseResponseListSBOM.md)
243
+ - [BaseResponseListUserActivityResponse](docs/BaseResponseListUserActivityResponse.md)
244
+ - [BaseResponseLoginResponse](docs/BaseResponseLoginResponse.md)
245
+ - [BaseResponseLogs](docs/BaseResponseLogs.md)
246
+ - [BaseResponseModelsResponse](docs/BaseResponseModelsResponse.md)
247
+ - [BaseResponseNetworkOverviewResponse](docs/BaseResponseNetworkOverviewResponse.md)
248
+ - [BaseResponseParams](docs/BaseResponseParams.md)
249
+ - [BaseResponseProcessDumps](docs/BaseResponseProcessDumps.md)
250
+ - [BaseResponseProcessRegistry](docs/BaseResponseProcessRegistry.md)
251
+ - [BaseResponseProcessTree](docs/BaseResponseProcessTree.md)
252
+ - [BaseResponseQueuedSecurityChecksTaskResponse](docs/BaseResponseQueuedSecurityChecksTaskResponse.md)
253
+ - [BaseResponseRecent](docs/BaseResponseRecent.md)
254
+ - [BaseResponseSecurityChecksResponse](docs/BaseResponseSecurityChecksResponse.md)
255
+ - [BaseResponseStatus](docs/BaseResponseStatus.md)
256
+ - [BaseResponseStr](docs/BaseResponseStr.md)
257
+ - [BaseResponseTTPS](docs/BaseResponseTTPS.md)
258
+ - [BaseResponseTagSearchResponse](docs/BaseResponseTagSearchResponse.md)
259
+ - [BaseResponseTaskResponse](docs/BaseResponseTaskResponse.md)
260
+ - [BaseResponseUploadResponse](docs/BaseResponseUploadResponse.md)
261
+ - [BaseResponseVulnerabilities](docs/BaseResponseVulnerabilities.md)
262
+ - [Basic](docs/Basic.md)
263
+ - [BinaryAdditionalDetailsDataResponse](docs/BinaryAdditionalDetailsDataResponse.md)
264
+ - [BinaryAdditionalResponse](docs/BinaryAdditionalResponse.md)
265
+ - [BinaryConfig](docs/BinaryConfig.md)
266
+ - [BinaryDetailsResponse](docs/BinaryDetailsResponse.md)
267
+ - [BinaryExternalsResponse](docs/BinaryExternalsResponse.md)
268
+ - [BinarySearchResponse](docs/BinarySearchResponse.md)
269
+ - [BinarySearchResult](docs/BinarySearchResult.md)
270
+ - [BinaryTaskStatus](docs/BinaryTaskStatus.md)
271
+ - [Block](docs/Block.md)
272
+ - [BlockCommentsGenerationForFunctionResponse](docs/BlockCommentsGenerationForFunctionResponse.md)
273
+ - [CalleeFunctionInfo](docs/CalleeFunctionInfo.md)
274
+ - [CalleesCallerFunctionsResponse](docs/CalleesCallerFunctionsResponse.md)
275
+ - [CallerFunctionInfo](docs/CallerFunctionInfo.md)
276
+ - [Capabilities](docs/Capabilities.md)
277
+ - [Capability](docs/Capability.md)
278
+ - [CheckSecurityChecksTaskResponse](docs/CheckSecurityChecksTaskResponse.md)
279
+ - [ChildBinariesResponse](docs/ChildBinariesResponse.md)
280
+ - [CodeSignatureModel](docs/CodeSignatureModel.md)
281
+ - [CollectionBinariesUpdateRequest](docs/CollectionBinariesUpdateRequest.md)
282
+ - [CollectionBinariesUpdateResponse](docs/CollectionBinariesUpdateResponse.md)
283
+ - [CollectionBinaryResponse](docs/CollectionBinaryResponse.md)
284
+ - [CollectionCreateRequest](docs/CollectionCreateRequest.md)
285
+ - [CollectionListItem](docs/CollectionListItem.md)
286
+ - [CollectionResponse](docs/CollectionResponse.md)
287
+ - [CollectionResponseBinariesInner](docs/CollectionResponseBinariesInner.md)
288
+ - [CollectionScope](docs/CollectionScope.md)
289
+ - [CollectionSearchResponse](docs/CollectionSearchResponse.md)
290
+ - [CollectionSearchResult](docs/CollectionSearchResult.md)
291
+ - [CollectionTagsUpdateRequest](docs/CollectionTagsUpdateRequest.md)
292
+ - [CollectionTagsUpdateResponse](docs/CollectionTagsUpdateResponse.md)
293
+ - [CollectionUpdateRequest](docs/CollectionUpdateRequest.md)
294
+ - [CommentBase](docs/CommentBase.md)
295
+ - [CommentResponse](docs/CommentResponse.md)
296
+ - [CommentUpdateRequest](docs/CommentUpdateRequest.md)
297
+ - [Communities](docs/Communities.md)
298
+ - [CommunityMatchPercentages](docs/CommunityMatchPercentages.md)
299
+ - [ConfidenceType](docs/ConfidenceType.md)
300
+ - [Context](docs/Context.md)
301
+ - [Created](docs/Created.md)
302
+ - [DecompilationCommentContext](docs/DecompilationCommentContext.md)
303
+ - [DieMatch](docs/DieMatch.md)
304
+ - [DynamicExecutionStatusInput](docs/DynamicExecutionStatusInput.md)
305
+ - [ELFImportModel](docs/ELFImportModel.md)
306
+ - [ELFModel](docs/ELFModel.md)
307
+ - [ELFRelocation](docs/ELFRelocation.md)
308
+ - [ELFSection](docs/ELFSection.md)
309
+ - [ELFSecurity](docs/ELFSecurity.md)
310
+ - [ELFSegment](docs/ELFSegment.md)
311
+ - [ELFSymbol](docs/ELFSymbol.md)
312
+ - [ElfDynamicEntry](docs/ElfDynamicEntry.md)
313
+ - [EntrypointModel](docs/EntrypointModel.md)
314
+ - [Enumeration](docs/Enumeration.md)
315
+ - [ErrorModel](docs/ErrorModel.md)
316
+ - [ExportModel](docs/ExportModel.md)
317
+ - [ExternalResponse](docs/ExternalResponse.md)
318
+ - [FileFormat](docs/FileFormat.md)
319
+ - [FileHashes](docs/FileHashes.md)
320
+ - [FileMetadata](docs/FileMetadata.md)
321
+ - [Filters](docs/Filters.md)
322
+ - [FunctionBlockDestinationResponse](docs/FunctionBlockDestinationResponse.md)
323
+ - [FunctionBlockResponse](docs/FunctionBlockResponse.md)
324
+ - [FunctionBlocksResponse](docs/FunctionBlocksResponse.md)
325
+ - [FunctionBoundary](docs/FunctionBoundary.md)
326
+ - [FunctionCapabilityResponse](docs/FunctionCapabilityResponse.md)
327
+ - [FunctionCommentCreateRequest](docs/FunctionCommentCreateRequest.md)
328
+ - [FunctionDataTypes](docs/FunctionDataTypes.md)
329
+ - [FunctionDataTypesList](docs/FunctionDataTypesList.md)
330
+ - [FunctionDataTypesListItem](docs/FunctionDataTypesListItem.md)
331
+ - [FunctionDataTypesParams](docs/FunctionDataTypesParams.md)
332
+ - [FunctionDataTypesStatus](docs/FunctionDataTypesStatus.md)
333
+ - [FunctionHeader](docs/FunctionHeader.md)
334
+ - [FunctionInfoInput](docs/FunctionInfoInput.md)
335
+ - [FunctionInfoInputFuncDepsInner](docs/FunctionInfoInputFuncDepsInner.md)
336
+ - [FunctionInfoOutput](docs/FunctionInfoOutput.md)
337
+ - [FunctionListItem](docs/FunctionListItem.md)
338
+ - [FunctionLocalVariableResponse](docs/FunctionLocalVariableResponse.md)
339
+ - [FunctionMapping](docs/FunctionMapping.md)
340
+ - [FunctionMappingFull](docs/FunctionMappingFull.md)
341
+ - [FunctionMatch](docs/FunctionMatch.md)
342
+ - [FunctionMatchingFilters](docs/FunctionMatchingFilters.md)
343
+ - [FunctionMatchingRequest](docs/FunctionMatchingRequest.md)
344
+ - [FunctionMatchingResponse](docs/FunctionMatchingResponse.md)
345
+ - [FunctionNameHistory](docs/FunctionNameHistory.md)
346
+ - [FunctionParamResponse](docs/FunctionParamResponse.md)
347
+ - [FunctionRename](docs/FunctionRename.md)
348
+ - [FunctionRenameMap](docs/FunctionRenameMap.md)
349
+ - [FunctionSearchResponse](docs/FunctionSearchResponse.md)
350
+ - [FunctionSearchResult](docs/FunctionSearchResult.md)
351
+ - [FunctionSourceType](docs/FunctionSourceType.md)
352
+ - [FunctionString](docs/FunctionString.md)
353
+ - [FunctionStringsResponse](docs/FunctionStringsResponse.md)
354
+ - [FunctionTaskResponse](docs/FunctionTaskResponse.md)
355
+ - [FunctionTaskStatus](docs/FunctionTaskStatus.md)
356
+ - [FunctionTypeInput](docs/FunctionTypeInput.md)
357
+ - [FunctionTypeOutput](docs/FunctionTypeOutput.md)
358
+ - [FunctionsDetailResponse](docs/FunctionsDetailResponse.md)
359
+ - [FunctionsListRename](docs/FunctionsListRename.md)
360
+ - [GenerateFunctionDataTypes](docs/GenerateFunctionDataTypes.md)
361
+ - [GenerationStatusList](docs/GenerationStatusList.md)
362
+ - [GetAiDecompilationRatingResponse](docs/GetAiDecompilationRatingResponse.md)
363
+ - [GetAiDecompilationTask](docs/GetAiDecompilationTask.md)
364
+ - [GetMeResponse](docs/GetMeResponse.md)
365
+ - [GetPublicUserResponse](docs/GetPublicUserResponse.md)
366
+ - [GlobalVariable](docs/GlobalVariable.md)
367
+ - [ISA](docs/ISA.md)
368
+ - [IconModel](docs/IconModel.md)
369
+ - [ImportModel](docs/ImportModel.md)
370
+ - [InverseFunctionMapItem](docs/InverseFunctionMapItem.md)
371
+ - [InverseStringMapItem](docs/InverseStringMapItem.md)
372
+ - [InverseValue](docs/InverseValue.md)
373
+ - [ListCollectionResults](docs/ListCollectionResults.md)
374
+ - [LoginRequest](docs/LoginRequest.md)
375
+ - [LoginResponse](docs/LoginResponse.md)
376
+ - [Logs](docs/Logs.md)
377
+ - [MatchedFunction](docs/MatchedFunction.md)
378
+ - [MatchedFunctionSuggestion](docs/MatchedFunctionSuggestion.md)
379
+ - [MetaModel](docs/MetaModel.md)
380
+ - [ModelName](docs/ModelName.md)
381
+ - [ModelsResponse](docs/ModelsResponse.md)
382
+ - [NameConfidence](docs/NameConfidence.md)
383
+ - [NetworkOverviewDns](docs/NetworkOverviewDns.md)
384
+ - [NetworkOverviewDnsAnswer](docs/NetworkOverviewDnsAnswer.md)
385
+ - [NetworkOverviewMetadata](docs/NetworkOverviewMetadata.md)
386
+ - [NetworkOverviewResponse](docs/NetworkOverviewResponse.md)
387
+ - [Order](docs/Order.md)
388
+ - [PDBDebugModel](docs/PDBDebugModel.md)
389
+ - [PEModel](docs/PEModel.md)
390
+ - [PaginationModel](docs/PaginationModel.md)
391
+ - [Params](docs/Params.md)
392
+ - [Platform](docs/Platform.md)
393
+ - [Process](docs/Process.md)
394
+ - [ProcessDump](docs/ProcessDump.md)
395
+ - [ProcessDumpMetadata](docs/ProcessDumpMetadata.md)
396
+ - [ProcessDumps](docs/ProcessDumps.md)
397
+ - [ProcessDumpsData](docs/ProcessDumpsData.md)
398
+ - [ProcessRegistry](docs/ProcessRegistry.md)
399
+ - [ProcessTree](docs/ProcessTree.md)
400
+ - [QueuedSecurityChecksTaskResponse](docs/QueuedSecurityChecksTaskResponse.md)
401
+ - [ReAnalysisForm](docs/ReAnalysisForm.md)
402
+ - [Recent](docs/Recent.md)
403
+ - [Registry](docs/Registry.md)
404
+ - [RelativeBinaryResponse](docs/RelativeBinaryResponse.md)
405
+ - [SBOM](docs/SBOM.md)
406
+ - [SBOMPackage](docs/SBOMPackage.md)
407
+ - [SandboxOptions](docs/SandboxOptions.md)
408
+ - [ScrapeThirdPartyConfig](docs/ScrapeThirdPartyConfig.md)
409
+ - [SectionModel](docs/SectionModel.md)
410
+ - [SecurityChecksResponse](docs/SecurityChecksResponse.md)
411
+ - [SecurityChecksResult](docs/SecurityChecksResult.md)
412
+ - [SecurityModel](docs/SecurityModel.md)
413
+ - [SeverityType](docs/SeverityType.md)
414
+ - [SingleCodeCertificateModel](docs/SingleCodeCertificateModel.md)
415
+ - [SingleCodeSignatureModel](docs/SingleCodeSignatureModel.md)
416
+ - [SinglePDBEntryModel](docs/SinglePDBEntryModel.md)
417
+ - [SingleSectionModel](docs/SingleSectionModel.md)
418
+ - [StackVariable](docs/StackVariable.md)
419
+ - [StatusInput](docs/StatusInput.md)
420
+ - [StatusOutput](docs/StatusOutput.md)
421
+ - [StringFunctions](docs/StringFunctions.md)
422
+ - [Structure](docs/Structure.md)
423
+ - [StructureMember](docs/StructureMember.md)
424
+ - [Symbols](docs/Symbols.md)
425
+ - [TTPS](docs/TTPS.md)
426
+ - [TTPSAttack](docs/TTPSAttack.md)
427
+ - [TTPSData](docs/TTPSData.md)
428
+ - [TTPSElement](docs/TTPSElement.md)
429
+ - [TTPSOccurance](docs/TTPSOccurance.md)
430
+ - [Tag](docs/Tag.md)
431
+ - [TagItem](docs/TagItem.md)
432
+ - [TagResponse](docs/TagResponse.md)
433
+ - [TagSearchResponse](docs/TagSearchResponse.md)
434
+ - [TagSearchResult](docs/TagSearchResult.md)
435
+ - [TaskResponse](docs/TaskResponse.md)
436
+ - [TaskStatus](docs/TaskStatus.md)
437
+ - [TimestampModel](docs/TimestampModel.md)
438
+ - [TypeDefinition](docs/TypeDefinition.md)
439
+ - [UpdateFunctionDataTypes](docs/UpdateFunctionDataTypes.md)
440
+ - [UploadFileType](docs/UploadFileType.md)
441
+ - [UploadResponse](docs/UploadResponse.md)
442
+ - [UpsertAiDecomplationRatingRequest](docs/UpsertAiDecomplationRatingRequest.md)
443
+ - [UserActivityResponse](docs/UserActivityResponse.md)
444
+ - [Vulnerabilities](docs/Vulnerabilities.md)
445
+ - [Vulnerability](docs/Vulnerability.md)
446
+ - [VulnerabilityType](docs/VulnerabilityType.md)
447
+ - [Workspace](docs/Workspace.md)