revengai 1.94.0__py3-none-any.whl → 1.96.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-1.94.0.dist-info → revengai-1.96.0.dist-info}/METADATA +4 -2
- {revengai-1.94.0.dist-info → revengai-1.96.0.dist-info}/RECORD +26 -25
- revengai-1.96.0.dist-info/licenses/LICENSE.md +19 -0
- {revengai-1.94.0.dist-info → revengai-1.96.0.dist-info}/WHEEL +0 -0
revengai/api/collections_api.py
CHANGED
|
@@ -53,7 +53,6 @@ class CollectionsApi:
|
|
|
53
53
|
def create_collection(
|
|
54
54
|
self,
|
|
55
55
|
collection_create_request: CollectionCreateRequest,
|
|
56
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
57
56
|
_request_timeout: Union[
|
|
58
57
|
None,
|
|
59
58
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -73,8 +72,6 @@ class CollectionsApi:
|
|
|
73
72
|
|
|
74
73
|
:param collection_create_request: (required)
|
|
75
74
|
:type collection_create_request: CollectionCreateRequest
|
|
76
|
-
:param authorization: API Key bearer token
|
|
77
|
-
:type authorization: str
|
|
78
75
|
:param _request_timeout: timeout setting for this request. If one
|
|
79
76
|
number provided, it will be total request
|
|
80
77
|
timeout. It can also be a pair (tuple) of
|
|
@@ -99,7 +96,6 @@ class CollectionsApi:
|
|
|
99
96
|
|
|
100
97
|
_param = self._create_collection_serialize(
|
|
101
98
|
collection_create_request=collection_create_request,
|
|
102
|
-
authorization=authorization,
|
|
103
99
|
_request_auth=_request_auth,
|
|
104
100
|
_content_type=_content_type,
|
|
105
101
|
_headers=_headers,
|
|
@@ -125,7 +121,6 @@ class CollectionsApi:
|
|
|
125
121
|
def create_collection_with_http_info(
|
|
126
122
|
self,
|
|
127
123
|
collection_create_request: CollectionCreateRequest,
|
|
128
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
129
124
|
_request_timeout: Union[
|
|
130
125
|
None,
|
|
131
126
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -145,8 +140,6 @@ class CollectionsApi:
|
|
|
145
140
|
|
|
146
141
|
:param collection_create_request: (required)
|
|
147
142
|
:type collection_create_request: CollectionCreateRequest
|
|
148
|
-
:param authorization: API Key bearer token
|
|
149
|
-
:type authorization: str
|
|
150
143
|
:param _request_timeout: timeout setting for this request. If one
|
|
151
144
|
number provided, it will be total request
|
|
152
145
|
timeout. It can also be a pair (tuple) of
|
|
@@ -171,7 +164,6 @@ class CollectionsApi:
|
|
|
171
164
|
|
|
172
165
|
_param = self._create_collection_serialize(
|
|
173
166
|
collection_create_request=collection_create_request,
|
|
174
|
-
authorization=authorization,
|
|
175
167
|
_request_auth=_request_auth,
|
|
176
168
|
_content_type=_content_type,
|
|
177
169
|
_headers=_headers,
|
|
@@ -197,7 +189,6 @@ class CollectionsApi:
|
|
|
197
189
|
def create_collection_without_preload_content(
|
|
198
190
|
self,
|
|
199
191
|
collection_create_request: CollectionCreateRequest,
|
|
200
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
201
192
|
_request_timeout: Union[
|
|
202
193
|
None,
|
|
203
194
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -217,8 +208,6 @@ class CollectionsApi:
|
|
|
217
208
|
|
|
218
209
|
:param collection_create_request: (required)
|
|
219
210
|
:type collection_create_request: CollectionCreateRequest
|
|
220
|
-
:param authorization: API Key bearer token
|
|
221
|
-
:type authorization: str
|
|
222
211
|
:param _request_timeout: timeout setting for this request. If one
|
|
223
212
|
number provided, it will be total request
|
|
224
213
|
timeout. It can also be a pair (tuple) of
|
|
@@ -243,7 +232,6 @@ class CollectionsApi:
|
|
|
243
232
|
|
|
244
233
|
_param = self._create_collection_serialize(
|
|
245
234
|
collection_create_request=collection_create_request,
|
|
246
|
-
authorization=authorization,
|
|
247
235
|
_request_auth=_request_auth,
|
|
248
236
|
_content_type=_content_type,
|
|
249
237
|
_headers=_headers,
|
|
@@ -264,7 +252,6 @@ class CollectionsApi:
|
|
|
264
252
|
def _create_collection_serialize(
|
|
265
253
|
self,
|
|
266
254
|
collection_create_request,
|
|
267
|
-
authorization,
|
|
268
255
|
_request_auth,
|
|
269
256
|
_content_type,
|
|
270
257
|
_headers,
|
|
@@ -288,8 +275,6 @@ class CollectionsApi:
|
|
|
288
275
|
# process the path parameters
|
|
289
276
|
# process the query parameters
|
|
290
277
|
# process the header parameters
|
|
291
|
-
if authorization is not None:
|
|
292
|
-
_header_params['authorization'] = authorization
|
|
293
278
|
# process the form parameters
|
|
294
279
|
# process the body parameter
|
|
295
280
|
if collection_create_request is not None:
|
|
@@ -345,7 +330,6 @@ class CollectionsApi:
|
|
|
345
330
|
def delete_collection(
|
|
346
331
|
self,
|
|
347
332
|
collection_id: StrictInt,
|
|
348
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
349
333
|
_request_timeout: Union[
|
|
350
334
|
None,
|
|
351
335
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -365,8 +349,6 @@ class CollectionsApi:
|
|
|
365
349
|
|
|
366
350
|
:param collection_id: (required)
|
|
367
351
|
:type collection_id: int
|
|
368
|
-
:param authorization: API Key bearer token
|
|
369
|
-
:type authorization: str
|
|
370
352
|
:param _request_timeout: timeout setting for this request. If one
|
|
371
353
|
number provided, it will be total request
|
|
372
354
|
timeout. It can also be a pair (tuple) of
|
|
@@ -391,7 +373,6 @@ class CollectionsApi:
|
|
|
391
373
|
|
|
392
374
|
_param = self._delete_collection_serialize(
|
|
393
375
|
collection_id=collection_id,
|
|
394
|
-
authorization=authorization,
|
|
395
376
|
_request_auth=_request_auth,
|
|
396
377
|
_content_type=_content_type,
|
|
397
378
|
_headers=_headers,
|
|
@@ -417,7 +398,6 @@ class CollectionsApi:
|
|
|
417
398
|
def delete_collection_with_http_info(
|
|
418
399
|
self,
|
|
419
400
|
collection_id: StrictInt,
|
|
420
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
421
401
|
_request_timeout: Union[
|
|
422
402
|
None,
|
|
423
403
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -437,8 +417,6 @@ class CollectionsApi:
|
|
|
437
417
|
|
|
438
418
|
:param collection_id: (required)
|
|
439
419
|
:type collection_id: int
|
|
440
|
-
:param authorization: API Key bearer token
|
|
441
|
-
:type authorization: str
|
|
442
420
|
:param _request_timeout: timeout setting for this request. If one
|
|
443
421
|
number provided, it will be total request
|
|
444
422
|
timeout. It can also be a pair (tuple) of
|
|
@@ -463,7 +441,6 @@ class CollectionsApi:
|
|
|
463
441
|
|
|
464
442
|
_param = self._delete_collection_serialize(
|
|
465
443
|
collection_id=collection_id,
|
|
466
|
-
authorization=authorization,
|
|
467
444
|
_request_auth=_request_auth,
|
|
468
445
|
_content_type=_content_type,
|
|
469
446
|
_headers=_headers,
|
|
@@ -489,7 +466,6 @@ class CollectionsApi:
|
|
|
489
466
|
def delete_collection_without_preload_content(
|
|
490
467
|
self,
|
|
491
468
|
collection_id: StrictInt,
|
|
492
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
493
469
|
_request_timeout: Union[
|
|
494
470
|
None,
|
|
495
471
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -509,8 +485,6 @@ class CollectionsApi:
|
|
|
509
485
|
|
|
510
486
|
:param collection_id: (required)
|
|
511
487
|
:type collection_id: int
|
|
512
|
-
:param authorization: API Key bearer token
|
|
513
|
-
:type authorization: str
|
|
514
488
|
:param _request_timeout: timeout setting for this request. If one
|
|
515
489
|
number provided, it will be total request
|
|
516
490
|
timeout. It can also be a pair (tuple) of
|
|
@@ -535,7 +509,6 @@ class CollectionsApi:
|
|
|
535
509
|
|
|
536
510
|
_param = self._delete_collection_serialize(
|
|
537
511
|
collection_id=collection_id,
|
|
538
|
-
authorization=authorization,
|
|
539
512
|
_request_auth=_request_auth,
|
|
540
513
|
_content_type=_content_type,
|
|
541
514
|
_headers=_headers,
|
|
@@ -556,7 +529,6 @@ class CollectionsApi:
|
|
|
556
529
|
def _delete_collection_serialize(
|
|
557
530
|
self,
|
|
558
531
|
collection_id,
|
|
559
|
-
authorization,
|
|
560
532
|
_request_auth,
|
|
561
533
|
_content_type,
|
|
562
534
|
_headers,
|
|
@@ -582,8 +554,6 @@ class CollectionsApi:
|
|
|
582
554
|
_path_params['collection_id'] = collection_id
|
|
583
555
|
# process the query parameters
|
|
584
556
|
# process the header parameters
|
|
585
|
-
if authorization is not None:
|
|
586
|
-
_header_params['authorization'] = authorization
|
|
587
557
|
# process the form parameters
|
|
588
558
|
# process the body parameter
|
|
589
559
|
|
|
@@ -626,7 +596,6 @@ class CollectionsApi:
|
|
|
626
596
|
collection_id: StrictInt,
|
|
627
597
|
include_tags: Optional[StrictBool] = None,
|
|
628
598
|
include_binaries: Optional[StrictBool] = None,
|
|
629
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
630
599
|
_request_timeout: Union[
|
|
631
600
|
None,
|
|
632
601
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -650,8 +619,6 @@ class CollectionsApi:
|
|
|
650
619
|
:type include_tags: bool
|
|
651
620
|
:param include_binaries:
|
|
652
621
|
:type include_binaries: bool
|
|
653
|
-
:param authorization: API Key bearer token
|
|
654
|
-
:type authorization: str
|
|
655
622
|
:param _request_timeout: timeout setting for this request. If one
|
|
656
623
|
number provided, it will be total request
|
|
657
624
|
timeout. It can also be a pair (tuple) of
|
|
@@ -678,7 +645,6 @@ class CollectionsApi:
|
|
|
678
645
|
collection_id=collection_id,
|
|
679
646
|
include_tags=include_tags,
|
|
680
647
|
include_binaries=include_binaries,
|
|
681
|
-
authorization=authorization,
|
|
682
648
|
_request_auth=_request_auth,
|
|
683
649
|
_content_type=_content_type,
|
|
684
650
|
_headers=_headers,
|
|
@@ -706,7 +672,6 @@ class CollectionsApi:
|
|
|
706
672
|
collection_id: StrictInt,
|
|
707
673
|
include_tags: Optional[StrictBool] = None,
|
|
708
674
|
include_binaries: Optional[StrictBool] = None,
|
|
709
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
710
675
|
_request_timeout: Union[
|
|
711
676
|
None,
|
|
712
677
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -730,8 +695,6 @@ class CollectionsApi:
|
|
|
730
695
|
:type include_tags: bool
|
|
731
696
|
:param include_binaries:
|
|
732
697
|
:type include_binaries: bool
|
|
733
|
-
:param authorization: API Key bearer token
|
|
734
|
-
:type authorization: str
|
|
735
698
|
:param _request_timeout: timeout setting for this request. If one
|
|
736
699
|
number provided, it will be total request
|
|
737
700
|
timeout. It can also be a pair (tuple) of
|
|
@@ -758,7 +721,6 @@ class CollectionsApi:
|
|
|
758
721
|
collection_id=collection_id,
|
|
759
722
|
include_tags=include_tags,
|
|
760
723
|
include_binaries=include_binaries,
|
|
761
|
-
authorization=authorization,
|
|
762
724
|
_request_auth=_request_auth,
|
|
763
725
|
_content_type=_content_type,
|
|
764
726
|
_headers=_headers,
|
|
@@ -786,7 +748,6 @@ class CollectionsApi:
|
|
|
786
748
|
collection_id: StrictInt,
|
|
787
749
|
include_tags: Optional[StrictBool] = None,
|
|
788
750
|
include_binaries: Optional[StrictBool] = None,
|
|
789
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
790
751
|
_request_timeout: Union[
|
|
791
752
|
None,
|
|
792
753
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -810,8 +771,6 @@ class CollectionsApi:
|
|
|
810
771
|
:type include_tags: bool
|
|
811
772
|
:param include_binaries:
|
|
812
773
|
:type include_binaries: bool
|
|
813
|
-
:param authorization: API Key bearer token
|
|
814
|
-
:type authorization: str
|
|
815
774
|
:param _request_timeout: timeout setting for this request. If one
|
|
816
775
|
number provided, it will be total request
|
|
817
776
|
timeout. It can also be a pair (tuple) of
|
|
@@ -838,7 +797,6 @@ class CollectionsApi:
|
|
|
838
797
|
collection_id=collection_id,
|
|
839
798
|
include_tags=include_tags,
|
|
840
799
|
include_binaries=include_binaries,
|
|
841
|
-
authorization=authorization,
|
|
842
800
|
_request_auth=_request_auth,
|
|
843
801
|
_content_type=_content_type,
|
|
844
802
|
_headers=_headers,
|
|
@@ -861,7 +819,6 @@ class CollectionsApi:
|
|
|
861
819
|
collection_id,
|
|
862
820
|
include_tags,
|
|
863
821
|
include_binaries,
|
|
864
|
-
authorization,
|
|
865
822
|
_request_auth,
|
|
866
823
|
_content_type,
|
|
867
824
|
_headers,
|
|
@@ -895,8 +852,6 @@ class CollectionsApi:
|
|
|
895
852
|
_query_params.append(('include_binaries', include_binaries))
|
|
896
853
|
|
|
897
854
|
# process the header parameters
|
|
898
|
-
if authorization is not None:
|
|
899
|
-
_header_params['authorization'] = authorization
|
|
900
855
|
# process the form parameters
|
|
901
856
|
# process the body parameter
|
|
902
857
|
|
|
@@ -942,7 +897,6 @@ class CollectionsApi:
|
|
|
942
897
|
offset: Optional[StrictInt] = None,
|
|
943
898
|
order_by: Optional[AppApiRestV2CollectionsEnumsOrderBy] = None,
|
|
944
899
|
order: Optional[Order] = None,
|
|
945
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
946
900
|
_request_timeout: Union[
|
|
947
901
|
None,
|
|
948
902
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -972,8 +926,6 @@ class CollectionsApi:
|
|
|
972
926
|
:type order_by: AppApiRestV2CollectionsEnumsOrderBy
|
|
973
927
|
:param order:
|
|
974
928
|
:type order: Order
|
|
975
|
-
:param authorization: API Key bearer token
|
|
976
|
-
:type authorization: str
|
|
977
929
|
:param _request_timeout: timeout setting for this request. If one
|
|
978
930
|
number provided, it will be total request
|
|
979
931
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1003,7 +955,6 @@ class CollectionsApi:
|
|
|
1003
955
|
offset=offset,
|
|
1004
956
|
order_by=order_by,
|
|
1005
957
|
order=order,
|
|
1006
|
-
authorization=authorization,
|
|
1007
958
|
_request_auth=_request_auth,
|
|
1008
959
|
_content_type=_content_type,
|
|
1009
960
|
_headers=_headers,
|
|
@@ -1034,7 +985,6 @@ class CollectionsApi:
|
|
|
1034
985
|
offset: Optional[StrictInt] = None,
|
|
1035
986
|
order_by: Optional[AppApiRestV2CollectionsEnumsOrderBy] = None,
|
|
1036
987
|
order: Optional[Order] = None,
|
|
1037
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1038
988
|
_request_timeout: Union[
|
|
1039
989
|
None,
|
|
1040
990
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1064,8 +1014,6 @@ class CollectionsApi:
|
|
|
1064
1014
|
:type order_by: AppApiRestV2CollectionsEnumsOrderBy
|
|
1065
1015
|
:param order:
|
|
1066
1016
|
:type order: Order
|
|
1067
|
-
:param authorization: API Key bearer token
|
|
1068
|
-
:type authorization: str
|
|
1069
1017
|
:param _request_timeout: timeout setting for this request. If one
|
|
1070
1018
|
number provided, it will be total request
|
|
1071
1019
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1095,7 +1043,6 @@ class CollectionsApi:
|
|
|
1095
1043
|
offset=offset,
|
|
1096
1044
|
order_by=order_by,
|
|
1097
1045
|
order=order,
|
|
1098
|
-
authorization=authorization,
|
|
1099
1046
|
_request_auth=_request_auth,
|
|
1100
1047
|
_content_type=_content_type,
|
|
1101
1048
|
_headers=_headers,
|
|
@@ -1126,7 +1073,6 @@ class CollectionsApi:
|
|
|
1126
1073
|
offset: Optional[StrictInt] = None,
|
|
1127
1074
|
order_by: Optional[AppApiRestV2CollectionsEnumsOrderBy] = None,
|
|
1128
1075
|
order: Optional[Order] = None,
|
|
1129
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1130
1076
|
_request_timeout: Union[
|
|
1131
1077
|
None,
|
|
1132
1078
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1156,8 +1102,6 @@ class CollectionsApi:
|
|
|
1156
1102
|
:type order_by: AppApiRestV2CollectionsEnumsOrderBy
|
|
1157
1103
|
:param order:
|
|
1158
1104
|
:type order: Order
|
|
1159
|
-
:param authorization: API Key bearer token
|
|
1160
|
-
:type authorization: str
|
|
1161
1105
|
:param _request_timeout: timeout setting for this request. If one
|
|
1162
1106
|
number provided, it will be total request
|
|
1163
1107
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1187,7 +1131,6 @@ class CollectionsApi:
|
|
|
1187
1131
|
offset=offset,
|
|
1188
1132
|
order_by=order_by,
|
|
1189
1133
|
order=order,
|
|
1190
|
-
authorization=authorization,
|
|
1191
1134
|
_request_auth=_request_auth,
|
|
1192
1135
|
_content_type=_content_type,
|
|
1193
1136
|
_headers=_headers,
|
|
@@ -1213,7 +1156,6 @@ class CollectionsApi:
|
|
|
1213
1156
|
offset,
|
|
1214
1157
|
order_by,
|
|
1215
1158
|
order,
|
|
1216
|
-
authorization,
|
|
1217
1159
|
_request_auth,
|
|
1218
1160
|
_content_type,
|
|
1219
1161
|
_headers,
|
|
@@ -1262,8 +1204,6 @@ class CollectionsApi:
|
|
|
1262
1204
|
_query_params.append(('order', order.value))
|
|
1263
1205
|
|
|
1264
1206
|
# process the header parameters
|
|
1265
|
-
if authorization is not None:
|
|
1266
|
-
_header_params['authorization'] = authorization
|
|
1267
1207
|
# process the form parameters
|
|
1268
1208
|
# process the body parameter
|
|
1269
1209
|
|
|
@@ -1305,7 +1245,6 @@ class CollectionsApi:
|
|
|
1305
1245
|
self,
|
|
1306
1246
|
collection_id: StrictInt,
|
|
1307
1247
|
collection_update_request: CollectionUpdateRequest,
|
|
1308
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1309
1248
|
_request_timeout: Union[
|
|
1310
1249
|
None,
|
|
1311
1250
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1327,8 +1266,6 @@ class CollectionsApi:
|
|
|
1327
1266
|
:type collection_id: int
|
|
1328
1267
|
:param collection_update_request: (required)
|
|
1329
1268
|
:type collection_update_request: CollectionUpdateRequest
|
|
1330
|
-
:param authorization: API Key bearer token
|
|
1331
|
-
:type authorization: str
|
|
1332
1269
|
:param _request_timeout: timeout setting for this request. If one
|
|
1333
1270
|
number provided, it will be total request
|
|
1334
1271
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1354,7 +1291,6 @@ class CollectionsApi:
|
|
|
1354
1291
|
_param = self._update_collection_serialize(
|
|
1355
1292
|
collection_id=collection_id,
|
|
1356
1293
|
collection_update_request=collection_update_request,
|
|
1357
|
-
authorization=authorization,
|
|
1358
1294
|
_request_auth=_request_auth,
|
|
1359
1295
|
_content_type=_content_type,
|
|
1360
1296
|
_headers=_headers,
|
|
@@ -1381,7 +1317,6 @@ class CollectionsApi:
|
|
|
1381
1317
|
self,
|
|
1382
1318
|
collection_id: StrictInt,
|
|
1383
1319
|
collection_update_request: CollectionUpdateRequest,
|
|
1384
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1385
1320
|
_request_timeout: Union[
|
|
1386
1321
|
None,
|
|
1387
1322
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1403,8 +1338,6 @@ class CollectionsApi:
|
|
|
1403
1338
|
:type collection_id: int
|
|
1404
1339
|
:param collection_update_request: (required)
|
|
1405
1340
|
:type collection_update_request: CollectionUpdateRequest
|
|
1406
|
-
:param authorization: API Key bearer token
|
|
1407
|
-
:type authorization: str
|
|
1408
1341
|
:param _request_timeout: timeout setting for this request. If one
|
|
1409
1342
|
number provided, it will be total request
|
|
1410
1343
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1430,7 +1363,6 @@ class CollectionsApi:
|
|
|
1430
1363
|
_param = self._update_collection_serialize(
|
|
1431
1364
|
collection_id=collection_id,
|
|
1432
1365
|
collection_update_request=collection_update_request,
|
|
1433
|
-
authorization=authorization,
|
|
1434
1366
|
_request_auth=_request_auth,
|
|
1435
1367
|
_content_type=_content_type,
|
|
1436
1368
|
_headers=_headers,
|
|
@@ -1457,7 +1389,6 @@ class CollectionsApi:
|
|
|
1457
1389
|
self,
|
|
1458
1390
|
collection_id: StrictInt,
|
|
1459
1391
|
collection_update_request: CollectionUpdateRequest,
|
|
1460
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1461
1392
|
_request_timeout: Union[
|
|
1462
1393
|
None,
|
|
1463
1394
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1479,8 +1410,6 @@ class CollectionsApi:
|
|
|
1479
1410
|
:type collection_id: int
|
|
1480
1411
|
:param collection_update_request: (required)
|
|
1481
1412
|
:type collection_update_request: CollectionUpdateRequest
|
|
1482
|
-
:param authorization: API Key bearer token
|
|
1483
|
-
:type authorization: str
|
|
1484
1413
|
:param _request_timeout: timeout setting for this request. If one
|
|
1485
1414
|
number provided, it will be total request
|
|
1486
1415
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1506,7 +1435,6 @@ class CollectionsApi:
|
|
|
1506
1435
|
_param = self._update_collection_serialize(
|
|
1507
1436
|
collection_id=collection_id,
|
|
1508
1437
|
collection_update_request=collection_update_request,
|
|
1509
|
-
authorization=authorization,
|
|
1510
1438
|
_request_auth=_request_auth,
|
|
1511
1439
|
_content_type=_content_type,
|
|
1512
1440
|
_headers=_headers,
|
|
@@ -1528,7 +1456,6 @@ class CollectionsApi:
|
|
|
1528
1456
|
self,
|
|
1529
1457
|
collection_id,
|
|
1530
1458
|
collection_update_request,
|
|
1531
|
-
authorization,
|
|
1532
1459
|
_request_auth,
|
|
1533
1460
|
_content_type,
|
|
1534
1461
|
_headers,
|
|
@@ -1554,8 +1481,6 @@ class CollectionsApi:
|
|
|
1554
1481
|
_path_params['collection_id'] = collection_id
|
|
1555
1482
|
# process the query parameters
|
|
1556
1483
|
# process the header parameters
|
|
1557
|
-
if authorization is not None:
|
|
1558
|
-
_header_params['authorization'] = authorization
|
|
1559
1484
|
# process the form parameters
|
|
1560
1485
|
# process the body parameter
|
|
1561
1486
|
if collection_update_request is not None:
|
|
@@ -1612,7 +1537,6 @@ class CollectionsApi:
|
|
|
1612
1537
|
self,
|
|
1613
1538
|
collection_id: StrictInt,
|
|
1614
1539
|
collection_binaries_update_request: CollectionBinariesUpdateRequest,
|
|
1615
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1616
1540
|
_request_timeout: Union[
|
|
1617
1541
|
None,
|
|
1618
1542
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1634,8 +1558,6 @@ class CollectionsApi:
|
|
|
1634
1558
|
:type collection_id: int
|
|
1635
1559
|
:param collection_binaries_update_request: (required)
|
|
1636
1560
|
:type collection_binaries_update_request: CollectionBinariesUpdateRequest
|
|
1637
|
-
:param authorization: API Key bearer token
|
|
1638
|
-
:type authorization: str
|
|
1639
1561
|
:param _request_timeout: timeout setting for this request. If one
|
|
1640
1562
|
number provided, it will be total request
|
|
1641
1563
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1661,7 +1583,6 @@ class CollectionsApi:
|
|
|
1661
1583
|
_param = self._update_collection_binaries_serialize(
|
|
1662
1584
|
collection_id=collection_id,
|
|
1663
1585
|
collection_binaries_update_request=collection_binaries_update_request,
|
|
1664
|
-
authorization=authorization,
|
|
1665
1586
|
_request_auth=_request_auth,
|
|
1666
1587
|
_content_type=_content_type,
|
|
1667
1588
|
_headers=_headers,
|
|
@@ -1688,7 +1609,6 @@ class CollectionsApi:
|
|
|
1688
1609
|
self,
|
|
1689
1610
|
collection_id: StrictInt,
|
|
1690
1611
|
collection_binaries_update_request: CollectionBinariesUpdateRequest,
|
|
1691
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1692
1612
|
_request_timeout: Union[
|
|
1693
1613
|
None,
|
|
1694
1614
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1710,8 +1630,6 @@ class CollectionsApi:
|
|
|
1710
1630
|
:type collection_id: int
|
|
1711
1631
|
:param collection_binaries_update_request: (required)
|
|
1712
1632
|
:type collection_binaries_update_request: CollectionBinariesUpdateRequest
|
|
1713
|
-
:param authorization: API Key bearer token
|
|
1714
|
-
:type authorization: str
|
|
1715
1633
|
:param _request_timeout: timeout setting for this request. If one
|
|
1716
1634
|
number provided, it will be total request
|
|
1717
1635
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1737,7 +1655,6 @@ class CollectionsApi:
|
|
|
1737
1655
|
_param = self._update_collection_binaries_serialize(
|
|
1738
1656
|
collection_id=collection_id,
|
|
1739
1657
|
collection_binaries_update_request=collection_binaries_update_request,
|
|
1740
|
-
authorization=authorization,
|
|
1741
1658
|
_request_auth=_request_auth,
|
|
1742
1659
|
_content_type=_content_type,
|
|
1743
1660
|
_headers=_headers,
|
|
@@ -1764,7 +1681,6 @@ class CollectionsApi:
|
|
|
1764
1681
|
self,
|
|
1765
1682
|
collection_id: StrictInt,
|
|
1766
1683
|
collection_binaries_update_request: CollectionBinariesUpdateRequest,
|
|
1767
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1768
1684
|
_request_timeout: Union[
|
|
1769
1685
|
None,
|
|
1770
1686
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1786,8 +1702,6 @@ class CollectionsApi:
|
|
|
1786
1702
|
:type collection_id: int
|
|
1787
1703
|
:param collection_binaries_update_request: (required)
|
|
1788
1704
|
:type collection_binaries_update_request: CollectionBinariesUpdateRequest
|
|
1789
|
-
:param authorization: API Key bearer token
|
|
1790
|
-
:type authorization: str
|
|
1791
1705
|
:param _request_timeout: timeout setting for this request. If one
|
|
1792
1706
|
number provided, it will be total request
|
|
1793
1707
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1813,7 +1727,6 @@ class CollectionsApi:
|
|
|
1813
1727
|
_param = self._update_collection_binaries_serialize(
|
|
1814
1728
|
collection_id=collection_id,
|
|
1815
1729
|
collection_binaries_update_request=collection_binaries_update_request,
|
|
1816
|
-
authorization=authorization,
|
|
1817
1730
|
_request_auth=_request_auth,
|
|
1818
1731
|
_content_type=_content_type,
|
|
1819
1732
|
_headers=_headers,
|
|
@@ -1835,7 +1748,6 @@ class CollectionsApi:
|
|
|
1835
1748
|
self,
|
|
1836
1749
|
collection_id,
|
|
1837
1750
|
collection_binaries_update_request,
|
|
1838
|
-
authorization,
|
|
1839
1751
|
_request_auth,
|
|
1840
1752
|
_content_type,
|
|
1841
1753
|
_headers,
|
|
@@ -1861,8 +1773,6 @@ class CollectionsApi:
|
|
|
1861
1773
|
_path_params['collection_id'] = collection_id
|
|
1862
1774
|
# process the query parameters
|
|
1863
1775
|
# process the header parameters
|
|
1864
|
-
if authorization is not None:
|
|
1865
|
-
_header_params['authorization'] = authorization
|
|
1866
1776
|
# process the form parameters
|
|
1867
1777
|
# process the body parameter
|
|
1868
1778
|
if collection_binaries_update_request is not None:
|
|
@@ -1919,7 +1829,6 @@ class CollectionsApi:
|
|
|
1919
1829
|
self,
|
|
1920
1830
|
collection_id: StrictInt,
|
|
1921
1831
|
collection_tags_update_request: CollectionTagsUpdateRequest,
|
|
1922
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1923
1832
|
_request_timeout: Union[
|
|
1924
1833
|
None,
|
|
1925
1834
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1941,8 +1850,6 @@ class CollectionsApi:
|
|
|
1941
1850
|
:type collection_id: int
|
|
1942
1851
|
:param collection_tags_update_request: (required)
|
|
1943
1852
|
:type collection_tags_update_request: CollectionTagsUpdateRequest
|
|
1944
|
-
:param authorization: API Key bearer token
|
|
1945
|
-
:type authorization: str
|
|
1946
1853
|
:param _request_timeout: timeout setting for this request. If one
|
|
1947
1854
|
number provided, it will be total request
|
|
1948
1855
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1968,7 +1875,6 @@ class CollectionsApi:
|
|
|
1968
1875
|
_param = self._update_collection_tags_serialize(
|
|
1969
1876
|
collection_id=collection_id,
|
|
1970
1877
|
collection_tags_update_request=collection_tags_update_request,
|
|
1971
|
-
authorization=authorization,
|
|
1972
1878
|
_request_auth=_request_auth,
|
|
1973
1879
|
_content_type=_content_type,
|
|
1974
1880
|
_headers=_headers,
|
|
@@ -1995,7 +1901,6 @@ class CollectionsApi:
|
|
|
1995
1901
|
self,
|
|
1996
1902
|
collection_id: StrictInt,
|
|
1997
1903
|
collection_tags_update_request: CollectionTagsUpdateRequest,
|
|
1998
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1999
1904
|
_request_timeout: Union[
|
|
2000
1905
|
None,
|
|
2001
1906
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2017,8 +1922,6 @@ class CollectionsApi:
|
|
|
2017
1922
|
:type collection_id: int
|
|
2018
1923
|
:param collection_tags_update_request: (required)
|
|
2019
1924
|
:type collection_tags_update_request: CollectionTagsUpdateRequest
|
|
2020
|
-
:param authorization: API Key bearer token
|
|
2021
|
-
:type authorization: str
|
|
2022
1925
|
:param _request_timeout: timeout setting for this request. If one
|
|
2023
1926
|
number provided, it will be total request
|
|
2024
1927
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2044,7 +1947,6 @@ class CollectionsApi:
|
|
|
2044
1947
|
_param = self._update_collection_tags_serialize(
|
|
2045
1948
|
collection_id=collection_id,
|
|
2046
1949
|
collection_tags_update_request=collection_tags_update_request,
|
|
2047
|
-
authorization=authorization,
|
|
2048
1950
|
_request_auth=_request_auth,
|
|
2049
1951
|
_content_type=_content_type,
|
|
2050
1952
|
_headers=_headers,
|
|
@@ -2071,7 +1973,6 @@ class CollectionsApi:
|
|
|
2071
1973
|
self,
|
|
2072
1974
|
collection_id: StrictInt,
|
|
2073
1975
|
collection_tags_update_request: CollectionTagsUpdateRequest,
|
|
2074
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
2075
1976
|
_request_timeout: Union[
|
|
2076
1977
|
None,
|
|
2077
1978
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2093,8 +1994,6 @@ class CollectionsApi:
|
|
|
2093
1994
|
:type collection_id: int
|
|
2094
1995
|
:param collection_tags_update_request: (required)
|
|
2095
1996
|
:type collection_tags_update_request: CollectionTagsUpdateRequest
|
|
2096
|
-
:param authorization: API Key bearer token
|
|
2097
|
-
:type authorization: str
|
|
2098
1997
|
:param _request_timeout: timeout setting for this request. If one
|
|
2099
1998
|
number provided, it will be total request
|
|
2100
1999
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2120,7 +2019,6 @@ class CollectionsApi:
|
|
|
2120
2019
|
_param = self._update_collection_tags_serialize(
|
|
2121
2020
|
collection_id=collection_id,
|
|
2122
2021
|
collection_tags_update_request=collection_tags_update_request,
|
|
2123
|
-
authorization=authorization,
|
|
2124
2022
|
_request_auth=_request_auth,
|
|
2125
2023
|
_content_type=_content_type,
|
|
2126
2024
|
_headers=_headers,
|
|
@@ -2142,7 +2040,6 @@ class CollectionsApi:
|
|
|
2142
2040
|
self,
|
|
2143
2041
|
collection_id,
|
|
2144
2042
|
collection_tags_update_request,
|
|
2145
|
-
authorization,
|
|
2146
2043
|
_request_auth,
|
|
2147
2044
|
_content_type,
|
|
2148
2045
|
_headers,
|
|
@@ -2168,8 +2065,6 @@ class CollectionsApi:
|
|
|
2168
2065
|
_path_params['collection_id'] = collection_id
|
|
2169
2066
|
# process the query parameters
|
|
2170
2067
|
# process the header parameters
|
|
2171
|
-
if authorization is not None:
|
|
2172
|
-
_header_params['authorization'] = authorization
|
|
2173
2068
|
# process the form parameters
|
|
2174
2069
|
# process the body parameter
|
|
2175
2070
|
if collection_tags_update_request is not None:
|