pulpcore-client 3.81.0__py3-none-any.whl → 3.82.1__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 pulpcore-client might be problematic. Click here for more details.
- pulpcore/client/pulpcore/__init__.py +1 -1
- pulpcore/client/pulpcore/api/access_policies_api.py +80 -0
- pulpcore/client/pulpcore/api/artifacts_api.py +64 -0
- pulpcore/client/pulpcore/api/content_api.py +16 -0
- pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py +80 -0
- pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py +64 -0
- pulpcore/client/pulpcore/api/content_openpgp_signature_api.py +64 -0
- pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py +64 -0
- pulpcore/client/pulpcore/api/content_openpgp_userid_api.py +64 -0
- pulpcore/client/pulpcore/api/contentguards_api.py +16 -0
- pulpcore/client/pulpcore/api/contentguards_composite_api.py +160 -0
- pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py +160 -0
- pulpcore/client/pulpcore/api/contentguards_header_api.py +160 -0
- pulpcore/client/pulpcore/api/contentguards_rbac_api.py +160 -0
- pulpcore/client/pulpcore/api/distributions_api.py +16 -0
- pulpcore/client/pulpcore/api/distributions_artifacts_api.py +32 -0
- pulpcore/client/pulpcore/api/distributions_openpgp_api.py +128 -0
- pulpcore/client/pulpcore/api/domains_api.py +144 -0
- pulpcore/client/pulpcore/api/exporters_filesystem_api.py +96 -0
- pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py +64 -0
- pulpcore/client/pulpcore/api/exporters_pulp_api.py +96 -0
- pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py +64 -0
- pulpcore/client/pulpcore/api/groups_api.py +160 -0
- pulpcore/client/pulpcore/api/groups_roles_api.py +64 -0
- pulpcore/client/pulpcore/api/groups_users_api.py +48 -0
- pulpcore/client/pulpcore/api/importers_pulp_api.py +96 -0
- pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py +19 -0
- pulpcore/client/pulpcore/api/importers_pulp_imports_api.py +64 -0
- pulpcore/client/pulpcore/api/livez_api.py +55 -0
- pulpcore/client/pulpcore/api/login_api.py +87 -0
- pulpcore/client/pulpcore/api/orphans_api.py +19 -0
- pulpcore/client/pulpcore/api/orphans_cleanup_api.py +19 -0
- pulpcore/client/pulpcore/api/publications_api.py +16 -0
- pulpcore/client/pulpcore/api/remotes_api.py +16 -0
- pulpcore/client/pulpcore/api/repair_api.py +19 -0
- pulpcore/client/pulpcore/api/repositories_api.py +16 -0
- pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py +208 -0
- pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py +19 -0
- pulpcore/client/pulpcore/api/repository_versions_api.py +16 -0
- pulpcore/client/pulpcore/api/roles_api.py +96 -0
- pulpcore/client/pulpcore/api/signing_services_api.py +32 -0
- pulpcore/client/pulpcore/api/status_api.py +55 -0
- pulpcore/client/pulpcore/api/task_groups_api.py +48 -0
- pulpcore/client/pulpcore/api/task_schedules_api.py +96 -0
- pulpcore/client/pulpcore/api/tasks_api.py +166 -6
- pulpcore/client/pulpcore/api/uploads_api.py +160 -0
- pulpcore/client/pulpcore/api/upstream_pulps_api.py +176 -0
- pulpcore/client/pulpcore/api/users_api.py +96 -0
- pulpcore/client/pulpcore/api/users_roles_api.py +64 -0
- pulpcore/client/pulpcore/api/workers_api.py +32 -0
- pulpcore/client/pulpcore/api_client.py +1 -1
- pulpcore/client/pulpcore/configuration.py +1 -1
- pulpcore/client/pulpcore/models/artifact_distribution_response.py +18 -18
- pulpcore/client/pulpcore/models/composite_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/composite_content_guard_response.py +1 -1
- pulpcore/client/pulpcore/models/content_guard_response.py +1 -1
- pulpcore/client/pulpcore/models/patched_composite_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/patched_rbac_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/rbac_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/rbac_content_guard_response.py +1 -1
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.1.dist-info}/METADATA +1 -1
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.1.dist-info}/RECORD +64 -64
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.1.dist-info}/WHEEL +0 -0
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.1.dist-info}/top_level.txt +0 -0
|
@@ -54,6 +54,7 @@ class UpstreamPulpsApi:
|
|
|
54
54
|
self,
|
|
55
55
|
upstream_pulp_href: StrictStr,
|
|
56
56
|
nested_role: NestedRole,
|
|
57
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
57
58
|
_request_timeout: Union[
|
|
58
59
|
None,
|
|
59
60
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -75,6 +76,8 @@ class UpstreamPulpsApi:
|
|
|
75
76
|
:type upstream_pulp_href: str
|
|
76
77
|
:param nested_role: (required)
|
|
77
78
|
:type nested_role: NestedRole
|
|
79
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
80
|
+
:type x_task_diagnostics: List[str]
|
|
78
81
|
:param _request_timeout: timeout setting for this request. If one
|
|
79
82
|
number provided, it will be total request
|
|
80
83
|
timeout. It can also be a pair (tuple) of
|
|
@@ -100,6 +103,7 @@ class UpstreamPulpsApi:
|
|
|
100
103
|
_param = self._add_role_serialize(
|
|
101
104
|
upstream_pulp_href=upstream_pulp_href,
|
|
102
105
|
nested_role=nested_role,
|
|
106
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
103
107
|
_request_auth=_request_auth,
|
|
104
108
|
_content_type=_content_type,
|
|
105
109
|
_headers=_headers,
|
|
@@ -125,6 +129,7 @@ class UpstreamPulpsApi:
|
|
|
125
129
|
self,
|
|
126
130
|
upstream_pulp_href: StrictStr,
|
|
127
131
|
nested_role: NestedRole,
|
|
132
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
128
133
|
_request_timeout: Union[
|
|
129
134
|
None,
|
|
130
135
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -146,6 +151,8 @@ class UpstreamPulpsApi:
|
|
|
146
151
|
:type upstream_pulp_href: str
|
|
147
152
|
:param nested_role: (required)
|
|
148
153
|
:type nested_role: NestedRole
|
|
154
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
155
|
+
:type x_task_diagnostics: List[str]
|
|
149
156
|
:param _request_timeout: timeout setting for this request. If one
|
|
150
157
|
number provided, it will be total request
|
|
151
158
|
timeout. It can also be a pair (tuple) of
|
|
@@ -171,6 +178,7 @@ class UpstreamPulpsApi:
|
|
|
171
178
|
_param = self._add_role_serialize(
|
|
172
179
|
upstream_pulp_href=upstream_pulp_href,
|
|
173
180
|
nested_role=nested_role,
|
|
181
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
174
182
|
_request_auth=_request_auth,
|
|
175
183
|
_content_type=_content_type,
|
|
176
184
|
_headers=_headers,
|
|
@@ -196,6 +204,7 @@ class UpstreamPulpsApi:
|
|
|
196
204
|
self,
|
|
197
205
|
upstream_pulp_href: StrictStr,
|
|
198
206
|
nested_role: NestedRole,
|
|
207
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
199
208
|
_request_timeout: Union[
|
|
200
209
|
None,
|
|
201
210
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -217,6 +226,8 @@ class UpstreamPulpsApi:
|
|
|
217
226
|
:type upstream_pulp_href: str
|
|
218
227
|
:param nested_role: (required)
|
|
219
228
|
:type nested_role: NestedRole
|
|
229
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
230
|
+
:type x_task_diagnostics: List[str]
|
|
220
231
|
:param _request_timeout: timeout setting for this request. If one
|
|
221
232
|
number provided, it will be total request
|
|
222
233
|
timeout. It can also be a pair (tuple) of
|
|
@@ -242,6 +253,7 @@ class UpstreamPulpsApi:
|
|
|
242
253
|
_param = self._add_role_serialize(
|
|
243
254
|
upstream_pulp_href=upstream_pulp_href,
|
|
244
255
|
nested_role=nested_role,
|
|
256
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
245
257
|
_request_auth=_request_auth,
|
|
246
258
|
_content_type=_content_type,
|
|
247
259
|
_headers=_headers,
|
|
@@ -262,6 +274,7 @@ class UpstreamPulpsApi:
|
|
|
262
274
|
self,
|
|
263
275
|
upstream_pulp_href,
|
|
264
276
|
nested_role,
|
|
277
|
+
x_task_diagnostics,
|
|
265
278
|
_request_auth,
|
|
266
279
|
_content_type,
|
|
267
280
|
_headers,
|
|
@@ -271,6 +284,7 @@ class UpstreamPulpsApi:
|
|
|
271
284
|
_host = None
|
|
272
285
|
|
|
273
286
|
_collection_formats: Dict[str, str] = {
|
|
287
|
+
'X-Task-Diagnostics': 'csv',
|
|
274
288
|
}
|
|
275
289
|
|
|
276
290
|
_path_params: Dict[str, str] = {}
|
|
@@ -287,6 +301,8 @@ class UpstreamPulpsApi:
|
|
|
287
301
|
_path_params['upstream_pulp_href'] = upstream_pulp_href
|
|
288
302
|
# process the query parameters
|
|
289
303
|
# process the header parameters
|
|
304
|
+
if x_task_diagnostics is not None:
|
|
305
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
290
306
|
# process the form parameters
|
|
291
307
|
# process the body parameter
|
|
292
308
|
if nested_role is not None:
|
|
@@ -345,6 +361,7 @@ class UpstreamPulpsApi:
|
|
|
345
361
|
def create(
|
|
346
362
|
self,
|
|
347
363
|
upstream_pulp: UpstreamPulp,
|
|
364
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
348
365
|
_request_timeout: Union[
|
|
349
366
|
None,
|
|
350
367
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -364,6 +381,8 @@ class UpstreamPulpsApi:
|
|
|
364
381
|
|
|
365
382
|
:param upstream_pulp: (required)
|
|
366
383
|
:type upstream_pulp: UpstreamPulp
|
|
384
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
385
|
+
:type x_task_diagnostics: List[str]
|
|
367
386
|
:param _request_timeout: timeout setting for this request. If one
|
|
368
387
|
number provided, it will be total request
|
|
369
388
|
timeout. It can also be a pair (tuple) of
|
|
@@ -388,6 +407,7 @@ class UpstreamPulpsApi:
|
|
|
388
407
|
|
|
389
408
|
_param = self._create_serialize(
|
|
390
409
|
upstream_pulp=upstream_pulp,
|
|
410
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
391
411
|
_request_auth=_request_auth,
|
|
392
412
|
_content_type=_content_type,
|
|
393
413
|
_headers=_headers,
|
|
@@ -412,6 +432,7 @@ class UpstreamPulpsApi:
|
|
|
412
432
|
def create_with_http_info(
|
|
413
433
|
self,
|
|
414
434
|
upstream_pulp: UpstreamPulp,
|
|
435
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
415
436
|
_request_timeout: Union[
|
|
416
437
|
None,
|
|
417
438
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -431,6 +452,8 @@ class UpstreamPulpsApi:
|
|
|
431
452
|
|
|
432
453
|
:param upstream_pulp: (required)
|
|
433
454
|
:type upstream_pulp: UpstreamPulp
|
|
455
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
456
|
+
:type x_task_diagnostics: List[str]
|
|
434
457
|
:param _request_timeout: timeout setting for this request. If one
|
|
435
458
|
number provided, it will be total request
|
|
436
459
|
timeout. It can also be a pair (tuple) of
|
|
@@ -455,6 +478,7 @@ class UpstreamPulpsApi:
|
|
|
455
478
|
|
|
456
479
|
_param = self._create_serialize(
|
|
457
480
|
upstream_pulp=upstream_pulp,
|
|
481
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
458
482
|
_request_auth=_request_auth,
|
|
459
483
|
_content_type=_content_type,
|
|
460
484
|
_headers=_headers,
|
|
@@ -479,6 +503,7 @@ class UpstreamPulpsApi:
|
|
|
479
503
|
def create_without_preload_content(
|
|
480
504
|
self,
|
|
481
505
|
upstream_pulp: UpstreamPulp,
|
|
506
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
482
507
|
_request_timeout: Union[
|
|
483
508
|
None,
|
|
484
509
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -498,6 +523,8 @@ class UpstreamPulpsApi:
|
|
|
498
523
|
|
|
499
524
|
:param upstream_pulp: (required)
|
|
500
525
|
:type upstream_pulp: UpstreamPulp
|
|
526
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
527
|
+
:type x_task_diagnostics: List[str]
|
|
501
528
|
:param _request_timeout: timeout setting for this request. If one
|
|
502
529
|
number provided, it will be total request
|
|
503
530
|
timeout. It can also be a pair (tuple) of
|
|
@@ -522,6 +549,7 @@ class UpstreamPulpsApi:
|
|
|
522
549
|
|
|
523
550
|
_param = self._create_serialize(
|
|
524
551
|
upstream_pulp=upstream_pulp,
|
|
552
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
525
553
|
_request_auth=_request_auth,
|
|
526
554
|
_content_type=_content_type,
|
|
527
555
|
_headers=_headers,
|
|
@@ -541,6 +569,7 @@ class UpstreamPulpsApi:
|
|
|
541
569
|
def _create_serialize(
|
|
542
570
|
self,
|
|
543
571
|
upstream_pulp,
|
|
572
|
+
x_task_diagnostics,
|
|
544
573
|
_request_auth,
|
|
545
574
|
_content_type,
|
|
546
575
|
_headers,
|
|
@@ -550,6 +579,7 @@ class UpstreamPulpsApi:
|
|
|
550
579
|
_host = None
|
|
551
580
|
|
|
552
581
|
_collection_formats: Dict[str, str] = {
|
|
582
|
+
'X-Task-Diagnostics': 'csv',
|
|
553
583
|
}
|
|
554
584
|
|
|
555
585
|
_path_params: Dict[str, str] = {}
|
|
@@ -564,6 +594,8 @@ class UpstreamPulpsApi:
|
|
|
564
594
|
# process the path parameters
|
|
565
595
|
# process the query parameters
|
|
566
596
|
# process the header parameters
|
|
597
|
+
if x_task_diagnostics is not None:
|
|
598
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
567
599
|
# process the form parameters
|
|
568
600
|
# process the body parameter
|
|
569
601
|
if upstream_pulp is not None:
|
|
@@ -622,6 +654,7 @@ class UpstreamPulpsApi:
|
|
|
622
654
|
def delete(
|
|
623
655
|
self,
|
|
624
656
|
upstream_pulp_href: StrictStr,
|
|
657
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
625
658
|
_request_timeout: Union[
|
|
626
659
|
None,
|
|
627
660
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -641,6 +674,8 @@ class UpstreamPulpsApi:
|
|
|
641
674
|
|
|
642
675
|
:param upstream_pulp_href: (required)
|
|
643
676
|
:type upstream_pulp_href: str
|
|
677
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
678
|
+
:type x_task_diagnostics: List[str]
|
|
644
679
|
:param _request_timeout: timeout setting for this request. If one
|
|
645
680
|
number provided, it will be total request
|
|
646
681
|
timeout. It can also be a pair (tuple) of
|
|
@@ -665,6 +700,7 @@ class UpstreamPulpsApi:
|
|
|
665
700
|
|
|
666
701
|
_param = self._delete_serialize(
|
|
667
702
|
upstream_pulp_href=upstream_pulp_href,
|
|
703
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
668
704
|
_request_auth=_request_auth,
|
|
669
705
|
_content_type=_content_type,
|
|
670
706
|
_headers=_headers,
|
|
@@ -689,6 +725,7 @@ class UpstreamPulpsApi:
|
|
|
689
725
|
def delete_with_http_info(
|
|
690
726
|
self,
|
|
691
727
|
upstream_pulp_href: StrictStr,
|
|
728
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
692
729
|
_request_timeout: Union[
|
|
693
730
|
None,
|
|
694
731
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -708,6 +745,8 @@ class UpstreamPulpsApi:
|
|
|
708
745
|
|
|
709
746
|
:param upstream_pulp_href: (required)
|
|
710
747
|
:type upstream_pulp_href: str
|
|
748
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
749
|
+
:type x_task_diagnostics: List[str]
|
|
711
750
|
:param _request_timeout: timeout setting for this request. If one
|
|
712
751
|
number provided, it will be total request
|
|
713
752
|
timeout. It can also be a pair (tuple) of
|
|
@@ -732,6 +771,7 @@ class UpstreamPulpsApi:
|
|
|
732
771
|
|
|
733
772
|
_param = self._delete_serialize(
|
|
734
773
|
upstream_pulp_href=upstream_pulp_href,
|
|
774
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
735
775
|
_request_auth=_request_auth,
|
|
736
776
|
_content_type=_content_type,
|
|
737
777
|
_headers=_headers,
|
|
@@ -756,6 +796,7 @@ class UpstreamPulpsApi:
|
|
|
756
796
|
def delete_without_preload_content(
|
|
757
797
|
self,
|
|
758
798
|
upstream_pulp_href: StrictStr,
|
|
799
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
759
800
|
_request_timeout: Union[
|
|
760
801
|
None,
|
|
761
802
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -775,6 +816,8 @@ class UpstreamPulpsApi:
|
|
|
775
816
|
|
|
776
817
|
:param upstream_pulp_href: (required)
|
|
777
818
|
:type upstream_pulp_href: str
|
|
819
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
820
|
+
:type x_task_diagnostics: List[str]
|
|
778
821
|
:param _request_timeout: timeout setting for this request. If one
|
|
779
822
|
number provided, it will be total request
|
|
780
823
|
timeout. It can also be a pair (tuple) of
|
|
@@ -799,6 +842,7 @@ class UpstreamPulpsApi:
|
|
|
799
842
|
|
|
800
843
|
_param = self._delete_serialize(
|
|
801
844
|
upstream_pulp_href=upstream_pulp_href,
|
|
845
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
802
846
|
_request_auth=_request_auth,
|
|
803
847
|
_content_type=_content_type,
|
|
804
848
|
_headers=_headers,
|
|
@@ -818,6 +862,7 @@ class UpstreamPulpsApi:
|
|
|
818
862
|
def _delete_serialize(
|
|
819
863
|
self,
|
|
820
864
|
upstream_pulp_href,
|
|
865
|
+
x_task_diagnostics,
|
|
821
866
|
_request_auth,
|
|
822
867
|
_content_type,
|
|
823
868
|
_headers,
|
|
@@ -827,6 +872,7 @@ class UpstreamPulpsApi:
|
|
|
827
872
|
_host = None
|
|
828
873
|
|
|
829
874
|
_collection_formats: Dict[str, str] = {
|
|
875
|
+
'X-Task-Diagnostics': 'csv',
|
|
830
876
|
}
|
|
831
877
|
|
|
832
878
|
_path_params: Dict[str, str] = {}
|
|
@@ -843,6 +889,8 @@ class UpstreamPulpsApi:
|
|
|
843
889
|
_path_params['upstream_pulp_href'] = upstream_pulp_href
|
|
844
890
|
# process the query parameters
|
|
845
891
|
# process the header parameters
|
|
892
|
+
if x_task_diagnostics is not None:
|
|
893
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
846
894
|
# process the form parameters
|
|
847
895
|
# process the body parameter
|
|
848
896
|
|
|
@@ -876,6 +924,7 @@ class UpstreamPulpsApi:
|
|
|
876
924
|
@validate_call
|
|
877
925
|
def list(
|
|
878
926
|
self,
|
|
927
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
879
928
|
base_url: Annotated[Optional[StrictStr], Field(description="Filter results where base_url matches value")] = None,
|
|
880
929
|
base_url__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_url contains value")] = None,
|
|
881
930
|
base_url__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_url contains value")] = None,
|
|
@@ -927,6 +976,8 @@ class UpstreamPulpsApi:
|
|
|
927
976
|
|
|
928
977
|
API for configuring an upstream Pulp to replicate. This API is provided as a tech preview.
|
|
929
978
|
|
|
979
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
980
|
+
:type x_task_diagnostics: List[str]
|
|
930
981
|
:param base_url: Filter results where base_url matches value
|
|
931
982
|
:type base_url: str
|
|
932
983
|
:param base_url__contains: Filter results where base_url contains value
|
|
@@ -1018,6 +1069,7 @@ class UpstreamPulpsApi:
|
|
|
1018
1069
|
""" # noqa: E501
|
|
1019
1070
|
|
|
1020
1071
|
_param = self._list_serialize(
|
|
1072
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1021
1073
|
base_url=base_url,
|
|
1022
1074
|
base_url__contains=base_url__contains,
|
|
1023
1075
|
base_url__icontains=base_url__icontains,
|
|
@@ -1075,6 +1127,7 @@ class UpstreamPulpsApi:
|
|
|
1075
1127
|
@validate_call
|
|
1076
1128
|
def list_with_http_info(
|
|
1077
1129
|
self,
|
|
1130
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1078
1131
|
base_url: Annotated[Optional[StrictStr], Field(description="Filter results where base_url matches value")] = None,
|
|
1079
1132
|
base_url__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_url contains value")] = None,
|
|
1080
1133
|
base_url__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_url contains value")] = None,
|
|
@@ -1126,6 +1179,8 @@ class UpstreamPulpsApi:
|
|
|
1126
1179
|
|
|
1127
1180
|
API for configuring an upstream Pulp to replicate. This API is provided as a tech preview.
|
|
1128
1181
|
|
|
1182
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1183
|
+
:type x_task_diagnostics: List[str]
|
|
1129
1184
|
:param base_url: Filter results where base_url matches value
|
|
1130
1185
|
:type base_url: str
|
|
1131
1186
|
:param base_url__contains: Filter results where base_url contains value
|
|
@@ -1217,6 +1272,7 @@ class UpstreamPulpsApi:
|
|
|
1217
1272
|
""" # noqa: E501
|
|
1218
1273
|
|
|
1219
1274
|
_param = self._list_serialize(
|
|
1275
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1220
1276
|
base_url=base_url,
|
|
1221
1277
|
base_url__contains=base_url__contains,
|
|
1222
1278
|
base_url__icontains=base_url__icontains,
|
|
@@ -1274,6 +1330,7 @@ class UpstreamPulpsApi:
|
|
|
1274
1330
|
@validate_call
|
|
1275
1331
|
def list_without_preload_content(
|
|
1276
1332
|
self,
|
|
1333
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1277
1334
|
base_url: Annotated[Optional[StrictStr], Field(description="Filter results where base_url matches value")] = None,
|
|
1278
1335
|
base_url__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_url contains value")] = None,
|
|
1279
1336
|
base_url__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_url contains value")] = None,
|
|
@@ -1325,6 +1382,8 @@ class UpstreamPulpsApi:
|
|
|
1325
1382
|
|
|
1326
1383
|
API for configuring an upstream Pulp to replicate. This API is provided as a tech preview.
|
|
1327
1384
|
|
|
1385
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1386
|
+
:type x_task_diagnostics: List[str]
|
|
1328
1387
|
:param base_url: Filter results where base_url matches value
|
|
1329
1388
|
:type base_url: str
|
|
1330
1389
|
:param base_url__contains: Filter results where base_url contains value
|
|
@@ -1416,6 +1475,7 @@ class UpstreamPulpsApi:
|
|
|
1416
1475
|
""" # noqa: E501
|
|
1417
1476
|
|
|
1418
1477
|
_param = self._list_serialize(
|
|
1478
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1419
1479
|
base_url=base_url,
|
|
1420
1480
|
base_url__contains=base_url__contains,
|
|
1421
1481
|
base_url__icontains=base_url__icontains,
|
|
@@ -1468,6 +1528,7 @@ class UpstreamPulpsApi:
|
|
|
1468
1528
|
|
|
1469
1529
|
def _list_serialize(
|
|
1470
1530
|
self,
|
|
1531
|
+
x_task_diagnostics,
|
|
1471
1532
|
base_url,
|
|
1472
1533
|
base_url__contains,
|
|
1473
1534
|
base_url__icontains,
|
|
@@ -1511,6 +1572,7 @@ class UpstreamPulpsApi:
|
|
|
1511
1572
|
_host = None
|
|
1512
1573
|
|
|
1513
1574
|
_collection_formats: Dict[str, str] = {
|
|
1575
|
+
'X-Task-Diagnostics': 'csv',
|
|
1514
1576
|
'base_url__in': 'csv',
|
|
1515
1577
|
'last_replication__range': 'csv',
|
|
1516
1578
|
'name__in': 'csv',
|
|
@@ -1715,6 +1777,8 @@ class UpstreamPulpsApi:
|
|
|
1715
1777
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1716
1778
|
|
|
1717
1779
|
# process the header parameters
|
|
1780
|
+
if x_task_diagnostics is not None:
|
|
1781
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1718
1782
|
# process the form parameters
|
|
1719
1783
|
# process the body parameter
|
|
1720
1784
|
|
|
@@ -1756,6 +1820,7 @@ class UpstreamPulpsApi:
|
|
|
1756
1820
|
def list_roles(
|
|
1757
1821
|
self,
|
|
1758
1822
|
upstream_pulp_href: StrictStr,
|
|
1823
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1759
1824
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1760
1825
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1761
1826
|
_request_timeout: Union[
|
|
@@ -1777,6 +1842,8 @@ class UpstreamPulpsApi:
|
|
|
1777
1842
|
|
|
1778
1843
|
:param upstream_pulp_href: (required)
|
|
1779
1844
|
:type upstream_pulp_href: str
|
|
1845
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1846
|
+
:type x_task_diagnostics: List[str]
|
|
1780
1847
|
:param fields: A list of fields to include in the response.
|
|
1781
1848
|
:type fields: List[str]
|
|
1782
1849
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1805,6 +1872,7 @@ class UpstreamPulpsApi:
|
|
|
1805
1872
|
|
|
1806
1873
|
_param = self._list_roles_serialize(
|
|
1807
1874
|
upstream_pulp_href=upstream_pulp_href,
|
|
1875
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1808
1876
|
fields=fields,
|
|
1809
1877
|
exclude_fields=exclude_fields,
|
|
1810
1878
|
_request_auth=_request_auth,
|
|
@@ -1831,6 +1899,7 @@ class UpstreamPulpsApi:
|
|
|
1831
1899
|
def list_roles_with_http_info(
|
|
1832
1900
|
self,
|
|
1833
1901
|
upstream_pulp_href: StrictStr,
|
|
1902
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1834
1903
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1835
1904
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1836
1905
|
_request_timeout: Union[
|
|
@@ -1852,6 +1921,8 @@ class UpstreamPulpsApi:
|
|
|
1852
1921
|
|
|
1853
1922
|
:param upstream_pulp_href: (required)
|
|
1854
1923
|
:type upstream_pulp_href: str
|
|
1924
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1925
|
+
:type x_task_diagnostics: List[str]
|
|
1855
1926
|
:param fields: A list of fields to include in the response.
|
|
1856
1927
|
:type fields: List[str]
|
|
1857
1928
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1880,6 +1951,7 @@ class UpstreamPulpsApi:
|
|
|
1880
1951
|
|
|
1881
1952
|
_param = self._list_roles_serialize(
|
|
1882
1953
|
upstream_pulp_href=upstream_pulp_href,
|
|
1954
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1883
1955
|
fields=fields,
|
|
1884
1956
|
exclude_fields=exclude_fields,
|
|
1885
1957
|
_request_auth=_request_auth,
|
|
@@ -1906,6 +1978,7 @@ class UpstreamPulpsApi:
|
|
|
1906
1978
|
def list_roles_without_preload_content(
|
|
1907
1979
|
self,
|
|
1908
1980
|
upstream_pulp_href: StrictStr,
|
|
1981
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1909
1982
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1910
1983
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1911
1984
|
_request_timeout: Union[
|
|
@@ -1927,6 +2000,8 @@ class UpstreamPulpsApi:
|
|
|
1927
2000
|
|
|
1928
2001
|
:param upstream_pulp_href: (required)
|
|
1929
2002
|
:type upstream_pulp_href: str
|
|
2003
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2004
|
+
:type x_task_diagnostics: List[str]
|
|
1930
2005
|
:param fields: A list of fields to include in the response.
|
|
1931
2006
|
:type fields: List[str]
|
|
1932
2007
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1955,6 +2030,7 @@ class UpstreamPulpsApi:
|
|
|
1955
2030
|
|
|
1956
2031
|
_param = self._list_roles_serialize(
|
|
1957
2032
|
upstream_pulp_href=upstream_pulp_href,
|
|
2033
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1958
2034
|
fields=fields,
|
|
1959
2035
|
exclude_fields=exclude_fields,
|
|
1960
2036
|
_request_auth=_request_auth,
|
|
@@ -1976,6 +2052,7 @@ class UpstreamPulpsApi:
|
|
|
1976
2052
|
def _list_roles_serialize(
|
|
1977
2053
|
self,
|
|
1978
2054
|
upstream_pulp_href,
|
|
2055
|
+
x_task_diagnostics,
|
|
1979
2056
|
fields,
|
|
1980
2057
|
exclude_fields,
|
|
1981
2058
|
_request_auth,
|
|
@@ -1987,6 +2064,7 @@ class UpstreamPulpsApi:
|
|
|
1987
2064
|
_host = None
|
|
1988
2065
|
|
|
1989
2066
|
_collection_formats: Dict[str, str] = {
|
|
2067
|
+
'X-Task-Diagnostics': 'csv',
|
|
1990
2068
|
'fields': 'multi',
|
|
1991
2069
|
'exclude_fields': 'multi',
|
|
1992
2070
|
}
|
|
@@ -2013,6 +2091,8 @@ class UpstreamPulpsApi:
|
|
|
2013
2091
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
2014
2092
|
|
|
2015
2093
|
# process the header parameters
|
|
2094
|
+
if x_task_diagnostics is not None:
|
|
2095
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2016
2096
|
# process the form parameters
|
|
2017
2097
|
# process the body parameter
|
|
2018
2098
|
|
|
@@ -2054,6 +2134,7 @@ class UpstreamPulpsApi:
|
|
|
2054
2134
|
def my_permissions(
|
|
2055
2135
|
self,
|
|
2056
2136
|
upstream_pulp_href: StrictStr,
|
|
2137
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2057
2138
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2058
2139
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2059
2140
|
_request_timeout: Union[
|
|
@@ -2075,6 +2156,8 @@ class UpstreamPulpsApi:
|
|
|
2075
2156
|
|
|
2076
2157
|
:param upstream_pulp_href: (required)
|
|
2077
2158
|
:type upstream_pulp_href: str
|
|
2159
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2160
|
+
:type x_task_diagnostics: List[str]
|
|
2078
2161
|
:param fields: A list of fields to include in the response.
|
|
2079
2162
|
:type fields: List[str]
|
|
2080
2163
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2103,6 +2186,7 @@ class UpstreamPulpsApi:
|
|
|
2103
2186
|
|
|
2104
2187
|
_param = self._my_permissions_serialize(
|
|
2105
2188
|
upstream_pulp_href=upstream_pulp_href,
|
|
2189
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2106
2190
|
fields=fields,
|
|
2107
2191
|
exclude_fields=exclude_fields,
|
|
2108
2192
|
_request_auth=_request_auth,
|
|
@@ -2129,6 +2213,7 @@ class UpstreamPulpsApi:
|
|
|
2129
2213
|
def my_permissions_with_http_info(
|
|
2130
2214
|
self,
|
|
2131
2215
|
upstream_pulp_href: StrictStr,
|
|
2216
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2132
2217
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2133
2218
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2134
2219
|
_request_timeout: Union[
|
|
@@ -2150,6 +2235,8 @@ class UpstreamPulpsApi:
|
|
|
2150
2235
|
|
|
2151
2236
|
:param upstream_pulp_href: (required)
|
|
2152
2237
|
:type upstream_pulp_href: str
|
|
2238
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2239
|
+
:type x_task_diagnostics: List[str]
|
|
2153
2240
|
:param fields: A list of fields to include in the response.
|
|
2154
2241
|
:type fields: List[str]
|
|
2155
2242
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2178,6 +2265,7 @@ class UpstreamPulpsApi:
|
|
|
2178
2265
|
|
|
2179
2266
|
_param = self._my_permissions_serialize(
|
|
2180
2267
|
upstream_pulp_href=upstream_pulp_href,
|
|
2268
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2181
2269
|
fields=fields,
|
|
2182
2270
|
exclude_fields=exclude_fields,
|
|
2183
2271
|
_request_auth=_request_auth,
|
|
@@ -2204,6 +2292,7 @@ class UpstreamPulpsApi:
|
|
|
2204
2292
|
def my_permissions_without_preload_content(
|
|
2205
2293
|
self,
|
|
2206
2294
|
upstream_pulp_href: StrictStr,
|
|
2295
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2207
2296
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2208
2297
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2209
2298
|
_request_timeout: Union[
|
|
@@ -2225,6 +2314,8 @@ class UpstreamPulpsApi:
|
|
|
2225
2314
|
|
|
2226
2315
|
:param upstream_pulp_href: (required)
|
|
2227
2316
|
:type upstream_pulp_href: str
|
|
2317
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2318
|
+
:type x_task_diagnostics: List[str]
|
|
2228
2319
|
:param fields: A list of fields to include in the response.
|
|
2229
2320
|
:type fields: List[str]
|
|
2230
2321
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2253,6 +2344,7 @@ class UpstreamPulpsApi:
|
|
|
2253
2344
|
|
|
2254
2345
|
_param = self._my_permissions_serialize(
|
|
2255
2346
|
upstream_pulp_href=upstream_pulp_href,
|
|
2347
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2256
2348
|
fields=fields,
|
|
2257
2349
|
exclude_fields=exclude_fields,
|
|
2258
2350
|
_request_auth=_request_auth,
|
|
@@ -2274,6 +2366,7 @@ class UpstreamPulpsApi:
|
|
|
2274
2366
|
def _my_permissions_serialize(
|
|
2275
2367
|
self,
|
|
2276
2368
|
upstream_pulp_href,
|
|
2369
|
+
x_task_diagnostics,
|
|
2277
2370
|
fields,
|
|
2278
2371
|
exclude_fields,
|
|
2279
2372
|
_request_auth,
|
|
@@ -2285,6 +2378,7 @@ class UpstreamPulpsApi:
|
|
|
2285
2378
|
_host = None
|
|
2286
2379
|
|
|
2287
2380
|
_collection_formats: Dict[str, str] = {
|
|
2381
|
+
'X-Task-Diagnostics': 'csv',
|
|
2288
2382
|
'fields': 'multi',
|
|
2289
2383
|
'exclude_fields': 'multi',
|
|
2290
2384
|
}
|
|
@@ -2311,6 +2405,8 @@ class UpstreamPulpsApi:
|
|
|
2311
2405
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
2312
2406
|
|
|
2313
2407
|
# process the header parameters
|
|
2408
|
+
if x_task_diagnostics is not None:
|
|
2409
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2314
2410
|
# process the form parameters
|
|
2315
2411
|
# process the body parameter
|
|
2316
2412
|
|
|
@@ -2353,6 +2449,7 @@ class UpstreamPulpsApi:
|
|
|
2353
2449
|
self,
|
|
2354
2450
|
upstream_pulp_href: StrictStr,
|
|
2355
2451
|
patched_upstream_pulp: PatchedUpstreamPulp,
|
|
2452
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2356
2453
|
_request_timeout: Union[
|
|
2357
2454
|
None,
|
|
2358
2455
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2374,6 +2471,8 @@ class UpstreamPulpsApi:
|
|
|
2374
2471
|
:type upstream_pulp_href: str
|
|
2375
2472
|
:param patched_upstream_pulp: (required)
|
|
2376
2473
|
:type patched_upstream_pulp: PatchedUpstreamPulp
|
|
2474
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2475
|
+
:type x_task_diagnostics: List[str]
|
|
2377
2476
|
:param _request_timeout: timeout setting for this request. If one
|
|
2378
2477
|
number provided, it will be total request
|
|
2379
2478
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2399,6 +2498,7 @@ class UpstreamPulpsApi:
|
|
|
2399
2498
|
_param = self._partial_update_serialize(
|
|
2400
2499
|
upstream_pulp_href=upstream_pulp_href,
|
|
2401
2500
|
patched_upstream_pulp=patched_upstream_pulp,
|
|
2501
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2402
2502
|
_request_auth=_request_auth,
|
|
2403
2503
|
_content_type=_content_type,
|
|
2404
2504
|
_headers=_headers,
|
|
@@ -2424,6 +2524,7 @@ class UpstreamPulpsApi:
|
|
|
2424
2524
|
self,
|
|
2425
2525
|
upstream_pulp_href: StrictStr,
|
|
2426
2526
|
patched_upstream_pulp: PatchedUpstreamPulp,
|
|
2527
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2427
2528
|
_request_timeout: Union[
|
|
2428
2529
|
None,
|
|
2429
2530
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2445,6 +2546,8 @@ class UpstreamPulpsApi:
|
|
|
2445
2546
|
:type upstream_pulp_href: str
|
|
2446
2547
|
:param patched_upstream_pulp: (required)
|
|
2447
2548
|
:type patched_upstream_pulp: PatchedUpstreamPulp
|
|
2549
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2550
|
+
:type x_task_diagnostics: List[str]
|
|
2448
2551
|
:param _request_timeout: timeout setting for this request. If one
|
|
2449
2552
|
number provided, it will be total request
|
|
2450
2553
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2470,6 +2573,7 @@ class UpstreamPulpsApi:
|
|
|
2470
2573
|
_param = self._partial_update_serialize(
|
|
2471
2574
|
upstream_pulp_href=upstream_pulp_href,
|
|
2472
2575
|
patched_upstream_pulp=patched_upstream_pulp,
|
|
2576
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2473
2577
|
_request_auth=_request_auth,
|
|
2474
2578
|
_content_type=_content_type,
|
|
2475
2579
|
_headers=_headers,
|
|
@@ -2495,6 +2599,7 @@ class UpstreamPulpsApi:
|
|
|
2495
2599
|
self,
|
|
2496
2600
|
upstream_pulp_href: StrictStr,
|
|
2497
2601
|
patched_upstream_pulp: PatchedUpstreamPulp,
|
|
2602
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2498
2603
|
_request_timeout: Union[
|
|
2499
2604
|
None,
|
|
2500
2605
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2516,6 +2621,8 @@ class UpstreamPulpsApi:
|
|
|
2516
2621
|
:type upstream_pulp_href: str
|
|
2517
2622
|
:param patched_upstream_pulp: (required)
|
|
2518
2623
|
:type patched_upstream_pulp: PatchedUpstreamPulp
|
|
2624
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2625
|
+
:type x_task_diagnostics: List[str]
|
|
2519
2626
|
:param _request_timeout: timeout setting for this request. If one
|
|
2520
2627
|
number provided, it will be total request
|
|
2521
2628
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2541,6 +2648,7 @@ class UpstreamPulpsApi:
|
|
|
2541
2648
|
_param = self._partial_update_serialize(
|
|
2542
2649
|
upstream_pulp_href=upstream_pulp_href,
|
|
2543
2650
|
patched_upstream_pulp=patched_upstream_pulp,
|
|
2651
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2544
2652
|
_request_auth=_request_auth,
|
|
2545
2653
|
_content_type=_content_type,
|
|
2546
2654
|
_headers=_headers,
|
|
@@ -2561,6 +2669,7 @@ class UpstreamPulpsApi:
|
|
|
2561
2669
|
self,
|
|
2562
2670
|
upstream_pulp_href,
|
|
2563
2671
|
patched_upstream_pulp,
|
|
2672
|
+
x_task_diagnostics,
|
|
2564
2673
|
_request_auth,
|
|
2565
2674
|
_content_type,
|
|
2566
2675
|
_headers,
|
|
@@ -2570,6 +2679,7 @@ class UpstreamPulpsApi:
|
|
|
2570
2679
|
_host = None
|
|
2571
2680
|
|
|
2572
2681
|
_collection_formats: Dict[str, str] = {
|
|
2682
|
+
'X-Task-Diagnostics': 'csv',
|
|
2573
2683
|
}
|
|
2574
2684
|
|
|
2575
2685
|
_path_params: Dict[str, str] = {}
|
|
@@ -2586,6 +2696,8 @@ class UpstreamPulpsApi:
|
|
|
2586
2696
|
_path_params['upstream_pulp_href'] = upstream_pulp_href
|
|
2587
2697
|
# process the query parameters
|
|
2588
2698
|
# process the header parameters
|
|
2699
|
+
if x_task_diagnostics is not None:
|
|
2700
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2589
2701
|
# process the form parameters
|
|
2590
2702
|
# process the body parameter
|
|
2591
2703
|
if patched_upstream_pulp is not None:
|
|
@@ -2644,6 +2756,7 @@ class UpstreamPulpsApi:
|
|
|
2644
2756
|
def read(
|
|
2645
2757
|
self,
|
|
2646
2758
|
upstream_pulp_href: StrictStr,
|
|
2759
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2647
2760
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2648
2761
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2649
2762
|
_request_timeout: Union[
|
|
@@ -2665,6 +2778,8 @@ class UpstreamPulpsApi:
|
|
|
2665
2778
|
|
|
2666
2779
|
:param upstream_pulp_href: (required)
|
|
2667
2780
|
:type upstream_pulp_href: str
|
|
2781
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2782
|
+
:type x_task_diagnostics: List[str]
|
|
2668
2783
|
:param fields: A list of fields to include in the response.
|
|
2669
2784
|
:type fields: List[str]
|
|
2670
2785
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2693,6 +2808,7 @@ class UpstreamPulpsApi:
|
|
|
2693
2808
|
|
|
2694
2809
|
_param = self._read_serialize(
|
|
2695
2810
|
upstream_pulp_href=upstream_pulp_href,
|
|
2811
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2696
2812
|
fields=fields,
|
|
2697
2813
|
exclude_fields=exclude_fields,
|
|
2698
2814
|
_request_auth=_request_auth,
|
|
@@ -2719,6 +2835,7 @@ class UpstreamPulpsApi:
|
|
|
2719
2835
|
def read_with_http_info(
|
|
2720
2836
|
self,
|
|
2721
2837
|
upstream_pulp_href: StrictStr,
|
|
2838
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2722
2839
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2723
2840
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2724
2841
|
_request_timeout: Union[
|
|
@@ -2740,6 +2857,8 @@ class UpstreamPulpsApi:
|
|
|
2740
2857
|
|
|
2741
2858
|
:param upstream_pulp_href: (required)
|
|
2742
2859
|
:type upstream_pulp_href: str
|
|
2860
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2861
|
+
:type x_task_diagnostics: List[str]
|
|
2743
2862
|
:param fields: A list of fields to include in the response.
|
|
2744
2863
|
:type fields: List[str]
|
|
2745
2864
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2768,6 +2887,7 @@ class UpstreamPulpsApi:
|
|
|
2768
2887
|
|
|
2769
2888
|
_param = self._read_serialize(
|
|
2770
2889
|
upstream_pulp_href=upstream_pulp_href,
|
|
2890
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2771
2891
|
fields=fields,
|
|
2772
2892
|
exclude_fields=exclude_fields,
|
|
2773
2893
|
_request_auth=_request_auth,
|
|
@@ -2794,6 +2914,7 @@ class UpstreamPulpsApi:
|
|
|
2794
2914
|
def read_without_preload_content(
|
|
2795
2915
|
self,
|
|
2796
2916
|
upstream_pulp_href: StrictStr,
|
|
2917
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2797
2918
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2798
2919
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2799
2920
|
_request_timeout: Union[
|
|
@@ -2815,6 +2936,8 @@ class UpstreamPulpsApi:
|
|
|
2815
2936
|
|
|
2816
2937
|
:param upstream_pulp_href: (required)
|
|
2817
2938
|
:type upstream_pulp_href: str
|
|
2939
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2940
|
+
:type x_task_diagnostics: List[str]
|
|
2818
2941
|
:param fields: A list of fields to include in the response.
|
|
2819
2942
|
:type fields: List[str]
|
|
2820
2943
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2843,6 +2966,7 @@ class UpstreamPulpsApi:
|
|
|
2843
2966
|
|
|
2844
2967
|
_param = self._read_serialize(
|
|
2845
2968
|
upstream_pulp_href=upstream_pulp_href,
|
|
2969
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2846
2970
|
fields=fields,
|
|
2847
2971
|
exclude_fields=exclude_fields,
|
|
2848
2972
|
_request_auth=_request_auth,
|
|
@@ -2864,6 +2988,7 @@ class UpstreamPulpsApi:
|
|
|
2864
2988
|
def _read_serialize(
|
|
2865
2989
|
self,
|
|
2866
2990
|
upstream_pulp_href,
|
|
2991
|
+
x_task_diagnostics,
|
|
2867
2992
|
fields,
|
|
2868
2993
|
exclude_fields,
|
|
2869
2994
|
_request_auth,
|
|
@@ -2875,6 +3000,7 @@ class UpstreamPulpsApi:
|
|
|
2875
3000
|
_host = None
|
|
2876
3001
|
|
|
2877
3002
|
_collection_formats: Dict[str, str] = {
|
|
3003
|
+
'X-Task-Diagnostics': 'csv',
|
|
2878
3004
|
'fields': 'multi',
|
|
2879
3005
|
'exclude_fields': 'multi',
|
|
2880
3006
|
}
|
|
@@ -2901,6 +3027,8 @@ class UpstreamPulpsApi:
|
|
|
2901
3027
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
2902
3028
|
|
|
2903
3029
|
# process the header parameters
|
|
3030
|
+
if x_task_diagnostics is not None:
|
|
3031
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2904
3032
|
# process the form parameters
|
|
2905
3033
|
# process the body parameter
|
|
2906
3034
|
|
|
@@ -2943,6 +3071,7 @@ class UpstreamPulpsApi:
|
|
|
2943
3071
|
self,
|
|
2944
3072
|
upstream_pulp_href: StrictStr,
|
|
2945
3073
|
nested_role: NestedRole,
|
|
3074
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2946
3075
|
_request_timeout: Union[
|
|
2947
3076
|
None,
|
|
2948
3077
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2964,6 +3093,8 @@ class UpstreamPulpsApi:
|
|
|
2964
3093
|
:type upstream_pulp_href: str
|
|
2965
3094
|
:param nested_role: (required)
|
|
2966
3095
|
:type nested_role: NestedRole
|
|
3096
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3097
|
+
:type x_task_diagnostics: List[str]
|
|
2967
3098
|
:param _request_timeout: timeout setting for this request. If one
|
|
2968
3099
|
number provided, it will be total request
|
|
2969
3100
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2989,6 +3120,7 @@ class UpstreamPulpsApi:
|
|
|
2989
3120
|
_param = self._remove_role_serialize(
|
|
2990
3121
|
upstream_pulp_href=upstream_pulp_href,
|
|
2991
3122
|
nested_role=nested_role,
|
|
3123
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2992
3124
|
_request_auth=_request_auth,
|
|
2993
3125
|
_content_type=_content_type,
|
|
2994
3126
|
_headers=_headers,
|
|
@@ -3014,6 +3146,7 @@ class UpstreamPulpsApi:
|
|
|
3014
3146
|
self,
|
|
3015
3147
|
upstream_pulp_href: StrictStr,
|
|
3016
3148
|
nested_role: NestedRole,
|
|
3149
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3017
3150
|
_request_timeout: Union[
|
|
3018
3151
|
None,
|
|
3019
3152
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3035,6 +3168,8 @@ class UpstreamPulpsApi:
|
|
|
3035
3168
|
:type upstream_pulp_href: str
|
|
3036
3169
|
:param nested_role: (required)
|
|
3037
3170
|
:type nested_role: NestedRole
|
|
3171
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3172
|
+
:type x_task_diagnostics: List[str]
|
|
3038
3173
|
:param _request_timeout: timeout setting for this request. If one
|
|
3039
3174
|
number provided, it will be total request
|
|
3040
3175
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3060,6 +3195,7 @@ class UpstreamPulpsApi:
|
|
|
3060
3195
|
_param = self._remove_role_serialize(
|
|
3061
3196
|
upstream_pulp_href=upstream_pulp_href,
|
|
3062
3197
|
nested_role=nested_role,
|
|
3198
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3063
3199
|
_request_auth=_request_auth,
|
|
3064
3200
|
_content_type=_content_type,
|
|
3065
3201
|
_headers=_headers,
|
|
@@ -3085,6 +3221,7 @@ class UpstreamPulpsApi:
|
|
|
3085
3221
|
self,
|
|
3086
3222
|
upstream_pulp_href: StrictStr,
|
|
3087
3223
|
nested_role: NestedRole,
|
|
3224
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3088
3225
|
_request_timeout: Union[
|
|
3089
3226
|
None,
|
|
3090
3227
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3106,6 +3243,8 @@ class UpstreamPulpsApi:
|
|
|
3106
3243
|
:type upstream_pulp_href: str
|
|
3107
3244
|
:param nested_role: (required)
|
|
3108
3245
|
:type nested_role: NestedRole
|
|
3246
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3247
|
+
:type x_task_diagnostics: List[str]
|
|
3109
3248
|
:param _request_timeout: timeout setting for this request. If one
|
|
3110
3249
|
number provided, it will be total request
|
|
3111
3250
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3131,6 +3270,7 @@ class UpstreamPulpsApi:
|
|
|
3131
3270
|
_param = self._remove_role_serialize(
|
|
3132
3271
|
upstream_pulp_href=upstream_pulp_href,
|
|
3133
3272
|
nested_role=nested_role,
|
|
3273
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3134
3274
|
_request_auth=_request_auth,
|
|
3135
3275
|
_content_type=_content_type,
|
|
3136
3276
|
_headers=_headers,
|
|
@@ -3151,6 +3291,7 @@ class UpstreamPulpsApi:
|
|
|
3151
3291
|
self,
|
|
3152
3292
|
upstream_pulp_href,
|
|
3153
3293
|
nested_role,
|
|
3294
|
+
x_task_diagnostics,
|
|
3154
3295
|
_request_auth,
|
|
3155
3296
|
_content_type,
|
|
3156
3297
|
_headers,
|
|
@@ -3160,6 +3301,7 @@ class UpstreamPulpsApi:
|
|
|
3160
3301
|
_host = None
|
|
3161
3302
|
|
|
3162
3303
|
_collection_formats: Dict[str, str] = {
|
|
3304
|
+
'X-Task-Diagnostics': 'csv',
|
|
3163
3305
|
}
|
|
3164
3306
|
|
|
3165
3307
|
_path_params: Dict[str, str] = {}
|
|
@@ -3176,6 +3318,8 @@ class UpstreamPulpsApi:
|
|
|
3176
3318
|
_path_params['upstream_pulp_href'] = upstream_pulp_href
|
|
3177
3319
|
# process the query parameters
|
|
3178
3320
|
# process the header parameters
|
|
3321
|
+
if x_task_diagnostics is not None:
|
|
3322
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3179
3323
|
# process the form parameters
|
|
3180
3324
|
# process the body parameter
|
|
3181
3325
|
if nested_role is not None:
|
|
@@ -3234,6 +3378,7 @@ class UpstreamPulpsApi:
|
|
|
3234
3378
|
def replicate(
|
|
3235
3379
|
self,
|
|
3236
3380
|
upstream_pulp_href: StrictStr,
|
|
3381
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3237
3382
|
_request_timeout: Union[
|
|
3238
3383
|
None,
|
|
3239
3384
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3253,6 +3398,8 @@ class UpstreamPulpsApi:
|
|
|
3253
3398
|
|
|
3254
3399
|
:param upstream_pulp_href: (required)
|
|
3255
3400
|
:type upstream_pulp_href: str
|
|
3401
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3402
|
+
:type x_task_diagnostics: List[str]
|
|
3256
3403
|
:param _request_timeout: timeout setting for this request. If one
|
|
3257
3404
|
number provided, it will be total request
|
|
3258
3405
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3277,6 +3424,7 @@ class UpstreamPulpsApi:
|
|
|
3277
3424
|
|
|
3278
3425
|
_param = self._replicate_serialize(
|
|
3279
3426
|
upstream_pulp_href=upstream_pulp_href,
|
|
3427
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3280
3428
|
_request_auth=_request_auth,
|
|
3281
3429
|
_content_type=_content_type,
|
|
3282
3430
|
_headers=_headers,
|
|
@@ -3301,6 +3449,7 @@ class UpstreamPulpsApi:
|
|
|
3301
3449
|
def replicate_with_http_info(
|
|
3302
3450
|
self,
|
|
3303
3451
|
upstream_pulp_href: StrictStr,
|
|
3452
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3304
3453
|
_request_timeout: Union[
|
|
3305
3454
|
None,
|
|
3306
3455
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3320,6 +3469,8 @@ class UpstreamPulpsApi:
|
|
|
3320
3469
|
|
|
3321
3470
|
:param upstream_pulp_href: (required)
|
|
3322
3471
|
:type upstream_pulp_href: str
|
|
3472
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3473
|
+
:type x_task_diagnostics: List[str]
|
|
3323
3474
|
:param _request_timeout: timeout setting for this request. If one
|
|
3324
3475
|
number provided, it will be total request
|
|
3325
3476
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3344,6 +3495,7 @@ class UpstreamPulpsApi:
|
|
|
3344
3495
|
|
|
3345
3496
|
_param = self._replicate_serialize(
|
|
3346
3497
|
upstream_pulp_href=upstream_pulp_href,
|
|
3498
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3347
3499
|
_request_auth=_request_auth,
|
|
3348
3500
|
_content_type=_content_type,
|
|
3349
3501
|
_headers=_headers,
|
|
@@ -3368,6 +3520,7 @@ class UpstreamPulpsApi:
|
|
|
3368
3520
|
def replicate_without_preload_content(
|
|
3369
3521
|
self,
|
|
3370
3522
|
upstream_pulp_href: StrictStr,
|
|
3523
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3371
3524
|
_request_timeout: Union[
|
|
3372
3525
|
None,
|
|
3373
3526
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3387,6 +3540,8 @@ class UpstreamPulpsApi:
|
|
|
3387
3540
|
|
|
3388
3541
|
:param upstream_pulp_href: (required)
|
|
3389
3542
|
:type upstream_pulp_href: str
|
|
3543
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3544
|
+
:type x_task_diagnostics: List[str]
|
|
3390
3545
|
:param _request_timeout: timeout setting for this request. If one
|
|
3391
3546
|
number provided, it will be total request
|
|
3392
3547
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3411,6 +3566,7 @@ class UpstreamPulpsApi:
|
|
|
3411
3566
|
|
|
3412
3567
|
_param = self._replicate_serialize(
|
|
3413
3568
|
upstream_pulp_href=upstream_pulp_href,
|
|
3569
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3414
3570
|
_request_auth=_request_auth,
|
|
3415
3571
|
_content_type=_content_type,
|
|
3416
3572
|
_headers=_headers,
|
|
@@ -3430,6 +3586,7 @@ class UpstreamPulpsApi:
|
|
|
3430
3586
|
def _replicate_serialize(
|
|
3431
3587
|
self,
|
|
3432
3588
|
upstream_pulp_href,
|
|
3589
|
+
x_task_diagnostics,
|
|
3433
3590
|
_request_auth,
|
|
3434
3591
|
_content_type,
|
|
3435
3592
|
_headers,
|
|
@@ -3439,6 +3596,7 @@ class UpstreamPulpsApi:
|
|
|
3439
3596
|
_host = None
|
|
3440
3597
|
|
|
3441
3598
|
_collection_formats: Dict[str, str] = {
|
|
3599
|
+
'X-Task-Diagnostics': 'csv',
|
|
3442
3600
|
}
|
|
3443
3601
|
|
|
3444
3602
|
_path_params: Dict[str, str] = {}
|
|
@@ -3455,6 +3613,8 @@ class UpstreamPulpsApi:
|
|
|
3455
3613
|
_path_params['upstream_pulp_href'] = upstream_pulp_href
|
|
3456
3614
|
# process the query parameters
|
|
3457
3615
|
# process the header parameters
|
|
3616
|
+
if x_task_diagnostics is not None:
|
|
3617
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3458
3618
|
# process the form parameters
|
|
3459
3619
|
# process the body parameter
|
|
3460
3620
|
|
|
@@ -3497,6 +3657,7 @@ class UpstreamPulpsApi:
|
|
|
3497
3657
|
self,
|
|
3498
3658
|
upstream_pulp_href: StrictStr,
|
|
3499
3659
|
upstream_pulp: UpstreamPulp,
|
|
3660
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3500
3661
|
_request_timeout: Union[
|
|
3501
3662
|
None,
|
|
3502
3663
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3518,6 +3679,8 @@ class UpstreamPulpsApi:
|
|
|
3518
3679
|
:type upstream_pulp_href: str
|
|
3519
3680
|
:param upstream_pulp: (required)
|
|
3520
3681
|
:type upstream_pulp: UpstreamPulp
|
|
3682
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3683
|
+
:type x_task_diagnostics: List[str]
|
|
3521
3684
|
:param _request_timeout: timeout setting for this request. If one
|
|
3522
3685
|
number provided, it will be total request
|
|
3523
3686
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3543,6 +3706,7 @@ class UpstreamPulpsApi:
|
|
|
3543
3706
|
_param = self._update_serialize(
|
|
3544
3707
|
upstream_pulp_href=upstream_pulp_href,
|
|
3545
3708
|
upstream_pulp=upstream_pulp,
|
|
3709
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3546
3710
|
_request_auth=_request_auth,
|
|
3547
3711
|
_content_type=_content_type,
|
|
3548
3712
|
_headers=_headers,
|
|
@@ -3568,6 +3732,7 @@ class UpstreamPulpsApi:
|
|
|
3568
3732
|
self,
|
|
3569
3733
|
upstream_pulp_href: StrictStr,
|
|
3570
3734
|
upstream_pulp: UpstreamPulp,
|
|
3735
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3571
3736
|
_request_timeout: Union[
|
|
3572
3737
|
None,
|
|
3573
3738
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3589,6 +3754,8 @@ class UpstreamPulpsApi:
|
|
|
3589
3754
|
:type upstream_pulp_href: str
|
|
3590
3755
|
:param upstream_pulp: (required)
|
|
3591
3756
|
:type upstream_pulp: UpstreamPulp
|
|
3757
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3758
|
+
:type x_task_diagnostics: List[str]
|
|
3592
3759
|
:param _request_timeout: timeout setting for this request. If one
|
|
3593
3760
|
number provided, it will be total request
|
|
3594
3761
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3614,6 +3781,7 @@ class UpstreamPulpsApi:
|
|
|
3614
3781
|
_param = self._update_serialize(
|
|
3615
3782
|
upstream_pulp_href=upstream_pulp_href,
|
|
3616
3783
|
upstream_pulp=upstream_pulp,
|
|
3784
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3617
3785
|
_request_auth=_request_auth,
|
|
3618
3786
|
_content_type=_content_type,
|
|
3619
3787
|
_headers=_headers,
|
|
@@ -3639,6 +3807,7 @@ class UpstreamPulpsApi:
|
|
|
3639
3807
|
self,
|
|
3640
3808
|
upstream_pulp_href: StrictStr,
|
|
3641
3809
|
upstream_pulp: UpstreamPulp,
|
|
3810
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3642
3811
|
_request_timeout: Union[
|
|
3643
3812
|
None,
|
|
3644
3813
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3660,6 +3829,8 @@ class UpstreamPulpsApi:
|
|
|
3660
3829
|
:type upstream_pulp_href: str
|
|
3661
3830
|
:param upstream_pulp: (required)
|
|
3662
3831
|
:type upstream_pulp: UpstreamPulp
|
|
3832
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3833
|
+
:type x_task_diagnostics: List[str]
|
|
3663
3834
|
:param _request_timeout: timeout setting for this request. If one
|
|
3664
3835
|
number provided, it will be total request
|
|
3665
3836
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3685,6 +3856,7 @@ class UpstreamPulpsApi:
|
|
|
3685
3856
|
_param = self._update_serialize(
|
|
3686
3857
|
upstream_pulp_href=upstream_pulp_href,
|
|
3687
3858
|
upstream_pulp=upstream_pulp,
|
|
3859
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3688
3860
|
_request_auth=_request_auth,
|
|
3689
3861
|
_content_type=_content_type,
|
|
3690
3862
|
_headers=_headers,
|
|
@@ -3705,6 +3877,7 @@ class UpstreamPulpsApi:
|
|
|
3705
3877
|
self,
|
|
3706
3878
|
upstream_pulp_href,
|
|
3707
3879
|
upstream_pulp,
|
|
3880
|
+
x_task_diagnostics,
|
|
3708
3881
|
_request_auth,
|
|
3709
3882
|
_content_type,
|
|
3710
3883
|
_headers,
|
|
@@ -3714,6 +3887,7 @@ class UpstreamPulpsApi:
|
|
|
3714
3887
|
_host = None
|
|
3715
3888
|
|
|
3716
3889
|
_collection_formats: Dict[str, str] = {
|
|
3890
|
+
'X-Task-Diagnostics': 'csv',
|
|
3717
3891
|
}
|
|
3718
3892
|
|
|
3719
3893
|
_path_params: Dict[str, str] = {}
|
|
@@ -3730,6 +3904,8 @@ class UpstreamPulpsApi:
|
|
|
3730
3904
|
_path_params['upstream_pulp_href'] = upstream_pulp_href
|
|
3731
3905
|
# process the query parameters
|
|
3732
3906
|
# process the header parameters
|
|
3907
|
+
if x_task_diagnostics is not None:
|
|
3908
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3733
3909
|
# process the form parameters
|
|
3734
3910
|
# process the body parameter
|
|
3735
3911
|
if upstream_pulp is not None:
|