pulp-python-client 3.15.1__py3-none-any.whl → 3.17.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 pulp-python-client might be problematic. Click here for more details.
- {pulp_python_client-3.15.1.dist-info → pulp_python_client-3.17.0.dist-info}/METADATA +1 -1
- {pulp_python_client-3.15.1.dist-info → pulp_python_client-3.17.0.dist-info}/RECORD +18 -18
- pulpcore/client/pulp_python/__init__.py +1 -1
- pulpcore/client/pulp_python/api/content_packages_api.py +341 -201
- pulpcore/client/pulp_python/api/distributions_pypi_api.py +192 -0
- pulpcore/client/pulp_python/api/publications_pypi_api.py +128 -0
- pulpcore/client/pulp_python/api/pypi_api.py +16 -0
- pulpcore/client/pulp_python/api/pypi_legacy_api.py +17 -1
- pulpcore/client/pulp_python/api/pypi_metadata_api.py +16 -0
- pulpcore/client/pulp_python/api/pypi_simple_api.py +48 -0
- pulpcore/client/pulp_python/api/remotes_python_api.py +208 -0
- pulpcore/client/pulp_python/api/repositories_python_api.py +240 -0
- pulpcore/client/pulp_python/api/repositories_python_versions_api.py +70 -6
- pulpcore/client/pulp_python/api_client.py +1 -1
- pulpcore/client/pulp_python/configuration.py +1 -1
- pulpcore/client/pulp_python/models/python_python_package_content_response.py +80 -53
- {pulp_python_client-3.15.1.dist-info → pulp_python_client-3.17.0.dist-info}/WHEEL +0 -0
- {pulp_python_client-3.15.1.dist-info → pulp_python_client-3.17.0.dist-info}/top_level.txt +0 -0
|
@@ -59,6 +59,7 @@ class RepositoriesPythonApi:
|
|
|
59
59
|
self,
|
|
60
60
|
python_python_repository_href: StrictStr,
|
|
61
61
|
nested_role: NestedRole,
|
|
62
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
62
63
|
_request_timeout: Union[
|
|
63
64
|
None,
|
|
64
65
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -80,6 +81,8 @@ class RepositoriesPythonApi:
|
|
|
80
81
|
:type python_python_repository_href: str
|
|
81
82
|
:param nested_role: (required)
|
|
82
83
|
:type nested_role: NestedRole
|
|
84
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
85
|
+
:type x_task_diagnostics: List[str]
|
|
83
86
|
:param _request_timeout: timeout setting for this request. If one
|
|
84
87
|
number provided, it will be total request
|
|
85
88
|
timeout. It can also be a pair (tuple) of
|
|
@@ -105,6 +108,7 @@ class RepositoriesPythonApi:
|
|
|
105
108
|
_param = self._add_role_serialize(
|
|
106
109
|
python_python_repository_href=python_python_repository_href,
|
|
107
110
|
nested_role=nested_role,
|
|
111
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
108
112
|
_request_auth=_request_auth,
|
|
109
113
|
_content_type=_content_type,
|
|
110
114
|
_headers=_headers,
|
|
@@ -130,6 +134,7 @@ class RepositoriesPythonApi:
|
|
|
130
134
|
self,
|
|
131
135
|
python_python_repository_href: StrictStr,
|
|
132
136
|
nested_role: NestedRole,
|
|
137
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
133
138
|
_request_timeout: Union[
|
|
134
139
|
None,
|
|
135
140
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -151,6 +156,8 @@ class RepositoriesPythonApi:
|
|
|
151
156
|
:type python_python_repository_href: str
|
|
152
157
|
:param nested_role: (required)
|
|
153
158
|
:type nested_role: NestedRole
|
|
159
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
160
|
+
:type x_task_diagnostics: List[str]
|
|
154
161
|
:param _request_timeout: timeout setting for this request. If one
|
|
155
162
|
number provided, it will be total request
|
|
156
163
|
timeout. It can also be a pair (tuple) of
|
|
@@ -176,6 +183,7 @@ class RepositoriesPythonApi:
|
|
|
176
183
|
_param = self._add_role_serialize(
|
|
177
184
|
python_python_repository_href=python_python_repository_href,
|
|
178
185
|
nested_role=nested_role,
|
|
186
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
179
187
|
_request_auth=_request_auth,
|
|
180
188
|
_content_type=_content_type,
|
|
181
189
|
_headers=_headers,
|
|
@@ -201,6 +209,7 @@ class RepositoriesPythonApi:
|
|
|
201
209
|
self,
|
|
202
210
|
python_python_repository_href: StrictStr,
|
|
203
211
|
nested_role: NestedRole,
|
|
212
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
204
213
|
_request_timeout: Union[
|
|
205
214
|
None,
|
|
206
215
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -222,6 +231,8 @@ class RepositoriesPythonApi:
|
|
|
222
231
|
:type python_python_repository_href: str
|
|
223
232
|
:param nested_role: (required)
|
|
224
233
|
:type nested_role: NestedRole
|
|
234
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
235
|
+
:type x_task_diagnostics: List[str]
|
|
225
236
|
:param _request_timeout: timeout setting for this request. If one
|
|
226
237
|
number provided, it will be total request
|
|
227
238
|
timeout. It can also be a pair (tuple) of
|
|
@@ -247,6 +258,7 @@ class RepositoriesPythonApi:
|
|
|
247
258
|
_param = self._add_role_serialize(
|
|
248
259
|
python_python_repository_href=python_python_repository_href,
|
|
249
260
|
nested_role=nested_role,
|
|
261
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
250
262
|
_request_auth=_request_auth,
|
|
251
263
|
_content_type=_content_type,
|
|
252
264
|
_headers=_headers,
|
|
@@ -267,6 +279,7 @@ class RepositoriesPythonApi:
|
|
|
267
279
|
self,
|
|
268
280
|
python_python_repository_href,
|
|
269
281
|
nested_role,
|
|
282
|
+
x_task_diagnostics,
|
|
270
283
|
_request_auth,
|
|
271
284
|
_content_type,
|
|
272
285
|
_headers,
|
|
@@ -276,6 +289,7 @@ class RepositoriesPythonApi:
|
|
|
276
289
|
_host = None
|
|
277
290
|
|
|
278
291
|
_collection_formats: Dict[str, str] = {
|
|
292
|
+
'X-Task-Diagnostics': 'csv',
|
|
279
293
|
}
|
|
280
294
|
|
|
281
295
|
_path_params: Dict[str, str] = {}
|
|
@@ -292,6 +306,8 @@ class RepositoriesPythonApi:
|
|
|
292
306
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
293
307
|
# process the query parameters
|
|
294
308
|
# process the header parameters
|
|
309
|
+
if x_task_diagnostics is not None:
|
|
310
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
295
311
|
# process the form parameters
|
|
296
312
|
# process the body parameter
|
|
297
313
|
if nested_role is not None:
|
|
@@ -350,6 +366,7 @@ class RepositoriesPythonApi:
|
|
|
350
366
|
def create(
|
|
351
367
|
self,
|
|
352
368
|
python_python_repository: PythonPythonRepository,
|
|
369
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
353
370
|
_request_timeout: Union[
|
|
354
371
|
None,
|
|
355
372
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -369,6 +386,8 @@ class RepositoriesPythonApi:
|
|
|
369
386
|
|
|
370
387
|
:param python_python_repository: (required)
|
|
371
388
|
:type python_python_repository: PythonPythonRepository
|
|
389
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
390
|
+
:type x_task_diagnostics: List[str]
|
|
372
391
|
:param _request_timeout: timeout setting for this request. If one
|
|
373
392
|
number provided, it will be total request
|
|
374
393
|
timeout. It can also be a pair (tuple) of
|
|
@@ -393,6 +412,7 @@ class RepositoriesPythonApi:
|
|
|
393
412
|
|
|
394
413
|
_param = self._create_serialize(
|
|
395
414
|
python_python_repository=python_python_repository,
|
|
415
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
396
416
|
_request_auth=_request_auth,
|
|
397
417
|
_content_type=_content_type,
|
|
398
418
|
_headers=_headers,
|
|
@@ -417,6 +437,7 @@ class RepositoriesPythonApi:
|
|
|
417
437
|
def create_with_http_info(
|
|
418
438
|
self,
|
|
419
439
|
python_python_repository: PythonPythonRepository,
|
|
440
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
420
441
|
_request_timeout: Union[
|
|
421
442
|
None,
|
|
422
443
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -436,6 +457,8 @@ class RepositoriesPythonApi:
|
|
|
436
457
|
|
|
437
458
|
:param python_python_repository: (required)
|
|
438
459
|
:type python_python_repository: PythonPythonRepository
|
|
460
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
461
|
+
:type x_task_diagnostics: List[str]
|
|
439
462
|
:param _request_timeout: timeout setting for this request. If one
|
|
440
463
|
number provided, it will be total request
|
|
441
464
|
timeout. It can also be a pair (tuple) of
|
|
@@ -460,6 +483,7 @@ class RepositoriesPythonApi:
|
|
|
460
483
|
|
|
461
484
|
_param = self._create_serialize(
|
|
462
485
|
python_python_repository=python_python_repository,
|
|
486
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
463
487
|
_request_auth=_request_auth,
|
|
464
488
|
_content_type=_content_type,
|
|
465
489
|
_headers=_headers,
|
|
@@ -484,6 +508,7 @@ class RepositoriesPythonApi:
|
|
|
484
508
|
def create_without_preload_content(
|
|
485
509
|
self,
|
|
486
510
|
python_python_repository: PythonPythonRepository,
|
|
511
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
487
512
|
_request_timeout: Union[
|
|
488
513
|
None,
|
|
489
514
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -503,6 +528,8 @@ class RepositoriesPythonApi:
|
|
|
503
528
|
|
|
504
529
|
:param python_python_repository: (required)
|
|
505
530
|
:type python_python_repository: PythonPythonRepository
|
|
531
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
532
|
+
:type x_task_diagnostics: List[str]
|
|
506
533
|
:param _request_timeout: timeout setting for this request. If one
|
|
507
534
|
number provided, it will be total request
|
|
508
535
|
timeout. It can also be a pair (tuple) of
|
|
@@ -527,6 +554,7 @@ class RepositoriesPythonApi:
|
|
|
527
554
|
|
|
528
555
|
_param = self._create_serialize(
|
|
529
556
|
python_python_repository=python_python_repository,
|
|
557
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
530
558
|
_request_auth=_request_auth,
|
|
531
559
|
_content_type=_content_type,
|
|
532
560
|
_headers=_headers,
|
|
@@ -546,6 +574,7 @@ class RepositoriesPythonApi:
|
|
|
546
574
|
def _create_serialize(
|
|
547
575
|
self,
|
|
548
576
|
python_python_repository,
|
|
577
|
+
x_task_diagnostics,
|
|
549
578
|
_request_auth,
|
|
550
579
|
_content_type,
|
|
551
580
|
_headers,
|
|
@@ -555,6 +584,7 @@ class RepositoriesPythonApi:
|
|
|
555
584
|
_host = None
|
|
556
585
|
|
|
557
586
|
_collection_formats: Dict[str, str] = {
|
|
587
|
+
'X-Task-Diagnostics': 'csv',
|
|
558
588
|
}
|
|
559
589
|
|
|
560
590
|
_path_params: Dict[str, str] = {}
|
|
@@ -569,6 +599,8 @@ class RepositoriesPythonApi:
|
|
|
569
599
|
# process the path parameters
|
|
570
600
|
# process the query parameters
|
|
571
601
|
# process the header parameters
|
|
602
|
+
if x_task_diagnostics is not None:
|
|
603
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
572
604
|
# process the form parameters
|
|
573
605
|
# process the body parameter
|
|
574
606
|
if python_python_repository is not None:
|
|
@@ -627,6 +659,7 @@ class RepositoriesPythonApi:
|
|
|
627
659
|
def delete(
|
|
628
660
|
self,
|
|
629
661
|
python_python_repository_href: StrictStr,
|
|
662
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
630
663
|
_request_timeout: Union[
|
|
631
664
|
None,
|
|
632
665
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -646,6 +679,8 @@ class RepositoriesPythonApi:
|
|
|
646
679
|
|
|
647
680
|
:param python_python_repository_href: (required)
|
|
648
681
|
:type python_python_repository_href: str
|
|
682
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
683
|
+
:type x_task_diagnostics: List[str]
|
|
649
684
|
:param _request_timeout: timeout setting for this request. If one
|
|
650
685
|
number provided, it will be total request
|
|
651
686
|
timeout. It can also be a pair (tuple) of
|
|
@@ -670,6 +705,7 @@ class RepositoriesPythonApi:
|
|
|
670
705
|
|
|
671
706
|
_param = self._delete_serialize(
|
|
672
707
|
python_python_repository_href=python_python_repository_href,
|
|
708
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
673
709
|
_request_auth=_request_auth,
|
|
674
710
|
_content_type=_content_type,
|
|
675
711
|
_headers=_headers,
|
|
@@ -694,6 +730,7 @@ class RepositoriesPythonApi:
|
|
|
694
730
|
def delete_with_http_info(
|
|
695
731
|
self,
|
|
696
732
|
python_python_repository_href: StrictStr,
|
|
733
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
697
734
|
_request_timeout: Union[
|
|
698
735
|
None,
|
|
699
736
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -713,6 +750,8 @@ class RepositoriesPythonApi:
|
|
|
713
750
|
|
|
714
751
|
:param python_python_repository_href: (required)
|
|
715
752
|
:type python_python_repository_href: str
|
|
753
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
754
|
+
:type x_task_diagnostics: List[str]
|
|
716
755
|
:param _request_timeout: timeout setting for this request. If one
|
|
717
756
|
number provided, it will be total request
|
|
718
757
|
timeout. It can also be a pair (tuple) of
|
|
@@ -737,6 +776,7 @@ class RepositoriesPythonApi:
|
|
|
737
776
|
|
|
738
777
|
_param = self._delete_serialize(
|
|
739
778
|
python_python_repository_href=python_python_repository_href,
|
|
779
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
740
780
|
_request_auth=_request_auth,
|
|
741
781
|
_content_type=_content_type,
|
|
742
782
|
_headers=_headers,
|
|
@@ -761,6 +801,7 @@ class RepositoriesPythonApi:
|
|
|
761
801
|
def delete_without_preload_content(
|
|
762
802
|
self,
|
|
763
803
|
python_python_repository_href: StrictStr,
|
|
804
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
764
805
|
_request_timeout: Union[
|
|
765
806
|
None,
|
|
766
807
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -780,6 +821,8 @@ class RepositoriesPythonApi:
|
|
|
780
821
|
|
|
781
822
|
:param python_python_repository_href: (required)
|
|
782
823
|
:type python_python_repository_href: str
|
|
824
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
825
|
+
:type x_task_diagnostics: List[str]
|
|
783
826
|
:param _request_timeout: timeout setting for this request. If one
|
|
784
827
|
number provided, it will be total request
|
|
785
828
|
timeout. It can also be a pair (tuple) of
|
|
@@ -804,6 +847,7 @@ class RepositoriesPythonApi:
|
|
|
804
847
|
|
|
805
848
|
_param = self._delete_serialize(
|
|
806
849
|
python_python_repository_href=python_python_repository_href,
|
|
850
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
807
851
|
_request_auth=_request_auth,
|
|
808
852
|
_content_type=_content_type,
|
|
809
853
|
_headers=_headers,
|
|
@@ -823,6 +867,7 @@ class RepositoriesPythonApi:
|
|
|
823
867
|
def _delete_serialize(
|
|
824
868
|
self,
|
|
825
869
|
python_python_repository_href,
|
|
870
|
+
x_task_diagnostics,
|
|
826
871
|
_request_auth,
|
|
827
872
|
_content_type,
|
|
828
873
|
_headers,
|
|
@@ -832,6 +877,7 @@ class RepositoriesPythonApi:
|
|
|
832
877
|
_host = None
|
|
833
878
|
|
|
834
879
|
_collection_formats: Dict[str, str] = {
|
|
880
|
+
'X-Task-Diagnostics': 'csv',
|
|
835
881
|
}
|
|
836
882
|
|
|
837
883
|
_path_params: Dict[str, str] = {}
|
|
@@ -848,6 +894,8 @@ class RepositoriesPythonApi:
|
|
|
848
894
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
849
895
|
# process the query parameters
|
|
850
896
|
# process the header parameters
|
|
897
|
+
if x_task_diagnostics is not None:
|
|
898
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
851
899
|
# process the form parameters
|
|
852
900
|
# process the body parameter
|
|
853
901
|
|
|
@@ -888,6 +936,7 @@ class RepositoriesPythonApi:
|
|
|
888
936
|
@validate_call
|
|
889
937
|
def list(
|
|
890
938
|
self,
|
|
939
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
891
940
|
latest_with_content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
892
941
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
893
942
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
@@ -935,6 +984,8 @@ class RepositoriesPythonApi:
|
|
|
935
984
|
|
|
936
985
|
PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
|
937
986
|
|
|
987
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
988
|
+
:type x_task_diagnostics: List[str]
|
|
938
989
|
:param latest_with_content: Content Unit referenced by HREF/PRN
|
|
939
990
|
:type latest_with_content: str
|
|
940
991
|
:param limit: Number of results to return per page.
|
|
@@ -1018,6 +1069,7 @@ class RepositoriesPythonApi:
|
|
|
1018
1069
|
""" # noqa: E501
|
|
1019
1070
|
|
|
1020
1071
|
_param = self._list_serialize(
|
|
1072
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1021
1073
|
latest_with_content=latest_with_content,
|
|
1022
1074
|
limit=limit,
|
|
1023
1075
|
name=name,
|
|
@@ -1071,6 +1123,7 @@ class RepositoriesPythonApi:
|
|
|
1071
1123
|
@validate_call
|
|
1072
1124
|
def list_with_http_info(
|
|
1073
1125
|
self,
|
|
1126
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1074
1127
|
latest_with_content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
1075
1128
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1076
1129
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
@@ -1118,6 +1171,8 @@ class RepositoriesPythonApi:
|
|
|
1118
1171
|
|
|
1119
1172
|
PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
|
1120
1173
|
|
|
1174
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1175
|
+
:type x_task_diagnostics: List[str]
|
|
1121
1176
|
:param latest_with_content: Content Unit referenced by HREF/PRN
|
|
1122
1177
|
:type latest_with_content: str
|
|
1123
1178
|
:param limit: Number of results to return per page.
|
|
@@ -1201,6 +1256,7 @@ class RepositoriesPythonApi:
|
|
|
1201
1256
|
""" # noqa: E501
|
|
1202
1257
|
|
|
1203
1258
|
_param = self._list_serialize(
|
|
1259
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1204
1260
|
latest_with_content=latest_with_content,
|
|
1205
1261
|
limit=limit,
|
|
1206
1262
|
name=name,
|
|
@@ -1254,6 +1310,7 @@ class RepositoriesPythonApi:
|
|
|
1254
1310
|
@validate_call
|
|
1255
1311
|
def list_without_preload_content(
|
|
1256
1312
|
self,
|
|
1313
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1257
1314
|
latest_with_content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
1258
1315
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1259
1316
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
@@ -1301,6 +1358,8 @@ class RepositoriesPythonApi:
|
|
|
1301
1358
|
|
|
1302
1359
|
PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
|
1303
1360
|
|
|
1361
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1362
|
+
:type x_task_diagnostics: List[str]
|
|
1304
1363
|
:param latest_with_content: Content Unit referenced by HREF/PRN
|
|
1305
1364
|
:type latest_with_content: str
|
|
1306
1365
|
:param limit: Number of results to return per page.
|
|
@@ -1384,6 +1443,7 @@ class RepositoriesPythonApi:
|
|
|
1384
1443
|
""" # noqa: E501
|
|
1385
1444
|
|
|
1386
1445
|
_param = self._list_serialize(
|
|
1446
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1387
1447
|
latest_with_content=latest_with_content,
|
|
1388
1448
|
limit=limit,
|
|
1389
1449
|
name=name,
|
|
@@ -1432,6 +1492,7 @@ class RepositoriesPythonApi:
|
|
|
1432
1492
|
|
|
1433
1493
|
def _list_serialize(
|
|
1434
1494
|
self,
|
|
1495
|
+
x_task_diagnostics,
|
|
1435
1496
|
latest_with_content,
|
|
1436
1497
|
limit,
|
|
1437
1498
|
name,
|
|
@@ -1471,6 +1532,7 @@ class RepositoriesPythonApi:
|
|
|
1471
1532
|
_host = None
|
|
1472
1533
|
|
|
1473
1534
|
_collection_formats: Dict[str, str] = {
|
|
1535
|
+
'X-Task-Diagnostics': 'csv',
|
|
1474
1536
|
'name__in': 'csv',
|
|
1475
1537
|
'ordering': 'csv',
|
|
1476
1538
|
'prn__in': 'csv',
|
|
@@ -1613,6 +1675,8 @@ class RepositoriesPythonApi:
|
|
|
1613
1675
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1614
1676
|
|
|
1615
1677
|
# process the header parameters
|
|
1678
|
+
if x_task_diagnostics is not None:
|
|
1679
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1616
1680
|
# process the form parameters
|
|
1617
1681
|
# process the body parameter
|
|
1618
1682
|
|
|
@@ -1654,6 +1718,7 @@ class RepositoriesPythonApi:
|
|
|
1654
1718
|
def list_roles(
|
|
1655
1719
|
self,
|
|
1656
1720
|
python_python_repository_href: StrictStr,
|
|
1721
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1657
1722
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1658
1723
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1659
1724
|
_request_timeout: Union[
|
|
@@ -1675,6 +1740,8 @@ class RepositoriesPythonApi:
|
|
|
1675
1740
|
|
|
1676
1741
|
:param python_python_repository_href: (required)
|
|
1677
1742
|
:type python_python_repository_href: str
|
|
1743
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1744
|
+
:type x_task_diagnostics: List[str]
|
|
1678
1745
|
:param fields: A list of fields to include in the response.
|
|
1679
1746
|
:type fields: List[str]
|
|
1680
1747
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1703,6 +1770,7 @@ class RepositoriesPythonApi:
|
|
|
1703
1770
|
|
|
1704
1771
|
_param = self._list_roles_serialize(
|
|
1705
1772
|
python_python_repository_href=python_python_repository_href,
|
|
1773
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1706
1774
|
fields=fields,
|
|
1707
1775
|
exclude_fields=exclude_fields,
|
|
1708
1776
|
_request_auth=_request_auth,
|
|
@@ -1729,6 +1797,7 @@ class RepositoriesPythonApi:
|
|
|
1729
1797
|
def list_roles_with_http_info(
|
|
1730
1798
|
self,
|
|
1731
1799
|
python_python_repository_href: StrictStr,
|
|
1800
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1732
1801
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1733
1802
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1734
1803
|
_request_timeout: Union[
|
|
@@ -1750,6 +1819,8 @@ class RepositoriesPythonApi:
|
|
|
1750
1819
|
|
|
1751
1820
|
:param python_python_repository_href: (required)
|
|
1752
1821
|
:type python_python_repository_href: str
|
|
1822
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1823
|
+
:type x_task_diagnostics: List[str]
|
|
1753
1824
|
:param fields: A list of fields to include in the response.
|
|
1754
1825
|
:type fields: List[str]
|
|
1755
1826
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1778,6 +1849,7 @@ class RepositoriesPythonApi:
|
|
|
1778
1849
|
|
|
1779
1850
|
_param = self._list_roles_serialize(
|
|
1780
1851
|
python_python_repository_href=python_python_repository_href,
|
|
1852
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1781
1853
|
fields=fields,
|
|
1782
1854
|
exclude_fields=exclude_fields,
|
|
1783
1855
|
_request_auth=_request_auth,
|
|
@@ -1804,6 +1876,7 @@ class RepositoriesPythonApi:
|
|
|
1804
1876
|
def list_roles_without_preload_content(
|
|
1805
1877
|
self,
|
|
1806
1878
|
python_python_repository_href: StrictStr,
|
|
1879
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1807
1880
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1808
1881
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1809
1882
|
_request_timeout: Union[
|
|
@@ -1825,6 +1898,8 @@ class RepositoriesPythonApi:
|
|
|
1825
1898
|
|
|
1826
1899
|
:param python_python_repository_href: (required)
|
|
1827
1900
|
:type python_python_repository_href: str
|
|
1901
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1902
|
+
:type x_task_diagnostics: List[str]
|
|
1828
1903
|
:param fields: A list of fields to include in the response.
|
|
1829
1904
|
:type fields: List[str]
|
|
1830
1905
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1853,6 +1928,7 @@ class RepositoriesPythonApi:
|
|
|
1853
1928
|
|
|
1854
1929
|
_param = self._list_roles_serialize(
|
|
1855
1930
|
python_python_repository_href=python_python_repository_href,
|
|
1931
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1856
1932
|
fields=fields,
|
|
1857
1933
|
exclude_fields=exclude_fields,
|
|
1858
1934
|
_request_auth=_request_auth,
|
|
@@ -1874,6 +1950,7 @@ class RepositoriesPythonApi:
|
|
|
1874
1950
|
def _list_roles_serialize(
|
|
1875
1951
|
self,
|
|
1876
1952
|
python_python_repository_href,
|
|
1953
|
+
x_task_diagnostics,
|
|
1877
1954
|
fields,
|
|
1878
1955
|
exclude_fields,
|
|
1879
1956
|
_request_auth,
|
|
@@ -1885,6 +1962,7 @@ class RepositoriesPythonApi:
|
|
|
1885
1962
|
_host = None
|
|
1886
1963
|
|
|
1887
1964
|
_collection_formats: Dict[str, str] = {
|
|
1965
|
+
'X-Task-Diagnostics': 'csv',
|
|
1888
1966
|
'fields': 'multi',
|
|
1889
1967
|
'exclude_fields': 'multi',
|
|
1890
1968
|
}
|
|
@@ -1911,6 +1989,8 @@ class RepositoriesPythonApi:
|
|
|
1911
1989
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1912
1990
|
|
|
1913
1991
|
# process the header parameters
|
|
1992
|
+
if x_task_diagnostics is not None:
|
|
1993
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1914
1994
|
# process the form parameters
|
|
1915
1995
|
# process the body parameter
|
|
1916
1996
|
|
|
@@ -1953,6 +2033,7 @@ class RepositoriesPythonApi:
|
|
|
1953
2033
|
self,
|
|
1954
2034
|
python_python_repository_href: StrictStr,
|
|
1955
2035
|
repository_add_remove_content: RepositoryAddRemoveContent,
|
|
2036
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1956
2037
|
_request_timeout: Union[
|
|
1957
2038
|
None,
|
|
1958
2039
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1974,6 +2055,8 @@ class RepositoriesPythonApi:
|
|
|
1974
2055
|
:type python_python_repository_href: str
|
|
1975
2056
|
:param repository_add_remove_content: (required)
|
|
1976
2057
|
:type repository_add_remove_content: RepositoryAddRemoveContent
|
|
2058
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2059
|
+
:type x_task_diagnostics: List[str]
|
|
1977
2060
|
:param _request_timeout: timeout setting for this request. If one
|
|
1978
2061
|
number provided, it will be total request
|
|
1979
2062
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1999,6 +2082,7 @@ class RepositoriesPythonApi:
|
|
|
1999
2082
|
_param = self._modify_serialize(
|
|
2000
2083
|
python_python_repository_href=python_python_repository_href,
|
|
2001
2084
|
repository_add_remove_content=repository_add_remove_content,
|
|
2085
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2002
2086
|
_request_auth=_request_auth,
|
|
2003
2087
|
_content_type=_content_type,
|
|
2004
2088
|
_headers=_headers,
|
|
@@ -2024,6 +2108,7 @@ class RepositoriesPythonApi:
|
|
|
2024
2108
|
self,
|
|
2025
2109
|
python_python_repository_href: StrictStr,
|
|
2026
2110
|
repository_add_remove_content: RepositoryAddRemoveContent,
|
|
2111
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2027
2112
|
_request_timeout: Union[
|
|
2028
2113
|
None,
|
|
2029
2114
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2045,6 +2130,8 @@ class RepositoriesPythonApi:
|
|
|
2045
2130
|
:type python_python_repository_href: str
|
|
2046
2131
|
:param repository_add_remove_content: (required)
|
|
2047
2132
|
:type repository_add_remove_content: RepositoryAddRemoveContent
|
|
2133
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2134
|
+
:type x_task_diagnostics: List[str]
|
|
2048
2135
|
:param _request_timeout: timeout setting for this request. If one
|
|
2049
2136
|
number provided, it will be total request
|
|
2050
2137
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2070,6 +2157,7 @@ class RepositoriesPythonApi:
|
|
|
2070
2157
|
_param = self._modify_serialize(
|
|
2071
2158
|
python_python_repository_href=python_python_repository_href,
|
|
2072
2159
|
repository_add_remove_content=repository_add_remove_content,
|
|
2160
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2073
2161
|
_request_auth=_request_auth,
|
|
2074
2162
|
_content_type=_content_type,
|
|
2075
2163
|
_headers=_headers,
|
|
@@ -2095,6 +2183,7 @@ class RepositoriesPythonApi:
|
|
|
2095
2183
|
self,
|
|
2096
2184
|
python_python_repository_href: StrictStr,
|
|
2097
2185
|
repository_add_remove_content: RepositoryAddRemoveContent,
|
|
2186
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2098
2187
|
_request_timeout: Union[
|
|
2099
2188
|
None,
|
|
2100
2189
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2116,6 +2205,8 @@ class RepositoriesPythonApi:
|
|
|
2116
2205
|
:type python_python_repository_href: str
|
|
2117
2206
|
:param repository_add_remove_content: (required)
|
|
2118
2207
|
:type repository_add_remove_content: RepositoryAddRemoveContent
|
|
2208
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2209
|
+
:type x_task_diagnostics: List[str]
|
|
2119
2210
|
:param _request_timeout: timeout setting for this request. If one
|
|
2120
2211
|
number provided, it will be total request
|
|
2121
2212
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2141,6 +2232,7 @@ class RepositoriesPythonApi:
|
|
|
2141
2232
|
_param = self._modify_serialize(
|
|
2142
2233
|
python_python_repository_href=python_python_repository_href,
|
|
2143
2234
|
repository_add_remove_content=repository_add_remove_content,
|
|
2235
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2144
2236
|
_request_auth=_request_auth,
|
|
2145
2237
|
_content_type=_content_type,
|
|
2146
2238
|
_headers=_headers,
|
|
@@ -2161,6 +2253,7 @@ class RepositoriesPythonApi:
|
|
|
2161
2253
|
self,
|
|
2162
2254
|
python_python_repository_href,
|
|
2163
2255
|
repository_add_remove_content,
|
|
2256
|
+
x_task_diagnostics,
|
|
2164
2257
|
_request_auth,
|
|
2165
2258
|
_content_type,
|
|
2166
2259
|
_headers,
|
|
@@ -2170,6 +2263,7 @@ class RepositoriesPythonApi:
|
|
|
2170
2263
|
_host = None
|
|
2171
2264
|
|
|
2172
2265
|
_collection_formats: Dict[str, str] = {
|
|
2266
|
+
'X-Task-Diagnostics': 'csv',
|
|
2173
2267
|
}
|
|
2174
2268
|
|
|
2175
2269
|
_path_params: Dict[str, str] = {}
|
|
@@ -2186,6 +2280,8 @@ class RepositoriesPythonApi:
|
|
|
2186
2280
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
2187
2281
|
# process the query parameters
|
|
2188
2282
|
# process the header parameters
|
|
2283
|
+
if x_task_diagnostics is not None:
|
|
2284
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2189
2285
|
# process the form parameters
|
|
2190
2286
|
# process the body parameter
|
|
2191
2287
|
if repository_add_remove_content is not None:
|
|
@@ -2244,6 +2340,7 @@ class RepositoriesPythonApi:
|
|
|
2244
2340
|
def my_permissions(
|
|
2245
2341
|
self,
|
|
2246
2342
|
python_python_repository_href: StrictStr,
|
|
2343
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2247
2344
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2248
2345
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2249
2346
|
_request_timeout: Union[
|
|
@@ -2265,6 +2362,8 @@ class RepositoriesPythonApi:
|
|
|
2265
2362
|
|
|
2266
2363
|
:param python_python_repository_href: (required)
|
|
2267
2364
|
:type python_python_repository_href: str
|
|
2365
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2366
|
+
:type x_task_diagnostics: List[str]
|
|
2268
2367
|
:param fields: A list of fields to include in the response.
|
|
2269
2368
|
:type fields: List[str]
|
|
2270
2369
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2293,6 +2392,7 @@ class RepositoriesPythonApi:
|
|
|
2293
2392
|
|
|
2294
2393
|
_param = self._my_permissions_serialize(
|
|
2295
2394
|
python_python_repository_href=python_python_repository_href,
|
|
2395
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2296
2396
|
fields=fields,
|
|
2297
2397
|
exclude_fields=exclude_fields,
|
|
2298
2398
|
_request_auth=_request_auth,
|
|
@@ -2319,6 +2419,7 @@ class RepositoriesPythonApi:
|
|
|
2319
2419
|
def my_permissions_with_http_info(
|
|
2320
2420
|
self,
|
|
2321
2421
|
python_python_repository_href: StrictStr,
|
|
2422
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2322
2423
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2323
2424
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2324
2425
|
_request_timeout: Union[
|
|
@@ -2340,6 +2441,8 @@ class RepositoriesPythonApi:
|
|
|
2340
2441
|
|
|
2341
2442
|
:param python_python_repository_href: (required)
|
|
2342
2443
|
:type python_python_repository_href: str
|
|
2444
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2445
|
+
:type x_task_diagnostics: List[str]
|
|
2343
2446
|
:param fields: A list of fields to include in the response.
|
|
2344
2447
|
:type fields: List[str]
|
|
2345
2448
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2368,6 +2471,7 @@ class RepositoriesPythonApi:
|
|
|
2368
2471
|
|
|
2369
2472
|
_param = self._my_permissions_serialize(
|
|
2370
2473
|
python_python_repository_href=python_python_repository_href,
|
|
2474
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2371
2475
|
fields=fields,
|
|
2372
2476
|
exclude_fields=exclude_fields,
|
|
2373
2477
|
_request_auth=_request_auth,
|
|
@@ -2394,6 +2498,7 @@ class RepositoriesPythonApi:
|
|
|
2394
2498
|
def my_permissions_without_preload_content(
|
|
2395
2499
|
self,
|
|
2396
2500
|
python_python_repository_href: StrictStr,
|
|
2501
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2397
2502
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2398
2503
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2399
2504
|
_request_timeout: Union[
|
|
@@ -2415,6 +2520,8 @@ class RepositoriesPythonApi:
|
|
|
2415
2520
|
|
|
2416
2521
|
:param python_python_repository_href: (required)
|
|
2417
2522
|
:type python_python_repository_href: str
|
|
2523
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2524
|
+
:type x_task_diagnostics: List[str]
|
|
2418
2525
|
:param fields: A list of fields to include in the response.
|
|
2419
2526
|
:type fields: List[str]
|
|
2420
2527
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2443,6 +2550,7 @@ class RepositoriesPythonApi:
|
|
|
2443
2550
|
|
|
2444
2551
|
_param = self._my_permissions_serialize(
|
|
2445
2552
|
python_python_repository_href=python_python_repository_href,
|
|
2553
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2446
2554
|
fields=fields,
|
|
2447
2555
|
exclude_fields=exclude_fields,
|
|
2448
2556
|
_request_auth=_request_auth,
|
|
@@ -2464,6 +2572,7 @@ class RepositoriesPythonApi:
|
|
|
2464
2572
|
def _my_permissions_serialize(
|
|
2465
2573
|
self,
|
|
2466
2574
|
python_python_repository_href,
|
|
2575
|
+
x_task_diagnostics,
|
|
2467
2576
|
fields,
|
|
2468
2577
|
exclude_fields,
|
|
2469
2578
|
_request_auth,
|
|
@@ -2475,6 +2584,7 @@ class RepositoriesPythonApi:
|
|
|
2475
2584
|
_host = None
|
|
2476
2585
|
|
|
2477
2586
|
_collection_formats: Dict[str, str] = {
|
|
2587
|
+
'X-Task-Diagnostics': 'csv',
|
|
2478
2588
|
'fields': 'multi',
|
|
2479
2589
|
'exclude_fields': 'multi',
|
|
2480
2590
|
}
|
|
@@ -2501,6 +2611,8 @@ class RepositoriesPythonApi:
|
|
|
2501
2611
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
2502
2612
|
|
|
2503
2613
|
# process the header parameters
|
|
2614
|
+
if x_task_diagnostics is not None:
|
|
2615
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2504
2616
|
# process the form parameters
|
|
2505
2617
|
# process the body parameter
|
|
2506
2618
|
|
|
@@ -2543,6 +2655,7 @@ class RepositoriesPythonApi:
|
|
|
2543
2655
|
self,
|
|
2544
2656
|
python_python_repository_href: StrictStr,
|
|
2545
2657
|
patchedpython_python_repository: PatchedpythonPythonRepository,
|
|
2658
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2546
2659
|
_request_timeout: Union[
|
|
2547
2660
|
None,
|
|
2548
2661
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2564,6 +2677,8 @@ class RepositoriesPythonApi:
|
|
|
2564
2677
|
:type python_python_repository_href: str
|
|
2565
2678
|
:param patchedpython_python_repository: (required)
|
|
2566
2679
|
:type patchedpython_python_repository: PatchedpythonPythonRepository
|
|
2680
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2681
|
+
:type x_task_diagnostics: List[str]
|
|
2567
2682
|
:param _request_timeout: timeout setting for this request. If one
|
|
2568
2683
|
number provided, it will be total request
|
|
2569
2684
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2589,6 +2704,7 @@ class RepositoriesPythonApi:
|
|
|
2589
2704
|
_param = self._partial_update_serialize(
|
|
2590
2705
|
python_python_repository_href=python_python_repository_href,
|
|
2591
2706
|
patchedpython_python_repository=patchedpython_python_repository,
|
|
2707
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2592
2708
|
_request_auth=_request_auth,
|
|
2593
2709
|
_content_type=_content_type,
|
|
2594
2710
|
_headers=_headers,
|
|
@@ -2614,6 +2730,7 @@ class RepositoriesPythonApi:
|
|
|
2614
2730
|
self,
|
|
2615
2731
|
python_python_repository_href: StrictStr,
|
|
2616
2732
|
patchedpython_python_repository: PatchedpythonPythonRepository,
|
|
2733
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2617
2734
|
_request_timeout: Union[
|
|
2618
2735
|
None,
|
|
2619
2736
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2635,6 +2752,8 @@ class RepositoriesPythonApi:
|
|
|
2635
2752
|
:type python_python_repository_href: str
|
|
2636
2753
|
:param patchedpython_python_repository: (required)
|
|
2637
2754
|
:type patchedpython_python_repository: PatchedpythonPythonRepository
|
|
2755
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2756
|
+
:type x_task_diagnostics: List[str]
|
|
2638
2757
|
:param _request_timeout: timeout setting for this request. If one
|
|
2639
2758
|
number provided, it will be total request
|
|
2640
2759
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2660,6 +2779,7 @@ class RepositoriesPythonApi:
|
|
|
2660
2779
|
_param = self._partial_update_serialize(
|
|
2661
2780
|
python_python_repository_href=python_python_repository_href,
|
|
2662
2781
|
patchedpython_python_repository=patchedpython_python_repository,
|
|
2782
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2663
2783
|
_request_auth=_request_auth,
|
|
2664
2784
|
_content_type=_content_type,
|
|
2665
2785
|
_headers=_headers,
|
|
@@ -2685,6 +2805,7 @@ class RepositoriesPythonApi:
|
|
|
2685
2805
|
self,
|
|
2686
2806
|
python_python_repository_href: StrictStr,
|
|
2687
2807
|
patchedpython_python_repository: PatchedpythonPythonRepository,
|
|
2808
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2688
2809
|
_request_timeout: Union[
|
|
2689
2810
|
None,
|
|
2690
2811
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2706,6 +2827,8 @@ class RepositoriesPythonApi:
|
|
|
2706
2827
|
:type python_python_repository_href: str
|
|
2707
2828
|
:param patchedpython_python_repository: (required)
|
|
2708
2829
|
:type patchedpython_python_repository: PatchedpythonPythonRepository
|
|
2830
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2831
|
+
:type x_task_diagnostics: List[str]
|
|
2709
2832
|
:param _request_timeout: timeout setting for this request. If one
|
|
2710
2833
|
number provided, it will be total request
|
|
2711
2834
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2731,6 +2854,7 @@ class RepositoriesPythonApi:
|
|
|
2731
2854
|
_param = self._partial_update_serialize(
|
|
2732
2855
|
python_python_repository_href=python_python_repository_href,
|
|
2733
2856
|
patchedpython_python_repository=patchedpython_python_repository,
|
|
2857
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2734
2858
|
_request_auth=_request_auth,
|
|
2735
2859
|
_content_type=_content_type,
|
|
2736
2860
|
_headers=_headers,
|
|
@@ -2751,6 +2875,7 @@ class RepositoriesPythonApi:
|
|
|
2751
2875
|
self,
|
|
2752
2876
|
python_python_repository_href,
|
|
2753
2877
|
patchedpython_python_repository,
|
|
2878
|
+
x_task_diagnostics,
|
|
2754
2879
|
_request_auth,
|
|
2755
2880
|
_content_type,
|
|
2756
2881
|
_headers,
|
|
@@ -2760,6 +2885,7 @@ class RepositoriesPythonApi:
|
|
|
2760
2885
|
_host = None
|
|
2761
2886
|
|
|
2762
2887
|
_collection_formats: Dict[str, str] = {
|
|
2888
|
+
'X-Task-Diagnostics': 'csv',
|
|
2763
2889
|
}
|
|
2764
2890
|
|
|
2765
2891
|
_path_params: Dict[str, str] = {}
|
|
@@ -2776,6 +2902,8 @@ class RepositoriesPythonApi:
|
|
|
2776
2902
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
2777
2903
|
# process the query parameters
|
|
2778
2904
|
# process the header parameters
|
|
2905
|
+
if x_task_diagnostics is not None:
|
|
2906
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2779
2907
|
# process the form parameters
|
|
2780
2908
|
# process the body parameter
|
|
2781
2909
|
if patchedpython_python_repository is not None:
|
|
@@ -2834,6 +2962,7 @@ class RepositoriesPythonApi:
|
|
|
2834
2962
|
def read(
|
|
2835
2963
|
self,
|
|
2836
2964
|
python_python_repository_href: StrictStr,
|
|
2965
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2837
2966
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2838
2967
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2839
2968
|
_request_timeout: Union[
|
|
@@ -2855,6 +2984,8 @@ class RepositoriesPythonApi:
|
|
|
2855
2984
|
|
|
2856
2985
|
:param python_python_repository_href: (required)
|
|
2857
2986
|
:type python_python_repository_href: str
|
|
2987
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2988
|
+
:type x_task_diagnostics: List[str]
|
|
2858
2989
|
:param fields: A list of fields to include in the response.
|
|
2859
2990
|
:type fields: List[str]
|
|
2860
2991
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2883,6 +3014,7 @@ class RepositoriesPythonApi:
|
|
|
2883
3014
|
|
|
2884
3015
|
_param = self._read_serialize(
|
|
2885
3016
|
python_python_repository_href=python_python_repository_href,
|
|
3017
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2886
3018
|
fields=fields,
|
|
2887
3019
|
exclude_fields=exclude_fields,
|
|
2888
3020
|
_request_auth=_request_auth,
|
|
@@ -2909,6 +3041,7 @@ class RepositoriesPythonApi:
|
|
|
2909
3041
|
def read_with_http_info(
|
|
2910
3042
|
self,
|
|
2911
3043
|
python_python_repository_href: StrictStr,
|
|
3044
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2912
3045
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2913
3046
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2914
3047
|
_request_timeout: Union[
|
|
@@ -2930,6 +3063,8 @@ class RepositoriesPythonApi:
|
|
|
2930
3063
|
|
|
2931
3064
|
:param python_python_repository_href: (required)
|
|
2932
3065
|
:type python_python_repository_href: str
|
|
3066
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3067
|
+
:type x_task_diagnostics: List[str]
|
|
2933
3068
|
:param fields: A list of fields to include in the response.
|
|
2934
3069
|
:type fields: List[str]
|
|
2935
3070
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2958,6 +3093,7 @@ class RepositoriesPythonApi:
|
|
|
2958
3093
|
|
|
2959
3094
|
_param = self._read_serialize(
|
|
2960
3095
|
python_python_repository_href=python_python_repository_href,
|
|
3096
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2961
3097
|
fields=fields,
|
|
2962
3098
|
exclude_fields=exclude_fields,
|
|
2963
3099
|
_request_auth=_request_auth,
|
|
@@ -2984,6 +3120,7 @@ class RepositoriesPythonApi:
|
|
|
2984
3120
|
def read_without_preload_content(
|
|
2985
3121
|
self,
|
|
2986
3122
|
python_python_repository_href: StrictStr,
|
|
3123
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2987
3124
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2988
3125
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2989
3126
|
_request_timeout: Union[
|
|
@@ -3005,6 +3142,8 @@ class RepositoriesPythonApi:
|
|
|
3005
3142
|
|
|
3006
3143
|
:param python_python_repository_href: (required)
|
|
3007
3144
|
:type python_python_repository_href: str
|
|
3145
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3146
|
+
:type x_task_diagnostics: List[str]
|
|
3008
3147
|
:param fields: A list of fields to include in the response.
|
|
3009
3148
|
:type fields: List[str]
|
|
3010
3149
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -3033,6 +3172,7 @@ class RepositoriesPythonApi:
|
|
|
3033
3172
|
|
|
3034
3173
|
_param = self._read_serialize(
|
|
3035
3174
|
python_python_repository_href=python_python_repository_href,
|
|
3175
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3036
3176
|
fields=fields,
|
|
3037
3177
|
exclude_fields=exclude_fields,
|
|
3038
3178
|
_request_auth=_request_auth,
|
|
@@ -3054,6 +3194,7 @@ class RepositoriesPythonApi:
|
|
|
3054
3194
|
def _read_serialize(
|
|
3055
3195
|
self,
|
|
3056
3196
|
python_python_repository_href,
|
|
3197
|
+
x_task_diagnostics,
|
|
3057
3198
|
fields,
|
|
3058
3199
|
exclude_fields,
|
|
3059
3200
|
_request_auth,
|
|
@@ -3065,6 +3206,7 @@ class RepositoriesPythonApi:
|
|
|
3065
3206
|
_host = None
|
|
3066
3207
|
|
|
3067
3208
|
_collection_formats: Dict[str, str] = {
|
|
3209
|
+
'X-Task-Diagnostics': 'csv',
|
|
3068
3210
|
'fields': 'multi',
|
|
3069
3211
|
'exclude_fields': 'multi',
|
|
3070
3212
|
}
|
|
@@ -3091,6 +3233,8 @@ class RepositoriesPythonApi:
|
|
|
3091
3233
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
3092
3234
|
|
|
3093
3235
|
# process the header parameters
|
|
3236
|
+
if x_task_diagnostics is not None:
|
|
3237
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3094
3238
|
# process the form parameters
|
|
3095
3239
|
# process the body parameter
|
|
3096
3240
|
|
|
@@ -3133,6 +3277,7 @@ class RepositoriesPythonApi:
|
|
|
3133
3277
|
self,
|
|
3134
3278
|
python_python_repository_href: StrictStr,
|
|
3135
3279
|
nested_role: NestedRole,
|
|
3280
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3136
3281
|
_request_timeout: Union[
|
|
3137
3282
|
None,
|
|
3138
3283
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3154,6 +3299,8 @@ class RepositoriesPythonApi:
|
|
|
3154
3299
|
:type python_python_repository_href: str
|
|
3155
3300
|
:param nested_role: (required)
|
|
3156
3301
|
:type nested_role: NestedRole
|
|
3302
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3303
|
+
:type x_task_diagnostics: List[str]
|
|
3157
3304
|
:param _request_timeout: timeout setting for this request. If one
|
|
3158
3305
|
number provided, it will be total request
|
|
3159
3306
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3179,6 +3326,7 @@ class RepositoriesPythonApi:
|
|
|
3179
3326
|
_param = self._remove_role_serialize(
|
|
3180
3327
|
python_python_repository_href=python_python_repository_href,
|
|
3181
3328
|
nested_role=nested_role,
|
|
3329
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3182
3330
|
_request_auth=_request_auth,
|
|
3183
3331
|
_content_type=_content_type,
|
|
3184
3332
|
_headers=_headers,
|
|
@@ -3204,6 +3352,7 @@ class RepositoriesPythonApi:
|
|
|
3204
3352
|
self,
|
|
3205
3353
|
python_python_repository_href: StrictStr,
|
|
3206
3354
|
nested_role: NestedRole,
|
|
3355
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3207
3356
|
_request_timeout: Union[
|
|
3208
3357
|
None,
|
|
3209
3358
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3225,6 +3374,8 @@ class RepositoriesPythonApi:
|
|
|
3225
3374
|
:type python_python_repository_href: str
|
|
3226
3375
|
:param nested_role: (required)
|
|
3227
3376
|
:type nested_role: NestedRole
|
|
3377
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3378
|
+
:type x_task_diagnostics: List[str]
|
|
3228
3379
|
:param _request_timeout: timeout setting for this request. If one
|
|
3229
3380
|
number provided, it will be total request
|
|
3230
3381
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3250,6 +3401,7 @@ class RepositoriesPythonApi:
|
|
|
3250
3401
|
_param = self._remove_role_serialize(
|
|
3251
3402
|
python_python_repository_href=python_python_repository_href,
|
|
3252
3403
|
nested_role=nested_role,
|
|
3404
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3253
3405
|
_request_auth=_request_auth,
|
|
3254
3406
|
_content_type=_content_type,
|
|
3255
3407
|
_headers=_headers,
|
|
@@ -3275,6 +3427,7 @@ class RepositoriesPythonApi:
|
|
|
3275
3427
|
self,
|
|
3276
3428
|
python_python_repository_href: StrictStr,
|
|
3277
3429
|
nested_role: NestedRole,
|
|
3430
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3278
3431
|
_request_timeout: Union[
|
|
3279
3432
|
None,
|
|
3280
3433
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3296,6 +3449,8 @@ class RepositoriesPythonApi:
|
|
|
3296
3449
|
:type python_python_repository_href: str
|
|
3297
3450
|
:param nested_role: (required)
|
|
3298
3451
|
:type nested_role: NestedRole
|
|
3452
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3453
|
+
:type x_task_diagnostics: List[str]
|
|
3299
3454
|
:param _request_timeout: timeout setting for this request. If one
|
|
3300
3455
|
number provided, it will be total request
|
|
3301
3456
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3321,6 +3476,7 @@ class RepositoriesPythonApi:
|
|
|
3321
3476
|
_param = self._remove_role_serialize(
|
|
3322
3477
|
python_python_repository_href=python_python_repository_href,
|
|
3323
3478
|
nested_role=nested_role,
|
|
3479
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3324
3480
|
_request_auth=_request_auth,
|
|
3325
3481
|
_content_type=_content_type,
|
|
3326
3482
|
_headers=_headers,
|
|
@@ -3341,6 +3497,7 @@ class RepositoriesPythonApi:
|
|
|
3341
3497
|
self,
|
|
3342
3498
|
python_python_repository_href,
|
|
3343
3499
|
nested_role,
|
|
3500
|
+
x_task_diagnostics,
|
|
3344
3501
|
_request_auth,
|
|
3345
3502
|
_content_type,
|
|
3346
3503
|
_headers,
|
|
@@ -3350,6 +3507,7 @@ class RepositoriesPythonApi:
|
|
|
3350
3507
|
_host = None
|
|
3351
3508
|
|
|
3352
3509
|
_collection_formats: Dict[str, str] = {
|
|
3510
|
+
'X-Task-Diagnostics': 'csv',
|
|
3353
3511
|
}
|
|
3354
3512
|
|
|
3355
3513
|
_path_params: Dict[str, str] = {}
|
|
@@ -3366,6 +3524,8 @@ class RepositoriesPythonApi:
|
|
|
3366
3524
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
3367
3525
|
# process the query parameters
|
|
3368
3526
|
# process the header parameters
|
|
3527
|
+
if x_task_diagnostics is not None:
|
|
3528
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3369
3529
|
# process the form parameters
|
|
3370
3530
|
# process the body parameter
|
|
3371
3531
|
if nested_role is not None:
|
|
@@ -3424,6 +3584,7 @@ class RepositoriesPythonApi:
|
|
|
3424
3584
|
def repair_metadata(
|
|
3425
3585
|
self,
|
|
3426
3586
|
python_python_repository_href: StrictStr,
|
|
3587
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3427
3588
|
_request_timeout: Union[
|
|
3428
3589
|
None,
|
|
3429
3590
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3443,6 +3604,8 @@ class RepositoriesPythonApi:
|
|
|
3443
3604
|
|
|
3444
3605
|
:param python_python_repository_href: (required)
|
|
3445
3606
|
:type python_python_repository_href: str
|
|
3607
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3608
|
+
:type x_task_diagnostics: List[str]
|
|
3446
3609
|
:param _request_timeout: timeout setting for this request. If one
|
|
3447
3610
|
number provided, it will be total request
|
|
3448
3611
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3467,6 +3630,7 @@ class RepositoriesPythonApi:
|
|
|
3467
3630
|
|
|
3468
3631
|
_param = self._repair_metadata_serialize(
|
|
3469
3632
|
python_python_repository_href=python_python_repository_href,
|
|
3633
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3470
3634
|
_request_auth=_request_auth,
|
|
3471
3635
|
_content_type=_content_type,
|
|
3472
3636
|
_headers=_headers,
|
|
@@ -3491,6 +3655,7 @@ class RepositoriesPythonApi:
|
|
|
3491
3655
|
def repair_metadata_with_http_info(
|
|
3492
3656
|
self,
|
|
3493
3657
|
python_python_repository_href: StrictStr,
|
|
3658
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3494
3659
|
_request_timeout: Union[
|
|
3495
3660
|
None,
|
|
3496
3661
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3510,6 +3675,8 @@ class RepositoriesPythonApi:
|
|
|
3510
3675
|
|
|
3511
3676
|
:param python_python_repository_href: (required)
|
|
3512
3677
|
:type python_python_repository_href: str
|
|
3678
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3679
|
+
:type x_task_diagnostics: List[str]
|
|
3513
3680
|
:param _request_timeout: timeout setting for this request. If one
|
|
3514
3681
|
number provided, it will be total request
|
|
3515
3682
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3534,6 +3701,7 @@ class RepositoriesPythonApi:
|
|
|
3534
3701
|
|
|
3535
3702
|
_param = self._repair_metadata_serialize(
|
|
3536
3703
|
python_python_repository_href=python_python_repository_href,
|
|
3704
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3537
3705
|
_request_auth=_request_auth,
|
|
3538
3706
|
_content_type=_content_type,
|
|
3539
3707
|
_headers=_headers,
|
|
@@ -3558,6 +3726,7 @@ class RepositoriesPythonApi:
|
|
|
3558
3726
|
def repair_metadata_without_preload_content(
|
|
3559
3727
|
self,
|
|
3560
3728
|
python_python_repository_href: StrictStr,
|
|
3729
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3561
3730
|
_request_timeout: Union[
|
|
3562
3731
|
None,
|
|
3563
3732
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3577,6 +3746,8 @@ class RepositoriesPythonApi:
|
|
|
3577
3746
|
|
|
3578
3747
|
:param python_python_repository_href: (required)
|
|
3579
3748
|
:type python_python_repository_href: str
|
|
3749
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3750
|
+
:type x_task_diagnostics: List[str]
|
|
3580
3751
|
:param _request_timeout: timeout setting for this request. If one
|
|
3581
3752
|
number provided, it will be total request
|
|
3582
3753
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3601,6 +3772,7 @@ class RepositoriesPythonApi:
|
|
|
3601
3772
|
|
|
3602
3773
|
_param = self._repair_metadata_serialize(
|
|
3603
3774
|
python_python_repository_href=python_python_repository_href,
|
|
3775
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3604
3776
|
_request_auth=_request_auth,
|
|
3605
3777
|
_content_type=_content_type,
|
|
3606
3778
|
_headers=_headers,
|
|
@@ -3620,6 +3792,7 @@ class RepositoriesPythonApi:
|
|
|
3620
3792
|
def _repair_metadata_serialize(
|
|
3621
3793
|
self,
|
|
3622
3794
|
python_python_repository_href,
|
|
3795
|
+
x_task_diagnostics,
|
|
3623
3796
|
_request_auth,
|
|
3624
3797
|
_content_type,
|
|
3625
3798
|
_headers,
|
|
@@ -3629,6 +3802,7 @@ class RepositoriesPythonApi:
|
|
|
3629
3802
|
_host = None
|
|
3630
3803
|
|
|
3631
3804
|
_collection_formats: Dict[str, str] = {
|
|
3805
|
+
'X-Task-Diagnostics': 'csv',
|
|
3632
3806
|
}
|
|
3633
3807
|
|
|
3634
3808
|
_path_params: Dict[str, str] = {}
|
|
@@ -3645,6 +3819,8 @@ class RepositoriesPythonApi:
|
|
|
3645
3819
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
3646
3820
|
# process the query parameters
|
|
3647
3821
|
# process the header parameters
|
|
3822
|
+
if x_task_diagnostics is not None:
|
|
3823
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3648
3824
|
# process the form parameters
|
|
3649
3825
|
# process the body parameter
|
|
3650
3826
|
|
|
@@ -3687,6 +3863,7 @@ class RepositoriesPythonApi:
|
|
|
3687
3863
|
self,
|
|
3688
3864
|
python_python_repository_href: StrictStr,
|
|
3689
3865
|
set_label: SetLabel,
|
|
3866
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3690
3867
|
_request_timeout: Union[
|
|
3691
3868
|
None,
|
|
3692
3869
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3708,6 +3885,8 @@ class RepositoriesPythonApi:
|
|
|
3708
3885
|
:type python_python_repository_href: str
|
|
3709
3886
|
:param set_label: (required)
|
|
3710
3887
|
:type set_label: SetLabel
|
|
3888
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3889
|
+
:type x_task_diagnostics: List[str]
|
|
3711
3890
|
:param _request_timeout: timeout setting for this request. If one
|
|
3712
3891
|
number provided, it will be total request
|
|
3713
3892
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3733,6 +3912,7 @@ class RepositoriesPythonApi:
|
|
|
3733
3912
|
_param = self._set_label_serialize(
|
|
3734
3913
|
python_python_repository_href=python_python_repository_href,
|
|
3735
3914
|
set_label=set_label,
|
|
3915
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3736
3916
|
_request_auth=_request_auth,
|
|
3737
3917
|
_content_type=_content_type,
|
|
3738
3918
|
_headers=_headers,
|
|
@@ -3758,6 +3938,7 @@ class RepositoriesPythonApi:
|
|
|
3758
3938
|
self,
|
|
3759
3939
|
python_python_repository_href: StrictStr,
|
|
3760
3940
|
set_label: SetLabel,
|
|
3941
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3761
3942
|
_request_timeout: Union[
|
|
3762
3943
|
None,
|
|
3763
3944
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3779,6 +3960,8 @@ class RepositoriesPythonApi:
|
|
|
3779
3960
|
:type python_python_repository_href: str
|
|
3780
3961
|
:param set_label: (required)
|
|
3781
3962
|
:type set_label: SetLabel
|
|
3963
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3964
|
+
:type x_task_diagnostics: List[str]
|
|
3782
3965
|
:param _request_timeout: timeout setting for this request. If one
|
|
3783
3966
|
number provided, it will be total request
|
|
3784
3967
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3804,6 +3987,7 @@ class RepositoriesPythonApi:
|
|
|
3804
3987
|
_param = self._set_label_serialize(
|
|
3805
3988
|
python_python_repository_href=python_python_repository_href,
|
|
3806
3989
|
set_label=set_label,
|
|
3990
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3807
3991
|
_request_auth=_request_auth,
|
|
3808
3992
|
_content_type=_content_type,
|
|
3809
3993
|
_headers=_headers,
|
|
@@ -3829,6 +4013,7 @@ class RepositoriesPythonApi:
|
|
|
3829
4013
|
self,
|
|
3830
4014
|
python_python_repository_href: StrictStr,
|
|
3831
4015
|
set_label: SetLabel,
|
|
4016
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3832
4017
|
_request_timeout: Union[
|
|
3833
4018
|
None,
|
|
3834
4019
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3850,6 +4035,8 @@ class RepositoriesPythonApi:
|
|
|
3850
4035
|
:type python_python_repository_href: str
|
|
3851
4036
|
:param set_label: (required)
|
|
3852
4037
|
:type set_label: SetLabel
|
|
4038
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4039
|
+
:type x_task_diagnostics: List[str]
|
|
3853
4040
|
:param _request_timeout: timeout setting for this request. If one
|
|
3854
4041
|
number provided, it will be total request
|
|
3855
4042
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3875,6 +4062,7 @@ class RepositoriesPythonApi:
|
|
|
3875
4062
|
_param = self._set_label_serialize(
|
|
3876
4063
|
python_python_repository_href=python_python_repository_href,
|
|
3877
4064
|
set_label=set_label,
|
|
4065
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3878
4066
|
_request_auth=_request_auth,
|
|
3879
4067
|
_content_type=_content_type,
|
|
3880
4068
|
_headers=_headers,
|
|
@@ -3895,6 +4083,7 @@ class RepositoriesPythonApi:
|
|
|
3895
4083
|
self,
|
|
3896
4084
|
python_python_repository_href,
|
|
3897
4085
|
set_label,
|
|
4086
|
+
x_task_diagnostics,
|
|
3898
4087
|
_request_auth,
|
|
3899
4088
|
_content_type,
|
|
3900
4089
|
_headers,
|
|
@@ -3904,6 +4093,7 @@ class RepositoriesPythonApi:
|
|
|
3904
4093
|
_host = None
|
|
3905
4094
|
|
|
3906
4095
|
_collection_formats: Dict[str, str] = {
|
|
4096
|
+
'X-Task-Diagnostics': 'csv',
|
|
3907
4097
|
}
|
|
3908
4098
|
|
|
3909
4099
|
_path_params: Dict[str, str] = {}
|
|
@@ -3920,6 +4110,8 @@ class RepositoriesPythonApi:
|
|
|
3920
4110
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
3921
4111
|
# process the query parameters
|
|
3922
4112
|
# process the header parameters
|
|
4113
|
+
if x_task_diagnostics is not None:
|
|
4114
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3923
4115
|
# process the form parameters
|
|
3924
4116
|
# process the body parameter
|
|
3925
4117
|
if set_label is not None:
|
|
@@ -3979,6 +4171,7 @@ class RepositoriesPythonApi:
|
|
|
3979
4171
|
self,
|
|
3980
4172
|
python_python_repository_href: StrictStr,
|
|
3981
4173
|
repository_sync_url: RepositorySyncURL,
|
|
4174
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3982
4175
|
_request_timeout: Union[
|
|
3983
4176
|
None,
|
|
3984
4177
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4000,6 +4193,8 @@ class RepositoriesPythonApi:
|
|
|
4000
4193
|
:type python_python_repository_href: str
|
|
4001
4194
|
:param repository_sync_url: (required)
|
|
4002
4195
|
:type repository_sync_url: RepositorySyncURL
|
|
4196
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4197
|
+
:type x_task_diagnostics: List[str]
|
|
4003
4198
|
:param _request_timeout: timeout setting for this request. If one
|
|
4004
4199
|
number provided, it will be total request
|
|
4005
4200
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4025,6 +4220,7 @@ class RepositoriesPythonApi:
|
|
|
4025
4220
|
_param = self._sync_serialize(
|
|
4026
4221
|
python_python_repository_href=python_python_repository_href,
|
|
4027
4222
|
repository_sync_url=repository_sync_url,
|
|
4223
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4028
4224
|
_request_auth=_request_auth,
|
|
4029
4225
|
_content_type=_content_type,
|
|
4030
4226
|
_headers=_headers,
|
|
@@ -4050,6 +4246,7 @@ class RepositoriesPythonApi:
|
|
|
4050
4246
|
self,
|
|
4051
4247
|
python_python_repository_href: StrictStr,
|
|
4052
4248
|
repository_sync_url: RepositorySyncURL,
|
|
4249
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4053
4250
|
_request_timeout: Union[
|
|
4054
4251
|
None,
|
|
4055
4252
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4071,6 +4268,8 @@ class RepositoriesPythonApi:
|
|
|
4071
4268
|
:type python_python_repository_href: str
|
|
4072
4269
|
:param repository_sync_url: (required)
|
|
4073
4270
|
:type repository_sync_url: RepositorySyncURL
|
|
4271
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4272
|
+
:type x_task_diagnostics: List[str]
|
|
4074
4273
|
:param _request_timeout: timeout setting for this request. If one
|
|
4075
4274
|
number provided, it will be total request
|
|
4076
4275
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4096,6 +4295,7 @@ class RepositoriesPythonApi:
|
|
|
4096
4295
|
_param = self._sync_serialize(
|
|
4097
4296
|
python_python_repository_href=python_python_repository_href,
|
|
4098
4297
|
repository_sync_url=repository_sync_url,
|
|
4298
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4099
4299
|
_request_auth=_request_auth,
|
|
4100
4300
|
_content_type=_content_type,
|
|
4101
4301
|
_headers=_headers,
|
|
@@ -4121,6 +4321,7 @@ class RepositoriesPythonApi:
|
|
|
4121
4321
|
self,
|
|
4122
4322
|
python_python_repository_href: StrictStr,
|
|
4123
4323
|
repository_sync_url: RepositorySyncURL,
|
|
4324
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4124
4325
|
_request_timeout: Union[
|
|
4125
4326
|
None,
|
|
4126
4327
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4142,6 +4343,8 @@ class RepositoriesPythonApi:
|
|
|
4142
4343
|
:type python_python_repository_href: str
|
|
4143
4344
|
:param repository_sync_url: (required)
|
|
4144
4345
|
:type repository_sync_url: RepositorySyncURL
|
|
4346
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4347
|
+
:type x_task_diagnostics: List[str]
|
|
4145
4348
|
:param _request_timeout: timeout setting for this request. If one
|
|
4146
4349
|
number provided, it will be total request
|
|
4147
4350
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4167,6 +4370,7 @@ class RepositoriesPythonApi:
|
|
|
4167
4370
|
_param = self._sync_serialize(
|
|
4168
4371
|
python_python_repository_href=python_python_repository_href,
|
|
4169
4372
|
repository_sync_url=repository_sync_url,
|
|
4373
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4170
4374
|
_request_auth=_request_auth,
|
|
4171
4375
|
_content_type=_content_type,
|
|
4172
4376
|
_headers=_headers,
|
|
@@ -4187,6 +4391,7 @@ class RepositoriesPythonApi:
|
|
|
4187
4391
|
self,
|
|
4188
4392
|
python_python_repository_href,
|
|
4189
4393
|
repository_sync_url,
|
|
4394
|
+
x_task_diagnostics,
|
|
4190
4395
|
_request_auth,
|
|
4191
4396
|
_content_type,
|
|
4192
4397
|
_headers,
|
|
@@ -4196,6 +4401,7 @@ class RepositoriesPythonApi:
|
|
|
4196
4401
|
_host = None
|
|
4197
4402
|
|
|
4198
4403
|
_collection_formats: Dict[str, str] = {
|
|
4404
|
+
'X-Task-Diagnostics': 'csv',
|
|
4199
4405
|
}
|
|
4200
4406
|
|
|
4201
4407
|
_path_params: Dict[str, str] = {}
|
|
@@ -4212,6 +4418,8 @@ class RepositoriesPythonApi:
|
|
|
4212
4418
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
4213
4419
|
# process the query parameters
|
|
4214
4420
|
# process the header parameters
|
|
4421
|
+
if x_task_diagnostics is not None:
|
|
4422
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
4215
4423
|
# process the form parameters
|
|
4216
4424
|
# process the body parameter
|
|
4217
4425
|
if repository_sync_url is not None:
|
|
@@ -4271,6 +4479,7 @@ class RepositoriesPythonApi:
|
|
|
4271
4479
|
self,
|
|
4272
4480
|
python_python_repository_href: StrictStr,
|
|
4273
4481
|
unset_label: UnsetLabel,
|
|
4482
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4274
4483
|
_request_timeout: Union[
|
|
4275
4484
|
None,
|
|
4276
4485
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4292,6 +4501,8 @@ class RepositoriesPythonApi:
|
|
|
4292
4501
|
:type python_python_repository_href: str
|
|
4293
4502
|
:param unset_label: (required)
|
|
4294
4503
|
:type unset_label: UnsetLabel
|
|
4504
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4505
|
+
:type x_task_diagnostics: List[str]
|
|
4295
4506
|
:param _request_timeout: timeout setting for this request. If one
|
|
4296
4507
|
number provided, it will be total request
|
|
4297
4508
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4317,6 +4528,7 @@ class RepositoriesPythonApi:
|
|
|
4317
4528
|
_param = self._unset_label_serialize(
|
|
4318
4529
|
python_python_repository_href=python_python_repository_href,
|
|
4319
4530
|
unset_label=unset_label,
|
|
4531
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4320
4532
|
_request_auth=_request_auth,
|
|
4321
4533
|
_content_type=_content_type,
|
|
4322
4534
|
_headers=_headers,
|
|
@@ -4342,6 +4554,7 @@ class RepositoriesPythonApi:
|
|
|
4342
4554
|
self,
|
|
4343
4555
|
python_python_repository_href: StrictStr,
|
|
4344
4556
|
unset_label: UnsetLabel,
|
|
4557
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4345
4558
|
_request_timeout: Union[
|
|
4346
4559
|
None,
|
|
4347
4560
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4363,6 +4576,8 @@ class RepositoriesPythonApi:
|
|
|
4363
4576
|
:type python_python_repository_href: str
|
|
4364
4577
|
:param unset_label: (required)
|
|
4365
4578
|
:type unset_label: UnsetLabel
|
|
4579
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4580
|
+
:type x_task_diagnostics: List[str]
|
|
4366
4581
|
:param _request_timeout: timeout setting for this request. If one
|
|
4367
4582
|
number provided, it will be total request
|
|
4368
4583
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4388,6 +4603,7 @@ class RepositoriesPythonApi:
|
|
|
4388
4603
|
_param = self._unset_label_serialize(
|
|
4389
4604
|
python_python_repository_href=python_python_repository_href,
|
|
4390
4605
|
unset_label=unset_label,
|
|
4606
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4391
4607
|
_request_auth=_request_auth,
|
|
4392
4608
|
_content_type=_content_type,
|
|
4393
4609
|
_headers=_headers,
|
|
@@ -4413,6 +4629,7 @@ class RepositoriesPythonApi:
|
|
|
4413
4629
|
self,
|
|
4414
4630
|
python_python_repository_href: StrictStr,
|
|
4415
4631
|
unset_label: UnsetLabel,
|
|
4632
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4416
4633
|
_request_timeout: Union[
|
|
4417
4634
|
None,
|
|
4418
4635
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4434,6 +4651,8 @@ class RepositoriesPythonApi:
|
|
|
4434
4651
|
:type python_python_repository_href: str
|
|
4435
4652
|
:param unset_label: (required)
|
|
4436
4653
|
:type unset_label: UnsetLabel
|
|
4654
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4655
|
+
:type x_task_diagnostics: List[str]
|
|
4437
4656
|
:param _request_timeout: timeout setting for this request. If one
|
|
4438
4657
|
number provided, it will be total request
|
|
4439
4658
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4459,6 +4678,7 @@ class RepositoriesPythonApi:
|
|
|
4459
4678
|
_param = self._unset_label_serialize(
|
|
4460
4679
|
python_python_repository_href=python_python_repository_href,
|
|
4461
4680
|
unset_label=unset_label,
|
|
4681
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4462
4682
|
_request_auth=_request_auth,
|
|
4463
4683
|
_content_type=_content_type,
|
|
4464
4684
|
_headers=_headers,
|
|
@@ -4479,6 +4699,7 @@ class RepositoriesPythonApi:
|
|
|
4479
4699
|
self,
|
|
4480
4700
|
python_python_repository_href,
|
|
4481
4701
|
unset_label,
|
|
4702
|
+
x_task_diagnostics,
|
|
4482
4703
|
_request_auth,
|
|
4483
4704
|
_content_type,
|
|
4484
4705
|
_headers,
|
|
@@ -4488,6 +4709,7 @@ class RepositoriesPythonApi:
|
|
|
4488
4709
|
_host = None
|
|
4489
4710
|
|
|
4490
4711
|
_collection_formats: Dict[str, str] = {
|
|
4712
|
+
'X-Task-Diagnostics': 'csv',
|
|
4491
4713
|
}
|
|
4492
4714
|
|
|
4493
4715
|
_path_params: Dict[str, str] = {}
|
|
@@ -4504,6 +4726,8 @@ class RepositoriesPythonApi:
|
|
|
4504
4726
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
4505
4727
|
# process the query parameters
|
|
4506
4728
|
# process the header parameters
|
|
4729
|
+
if x_task_diagnostics is not None:
|
|
4730
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
4507
4731
|
# process the form parameters
|
|
4508
4732
|
# process the body parameter
|
|
4509
4733
|
if unset_label is not None:
|
|
@@ -4563,6 +4787,7 @@ class RepositoriesPythonApi:
|
|
|
4563
4787
|
self,
|
|
4564
4788
|
python_python_repository_href: StrictStr,
|
|
4565
4789
|
python_python_repository: PythonPythonRepository,
|
|
4790
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4566
4791
|
_request_timeout: Union[
|
|
4567
4792
|
None,
|
|
4568
4793
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4584,6 +4809,8 @@ class RepositoriesPythonApi:
|
|
|
4584
4809
|
:type python_python_repository_href: str
|
|
4585
4810
|
:param python_python_repository: (required)
|
|
4586
4811
|
:type python_python_repository: PythonPythonRepository
|
|
4812
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4813
|
+
:type x_task_diagnostics: List[str]
|
|
4587
4814
|
:param _request_timeout: timeout setting for this request. If one
|
|
4588
4815
|
number provided, it will be total request
|
|
4589
4816
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4609,6 +4836,7 @@ class RepositoriesPythonApi:
|
|
|
4609
4836
|
_param = self._update_serialize(
|
|
4610
4837
|
python_python_repository_href=python_python_repository_href,
|
|
4611
4838
|
python_python_repository=python_python_repository,
|
|
4839
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4612
4840
|
_request_auth=_request_auth,
|
|
4613
4841
|
_content_type=_content_type,
|
|
4614
4842
|
_headers=_headers,
|
|
@@ -4634,6 +4862,7 @@ class RepositoriesPythonApi:
|
|
|
4634
4862
|
self,
|
|
4635
4863
|
python_python_repository_href: StrictStr,
|
|
4636
4864
|
python_python_repository: PythonPythonRepository,
|
|
4865
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4637
4866
|
_request_timeout: Union[
|
|
4638
4867
|
None,
|
|
4639
4868
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4655,6 +4884,8 @@ class RepositoriesPythonApi:
|
|
|
4655
4884
|
:type python_python_repository_href: str
|
|
4656
4885
|
:param python_python_repository: (required)
|
|
4657
4886
|
:type python_python_repository: PythonPythonRepository
|
|
4887
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4888
|
+
:type x_task_diagnostics: List[str]
|
|
4658
4889
|
:param _request_timeout: timeout setting for this request. If one
|
|
4659
4890
|
number provided, it will be total request
|
|
4660
4891
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4680,6 +4911,7 @@ class RepositoriesPythonApi:
|
|
|
4680
4911
|
_param = self._update_serialize(
|
|
4681
4912
|
python_python_repository_href=python_python_repository_href,
|
|
4682
4913
|
python_python_repository=python_python_repository,
|
|
4914
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4683
4915
|
_request_auth=_request_auth,
|
|
4684
4916
|
_content_type=_content_type,
|
|
4685
4917
|
_headers=_headers,
|
|
@@ -4705,6 +4937,7 @@ class RepositoriesPythonApi:
|
|
|
4705
4937
|
self,
|
|
4706
4938
|
python_python_repository_href: StrictStr,
|
|
4707
4939
|
python_python_repository: PythonPythonRepository,
|
|
4940
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4708
4941
|
_request_timeout: Union[
|
|
4709
4942
|
None,
|
|
4710
4943
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4726,6 +4959,8 @@ class RepositoriesPythonApi:
|
|
|
4726
4959
|
:type python_python_repository_href: str
|
|
4727
4960
|
:param python_python_repository: (required)
|
|
4728
4961
|
:type python_python_repository: PythonPythonRepository
|
|
4962
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4963
|
+
:type x_task_diagnostics: List[str]
|
|
4729
4964
|
:param _request_timeout: timeout setting for this request. If one
|
|
4730
4965
|
number provided, it will be total request
|
|
4731
4966
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4751,6 +4986,7 @@ class RepositoriesPythonApi:
|
|
|
4751
4986
|
_param = self._update_serialize(
|
|
4752
4987
|
python_python_repository_href=python_python_repository_href,
|
|
4753
4988
|
python_python_repository=python_python_repository,
|
|
4989
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4754
4990
|
_request_auth=_request_auth,
|
|
4755
4991
|
_content_type=_content_type,
|
|
4756
4992
|
_headers=_headers,
|
|
@@ -4771,6 +5007,7 @@ class RepositoriesPythonApi:
|
|
|
4771
5007
|
self,
|
|
4772
5008
|
python_python_repository_href,
|
|
4773
5009
|
python_python_repository,
|
|
5010
|
+
x_task_diagnostics,
|
|
4774
5011
|
_request_auth,
|
|
4775
5012
|
_content_type,
|
|
4776
5013
|
_headers,
|
|
@@ -4780,6 +5017,7 @@ class RepositoriesPythonApi:
|
|
|
4780
5017
|
_host = None
|
|
4781
5018
|
|
|
4782
5019
|
_collection_formats: Dict[str, str] = {
|
|
5020
|
+
'X-Task-Diagnostics': 'csv',
|
|
4783
5021
|
}
|
|
4784
5022
|
|
|
4785
5023
|
_path_params: Dict[str, str] = {}
|
|
@@ -4796,6 +5034,8 @@ class RepositoriesPythonApi:
|
|
|
4796
5034
|
_path_params['python_python_repository_href'] = python_python_repository_href
|
|
4797
5035
|
# process the query parameters
|
|
4798
5036
|
# process the header parameters
|
|
5037
|
+
if x_task_diagnostics is not None:
|
|
5038
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
4799
5039
|
# process the form parameters
|
|
4800
5040
|
# process the body parameter
|
|
4801
5041
|
if python_python_repository is not None:
|