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,8 @@ 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 Any
|
|
20
|
-
from typing_extensions import Annotated
|
|
18
|
+
from pydantic import StrictInt, StrictStr
|
|
19
|
+
from typing import Any
|
|
21
20
|
from revengai.models.base_response_dynamic_execution_status import BaseResponseDynamicExecutionStatus
|
|
22
21
|
from revengai.models.base_response_network_overview_response import BaseResponseNetworkOverviewResponse
|
|
23
22
|
from revengai.models.base_response_process_dumps import BaseResponseProcessDumps
|
|
@@ -47,7 +46,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
47
46
|
def get_dynamic_execution_status(
|
|
48
47
|
self,
|
|
49
48
|
analysis_id: StrictInt,
|
|
50
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
51
49
|
_request_timeout: Union[
|
|
52
50
|
None,
|
|
53
51
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -66,8 +64,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
66
64
|
|
|
67
65
|
:param analysis_id: (required)
|
|
68
66
|
:type analysis_id: int
|
|
69
|
-
:param authorization: API Key bearer token
|
|
70
|
-
:type authorization: str
|
|
71
67
|
:param _request_timeout: timeout setting for this request. If one
|
|
72
68
|
number provided, it will be total request
|
|
73
69
|
timeout. It can also be a pair (tuple) of
|
|
@@ -92,7 +88,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
92
88
|
|
|
93
89
|
_param = self._get_dynamic_execution_status_serialize(
|
|
94
90
|
analysis_id=analysis_id,
|
|
95
|
-
authorization=authorization,
|
|
96
91
|
_request_auth=_request_auth,
|
|
97
92
|
_content_type=_content_type,
|
|
98
93
|
_headers=_headers,
|
|
@@ -118,7 +113,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
118
113
|
def get_dynamic_execution_status_with_http_info(
|
|
119
114
|
self,
|
|
120
115
|
analysis_id: StrictInt,
|
|
121
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
122
116
|
_request_timeout: Union[
|
|
123
117
|
None,
|
|
124
118
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -137,8 +131,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
137
131
|
|
|
138
132
|
:param analysis_id: (required)
|
|
139
133
|
:type analysis_id: int
|
|
140
|
-
:param authorization: API Key bearer token
|
|
141
|
-
:type authorization: str
|
|
142
134
|
:param _request_timeout: timeout setting for this request. If one
|
|
143
135
|
number provided, it will be total request
|
|
144
136
|
timeout. It can also be a pair (tuple) of
|
|
@@ -163,7 +155,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
163
155
|
|
|
164
156
|
_param = self._get_dynamic_execution_status_serialize(
|
|
165
157
|
analysis_id=analysis_id,
|
|
166
|
-
authorization=authorization,
|
|
167
158
|
_request_auth=_request_auth,
|
|
168
159
|
_content_type=_content_type,
|
|
169
160
|
_headers=_headers,
|
|
@@ -189,7 +180,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
189
180
|
def get_dynamic_execution_status_without_preload_content(
|
|
190
181
|
self,
|
|
191
182
|
analysis_id: StrictInt,
|
|
192
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
193
183
|
_request_timeout: Union[
|
|
194
184
|
None,
|
|
195
185
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -208,8 +198,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
208
198
|
|
|
209
199
|
:param analysis_id: (required)
|
|
210
200
|
:type analysis_id: int
|
|
211
|
-
:param authorization: API Key bearer token
|
|
212
|
-
:type authorization: str
|
|
213
201
|
:param _request_timeout: timeout setting for this request. If one
|
|
214
202
|
number provided, it will be total request
|
|
215
203
|
timeout. It can also be a pair (tuple) of
|
|
@@ -234,7 +222,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
234
222
|
|
|
235
223
|
_param = self._get_dynamic_execution_status_serialize(
|
|
236
224
|
analysis_id=analysis_id,
|
|
237
|
-
authorization=authorization,
|
|
238
225
|
_request_auth=_request_auth,
|
|
239
226
|
_content_type=_content_type,
|
|
240
227
|
_headers=_headers,
|
|
@@ -255,7 +242,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
255
242
|
def _get_dynamic_execution_status_serialize(
|
|
256
243
|
self,
|
|
257
244
|
analysis_id,
|
|
258
|
-
authorization,
|
|
259
245
|
_request_auth,
|
|
260
246
|
_content_type,
|
|
261
247
|
_headers,
|
|
@@ -281,8 +267,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
281
267
|
_path_params['analysis_id'] = analysis_id
|
|
282
268
|
# process the query parameters
|
|
283
269
|
# process the header parameters
|
|
284
|
-
if authorization is not None:
|
|
285
|
-
_header_params['authorization'] = authorization
|
|
286
270
|
# process the form parameters
|
|
287
271
|
# process the body parameter
|
|
288
272
|
|
|
@@ -323,7 +307,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
323
307
|
def get_network_overview(
|
|
324
308
|
self,
|
|
325
309
|
analysis_id: StrictInt,
|
|
326
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
327
310
|
_request_timeout: Union[
|
|
328
311
|
None,
|
|
329
312
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -342,8 +325,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
342
325
|
|
|
343
326
|
:param analysis_id: (required)
|
|
344
327
|
:type analysis_id: int
|
|
345
|
-
:param authorization: API Key bearer token
|
|
346
|
-
:type authorization: str
|
|
347
328
|
:param _request_timeout: timeout setting for this request. If one
|
|
348
329
|
number provided, it will be total request
|
|
349
330
|
timeout. It can also be a pair (tuple) of
|
|
@@ -368,7 +349,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
368
349
|
|
|
369
350
|
_param = self._get_network_overview_serialize(
|
|
370
351
|
analysis_id=analysis_id,
|
|
371
|
-
authorization=authorization,
|
|
372
352
|
_request_auth=_request_auth,
|
|
373
353
|
_content_type=_content_type,
|
|
374
354
|
_headers=_headers,
|
|
@@ -394,7 +374,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
394
374
|
def get_network_overview_with_http_info(
|
|
395
375
|
self,
|
|
396
376
|
analysis_id: StrictInt,
|
|
397
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
398
377
|
_request_timeout: Union[
|
|
399
378
|
None,
|
|
400
379
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -413,8 +392,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
413
392
|
|
|
414
393
|
:param analysis_id: (required)
|
|
415
394
|
:type analysis_id: int
|
|
416
|
-
:param authorization: API Key bearer token
|
|
417
|
-
:type authorization: str
|
|
418
395
|
:param _request_timeout: timeout setting for this request. If one
|
|
419
396
|
number provided, it will be total request
|
|
420
397
|
timeout. It can also be a pair (tuple) of
|
|
@@ -439,7 +416,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
439
416
|
|
|
440
417
|
_param = self._get_network_overview_serialize(
|
|
441
418
|
analysis_id=analysis_id,
|
|
442
|
-
authorization=authorization,
|
|
443
419
|
_request_auth=_request_auth,
|
|
444
420
|
_content_type=_content_type,
|
|
445
421
|
_headers=_headers,
|
|
@@ -465,7 +441,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
465
441
|
def get_network_overview_without_preload_content(
|
|
466
442
|
self,
|
|
467
443
|
analysis_id: StrictInt,
|
|
468
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
469
444
|
_request_timeout: Union[
|
|
470
445
|
None,
|
|
471
446
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -484,8 +459,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
484
459
|
|
|
485
460
|
:param analysis_id: (required)
|
|
486
461
|
:type analysis_id: int
|
|
487
|
-
:param authorization: API Key bearer token
|
|
488
|
-
:type authorization: str
|
|
489
462
|
:param _request_timeout: timeout setting for this request. If one
|
|
490
463
|
number provided, it will be total request
|
|
491
464
|
timeout. It can also be a pair (tuple) of
|
|
@@ -510,7 +483,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
510
483
|
|
|
511
484
|
_param = self._get_network_overview_serialize(
|
|
512
485
|
analysis_id=analysis_id,
|
|
513
|
-
authorization=authorization,
|
|
514
486
|
_request_auth=_request_auth,
|
|
515
487
|
_content_type=_content_type,
|
|
516
488
|
_headers=_headers,
|
|
@@ -531,7 +503,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
531
503
|
def _get_network_overview_serialize(
|
|
532
504
|
self,
|
|
533
505
|
analysis_id,
|
|
534
|
-
authorization,
|
|
535
506
|
_request_auth,
|
|
536
507
|
_content_type,
|
|
537
508
|
_headers,
|
|
@@ -557,8 +528,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
557
528
|
_path_params['analysis_id'] = analysis_id
|
|
558
529
|
# process the query parameters
|
|
559
530
|
# process the header parameters
|
|
560
|
-
if authorization is not None:
|
|
561
|
-
_header_params['authorization'] = authorization
|
|
562
531
|
# process the form parameters
|
|
563
532
|
# process the body parameter
|
|
564
533
|
|
|
@@ -600,7 +569,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
600
569
|
self,
|
|
601
570
|
analysis_id: StrictInt,
|
|
602
571
|
dump_name: StrictStr,
|
|
603
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
604
572
|
_request_timeout: Union[
|
|
605
573
|
None,
|
|
606
574
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -621,8 +589,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
621
589
|
:type analysis_id: int
|
|
622
590
|
:param dump_name: (required)
|
|
623
591
|
:type dump_name: str
|
|
624
|
-
:param authorization: API Key bearer token
|
|
625
|
-
:type authorization: str
|
|
626
592
|
:param _request_timeout: timeout setting for this request. If one
|
|
627
593
|
number provided, it will be total request
|
|
628
594
|
timeout. It can also be a pair (tuple) of
|
|
@@ -648,7 +614,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
648
614
|
_param = self._get_process_dump_serialize(
|
|
649
615
|
analysis_id=analysis_id,
|
|
650
616
|
dump_name=dump_name,
|
|
651
|
-
authorization=authorization,
|
|
652
617
|
_request_auth=_request_auth,
|
|
653
618
|
_content_type=_content_type,
|
|
654
619
|
_headers=_headers,
|
|
@@ -675,7 +640,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
675
640
|
self,
|
|
676
641
|
analysis_id: StrictInt,
|
|
677
642
|
dump_name: StrictStr,
|
|
678
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
679
643
|
_request_timeout: Union[
|
|
680
644
|
None,
|
|
681
645
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -696,8 +660,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
696
660
|
:type analysis_id: int
|
|
697
661
|
:param dump_name: (required)
|
|
698
662
|
:type dump_name: str
|
|
699
|
-
:param authorization: API Key bearer token
|
|
700
|
-
:type authorization: str
|
|
701
663
|
:param _request_timeout: timeout setting for this request. If one
|
|
702
664
|
number provided, it will be total request
|
|
703
665
|
timeout. It can also be a pair (tuple) of
|
|
@@ -723,7 +685,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
723
685
|
_param = self._get_process_dump_serialize(
|
|
724
686
|
analysis_id=analysis_id,
|
|
725
687
|
dump_name=dump_name,
|
|
726
|
-
authorization=authorization,
|
|
727
688
|
_request_auth=_request_auth,
|
|
728
689
|
_content_type=_content_type,
|
|
729
690
|
_headers=_headers,
|
|
@@ -750,7 +711,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
750
711
|
self,
|
|
751
712
|
analysis_id: StrictInt,
|
|
752
713
|
dump_name: StrictStr,
|
|
753
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
754
714
|
_request_timeout: Union[
|
|
755
715
|
None,
|
|
756
716
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -771,8 +731,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
771
731
|
:type analysis_id: int
|
|
772
732
|
:param dump_name: (required)
|
|
773
733
|
:type dump_name: str
|
|
774
|
-
:param authorization: API Key bearer token
|
|
775
|
-
:type authorization: str
|
|
776
734
|
:param _request_timeout: timeout setting for this request. If one
|
|
777
735
|
number provided, it will be total request
|
|
778
736
|
timeout. It can also be a pair (tuple) of
|
|
@@ -798,7 +756,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
798
756
|
_param = self._get_process_dump_serialize(
|
|
799
757
|
analysis_id=analysis_id,
|
|
800
758
|
dump_name=dump_name,
|
|
801
|
-
authorization=authorization,
|
|
802
759
|
_request_auth=_request_auth,
|
|
803
760
|
_content_type=_content_type,
|
|
804
761
|
_headers=_headers,
|
|
@@ -820,7 +777,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
820
777
|
self,
|
|
821
778
|
analysis_id,
|
|
822
779
|
dump_name,
|
|
823
|
-
authorization,
|
|
824
780
|
_request_auth,
|
|
825
781
|
_content_type,
|
|
826
782
|
_headers,
|
|
@@ -848,8 +804,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
848
804
|
_path_params['dump_name'] = dump_name
|
|
849
805
|
# process the query parameters
|
|
850
806
|
# process the header parameters
|
|
851
|
-
if authorization is not None:
|
|
852
|
-
_header_params['authorization'] = authorization
|
|
853
807
|
# process the form parameters
|
|
854
808
|
# process the body parameter
|
|
855
809
|
|
|
@@ -890,7 +844,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
890
844
|
def get_process_dumps(
|
|
891
845
|
self,
|
|
892
846
|
analysis_id: StrictInt,
|
|
893
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
894
847
|
_request_timeout: Union[
|
|
895
848
|
None,
|
|
896
849
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -909,8 +862,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
909
862
|
|
|
910
863
|
:param analysis_id: (required)
|
|
911
864
|
:type analysis_id: int
|
|
912
|
-
:param authorization: API Key bearer token
|
|
913
|
-
:type authorization: str
|
|
914
865
|
:param _request_timeout: timeout setting for this request. If one
|
|
915
866
|
number provided, it will be total request
|
|
916
867
|
timeout. It can also be a pair (tuple) of
|
|
@@ -935,7 +886,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
935
886
|
|
|
936
887
|
_param = self._get_process_dumps_serialize(
|
|
937
888
|
analysis_id=analysis_id,
|
|
938
|
-
authorization=authorization,
|
|
939
889
|
_request_auth=_request_auth,
|
|
940
890
|
_content_type=_content_type,
|
|
941
891
|
_headers=_headers,
|
|
@@ -961,7 +911,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
961
911
|
def get_process_dumps_with_http_info(
|
|
962
912
|
self,
|
|
963
913
|
analysis_id: StrictInt,
|
|
964
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
965
914
|
_request_timeout: Union[
|
|
966
915
|
None,
|
|
967
916
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -980,8 +929,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
980
929
|
|
|
981
930
|
:param analysis_id: (required)
|
|
982
931
|
:type analysis_id: int
|
|
983
|
-
:param authorization: API Key bearer token
|
|
984
|
-
:type authorization: str
|
|
985
932
|
:param _request_timeout: timeout setting for this request. If one
|
|
986
933
|
number provided, it will be total request
|
|
987
934
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1006,7 +953,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1006
953
|
|
|
1007
954
|
_param = self._get_process_dumps_serialize(
|
|
1008
955
|
analysis_id=analysis_id,
|
|
1009
|
-
authorization=authorization,
|
|
1010
956
|
_request_auth=_request_auth,
|
|
1011
957
|
_content_type=_content_type,
|
|
1012
958
|
_headers=_headers,
|
|
@@ -1032,7 +978,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1032
978
|
def get_process_dumps_without_preload_content(
|
|
1033
979
|
self,
|
|
1034
980
|
analysis_id: StrictInt,
|
|
1035
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1036
981
|
_request_timeout: Union[
|
|
1037
982
|
None,
|
|
1038
983
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1051,8 +996,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1051
996
|
|
|
1052
997
|
:param analysis_id: (required)
|
|
1053
998
|
:type analysis_id: int
|
|
1054
|
-
:param authorization: API Key bearer token
|
|
1055
|
-
:type authorization: str
|
|
1056
999
|
:param _request_timeout: timeout setting for this request. If one
|
|
1057
1000
|
number provided, it will be total request
|
|
1058
1001
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1077,7 +1020,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1077
1020
|
|
|
1078
1021
|
_param = self._get_process_dumps_serialize(
|
|
1079
1022
|
analysis_id=analysis_id,
|
|
1080
|
-
authorization=authorization,
|
|
1081
1023
|
_request_auth=_request_auth,
|
|
1082
1024
|
_content_type=_content_type,
|
|
1083
1025
|
_headers=_headers,
|
|
@@ -1098,7 +1040,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1098
1040
|
def _get_process_dumps_serialize(
|
|
1099
1041
|
self,
|
|
1100
1042
|
analysis_id,
|
|
1101
|
-
authorization,
|
|
1102
1043
|
_request_auth,
|
|
1103
1044
|
_content_type,
|
|
1104
1045
|
_headers,
|
|
@@ -1124,8 +1065,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1124
1065
|
_path_params['analysis_id'] = analysis_id
|
|
1125
1066
|
# process the query parameters
|
|
1126
1067
|
# process the header parameters
|
|
1127
|
-
if authorization is not None:
|
|
1128
|
-
_header_params['authorization'] = authorization
|
|
1129
1068
|
# process the form parameters
|
|
1130
1069
|
# process the body parameter
|
|
1131
1070
|
|
|
@@ -1166,7 +1105,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1166
1105
|
def get_process_registry(
|
|
1167
1106
|
self,
|
|
1168
1107
|
analysis_id: StrictInt,
|
|
1169
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1170
1108
|
_request_timeout: Union[
|
|
1171
1109
|
None,
|
|
1172
1110
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1185,8 +1123,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1185
1123
|
|
|
1186
1124
|
:param analysis_id: (required)
|
|
1187
1125
|
:type analysis_id: int
|
|
1188
|
-
:param authorization: API Key bearer token
|
|
1189
|
-
:type authorization: str
|
|
1190
1126
|
:param _request_timeout: timeout setting for this request. If one
|
|
1191
1127
|
number provided, it will be total request
|
|
1192
1128
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1211,7 +1147,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1211
1147
|
|
|
1212
1148
|
_param = self._get_process_registry_serialize(
|
|
1213
1149
|
analysis_id=analysis_id,
|
|
1214
|
-
authorization=authorization,
|
|
1215
1150
|
_request_auth=_request_auth,
|
|
1216
1151
|
_content_type=_content_type,
|
|
1217
1152
|
_headers=_headers,
|
|
@@ -1237,7 +1172,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1237
1172
|
def get_process_registry_with_http_info(
|
|
1238
1173
|
self,
|
|
1239
1174
|
analysis_id: StrictInt,
|
|
1240
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1241
1175
|
_request_timeout: Union[
|
|
1242
1176
|
None,
|
|
1243
1177
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1256,8 +1190,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1256
1190
|
|
|
1257
1191
|
:param analysis_id: (required)
|
|
1258
1192
|
:type analysis_id: int
|
|
1259
|
-
:param authorization: API Key bearer token
|
|
1260
|
-
:type authorization: str
|
|
1261
1193
|
:param _request_timeout: timeout setting for this request. If one
|
|
1262
1194
|
number provided, it will be total request
|
|
1263
1195
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1282,7 +1214,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1282
1214
|
|
|
1283
1215
|
_param = self._get_process_registry_serialize(
|
|
1284
1216
|
analysis_id=analysis_id,
|
|
1285
|
-
authorization=authorization,
|
|
1286
1217
|
_request_auth=_request_auth,
|
|
1287
1218
|
_content_type=_content_type,
|
|
1288
1219
|
_headers=_headers,
|
|
@@ -1308,7 +1239,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1308
1239
|
def get_process_registry_without_preload_content(
|
|
1309
1240
|
self,
|
|
1310
1241
|
analysis_id: StrictInt,
|
|
1311
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1312
1242
|
_request_timeout: Union[
|
|
1313
1243
|
None,
|
|
1314
1244
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1327,8 +1257,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1327
1257
|
|
|
1328
1258
|
:param analysis_id: (required)
|
|
1329
1259
|
:type analysis_id: int
|
|
1330
|
-
:param authorization: API Key bearer token
|
|
1331
|
-
:type authorization: str
|
|
1332
1260
|
:param _request_timeout: timeout setting for this request. If one
|
|
1333
1261
|
number provided, it will be total request
|
|
1334
1262
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1353,7 +1281,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1353
1281
|
|
|
1354
1282
|
_param = self._get_process_registry_serialize(
|
|
1355
1283
|
analysis_id=analysis_id,
|
|
1356
|
-
authorization=authorization,
|
|
1357
1284
|
_request_auth=_request_auth,
|
|
1358
1285
|
_content_type=_content_type,
|
|
1359
1286
|
_headers=_headers,
|
|
@@ -1374,7 +1301,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1374
1301
|
def _get_process_registry_serialize(
|
|
1375
1302
|
self,
|
|
1376
1303
|
analysis_id,
|
|
1377
|
-
authorization,
|
|
1378
1304
|
_request_auth,
|
|
1379
1305
|
_content_type,
|
|
1380
1306
|
_headers,
|
|
@@ -1400,8 +1326,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1400
1326
|
_path_params['analysis_id'] = analysis_id
|
|
1401
1327
|
# process the query parameters
|
|
1402
1328
|
# process the header parameters
|
|
1403
|
-
if authorization is not None:
|
|
1404
|
-
_header_params['authorization'] = authorization
|
|
1405
1329
|
# process the form parameters
|
|
1406
1330
|
# process the body parameter
|
|
1407
1331
|
|
|
@@ -1442,7 +1366,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1442
1366
|
def get_process_tree(
|
|
1443
1367
|
self,
|
|
1444
1368
|
analysis_id: StrictInt,
|
|
1445
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1446
1369
|
_request_timeout: Union[
|
|
1447
1370
|
None,
|
|
1448
1371
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1461,8 +1384,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1461
1384
|
|
|
1462
1385
|
:param analysis_id: (required)
|
|
1463
1386
|
:type analysis_id: int
|
|
1464
|
-
:param authorization: API Key bearer token
|
|
1465
|
-
:type authorization: str
|
|
1466
1387
|
:param _request_timeout: timeout setting for this request. If one
|
|
1467
1388
|
number provided, it will be total request
|
|
1468
1389
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1487,7 +1408,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1487
1408
|
|
|
1488
1409
|
_param = self._get_process_tree_serialize(
|
|
1489
1410
|
analysis_id=analysis_id,
|
|
1490
|
-
authorization=authorization,
|
|
1491
1411
|
_request_auth=_request_auth,
|
|
1492
1412
|
_content_type=_content_type,
|
|
1493
1413
|
_headers=_headers,
|
|
@@ -1513,7 +1433,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1513
1433
|
def get_process_tree_with_http_info(
|
|
1514
1434
|
self,
|
|
1515
1435
|
analysis_id: StrictInt,
|
|
1516
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1517
1436
|
_request_timeout: Union[
|
|
1518
1437
|
None,
|
|
1519
1438
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1532,8 +1451,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1532
1451
|
|
|
1533
1452
|
:param analysis_id: (required)
|
|
1534
1453
|
:type analysis_id: int
|
|
1535
|
-
:param authorization: API Key bearer token
|
|
1536
|
-
:type authorization: str
|
|
1537
1454
|
:param _request_timeout: timeout setting for this request. If one
|
|
1538
1455
|
number provided, it will be total request
|
|
1539
1456
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1558,7 +1475,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1558
1475
|
|
|
1559
1476
|
_param = self._get_process_tree_serialize(
|
|
1560
1477
|
analysis_id=analysis_id,
|
|
1561
|
-
authorization=authorization,
|
|
1562
1478
|
_request_auth=_request_auth,
|
|
1563
1479
|
_content_type=_content_type,
|
|
1564
1480
|
_headers=_headers,
|
|
@@ -1584,7 +1500,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1584
1500
|
def get_process_tree_without_preload_content(
|
|
1585
1501
|
self,
|
|
1586
1502
|
analysis_id: StrictInt,
|
|
1587
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1588
1503
|
_request_timeout: Union[
|
|
1589
1504
|
None,
|
|
1590
1505
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1603,8 +1518,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1603
1518
|
|
|
1604
1519
|
:param analysis_id: (required)
|
|
1605
1520
|
:type analysis_id: int
|
|
1606
|
-
:param authorization: API Key bearer token
|
|
1607
|
-
:type authorization: str
|
|
1608
1521
|
:param _request_timeout: timeout setting for this request. If one
|
|
1609
1522
|
number provided, it will be total request
|
|
1610
1523
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1629,7 +1542,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1629
1542
|
|
|
1630
1543
|
_param = self._get_process_tree_serialize(
|
|
1631
1544
|
analysis_id=analysis_id,
|
|
1632
|
-
authorization=authorization,
|
|
1633
1545
|
_request_auth=_request_auth,
|
|
1634
1546
|
_content_type=_content_type,
|
|
1635
1547
|
_headers=_headers,
|
|
@@ -1650,7 +1562,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1650
1562
|
def _get_process_tree_serialize(
|
|
1651
1563
|
self,
|
|
1652
1564
|
analysis_id,
|
|
1653
|
-
authorization,
|
|
1654
1565
|
_request_auth,
|
|
1655
1566
|
_content_type,
|
|
1656
1567
|
_headers,
|
|
@@ -1676,8 +1587,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1676
1587
|
_path_params['analysis_id'] = analysis_id
|
|
1677
1588
|
# process the query parameters
|
|
1678
1589
|
# process the header parameters
|
|
1679
|
-
if authorization is not None:
|
|
1680
|
-
_header_params['authorization'] = authorization
|
|
1681
1590
|
# process the form parameters
|
|
1682
1591
|
# process the body parameter
|
|
1683
1592
|
|
|
@@ -1718,7 +1627,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1718
1627
|
def get_ttps(
|
|
1719
1628
|
self,
|
|
1720
1629
|
analysis_id: StrictInt,
|
|
1721
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1722
1630
|
_request_timeout: Union[
|
|
1723
1631
|
None,
|
|
1724
1632
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1737,8 +1645,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1737
1645
|
|
|
1738
1646
|
:param analysis_id: (required)
|
|
1739
1647
|
:type analysis_id: int
|
|
1740
|
-
:param authorization: API Key bearer token
|
|
1741
|
-
:type authorization: str
|
|
1742
1648
|
:param _request_timeout: timeout setting for this request. If one
|
|
1743
1649
|
number provided, it will be total request
|
|
1744
1650
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1763,7 +1669,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1763
1669
|
|
|
1764
1670
|
_param = self._get_ttps_serialize(
|
|
1765
1671
|
analysis_id=analysis_id,
|
|
1766
|
-
authorization=authorization,
|
|
1767
1672
|
_request_auth=_request_auth,
|
|
1768
1673
|
_content_type=_content_type,
|
|
1769
1674
|
_headers=_headers,
|
|
@@ -1789,7 +1694,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1789
1694
|
def get_ttps_with_http_info(
|
|
1790
1695
|
self,
|
|
1791
1696
|
analysis_id: StrictInt,
|
|
1792
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1793
1697
|
_request_timeout: Union[
|
|
1794
1698
|
None,
|
|
1795
1699
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1808,8 +1712,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1808
1712
|
|
|
1809
1713
|
:param analysis_id: (required)
|
|
1810
1714
|
:type analysis_id: int
|
|
1811
|
-
:param authorization: API Key bearer token
|
|
1812
|
-
:type authorization: str
|
|
1813
1715
|
:param _request_timeout: timeout setting for this request. If one
|
|
1814
1716
|
number provided, it will be total request
|
|
1815
1717
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1834,7 +1736,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1834
1736
|
|
|
1835
1737
|
_param = self._get_ttps_serialize(
|
|
1836
1738
|
analysis_id=analysis_id,
|
|
1837
|
-
authorization=authorization,
|
|
1838
1739
|
_request_auth=_request_auth,
|
|
1839
1740
|
_content_type=_content_type,
|
|
1840
1741
|
_headers=_headers,
|
|
@@ -1860,7 +1761,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1860
1761
|
def get_ttps_without_preload_content(
|
|
1861
1762
|
self,
|
|
1862
1763
|
analysis_id: StrictInt,
|
|
1863
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1864
1764
|
_request_timeout: Union[
|
|
1865
1765
|
None,
|
|
1866
1766
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1879,8 +1779,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1879
1779
|
|
|
1880
1780
|
:param analysis_id: (required)
|
|
1881
1781
|
:type analysis_id: int
|
|
1882
|
-
:param authorization: API Key bearer token
|
|
1883
|
-
:type authorization: str
|
|
1884
1782
|
:param _request_timeout: timeout setting for this request. If one
|
|
1885
1783
|
number provided, it will be total request
|
|
1886
1784
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1905,7 +1803,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1905
1803
|
|
|
1906
1804
|
_param = self._get_ttps_serialize(
|
|
1907
1805
|
analysis_id=analysis_id,
|
|
1908
|
-
authorization=authorization,
|
|
1909
1806
|
_request_auth=_request_auth,
|
|
1910
1807
|
_content_type=_content_type,
|
|
1911
1808
|
_headers=_headers,
|
|
@@ -1926,7 +1823,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1926
1823
|
def _get_ttps_serialize(
|
|
1927
1824
|
self,
|
|
1928
1825
|
analysis_id,
|
|
1929
|
-
authorization,
|
|
1930
1826
|
_request_auth,
|
|
1931
1827
|
_content_type,
|
|
1932
1828
|
_headers,
|
|
@@ -1952,8 +1848,6 @@ class AnalysesDynamicExecutionApi:
|
|
|
1952
1848
|
_path_params['analysis_id'] = analysis_id
|
|
1953
1849
|
# process the query parameters
|
|
1954
1850
|
# process the header parameters
|
|
1955
|
-
if authorization is not None:
|
|
1956
|
-
_header_params['authorization'] = authorization
|
|
1957
1851
|
# process the form parameters
|
|
1958
1852
|
# process the body parameter
|
|
1959
1853
|
|