revengai 1.92.1__py3-none-any.whl → 1.95.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.
Potentially problematic release.
This version of revengai might be problematic. Click here for more details.
- revengai/__init__.py +1 -1
- revengai/api/analyses_comments_api.py +1 -62
- revengai/api/analyses_core_api.py +0 -240
- revengai/api/analyses_dynamic_execution_api.py +2 -108
- revengai/api/analyses_results_metadata_api.py +0 -105
- revengai/api/analyses_security_checks_api.py +1 -47
- revengai/api/authentication_users_api.py +1 -63
- revengai/api/binaries_api.py +2 -93
- revengai/api/collections_api.py +0 -105
- revengai/api/confidence_api.py +1 -62
- revengai/api/external_sources_api.py +1 -93
- revengai/api/firmware_api.py +1 -32
- revengai/api/functions_ai_decompilation_api.py +1 -136
- revengai/api/functions_block_comments_api.py +1 -48
- revengai/api/functions_core_api.py +0 -195
- revengai/api/functions_data_types_api.py +1 -92
- revengai/api/functions_decompilation_api.py +1 -107
- revengai/api/functions_renaming_history_api.py +1 -63
- revengai/api/models_api.py +0 -18
- revengai/api/search_api.py +0 -45
- revengai/api_client.py +1 -1
- revengai/configuration.py +2 -2
- revengai/models/function_boundary.py +3 -3
- revengai/models/function_mapping.py +1 -1
- {revengai-1.92.1.dist-info → revengai-1.95.0.dist-info}/METADATA +5 -3
- {revengai-1.92.1.dist-info → revengai-1.95.0.dist-info}/RECORD +28 -27
- revengai-1.95.0.dist-info/licenses/LICENSE.md +19 -0
- {revengai-1.92.1.dist-info → revengai-1.95.0.dist-info}/WHEEL +0 -0
|
@@ -15,9 +15,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
|
15
15
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
16
16
|
from typing_extensions import Annotated
|
|
17
17
|
|
|
18
|
-
from pydantic import
|
|
19
|
-
from typing import Optional
|
|
20
|
-
from typing_extensions import Annotated
|
|
18
|
+
from pydantic import StrictInt
|
|
21
19
|
from revengai.models.base_response_external_response import BaseResponseExternalResponse
|
|
22
20
|
from revengai.models.base_response_str import BaseResponseStr
|
|
23
21
|
from revengai.models.base_response_task_response import BaseResponseTaskResponse
|
|
@@ -44,7 +42,6 @@ class ExternalSourcesApi:
|
|
|
44
42
|
def create_external_task_mb(
|
|
45
43
|
self,
|
|
46
44
|
analysis_id: StrictInt,
|
|
47
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
48
45
|
_request_timeout: Union[
|
|
49
46
|
None,
|
|
50
47
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -63,8 +60,6 @@ class ExternalSourcesApi:
|
|
|
63
60
|
|
|
64
61
|
:param analysis_id: (required)
|
|
65
62
|
:type analysis_id: int
|
|
66
|
-
:param authorization: API Key bearer token
|
|
67
|
-
:type authorization: str
|
|
68
63
|
:param _request_timeout: timeout setting for this request. If one
|
|
69
64
|
number provided, it will be total request
|
|
70
65
|
timeout. It can also be a pair (tuple) of
|
|
@@ -89,7 +84,6 @@ class ExternalSourcesApi:
|
|
|
89
84
|
|
|
90
85
|
_param = self._create_external_task_mb_serialize(
|
|
91
86
|
analysis_id=analysis_id,
|
|
92
|
-
authorization=authorization,
|
|
93
87
|
_request_auth=_request_auth,
|
|
94
88
|
_content_type=_content_type,
|
|
95
89
|
_headers=_headers,
|
|
@@ -116,7 +110,6 @@ class ExternalSourcesApi:
|
|
|
116
110
|
def create_external_task_mb_with_http_info(
|
|
117
111
|
self,
|
|
118
112
|
analysis_id: StrictInt,
|
|
119
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
120
113
|
_request_timeout: Union[
|
|
121
114
|
None,
|
|
122
115
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -135,8 +128,6 @@ class ExternalSourcesApi:
|
|
|
135
128
|
|
|
136
129
|
:param analysis_id: (required)
|
|
137
130
|
:type analysis_id: int
|
|
138
|
-
:param authorization: API Key bearer token
|
|
139
|
-
:type authorization: str
|
|
140
131
|
:param _request_timeout: timeout setting for this request. If one
|
|
141
132
|
number provided, it will be total request
|
|
142
133
|
timeout. It can also be a pair (tuple) of
|
|
@@ -161,7 +152,6 @@ class ExternalSourcesApi:
|
|
|
161
152
|
|
|
162
153
|
_param = self._create_external_task_mb_serialize(
|
|
163
154
|
analysis_id=analysis_id,
|
|
164
|
-
authorization=authorization,
|
|
165
155
|
_request_auth=_request_auth,
|
|
166
156
|
_content_type=_content_type,
|
|
167
157
|
_headers=_headers,
|
|
@@ -188,7 +178,6 @@ class ExternalSourcesApi:
|
|
|
188
178
|
def create_external_task_mb_without_preload_content(
|
|
189
179
|
self,
|
|
190
180
|
analysis_id: StrictInt,
|
|
191
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
192
181
|
_request_timeout: Union[
|
|
193
182
|
None,
|
|
194
183
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -207,8 +196,6 @@ class ExternalSourcesApi:
|
|
|
207
196
|
|
|
208
197
|
:param analysis_id: (required)
|
|
209
198
|
:type analysis_id: int
|
|
210
|
-
:param authorization: API Key bearer token
|
|
211
|
-
:type authorization: str
|
|
212
199
|
:param _request_timeout: timeout setting for this request. If one
|
|
213
200
|
number provided, it will be total request
|
|
214
201
|
timeout. It can also be a pair (tuple) of
|
|
@@ -233,7 +220,6 @@ class ExternalSourcesApi:
|
|
|
233
220
|
|
|
234
221
|
_param = self._create_external_task_mb_serialize(
|
|
235
222
|
analysis_id=analysis_id,
|
|
236
|
-
authorization=authorization,
|
|
237
223
|
_request_auth=_request_auth,
|
|
238
224
|
_content_type=_content_type,
|
|
239
225
|
_headers=_headers,
|
|
@@ -255,7 +241,6 @@ class ExternalSourcesApi:
|
|
|
255
241
|
def _create_external_task_mb_serialize(
|
|
256
242
|
self,
|
|
257
243
|
analysis_id,
|
|
258
|
-
authorization,
|
|
259
244
|
_request_auth,
|
|
260
245
|
_content_type,
|
|
261
246
|
_headers,
|
|
@@ -281,8 +266,6 @@ class ExternalSourcesApi:
|
|
|
281
266
|
_path_params['analysis_id'] = analysis_id
|
|
282
267
|
# process the query parameters
|
|
283
268
|
# process the header parameters
|
|
284
|
-
if authorization is not None:
|
|
285
|
-
_header_params['authorization'] = authorization
|
|
286
269
|
# process the form parameters
|
|
287
270
|
# process the body parameter
|
|
288
271
|
|
|
@@ -323,7 +306,6 @@ class ExternalSourcesApi:
|
|
|
323
306
|
def create_external_task_vt(
|
|
324
307
|
self,
|
|
325
308
|
analysis_id: StrictInt,
|
|
326
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
327
309
|
_request_timeout: Union[
|
|
328
310
|
None,
|
|
329
311
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -342,8 +324,6 @@ class ExternalSourcesApi:
|
|
|
342
324
|
|
|
343
325
|
:param analysis_id: (required)
|
|
344
326
|
:type analysis_id: int
|
|
345
|
-
:param authorization: API Key bearer token
|
|
346
|
-
:type authorization: str
|
|
347
327
|
:param _request_timeout: timeout setting for this request. If one
|
|
348
328
|
number provided, it will be total request
|
|
349
329
|
timeout. It can also be a pair (tuple) of
|
|
@@ -368,7 +348,6 @@ class ExternalSourcesApi:
|
|
|
368
348
|
|
|
369
349
|
_param = self._create_external_task_vt_serialize(
|
|
370
350
|
analysis_id=analysis_id,
|
|
371
|
-
authorization=authorization,
|
|
372
351
|
_request_auth=_request_auth,
|
|
373
352
|
_content_type=_content_type,
|
|
374
353
|
_headers=_headers,
|
|
@@ -395,7 +374,6 @@ class ExternalSourcesApi:
|
|
|
395
374
|
def create_external_task_vt_with_http_info(
|
|
396
375
|
self,
|
|
397
376
|
analysis_id: StrictInt,
|
|
398
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
399
377
|
_request_timeout: Union[
|
|
400
378
|
None,
|
|
401
379
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -414,8 +392,6 @@ class ExternalSourcesApi:
|
|
|
414
392
|
|
|
415
393
|
:param analysis_id: (required)
|
|
416
394
|
:type analysis_id: int
|
|
417
|
-
:param authorization: API Key bearer token
|
|
418
|
-
:type authorization: str
|
|
419
395
|
:param _request_timeout: timeout setting for this request. If one
|
|
420
396
|
number provided, it will be total request
|
|
421
397
|
timeout. It can also be a pair (tuple) of
|
|
@@ -440,7 +416,6 @@ class ExternalSourcesApi:
|
|
|
440
416
|
|
|
441
417
|
_param = self._create_external_task_vt_serialize(
|
|
442
418
|
analysis_id=analysis_id,
|
|
443
|
-
authorization=authorization,
|
|
444
419
|
_request_auth=_request_auth,
|
|
445
420
|
_content_type=_content_type,
|
|
446
421
|
_headers=_headers,
|
|
@@ -467,7 +442,6 @@ class ExternalSourcesApi:
|
|
|
467
442
|
def create_external_task_vt_without_preload_content(
|
|
468
443
|
self,
|
|
469
444
|
analysis_id: StrictInt,
|
|
470
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
471
445
|
_request_timeout: Union[
|
|
472
446
|
None,
|
|
473
447
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -486,8 +460,6 @@ class ExternalSourcesApi:
|
|
|
486
460
|
|
|
487
461
|
:param analysis_id: (required)
|
|
488
462
|
:type analysis_id: int
|
|
489
|
-
:param authorization: API Key bearer token
|
|
490
|
-
:type authorization: str
|
|
491
463
|
:param _request_timeout: timeout setting for this request. If one
|
|
492
464
|
number provided, it will be total request
|
|
493
465
|
timeout. It can also be a pair (tuple) of
|
|
@@ -512,7 +484,6 @@ class ExternalSourcesApi:
|
|
|
512
484
|
|
|
513
485
|
_param = self._create_external_task_vt_serialize(
|
|
514
486
|
analysis_id=analysis_id,
|
|
515
|
-
authorization=authorization,
|
|
516
487
|
_request_auth=_request_auth,
|
|
517
488
|
_content_type=_content_type,
|
|
518
489
|
_headers=_headers,
|
|
@@ -534,7 +505,6 @@ class ExternalSourcesApi:
|
|
|
534
505
|
def _create_external_task_vt_serialize(
|
|
535
506
|
self,
|
|
536
507
|
analysis_id,
|
|
537
|
-
authorization,
|
|
538
508
|
_request_auth,
|
|
539
509
|
_content_type,
|
|
540
510
|
_headers,
|
|
@@ -560,8 +530,6 @@ class ExternalSourcesApi:
|
|
|
560
530
|
_path_params['analysis_id'] = analysis_id
|
|
561
531
|
# process the query parameters
|
|
562
532
|
# process the header parameters
|
|
563
|
-
if authorization is not None:
|
|
564
|
-
_header_params['authorization'] = authorization
|
|
565
533
|
# process the form parameters
|
|
566
534
|
# process the body parameter
|
|
567
535
|
|
|
@@ -602,7 +570,6 @@ class ExternalSourcesApi:
|
|
|
602
570
|
def get_mb_data(
|
|
603
571
|
self,
|
|
604
572
|
analysis_id: StrictInt,
|
|
605
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
606
573
|
_request_timeout: Union[
|
|
607
574
|
None,
|
|
608
575
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -621,8 +588,6 @@ class ExternalSourcesApi:
|
|
|
621
588
|
|
|
622
589
|
:param analysis_id: (required)
|
|
623
590
|
:type analysis_id: int
|
|
624
|
-
:param authorization: API Key bearer token
|
|
625
|
-
:type authorization: str
|
|
626
591
|
:param _request_timeout: timeout setting for this request. If one
|
|
627
592
|
number provided, it will be total request
|
|
628
593
|
timeout. It can also be a pair (tuple) of
|
|
@@ -647,7 +612,6 @@ class ExternalSourcesApi:
|
|
|
647
612
|
|
|
648
613
|
_param = self._get_mb_data_serialize(
|
|
649
614
|
analysis_id=analysis_id,
|
|
650
|
-
authorization=authorization,
|
|
651
615
|
_request_auth=_request_auth,
|
|
652
616
|
_content_type=_content_type,
|
|
653
617
|
_headers=_headers,
|
|
@@ -674,7 +638,6 @@ class ExternalSourcesApi:
|
|
|
674
638
|
def get_mb_data_with_http_info(
|
|
675
639
|
self,
|
|
676
640
|
analysis_id: StrictInt,
|
|
677
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
678
641
|
_request_timeout: Union[
|
|
679
642
|
None,
|
|
680
643
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -693,8 +656,6 @@ class ExternalSourcesApi:
|
|
|
693
656
|
|
|
694
657
|
:param analysis_id: (required)
|
|
695
658
|
:type analysis_id: int
|
|
696
|
-
:param authorization: API Key bearer token
|
|
697
|
-
:type authorization: str
|
|
698
659
|
:param _request_timeout: timeout setting for this request. If one
|
|
699
660
|
number provided, it will be total request
|
|
700
661
|
timeout. It can also be a pair (tuple) of
|
|
@@ -719,7 +680,6 @@ class ExternalSourcesApi:
|
|
|
719
680
|
|
|
720
681
|
_param = self._get_mb_data_serialize(
|
|
721
682
|
analysis_id=analysis_id,
|
|
722
|
-
authorization=authorization,
|
|
723
683
|
_request_auth=_request_auth,
|
|
724
684
|
_content_type=_content_type,
|
|
725
685
|
_headers=_headers,
|
|
@@ -746,7 +706,6 @@ class ExternalSourcesApi:
|
|
|
746
706
|
def get_mb_data_without_preload_content(
|
|
747
707
|
self,
|
|
748
708
|
analysis_id: StrictInt,
|
|
749
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
750
709
|
_request_timeout: Union[
|
|
751
710
|
None,
|
|
752
711
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -765,8 +724,6 @@ class ExternalSourcesApi:
|
|
|
765
724
|
|
|
766
725
|
:param analysis_id: (required)
|
|
767
726
|
:type analysis_id: int
|
|
768
|
-
:param authorization: API Key bearer token
|
|
769
|
-
:type authorization: str
|
|
770
727
|
:param _request_timeout: timeout setting for this request. If one
|
|
771
728
|
number provided, it will be total request
|
|
772
729
|
timeout. It can also be a pair (tuple) of
|
|
@@ -791,7 +748,6 @@ class ExternalSourcesApi:
|
|
|
791
748
|
|
|
792
749
|
_param = self._get_mb_data_serialize(
|
|
793
750
|
analysis_id=analysis_id,
|
|
794
|
-
authorization=authorization,
|
|
795
751
|
_request_auth=_request_auth,
|
|
796
752
|
_content_type=_content_type,
|
|
797
753
|
_headers=_headers,
|
|
@@ -813,7 +769,6 @@ class ExternalSourcesApi:
|
|
|
813
769
|
def _get_mb_data_serialize(
|
|
814
770
|
self,
|
|
815
771
|
analysis_id,
|
|
816
|
-
authorization,
|
|
817
772
|
_request_auth,
|
|
818
773
|
_content_type,
|
|
819
774
|
_headers,
|
|
@@ -839,8 +794,6 @@ class ExternalSourcesApi:
|
|
|
839
794
|
_path_params['analysis_id'] = analysis_id
|
|
840
795
|
# process the query parameters
|
|
841
796
|
# process the header parameters
|
|
842
|
-
if authorization is not None:
|
|
843
|
-
_header_params['authorization'] = authorization
|
|
844
797
|
# process the form parameters
|
|
845
798
|
# process the body parameter
|
|
846
799
|
|
|
@@ -881,7 +834,6 @@ class ExternalSourcesApi:
|
|
|
881
834
|
def get_mb_task_status(
|
|
882
835
|
self,
|
|
883
836
|
analysis_id: StrictInt,
|
|
884
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
885
837
|
_request_timeout: Union[
|
|
886
838
|
None,
|
|
887
839
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -900,8 +852,6 @@ class ExternalSourcesApi:
|
|
|
900
852
|
|
|
901
853
|
:param analysis_id: (required)
|
|
902
854
|
:type analysis_id: int
|
|
903
|
-
:param authorization: API Key bearer token
|
|
904
|
-
:type authorization: str
|
|
905
855
|
:param _request_timeout: timeout setting for this request. If one
|
|
906
856
|
number provided, it will be total request
|
|
907
857
|
timeout. It can also be a pair (tuple) of
|
|
@@ -926,7 +876,6 @@ class ExternalSourcesApi:
|
|
|
926
876
|
|
|
927
877
|
_param = self._get_mb_task_status_serialize(
|
|
928
878
|
analysis_id=analysis_id,
|
|
929
|
-
authorization=authorization,
|
|
930
879
|
_request_auth=_request_auth,
|
|
931
880
|
_content_type=_content_type,
|
|
932
881
|
_headers=_headers,
|
|
@@ -952,7 +901,6 @@ class ExternalSourcesApi:
|
|
|
952
901
|
def get_mb_task_status_with_http_info(
|
|
953
902
|
self,
|
|
954
903
|
analysis_id: StrictInt,
|
|
955
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
956
904
|
_request_timeout: Union[
|
|
957
905
|
None,
|
|
958
906
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -971,8 +919,6 @@ class ExternalSourcesApi:
|
|
|
971
919
|
|
|
972
920
|
:param analysis_id: (required)
|
|
973
921
|
:type analysis_id: int
|
|
974
|
-
:param authorization: API Key bearer token
|
|
975
|
-
:type authorization: str
|
|
976
922
|
:param _request_timeout: timeout setting for this request. If one
|
|
977
923
|
number provided, it will be total request
|
|
978
924
|
timeout. It can also be a pair (tuple) of
|
|
@@ -997,7 +943,6 @@ class ExternalSourcesApi:
|
|
|
997
943
|
|
|
998
944
|
_param = self._get_mb_task_status_serialize(
|
|
999
945
|
analysis_id=analysis_id,
|
|
1000
|
-
authorization=authorization,
|
|
1001
946
|
_request_auth=_request_auth,
|
|
1002
947
|
_content_type=_content_type,
|
|
1003
948
|
_headers=_headers,
|
|
@@ -1023,7 +968,6 @@ class ExternalSourcesApi:
|
|
|
1023
968
|
def get_mb_task_status_without_preload_content(
|
|
1024
969
|
self,
|
|
1025
970
|
analysis_id: StrictInt,
|
|
1026
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1027
971
|
_request_timeout: Union[
|
|
1028
972
|
None,
|
|
1029
973
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1042,8 +986,6 @@ class ExternalSourcesApi:
|
|
|
1042
986
|
|
|
1043
987
|
:param analysis_id: (required)
|
|
1044
988
|
:type analysis_id: int
|
|
1045
|
-
:param authorization: API Key bearer token
|
|
1046
|
-
:type authorization: str
|
|
1047
989
|
:param _request_timeout: timeout setting for this request. If one
|
|
1048
990
|
number provided, it will be total request
|
|
1049
991
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1068,7 +1010,6 @@ class ExternalSourcesApi:
|
|
|
1068
1010
|
|
|
1069
1011
|
_param = self._get_mb_task_status_serialize(
|
|
1070
1012
|
analysis_id=analysis_id,
|
|
1071
|
-
authorization=authorization,
|
|
1072
1013
|
_request_auth=_request_auth,
|
|
1073
1014
|
_content_type=_content_type,
|
|
1074
1015
|
_headers=_headers,
|
|
@@ -1089,7 +1030,6 @@ class ExternalSourcesApi:
|
|
|
1089
1030
|
def _get_mb_task_status_serialize(
|
|
1090
1031
|
self,
|
|
1091
1032
|
analysis_id,
|
|
1092
|
-
authorization,
|
|
1093
1033
|
_request_auth,
|
|
1094
1034
|
_content_type,
|
|
1095
1035
|
_headers,
|
|
@@ -1115,8 +1055,6 @@ class ExternalSourcesApi:
|
|
|
1115
1055
|
_path_params['analysis_id'] = analysis_id
|
|
1116
1056
|
# process the query parameters
|
|
1117
1057
|
# process the header parameters
|
|
1118
|
-
if authorization is not None:
|
|
1119
|
-
_header_params['authorization'] = authorization
|
|
1120
1058
|
# process the form parameters
|
|
1121
1059
|
# process the body parameter
|
|
1122
1060
|
|
|
@@ -1157,7 +1095,6 @@ class ExternalSourcesApi:
|
|
|
1157
1095
|
def get_vt_data(
|
|
1158
1096
|
self,
|
|
1159
1097
|
analysis_id: StrictInt,
|
|
1160
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1161
1098
|
_request_timeout: Union[
|
|
1162
1099
|
None,
|
|
1163
1100
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1176,8 +1113,6 @@ class ExternalSourcesApi:
|
|
|
1176
1113
|
|
|
1177
1114
|
:param analysis_id: (required)
|
|
1178
1115
|
:type analysis_id: int
|
|
1179
|
-
:param authorization: API Key bearer token
|
|
1180
|
-
:type authorization: str
|
|
1181
1116
|
:param _request_timeout: timeout setting for this request. If one
|
|
1182
1117
|
number provided, it will be total request
|
|
1183
1118
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1202,7 +1137,6 @@ class ExternalSourcesApi:
|
|
|
1202
1137
|
|
|
1203
1138
|
_param = self._get_vt_data_serialize(
|
|
1204
1139
|
analysis_id=analysis_id,
|
|
1205
|
-
authorization=authorization,
|
|
1206
1140
|
_request_auth=_request_auth,
|
|
1207
1141
|
_content_type=_content_type,
|
|
1208
1142
|
_headers=_headers,
|
|
@@ -1229,7 +1163,6 @@ class ExternalSourcesApi:
|
|
|
1229
1163
|
def get_vt_data_with_http_info(
|
|
1230
1164
|
self,
|
|
1231
1165
|
analysis_id: StrictInt,
|
|
1232
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1233
1166
|
_request_timeout: Union[
|
|
1234
1167
|
None,
|
|
1235
1168
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1248,8 +1181,6 @@ class ExternalSourcesApi:
|
|
|
1248
1181
|
|
|
1249
1182
|
:param analysis_id: (required)
|
|
1250
1183
|
:type analysis_id: int
|
|
1251
|
-
:param authorization: API Key bearer token
|
|
1252
|
-
:type authorization: str
|
|
1253
1184
|
:param _request_timeout: timeout setting for this request. If one
|
|
1254
1185
|
number provided, it will be total request
|
|
1255
1186
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1274,7 +1205,6 @@ class ExternalSourcesApi:
|
|
|
1274
1205
|
|
|
1275
1206
|
_param = self._get_vt_data_serialize(
|
|
1276
1207
|
analysis_id=analysis_id,
|
|
1277
|
-
authorization=authorization,
|
|
1278
1208
|
_request_auth=_request_auth,
|
|
1279
1209
|
_content_type=_content_type,
|
|
1280
1210
|
_headers=_headers,
|
|
@@ -1301,7 +1231,6 @@ class ExternalSourcesApi:
|
|
|
1301
1231
|
def get_vt_data_without_preload_content(
|
|
1302
1232
|
self,
|
|
1303
1233
|
analysis_id: StrictInt,
|
|
1304
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1305
1234
|
_request_timeout: Union[
|
|
1306
1235
|
None,
|
|
1307
1236
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1320,8 +1249,6 @@ class ExternalSourcesApi:
|
|
|
1320
1249
|
|
|
1321
1250
|
:param analysis_id: (required)
|
|
1322
1251
|
:type analysis_id: int
|
|
1323
|
-
:param authorization: API Key bearer token
|
|
1324
|
-
:type authorization: str
|
|
1325
1252
|
:param _request_timeout: timeout setting for this request. If one
|
|
1326
1253
|
number provided, it will be total request
|
|
1327
1254
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1346,7 +1273,6 @@ class ExternalSourcesApi:
|
|
|
1346
1273
|
|
|
1347
1274
|
_param = self._get_vt_data_serialize(
|
|
1348
1275
|
analysis_id=analysis_id,
|
|
1349
|
-
authorization=authorization,
|
|
1350
1276
|
_request_auth=_request_auth,
|
|
1351
1277
|
_content_type=_content_type,
|
|
1352
1278
|
_headers=_headers,
|
|
@@ -1368,7 +1294,6 @@ class ExternalSourcesApi:
|
|
|
1368
1294
|
def _get_vt_data_serialize(
|
|
1369
1295
|
self,
|
|
1370
1296
|
analysis_id,
|
|
1371
|
-
authorization,
|
|
1372
1297
|
_request_auth,
|
|
1373
1298
|
_content_type,
|
|
1374
1299
|
_headers,
|
|
@@ -1394,8 +1319,6 @@ class ExternalSourcesApi:
|
|
|
1394
1319
|
_path_params['analysis_id'] = analysis_id
|
|
1395
1320
|
# process the query parameters
|
|
1396
1321
|
# process the header parameters
|
|
1397
|
-
if authorization is not None:
|
|
1398
|
-
_header_params['authorization'] = authorization
|
|
1399
1322
|
# process the form parameters
|
|
1400
1323
|
# process the body parameter
|
|
1401
1324
|
|
|
@@ -1436,7 +1359,6 @@ class ExternalSourcesApi:
|
|
|
1436
1359
|
def get_vt_task_status(
|
|
1437
1360
|
self,
|
|
1438
1361
|
analysis_id: StrictInt,
|
|
1439
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1440
1362
|
_request_timeout: Union[
|
|
1441
1363
|
None,
|
|
1442
1364
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1455,8 +1377,6 @@ class ExternalSourcesApi:
|
|
|
1455
1377
|
|
|
1456
1378
|
:param analysis_id: (required)
|
|
1457
1379
|
:type analysis_id: int
|
|
1458
|
-
:param authorization: API Key bearer token
|
|
1459
|
-
:type authorization: str
|
|
1460
1380
|
:param _request_timeout: timeout setting for this request. If one
|
|
1461
1381
|
number provided, it will be total request
|
|
1462
1382
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1481,7 +1401,6 @@ class ExternalSourcesApi:
|
|
|
1481
1401
|
|
|
1482
1402
|
_param = self._get_vt_task_status_serialize(
|
|
1483
1403
|
analysis_id=analysis_id,
|
|
1484
|
-
authorization=authorization,
|
|
1485
1404
|
_request_auth=_request_auth,
|
|
1486
1405
|
_content_type=_content_type,
|
|
1487
1406
|
_headers=_headers,
|
|
@@ -1507,7 +1426,6 @@ class ExternalSourcesApi:
|
|
|
1507
1426
|
def get_vt_task_status_with_http_info(
|
|
1508
1427
|
self,
|
|
1509
1428
|
analysis_id: StrictInt,
|
|
1510
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1511
1429
|
_request_timeout: Union[
|
|
1512
1430
|
None,
|
|
1513
1431
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1526,8 +1444,6 @@ class ExternalSourcesApi:
|
|
|
1526
1444
|
|
|
1527
1445
|
:param analysis_id: (required)
|
|
1528
1446
|
:type analysis_id: int
|
|
1529
|
-
:param authorization: API Key bearer token
|
|
1530
|
-
:type authorization: str
|
|
1531
1447
|
:param _request_timeout: timeout setting for this request. If one
|
|
1532
1448
|
number provided, it will be total request
|
|
1533
1449
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1552,7 +1468,6 @@ class ExternalSourcesApi:
|
|
|
1552
1468
|
|
|
1553
1469
|
_param = self._get_vt_task_status_serialize(
|
|
1554
1470
|
analysis_id=analysis_id,
|
|
1555
|
-
authorization=authorization,
|
|
1556
1471
|
_request_auth=_request_auth,
|
|
1557
1472
|
_content_type=_content_type,
|
|
1558
1473
|
_headers=_headers,
|
|
@@ -1578,7 +1493,6 @@ class ExternalSourcesApi:
|
|
|
1578
1493
|
def get_vt_task_status_without_preload_content(
|
|
1579
1494
|
self,
|
|
1580
1495
|
analysis_id: StrictInt,
|
|
1581
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1582
1496
|
_request_timeout: Union[
|
|
1583
1497
|
None,
|
|
1584
1498
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1597,8 +1511,6 @@ class ExternalSourcesApi:
|
|
|
1597
1511
|
|
|
1598
1512
|
:param analysis_id: (required)
|
|
1599
1513
|
:type analysis_id: int
|
|
1600
|
-
:param authorization: API Key bearer token
|
|
1601
|
-
:type authorization: str
|
|
1602
1514
|
:param _request_timeout: timeout setting for this request. If one
|
|
1603
1515
|
number provided, it will be total request
|
|
1604
1516
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1623,7 +1535,6 @@ class ExternalSourcesApi:
|
|
|
1623
1535
|
|
|
1624
1536
|
_param = self._get_vt_task_status_serialize(
|
|
1625
1537
|
analysis_id=analysis_id,
|
|
1626
|
-
authorization=authorization,
|
|
1627
1538
|
_request_auth=_request_auth,
|
|
1628
1539
|
_content_type=_content_type,
|
|
1629
1540
|
_headers=_headers,
|
|
@@ -1644,7 +1555,6 @@ class ExternalSourcesApi:
|
|
|
1644
1555
|
def _get_vt_task_status_serialize(
|
|
1645
1556
|
self,
|
|
1646
1557
|
analysis_id,
|
|
1647
|
-
authorization,
|
|
1648
1558
|
_request_auth,
|
|
1649
1559
|
_content_type,
|
|
1650
1560
|
_headers,
|
|
@@ -1670,8 +1580,6 @@ class ExternalSourcesApi:
|
|
|
1670
1580
|
_path_params['analysis_id'] = analysis_id
|
|
1671
1581
|
# process the query parameters
|
|
1672
1582
|
# process the header parameters
|
|
1673
|
-
if authorization is not None:
|
|
1674
|
-
_header_params['authorization'] = authorization
|
|
1675
1583
|
# process the form parameters
|
|
1676
1584
|
# process the body parameter
|
|
1677
1585
|
|