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
revengai/__init__.py ADDED
@@ -0,0 +1,647 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ RevEng.AI API
7
+
8
+ RevEng.AI is Similarity Search Engine for executable binaries
9
+
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ __version__ = "v2.74.0"
17
+
18
+ # Define package exports
19
+ __all__ = [
20
+ "AnalysesCommentsApi",
21
+ "AnalysesCoreApi",
22
+ "AnalysesDynamicExecutionApi",
23
+ "AnalysesResultsMetadataApi",
24
+ "AnalysesSecurityChecksApi",
25
+ "AuthenticationUsersApi",
26
+ "BinariesApi",
27
+ "CollectionsApi",
28
+ "ExternalSourcesApi",
29
+ "FirmwareApi",
30
+ "FunctionsAIDecompilationApi",
31
+ "FunctionsBlockCommentsApi",
32
+ "FunctionsCoreApi",
33
+ "FunctionsDataTypesApi",
34
+ "FunctionsDecompilationApi",
35
+ "FunctionsRenamingHistoryApi",
36
+ "ModelsApi",
37
+ "SearchApi",
38
+ "ApiResponse",
39
+ "ApiClient",
40
+ "Configuration",
41
+ "OpenApiException",
42
+ "ApiTypeError",
43
+ "ApiValueError",
44
+ "ApiKeyError",
45
+ "ApiAttributeError",
46
+ "ApiException",
47
+ "Addr",
48
+ "AiDecompilationRating",
49
+ "AiUnstripRequest",
50
+ "AnalysisAccessInfo",
51
+ "AnalysisConfig",
52
+ "AnalysisCreateRequest",
53
+ "AnalysisCreateResponse",
54
+ "AnalysisDetailResponse",
55
+ "AnalysisFunctionMapping",
56
+ "AnalysisFunctionMatchingRequest",
57
+ "AnalysisFunctions",
58
+ "AnalysisFunctionsList",
59
+ "AnalysisRecord",
60
+ "AnalysisScope",
61
+ "AnalysisStringsResponse",
62
+ "AnalysisTags",
63
+ "AnalysisUpdateRequest",
64
+ "AnalysisUpdateTagsRequest",
65
+ "AnalysisUpdateTagsResponse",
66
+ "AppApiRestV2AnalysesEnumsDynamicExecutionStatus",
67
+ "AppApiRestV2AnalysesEnumsOrderBy",
68
+ "AppApiRestV2CollectionsEnumsOrderBy",
69
+ "AppApiRestV2FunctionsResponsesFunction",
70
+ "AppApiRestV2FunctionsTypesFunction",
71
+ "AppServicesDynamicExecutionSchemasDynamicExecutionStatus",
72
+ "Argument",
73
+ "AutoUnstripRequest",
74
+ "AutoUnstripResponse",
75
+ "BaseResponse",
76
+ "BaseResponseAnalysisCreateResponse",
77
+ "BaseResponseAnalysisDetailResponse",
78
+ "BaseResponseAnalysisFunctionMapping",
79
+ "BaseResponseAnalysisFunctions",
80
+ "BaseResponseAnalysisFunctionsList",
81
+ "BaseResponseAnalysisStringsResponse",
82
+ "BaseResponseAnalysisTags",
83
+ "BaseResponseAnalysisUpdateTagsResponse",
84
+ "BaseResponseBasic",
85
+ "BaseResponseBinaryAdditionalResponse",
86
+ "BaseResponseBinaryDetailsResponse",
87
+ "BaseResponseBinaryExternalsResponse",
88
+ "BaseResponseBinarySearchResponse",
89
+ "BaseResponseBlockCommentsGenerationForFunctionResponse",
90
+ "BaseResponseBlockCommentsOverviewGenerationResponse",
91
+ "BaseResponseBool",
92
+ "BaseResponseCalleesCallerFunctionsResponse",
93
+ "BaseResponseCapabilities",
94
+ "BaseResponseCheckSecurityChecksTaskResponse",
95
+ "BaseResponseChildBinariesResponse",
96
+ "BaseResponseCollectionBinariesUpdateResponse",
97
+ "BaseResponseCollectionResponse",
98
+ "BaseResponseCollectionSearchResponse",
99
+ "BaseResponseCollectionTagsUpdateResponse",
100
+ "BaseResponseCommentResponse",
101
+ "BaseResponseCommunities",
102
+ "BaseResponseCreated",
103
+ "BaseResponseDict",
104
+ "BaseResponseDynamicExecutionStatus",
105
+ "BaseResponseExternalResponse",
106
+ "BaseResponseFunctionBlocksResponse",
107
+ "BaseResponseFunctionCapabilityResponse",
108
+ "BaseResponseFunctionDataTypes",
109
+ "BaseResponseFunctionDataTypesList",
110
+ "BaseResponseFunctionSearchResponse",
111
+ "BaseResponseFunctionStringsResponse",
112
+ "BaseResponseFunctionTaskResponse",
113
+ "BaseResponseFunctionsDetailResponse",
114
+ "BaseResponseGenerateFunctionDataTypes",
115
+ "BaseResponseGenerationStatusList",
116
+ "BaseResponseGetAiDecompilationRatingResponse",
117
+ "BaseResponseGetAiDecompilationTask",
118
+ "BaseResponseGetMeResponse",
119
+ "BaseResponseGetPublicUserResponse",
120
+ "BaseResponseListCollectionResults",
121
+ "BaseResponseListCommentResponse",
122
+ "BaseResponseListDieMatch",
123
+ "BaseResponseListFunctionNameHistory",
124
+ "BaseResponseListSBOM",
125
+ "BaseResponseListUserActivityResponse",
126
+ "BaseResponseLoginResponse",
127
+ "BaseResponseLogs",
128
+ "BaseResponseModelsResponse",
129
+ "BaseResponseNetworkOverviewResponse",
130
+ "BaseResponseParams",
131
+ "BaseResponseProcessDumps",
132
+ "BaseResponseProcessRegistry",
133
+ "BaseResponseProcessTree",
134
+ "BaseResponseQueuedSecurityChecksTaskResponse",
135
+ "BaseResponseRecent",
136
+ "BaseResponseSecurityChecksResponse",
137
+ "BaseResponseStatus",
138
+ "BaseResponseStr",
139
+ "BaseResponseTTPS",
140
+ "BaseResponseTagSearchResponse",
141
+ "BaseResponseTaskResponse",
142
+ "BaseResponseUploadResponse",
143
+ "BaseResponseVulnerabilities",
144
+ "Basic",
145
+ "BinaryAdditionalDetailsDataResponse",
146
+ "BinaryAdditionalResponse",
147
+ "BinaryConfig",
148
+ "BinaryDetailsResponse",
149
+ "BinaryExternalsResponse",
150
+ "BinarySearchResponse",
151
+ "BinarySearchResult",
152
+ "BinaryTaskStatus",
153
+ "Block",
154
+ "BlockCommentsGenerationForFunctionResponse",
155
+ "CalleeFunctionInfo",
156
+ "CalleesCallerFunctionsResponse",
157
+ "CallerFunctionInfo",
158
+ "Capabilities",
159
+ "Capability",
160
+ "CheckSecurityChecksTaskResponse",
161
+ "ChildBinariesResponse",
162
+ "CodeSignatureModel",
163
+ "CollectionBinariesUpdateRequest",
164
+ "CollectionBinariesUpdateResponse",
165
+ "CollectionBinaryResponse",
166
+ "CollectionCreateRequest",
167
+ "CollectionListItem",
168
+ "CollectionResponse",
169
+ "CollectionResponseBinariesInner",
170
+ "CollectionScope",
171
+ "CollectionSearchResponse",
172
+ "CollectionSearchResult",
173
+ "CollectionTagsUpdateRequest",
174
+ "CollectionTagsUpdateResponse",
175
+ "CollectionUpdateRequest",
176
+ "CommentBase",
177
+ "CommentResponse",
178
+ "CommentUpdateRequest",
179
+ "Communities",
180
+ "CommunityMatchPercentages",
181
+ "ConfidenceType",
182
+ "Context",
183
+ "Created",
184
+ "DecompilationCommentContext",
185
+ "DieMatch",
186
+ "DynamicExecutionStatusInput",
187
+ "ELFImportModel",
188
+ "ELFModel",
189
+ "ELFRelocation",
190
+ "ELFSection",
191
+ "ELFSecurity",
192
+ "ELFSegment",
193
+ "ELFSymbol",
194
+ "ElfDynamicEntry",
195
+ "EntrypointModel",
196
+ "Enumeration",
197
+ "ErrorModel",
198
+ "ExportModel",
199
+ "ExternalResponse",
200
+ "FileFormat",
201
+ "FileHashes",
202
+ "FileMetadata",
203
+ "Filters",
204
+ "FunctionBlockDestinationResponse",
205
+ "FunctionBlockResponse",
206
+ "FunctionBlocksResponse",
207
+ "FunctionBoundary",
208
+ "FunctionCapabilityResponse",
209
+ "FunctionCommentCreateRequest",
210
+ "FunctionDataTypes",
211
+ "FunctionDataTypesList",
212
+ "FunctionDataTypesListItem",
213
+ "FunctionDataTypesParams",
214
+ "FunctionDataTypesStatus",
215
+ "FunctionHeader",
216
+ "FunctionInfoInput",
217
+ "FunctionInfoInputFuncDepsInner",
218
+ "FunctionInfoOutput",
219
+ "FunctionListItem",
220
+ "FunctionLocalVariableResponse",
221
+ "FunctionMapping",
222
+ "FunctionMappingFull",
223
+ "FunctionMatch",
224
+ "FunctionMatchingFilters",
225
+ "FunctionMatchingRequest",
226
+ "FunctionMatchingResponse",
227
+ "FunctionNameHistory",
228
+ "FunctionParamResponse",
229
+ "FunctionRename",
230
+ "FunctionRenameMap",
231
+ "FunctionSearchResponse",
232
+ "FunctionSearchResult",
233
+ "FunctionSourceType",
234
+ "FunctionString",
235
+ "FunctionStringsResponse",
236
+ "FunctionTaskResponse",
237
+ "FunctionTaskStatus",
238
+ "FunctionTypeInput",
239
+ "FunctionTypeOutput",
240
+ "FunctionsDetailResponse",
241
+ "FunctionsListRename",
242
+ "GenerateFunctionDataTypes",
243
+ "GenerationStatusList",
244
+ "GetAiDecompilationRatingResponse",
245
+ "GetAiDecompilationTask",
246
+ "GetMeResponse",
247
+ "GetPublicUserResponse",
248
+ "GlobalVariable",
249
+ "ISA",
250
+ "IconModel",
251
+ "ImportModel",
252
+ "InverseFunctionMapItem",
253
+ "InverseStringMapItem",
254
+ "InverseValue",
255
+ "ListCollectionResults",
256
+ "LoginRequest",
257
+ "LoginResponse",
258
+ "Logs",
259
+ "MatchedFunction",
260
+ "MatchedFunctionSuggestion",
261
+ "MetaModel",
262
+ "ModelName",
263
+ "ModelsResponse",
264
+ "NameConfidence",
265
+ "NetworkOverviewDns",
266
+ "NetworkOverviewDnsAnswer",
267
+ "NetworkOverviewMetadata",
268
+ "NetworkOverviewResponse",
269
+ "Order",
270
+ "PDBDebugModel",
271
+ "PEModel",
272
+ "PaginationModel",
273
+ "Params",
274
+ "Platform",
275
+ "Process",
276
+ "ProcessDump",
277
+ "ProcessDumpMetadata",
278
+ "ProcessDumps",
279
+ "ProcessDumpsData",
280
+ "ProcessRegistry",
281
+ "ProcessTree",
282
+ "QueuedSecurityChecksTaskResponse",
283
+ "ReAnalysisForm",
284
+ "Recent",
285
+ "Registry",
286
+ "RelativeBinaryResponse",
287
+ "SBOM",
288
+ "SBOMPackage",
289
+ "SandboxOptions",
290
+ "ScrapeThirdPartyConfig",
291
+ "SectionModel",
292
+ "SecurityChecksResponse",
293
+ "SecurityChecksResult",
294
+ "SecurityModel",
295
+ "SeverityType",
296
+ "SingleCodeCertificateModel",
297
+ "SingleCodeSignatureModel",
298
+ "SinglePDBEntryModel",
299
+ "SingleSectionModel",
300
+ "StackVariable",
301
+ "StatusInput",
302
+ "StatusOutput",
303
+ "StringFunctions",
304
+ "Structure",
305
+ "StructureMember",
306
+ "Symbols",
307
+ "TTPS",
308
+ "TTPSAttack",
309
+ "TTPSData",
310
+ "TTPSElement",
311
+ "TTPSOccurance",
312
+ "Tag",
313
+ "TagItem",
314
+ "TagResponse",
315
+ "TagSearchResponse",
316
+ "TagSearchResult",
317
+ "TaskResponse",
318
+ "TaskStatus",
319
+ "TimestampModel",
320
+ "TypeDefinition",
321
+ "UpdateFunctionDataTypes",
322
+ "UploadFileType",
323
+ "UploadResponse",
324
+ "UpsertAiDecomplationRatingRequest",
325
+ "UserActivityResponse",
326
+ "Vulnerabilities",
327
+ "Vulnerability",
328
+ "VulnerabilityType",
329
+ "Workspace",
330
+ ]
331
+
332
+ # import apis into sdk package
333
+ from revengai.api.analyses_comments_api import AnalysesCommentsApi as AnalysesCommentsApi
334
+ from revengai.api.analyses_core_api import AnalysesCoreApi as AnalysesCoreApi
335
+ from revengai.api.analyses_dynamic_execution_api import AnalysesDynamicExecutionApi as AnalysesDynamicExecutionApi
336
+ from revengai.api.analyses_results_metadata_api import AnalysesResultsMetadataApi as AnalysesResultsMetadataApi
337
+ from revengai.api.analyses_security_checks_api import AnalysesSecurityChecksApi as AnalysesSecurityChecksApi
338
+ from revengai.api.authentication_users_api import AuthenticationUsersApi as AuthenticationUsersApi
339
+ from revengai.api.binaries_api import BinariesApi as BinariesApi
340
+ from revengai.api.collections_api import CollectionsApi as CollectionsApi
341
+ from revengai.api.external_sources_api import ExternalSourcesApi as ExternalSourcesApi
342
+ from revengai.api.firmware_api import FirmwareApi as FirmwareApi
343
+ from revengai.api.functions_ai_decompilation_api import FunctionsAIDecompilationApi as FunctionsAIDecompilationApi
344
+ from revengai.api.functions_block_comments_api import FunctionsBlockCommentsApi as FunctionsBlockCommentsApi
345
+ from revengai.api.functions_core_api import FunctionsCoreApi as FunctionsCoreApi
346
+ from revengai.api.functions_data_types_api import FunctionsDataTypesApi as FunctionsDataTypesApi
347
+ from revengai.api.functions_decompilation_api import FunctionsDecompilationApi as FunctionsDecompilationApi
348
+ from revengai.api.functions_renaming_history_api import FunctionsRenamingHistoryApi as FunctionsRenamingHistoryApi
349
+ from revengai.api.models_api import ModelsApi as ModelsApi
350
+ from revengai.api.search_api import SearchApi as SearchApi
351
+
352
+ # import ApiClient
353
+ from revengai.api_response import ApiResponse as ApiResponse
354
+ from revengai.api_client import ApiClient as ApiClient
355
+ from revengai.configuration import Configuration as Configuration
356
+ from revengai.exceptions import OpenApiException as OpenApiException
357
+ from revengai.exceptions import ApiTypeError as ApiTypeError
358
+ from revengai.exceptions import ApiValueError as ApiValueError
359
+ from revengai.exceptions import ApiKeyError as ApiKeyError
360
+ from revengai.exceptions import ApiAttributeError as ApiAttributeError
361
+ from revengai.exceptions import ApiException as ApiException
362
+
363
+ # import models into sdk package
364
+ from revengai.models.addr import Addr as Addr
365
+ from revengai.models.ai_decompilation_rating import AiDecompilationRating as AiDecompilationRating
366
+ from revengai.models.ai_unstrip_request import AiUnstripRequest as AiUnstripRequest
367
+ from revengai.models.analysis_access_info import AnalysisAccessInfo as AnalysisAccessInfo
368
+ from revengai.models.analysis_config import AnalysisConfig as AnalysisConfig
369
+ from revengai.models.analysis_create_request import AnalysisCreateRequest as AnalysisCreateRequest
370
+ from revengai.models.analysis_create_response import AnalysisCreateResponse as AnalysisCreateResponse
371
+ from revengai.models.analysis_detail_response import AnalysisDetailResponse as AnalysisDetailResponse
372
+ from revengai.models.analysis_function_mapping import AnalysisFunctionMapping as AnalysisFunctionMapping
373
+ from revengai.models.analysis_function_matching_request import AnalysisFunctionMatchingRequest as AnalysisFunctionMatchingRequest
374
+ from revengai.models.analysis_functions import AnalysisFunctions as AnalysisFunctions
375
+ from revengai.models.analysis_functions_list import AnalysisFunctionsList as AnalysisFunctionsList
376
+ from revengai.models.analysis_record import AnalysisRecord as AnalysisRecord
377
+ from revengai.models.analysis_scope import AnalysisScope as AnalysisScope
378
+ from revengai.models.analysis_strings_response import AnalysisStringsResponse as AnalysisStringsResponse
379
+ from revengai.models.analysis_tags import AnalysisTags as AnalysisTags
380
+ from revengai.models.analysis_update_request import AnalysisUpdateRequest as AnalysisUpdateRequest
381
+ from revengai.models.analysis_update_tags_request import AnalysisUpdateTagsRequest as AnalysisUpdateTagsRequest
382
+ from revengai.models.analysis_update_tags_response import AnalysisUpdateTagsResponse as AnalysisUpdateTagsResponse
383
+ from revengai.models.app_api_rest_v2_analyses_enums_dynamic_execution_status import AppApiRestV2AnalysesEnumsDynamicExecutionStatus as AppApiRestV2AnalysesEnumsDynamicExecutionStatus
384
+ from revengai.models.app_api_rest_v2_analyses_enums_order_by import AppApiRestV2AnalysesEnumsOrderBy as AppApiRestV2AnalysesEnumsOrderBy
385
+ from revengai.models.app_api_rest_v2_collections_enums_order_by import AppApiRestV2CollectionsEnumsOrderBy as AppApiRestV2CollectionsEnumsOrderBy
386
+ from revengai.models.app_api_rest_v2_functions_responses_function import AppApiRestV2FunctionsResponsesFunction as AppApiRestV2FunctionsResponsesFunction
387
+ from revengai.models.app_api_rest_v2_functions_types_function import AppApiRestV2FunctionsTypesFunction as AppApiRestV2FunctionsTypesFunction
388
+ from revengai.models.app_services_dynamic_execution_schemas_dynamic_execution_status import AppServicesDynamicExecutionSchemasDynamicExecutionStatus as AppServicesDynamicExecutionSchemasDynamicExecutionStatus
389
+ from revengai.models.argument import Argument as Argument
390
+ from revengai.models.auto_unstrip_request import AutoUnstripRequest as AutoUnstripRequest
391
+ from revengai.models.auto_unstrip_response import AutoUnstripResponse as AutoUnstripResponse
392
+ from revengai.models.base_response import BaseResponse as BaseResponse
393
+ from revengai.models.base_response_analysis_create_response import BaseResponseAnalysisCreateResponse as BaseResponseAnalysisCreateResponse
394
+ from revengai.models.base_response_analysis_detail_response import BaseResponseAnalysisDetailResponse as BaseResponseAnalysisDetailResponse
395
+ from revengai.models.base_response_analysis_function_mapping import BaseResponseAnalysisFunctionMapping as BaseResponseAnalysisFunctionMapping
396
+ from revengai.models.base_response_analysis_functions import BaseResponseAnalysisFunctions as BaseResponseAnalysisFunctions
397
+ from revengai.models.base_response_analysis_functions_list import BaseResponseAnalysisFunctionsList as BaseResponseAnalysisFunctionsList
398
+ from revengai.models.base_response_analysis_strings_response import BaseResponseAnalysisStringsResponse as BaseResponseAnalysisStringsResponse
399
+ from revengai.models.base_response_analysis_tags import BaseResponseAnalysisTags as BaseResponseAnalysisTags
400
+ from revengai.models.base_response_analysis_update_tags_response import BaseResponseAnalysisUpdateTagsResponse as BaseResponseAnalysisUpdateTagsResponse
401
+ from revengai.models.base_response_basic import BaseResponseBasic as BaseResponseBasic
402
+ from revengai.models.base_response_binary_additional_response import BaseResponseBinaryAdditionalResponse as BaseResponseBinaryAdditionalResponse
403
+ from revengai.models.base_response_binary_details_response import BaseResponseBinaryDetailsResponse as BaseResponseBinaryDetailsResponse
404
+ from revengai.models.base_response_binary_externals_response import BaseResponseBinaryExternalsResponse as BaseResponseBinaryExternalsResponse
405
+ from revengai.models.base_response_binary_search_response import BaseResponseBinarySearchResponse as BaseResponseBinarySearchResponse
406
+ from revengai.models.base_response_block_comments_generation_for_function_response import BaseResponseBlockCommentsGenerationForFunctionResponse as BaseResponseBlockCommentsGenerationForFunctionResponse
407
+ from revengai.models.base_response_block_comments_overview_generation_response import BaseResponseBlockCommentsOverviewGenerationResponse as BaseResponseBlockCommentsOverviewGenerationResponse
408
+ from revengai.models.base_response_bool import BaseResponseBool as BaseResponseBool
409
+ from revengai.models.base_response_callees_caller_functions_response import BaseResponseCalleesCallerFunctionsResponse as BaseResponseCalleesCallerFunctionsResponse
410
+ from revengai.models.base_response_capabilities import BaseResponseCapabilities as BaseResponseCapabilities
411
+ from revengai.models.base_response_check_security_checks_task_response import BaseResponseCheckSecurityChecksTaskResponse as BaseResponseCheckSecurityChecksTaskResponse
412
+ from revengai.models.base_response_child_binaries_response import BaseResponseChildBinariesResponse as BaseResponseChildBinariesResponse
413
+ from revengai.models.base_response_collection_binaries_update_response import BaseResponseCollectionBinariesUpdateResponse as BaseResponseCollectionBinariesUpdateResponse
414
+ from revengai.models.base_response_collection_response import BaseResponseCollectionResponse as BaseResponseCollectionResponse
415
+ from revengai.models.base_response_collection_search_response import BaseResponseCollectionSearchResponse as BaseResponseCollectionSearchResponse
416
+ from revengai.models.base_response_collection_tags_update_response import BaseResponseCollectionTagsUpdateResponse as BaseResponseCollectionTagsUpdateResponse
417
+ from revengai.models.base_response_comment_response import BaseResponseCommentResponse as BaseResponseCommentResponse
418
+ from revengai.models.base_response_communities import BaseResponseCommunities as BaseResponseCommunities
419
+ from revengai.models.base_response_created import BaseResponseCreated as BaseResponseCreated
420
+ from revengai.models.base_response_dict import BaseResponseDict as BaseResponseDict
421
+ from revengai.models.base_response_dynamic_execution_status import BaseResponseDynamicExecutionStatus as BaseResponseDynamicExecutionStatus
422
+ from revengai.models.base_response_external_response import BaseResponseExternalResponse as BaseResponseExternalResponse
423
+ from revengai.models.base_response_function_blocks_response import BaseResponseFunctionBlocksResponse as BaseResponseFunctionBlocksResponse
424
+ from revengai.models.base_response_function_capability_response import BaseResponseFunctionCapabilityResponse as BaseResponseFunctionCapabilityResponse
425
+ from revengai.models.base_response_function_data_types import BaseResponseFunctionDataTypes as BaseResponseFunctionDataTypes
426
+ from revengai.models.base_response_function_data_types_list import BaseResponseFunctionDataTypesList as BaseResponseFunctionDataTypesList
427
+ from revengai.models.base_response_function_search_response import BaseResponseFunctionSearchResponse as BaseResponseFunctionSearchResponse
428
+ from revengai.models.base_response_function_strings_response import BaseResponseFunctionStringsResponse as BaseResponseFunctionStringsResponse
429
+ from revengai.models.base_response_function_task_response import BaseResponseFunctionTaskResponse as BaseResponseFunctionTaskResponse
430
+ from revengai.models.base_response_functions_detail_response import BaseResponseFunctionsDetailResponse as BaseResponseFunctionsDetailResponse
431
+ from revengai.models.base_response_generate_function_data_types import BaseResponseGenerateFunctionDataTypes as BaseResponseGenerateFunctionDataTypes
432
+ from revengai.models.base_response_generation_status_list import BaseResponseGenerationStatusList as BaseResponseGenerationStatusList
433
+ from revengai.models.base_response_get_ai_decompilation_rating_response import BaseResponseGetAiDecompilationRatingResponse as BaseResponseGetAiDecompilationRatingResponse
434
+ from revengai.models.base_response_get_ai_decompilation_task import BaseResponseGetAiDecompilationTask as BaseResponseGetAiDecompilationTask
435
+ from revengai.models.base_response_get_me_response import BaseResponseGetMeResponse as BaseResponseGetMeResponse
436
+ from revengai.models.base_response_get_public_user_response import BaseResponseGetPublicUserResponse as BaseResponseGetPublicUserResponse
437
+ from revengai.models.base_response_list_collection_results import BaseResponseListCollectionResults as BaseResponseListCollectionResults
438
+ from revengai.models.base_response_list_comment_response import BaseResponseListCommentResponse as BaseResponseListCommentResponse
439
+ from revengai.models.base_response_list_die_match import BaseResponseListDieMatch as BaseResponseListDieMatch
440
+ from revengai.models.base_response_list_function_name_history import BaseResponseListFunctionNameHistory as BaseResponseListFunctionNameHistory
441
+ from revengai.models.base_response_list_sbom import BaseResponseListSBOM as BaseResponseListSBOM
442
+ from revengai.models.base_response_list_user_activity_response import BaseResponseListUserActivityResponse as BaseResponseListUserActivityResponse
443
+ from revengai.models.base_response_login_response import BaseResponseLoginResponse as BaseResponseLoginResponse
444
+ from revengai.models.base_response_logs import BaseResponseLogs as BaseResponseLogs
445
+ from revengai.models.base_response_models_response import BaseResponseModelsResponse as BaseResponseModelsResponse
446
+ from revengai.models.base_response_network_overview_response import BaseResponseNetworkOverviewResponse as BaseResponseNetworkOverviewResponse
447
+ from revengai.models.base_response_params import BaseResponseParams as BaseResponseParams
448
+ from revengai.models.base_response_process_dumps import BaseResponseProcessDumps as BaseResponseProcessDumps
449
+ from revengai.models.base_response_process_registry import BaseResponseProcessRegistry as BaseResponseProcessRegistry
450
+ from revengai.models.base_response_process_tree import BaseResponseProcessTree as BaseResponseProcessTree
451
+ from revengai.models.base_response_queued_security_checks_task_response import BaseResponseQueuedSecurityChecksTaskResponse as BaseResponseQueuedSecurityChecksTaskResponse
452
+ from revengai.models.base_response_recent import BaseResponseRecent as BaseResponseRecent
453
+ from revengai.models.base_response_security_checks_response import BaseResponseSecurityChecksResponse as BaseResponseSecurityChecksResponse
454
+ from revengai.models.base_response_status import BaseResponseStatus as BaseResponseStatus
455
+ from revengai.models.base_response_str import BaseResponseStr as BaseResponseStr
456
+ from revengai.models.base_response_ttps import BaseResponseTTPS as BaseResponseTTPS
457
+ from revengai.models.base_response_tag_search_response import BaseResponseTagSearchResponse as BaseResponseTagSearchResponse
458
+ from revengai.models.base_response_task_response import BaseResponseTaskResponse as BaseResponseTaskResponse
459
+ from revengai.models.base_response_upload_response import BaseResponseUploadResponse as BaseResponseUploadResponse
460
+ from revengai.models.base_response_vulnerabilities import BaseResponseVulnerabilities as BaseResponseVulnerabilities
461
+ from revengai.models.basic import Basic as Basic
462
+ from revengai.models.binary_additional_details_data_response import BinaryAdditionalDetailsDataResponse as BinaryAdditionalDetailsDataResponse
463
+ from revengai.models.binary_additional_response import BinaryAdditionalResponse as BinaryAdditionalResponse
464
+ from revengai.models.binary_config import BinaryConfig as BinaryConfig
465
+ from revengai.models.binary_details_response import BinaryDetailsResponse as BinaryDetailsResponse
466
+ from revengai.models.binary_externals_response import BinaryExternalsResponse as BinaryExternalsResponse
467
+ from revengai.models.binary_search_response import BinarySearchResponse as BinarySearchResponse
468
+ from revengai.models.binary_search_result import BinarySearchResult as BinarySearchResult
469
+ from revengai.models.binary_task_status import BinaryTaskStatus as BinaryTaskStatus
470
+ from revengai.models.block import Block as Block
471
+ from revengai.models.block_comments_generation_for_function_response import BlockCommentsGenerationForFunctionResponse as BlockCommentsGenerationForFunctionResponse
472
+ from revengai.models.callee_function_info import CalleeFunctionInfo as CalleeFunctionInfo
473
+ from revengai.models.callees_caller_functions_response import CalleesCallerFunctionsResponse as CalleesCallerFunctionsResponse
474
+ from revengai.models.caller_function_info import CallerFunctionInfo as CallerFunctionInfo
475
+ from revengai.models.capabilities import Capabilities as Capabilities
476
+ from revengai.models.capability import Capability as Capability
477
+ from revengai.models.check_security_checks_task_response import CheckSecurityChecksTaskResponse as CheckSecurityChecksTaskResponse
478
+ from revengai.models.child_binaries_response import ChildBinariesResponse as ChildBinariesResponse
479
+ from revengai.models.code_signature_model import CodeSignatureModel as CodeSignatureModel
480
+ from revengai.models.collection_binaries_update_request import CollectionBinariesUpdateRequest as CollectionBinariesUpdateRequest
481
+ from revengai.models.collection_binaries_update_response import CollectionBinariesUpdateResponse as CollectionBinariesUpdateResponse
482
+ from revengai.models.collection_binary_response import CollectionBinaryResponse as CollectionBinaryResponse
483
+ from revengai.models.collection_create_request import CollectionCreateRequest as CollectionCreateRequest
484
+ from revengai.models.collection_list_item import CollectionListItem as CollectionListItem
485
+ from revengai.models.collection_response import CollectionResponse as CollectionResponse
486
+ from revengai.models.collection_response_binaries_inner import CollectionResponseBinariesInner as CollectionResponseBinariesInner
487
+ from revengai.models.collection_scope import CollectionScope as CollectionScope
488
+ from revengai.models.collection_search_response import CollectionSearchResponse as CollectionSearchResponse
489
+ from revengai.models.collection_search_result import CollectionSearchResult as CollectionSearchResult
490
+ from revengai.models.collection_tags_update_request import CollectionTagsUpdateRequest as CollectionTagsUpdateRequest
491
+ from revengai.models.collection_tags_update_response import CollectionTagsUpdateResponse as CollectionTagsUpdateResponse
492
+ from revengai.models.collection_update_request import CollectionUpdateRequest as CollectionUpdateRequest
493
+ from revengai.models.comment_base import CommentBase as CommentBase
494
+ from revengai.models.comment_response import CommentResponse as CommentResponse
495
+ from revengai.models.comment_update_request import CommentUpdateRequest as CommentUpdateRequest
496
+ from revengai.models.communities import Communities as Communities
497
+ from revengai.models.community_match_percentages import CommunityMatchPercentages as CommunityMatchPercentages
498
+ from revengai.models.confidence_type import ConfidenceType as ConfidenceType
499
+ from revengai.models.context import Context as Context
500
+ from revengai.models.created import Created as Created
501
+ from revengai.models.decompilation_comment_context import DecompilationCommentContext as DecompilationCommentContext
502
+ from revengai.models.die_match import DieMatch as DieMatch
503
+ from revengai.models.dynamic_execution_status_input import DynamicExecutionStatusInput as DynamicExecutionStatusInput
504
+ from revengai.models.elf_import_model import ELFImportModel as ELFImportModel
505
+ from revengai.models.elf_model import ELFModel as ELFModel
506
+ from revengai.models.elf_relocation import ELFRelocation as ELFRelocation
507
+ from revengai.models.elf_section import ELFSection as ELFSection
508
+ from revengai.models.elf_security import ELFSecurity as ELFSecurity
509
+ from revengai.models.elf_segment import ELFSegment as ELFSegment
510
+ from revengai.models.elf_symbol import ELFSymbol as ELFSymbol
511
+ from revengai.models.elf_dynamic_entry import ElfDynamicEntry as ElfDynamicEntry
512
+ from revengai.models.entrypoint_model import EntrypointModel as EntrypointModel
513
+ from revengai.models.enumeration import Enumeration as Enumeration
514
+ from revengai.models.error_model import ErrorModel as ErrorModel
515
+ from revengai.models.export_model import ExportModel as ExportModel
516
+ from revengai.models.external_response import ExternalResponse as ExternalResponse
517
+ from revengai.models.file_format import FileFormat as FileFormat
518
+ from revengai.models.file_hashes import FileHashes as FileHashes
519
+ from revengai.models.file_metadata import FileMetadata as FileMetadata
520
+ from revengai.models.filters import Filters as Filters
521
+ from revengai.models.function_block_destination_response import FunctionBlockDestinationResponse as FunctionBlockDestinationResponse
522
+ from revengai.models.function_block_response import FunctionBlockResponse as FunctionBlockResponse
523
+ from revengai.models.function_blocks_response import FunctionBlocksResponse as FunctionBlocksResponse
524
+ from revengai.models.function_boundary import FunctionBoundary as FunctionBoundary
525
+ from revengai.models.function_capability_response import FunctionCapabilityResponse as FunctionCapabilityResponse
526
+ from revengai.models.function_comment_create_request import FunctionCommentCreateRequest as FunctionCommentCreateRequest
527
+ from revengai.models.function_data_types import FunctionDataTypes as FunctionDataTypes
528
+ from revengai.models.function_data_types_list import FunctionDataTypesList as FunctionDataTypesList
529
+ from revengai.models.function_data_types_list_item import FunctionDataTypesListItem as FunctionDataTypesListItem
530
+ from revengai.models.function_data_types_params import FunctionDataTypesParams as FunctionDataTypesParams
531
+ from revengai.models.function_data_types_status import FunctionDataTypesStatus as FunctionDataTypesStatus
532
+ from revengai.models.function_header import FunctionHeader as FunctionHeader
533
+ from revengai.models.function_info_input import FunctionInfoInput as FunctionInfoInput
534
+ from revengai.models.function_info_input_func_deps_inner import FunctionInfoInputFuncDepsInner as FunctionInfoInputFuncDepsInner
535
+ from revengai.models.function_info_output import FunctionInfoOutput as FunctionInfoOutput
536
+ from revengai.models.function_list_item import FunctionListItem as FunctionListItem
537
+ from revengai.models.function_local_variable_response import FunctionLocalVariableResponse as FunctionLocalVariableResponse
538
+ from revengai.models.function_mapping import FunctionMapping as FunctionMapping
539
+ from revengai.models.function_mapping_full import FunctionMappingFull as FunctionMappingFull
540
+ from revengai.models.function_match import FunctionMatch as FunctionMatch
541
+ from revengai.models.function_matching_filters import FunctionMatchingFilters as FunctionMatchingFilters
542
+ from revengai.models.function_matching_request import FunctionMatchingRequest as FunctionMatchingRequest
543
+ from revengai.models.function_matching_response import FunctionMatchingResponse as FunctionMatchingResponse
544
+ from revengai.models.function_name_history import FunctionNameHistory as FunctionNameHistory
545
+ from revengai.models.function_param_response import FunctionParamResponse as FunctionParamResponse
546
+ from revengai.models.function_rename import FunctionRename as FunctionRename
547
+ from revengai.models.function_rename_map import FunctionRenameMap as FunctionRenameMap
548
+ from revengai.models.function_search_response import FunctionSearchResponse as FunctionSearchResponse
549
+ from revengai.models.function_search_result import FunctionSearchResult as FunctionSearchResult
550
+ from revengai.models.function_source_type import FunctionSourceType as FunctionSourceType
551
+ from revengai.models.function_string import FunctionString as FunctionString
552
+ from revengai.models.function_strings_response import FunctionStringsResponse as FunctionStringsResponse
553
+ from revengai.models.function_task_response import FunctionTaskResponse as FunctionTaskResponse
554
+ from revengai.models.function_task_status import FunctionTaskStatus as FunctionTaskStatus
555
+ from revengai.models.function_type_input import FunctionTypeInput as FunctionTypeInput
556
+ from revengai.models.function_type_output import FunctionTypeOutput as FunctionTypeOutput
557
+ from revengai.models.functions_detail_response import FunctionsDetailResponse as FunctionsDetailResponse
558
+ from revengai.models.functions_list_rename import FunctionsListRename as FunctionsListRename
559
+ from revengai.models.generate_function_data_types import GenerateFunctionDataTypes as GenerateFunctionDataTypes
560
+ from revengai.models.generation_status_list import GenerationStatusList as GenerationStatusList
561
+ from revengai.models.get_ai_decompilation_rating_response import GetAiDecompilationRatingResponse as GetAiDecompilationRatingResponse
562
+ from revengai.models.get_ai_decompilation_task import GetAiDecompilationTask as GetAiDecompilationTask
563
+ from revengai.models.get_me_response import GetMeResponse as GetMeResponse
564
+ from revengai.models.get_public_user_response import GetPublicUserResponse as GetPublicUserResponse
565
+ from revengai.models.global_variable import GlobalVariable as GlobalVariable
566
+ from revengai.models.isa import ISA as ISA
567
+ from revengai.models.icon_model import IconModel as IconModel
568
+ from revengai.models.import_model import ImportModel as ImportModel
569
+ from revengai.models.inverse_function_map_item import InverseFunctionMapItem as InverseFunctionMapItem
570
+ from revengai.models.inverse_string_map_item import InverseStringMapItem as InverseStringMapItem
571
+ from revengai.models.inverse_value import InverseValue as InverseValue
572
+ from revengai.models.list_collection_results import ListCollectionResults as ListCollectionResults
573
+ from revengai.models.login_request import LoginRequest as LoginRequest
574
+ from revengai.models.login_response import LoginResponse as LoginResponse
575
+ from revengai.models.logs import Logs as Logs
576
+ from revengai.models.matched_function import MatchedFunction as MatchedFunction
577
+ from revengai.models.matched_function_suggestion import MatchedFunctionSuggestion as MatchedFunctionSuggestion
578
+ from revengai.models.meta_model import MetaModel as MetaModel
579
+ from revengai.models.model_name import ModelName as ModelName
580
+ from revengai.models.models_response import ModelsResponse as ModelsResponse
581
+ from revengai.models.name_confidence import NameConfidence as NameConfidence
582
+ from revengai.models.network_overview_dns import NetworkOverviewDns as NetworkOverviewDns
583
+ from revengai.models.network_overview_dns_answer import NetworkOverviewDnsAnswer as NetworkOverviewDnsAnswer
584
+ from revengai.models.network_overview_metadata import NetworkOverviewMetadata as NetworkOverviewMetadata
585
+ from revengai.models.network_overview_response import NetworkOverviewResponse as NetworkOverviewResponse
586
+ from revengai.models.order import Order as Order
587
+ from revengai.models.pdb_debug_model import PDBDebugModel as PDBDebugModel
588
+ from revengai.models.pe_model import PEModel as PEModel
589
+ from revengai.models.pagination_model import PaginationModel as PaginationModel
590
+ from revengai.models.params import Params as Params
591
+ from revengai.models.platform import Platform as Platform
592
+ from revengai.models.process import Process as Process
593
+ from revengai.models.process_dump import ProcessDump as ProcessDump
594
+ from revengai.models.process_dump_metadata import ProcessDumpMetadata as ProcessDumpMetadata
595
+ from revengai.models.process_dumps import ProcessDumps as ProcessDumps
596
+ from revengai.models.process_dumps_data import ProcessDumpsData as ProcessDumpsData
597
+ from revengai.models.process_registry import ProcessRegistry as ProcessRegistry
598
+ from revengai.models.process_tree import ProcessTree as ProcessTree
599
+ from revengai.models.queued_security_checks_task_response import QueuedSecurityChecksTaskResponse as QueuedSecurityChecksTaskResponse
600
+ from revengai.models.re_analysis_form import ReAnalysisForm as ReAnalysisForm
601
+ from revengai.models.recent import Recent as Recent
602
+ from revengai.models.registry import Registry as Registry
603
+ from revengai.models.relative_binary_response import RelativeBinaryResponse as RelativeBinaryResponse
604
+ from revengai.models.sbom import SBOM as SBOM
605
+ from revengai.models.sbom_package import SBOMPackage as SBOMPackage
606
+ from revengai.models.sandbox_options import SandboxOptions as SandboxOptions
607
+ from revengai.models.scrape_third_party_config import ScrapeThirdPartyConfig as ScrapeThirdPartyConfig
608
+ from revengai.models.section_model import SectionModel as SectionModel
609
+ from revengai.models.security_checks_response import SecurityChecksResponse as SecurityChecksResponse
610
+ from revengai.models.security_checks_result import SecurityChecksResult as SecurityChecksResult
611
+ from revengai.models.security_model import SecurityModel as SecurityModel
612
+ from revengai.models.severity_type import SeverityType as SeverityType
613
+ from revengai.models.single_code_certificate_model import SingleCodeCertificateModel as SingleCodeCertificateModel
614
+ from revengai.models.single_code_signature_model import SingleCodeSignatureModel as SingleCodeSignatureModel
615
+ from revengai.models.single_pdb_entry_model import SinglePDBEntryModel as SinglePDBEntryModel
616
+ from revengai.models.single_section_model import SingleSectionModel as SingleSectionModel
617
+ from revengai.models.stack_variable import StackVariable as StackVariable
618
+ from revengai.models.status_input import StatusInput as StatusInput
619
+ from revengai.models.status_output import StatusOutput as StatusOutput
620
+ from revengai.models.string_functions import StringFunctions as StringFunctions
621
+ from revengai.models.structure import Structure as Structure
622
+ from revengai.models.structure_member import StructureMember as StructureMember
623
+ from revengai.models.symbols import Symbols as Symbols
624
+ from revengai.models.ttps import TTPS as TTPS
625
+ from revengai.models.ttps_attack import TTPSAttack as TTPSAttack
626
+ from revengai.models.ttps_data import TTPSData as TTPSData
627
+ from revengai.models.ttps_element import TTPSElement as TTPSElement
628
+ from revengai.models.ttps_occurance import TTPSOccurance as TTPSOccurance
629
+ from revengai.models.tag import Tag as Tag
630
+ from revengai.models.tag_item import TagItem as TagItem
631
+ from revengai.models.tag_response import TagResponse as TagResponse
632
+ from revengai.models.tag_search_response import TagSearchResponse as TagSearchResponse
633
+ from revengai.models.tag_search_result import TagSearchResult as TagSearchResult
634
+ from revengai.models.task_response import TaskResponse as TaskResponse
635
+ from revengai.models.task_status import TaskStatus as TaskStatus
636
+ from revengai.models.timestamp_model import TimestampModel as TimestampModel
637
+ from revengai.models.type_definition import TypeDefinition as TypeDefinition
638
+ from revengai.models.update_function_data_types import UpdateFunctionDataTypes as UpdateFunctionDataTypes
639
+ from revengai.models.upload_file_type import UploadFileType as UploadFileType
640
+ from revengai.models.upload_response import UploadResponse as UploadResponse
641
+ from revengai.models.upsert_ai_decomplation_rating_request import UpsertAiDecomplationRatingRequest as UpsertAiDecomplationRatingRequest
642
+ from revengai.models.user_activity_response import UserActivityResponse as UserActivityResponse
643
+ from revengai.models.vulnerabilities import Vulnerabilities as Vulnerabilities
644
+ from revengai.models.vulnerability import Vulnerability as Vulnerability
645
+ from revengai.models.vulnerability_type import VulnerabilityType as VulnerabilityType
646
+ from revengai.models.workspace import Workspace as Workspace
647
+