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
|
@@ -48,6 +48,7 @@ class ExportersPulpApi:
|
|
|
48
48
|
def create(
|
|
49
49
|
self,
|
|
50
50
|
pulp_exporter: PulpExporter,
|
|
51
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
51
52
|
_request_timeout: Union[
|
|
52
53
|
None,
|
|
53
54
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -67,6 +68,8 @@ class ExportersPulpApi:
|
|
|
67
68
|
|
|
68
69
|
:param pulp_exporter: (required)
|
|
69
70
|
:type pulp_exporter: PulpExporter
|
|
71
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
72
|
+
:type x_task_diagnostics: List[str]
|
|
70
73
|
:param _request_timeout: timeout setting for this request. If one
|
|
71
74
|
number provided, it will be total request
|
|
72
75
|
timeout. It can also be a pair (tuple) of
|
|
@@ -91,6 +94,7 @@ class ExportersPulpApi:
|
|
|
91
94
|
|
|
92
95
|
_param = self._create_serialize(
|
|
93
96
|
pulp_exporter=pulp_exporter,
|
|
97
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
94
98
|
_request_auth=_request_auth,
|
|
95
99
|
_content_type=_content_type,
|
|
96
100
|
_headers=_headers,
|
|
@@ -115,6 +119,7 @@ class ExportersPulpApi:
|
|
|
115
119
|
def create_with_http_info(
|
|
116
120
|
self,
|
|
117
121
|
pulp_exporter: PulpExporter,
|
|
122
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
118
123
|
_request_timeout: Union[
|
|
119
124
|
None,
|
|
120
125
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -134,6 +139,8 @@ class ExportersPulpApi:
|
|
|
134
139
|
|
|
135
140
|
:param pulp_exporter: (required)
|
|
136
141
|
:type pulp_exporter: PulpExporter
|
|
142
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
143
|
+
:type x_task_diagnostics: List[str]
|
|
137
144
|
:param _request_timeout: timeout setting for this request. If one
|
|
138
145
|
number provided, it will be total request
|
|
139
146
|
timeout. It can also be a pair (tuple) of
|
|
@@ -158,6 +165,7 @@ class ExportersPulpApi:
|
|
|
158
165
|
|
|
159
166
|
_param = self._create_serialize(
|
|
160
167
|
pulp_exporter=pulp_exporter,
|
|
168
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
161
169
|
_request_auth=_request_auth,
|
|
162
170
|
_content_type=_content_type,
|
|
163
171
|
_headers=_headers,
|
|
@@ -182,6 +190,7 @@ class ExportersPulpApi:
|
|
|
182
190
|
def create_without_preload_content(
|
|
183
191
|
self,
|
|
184
192
|
pulp_exporter: PulpExporter,
|
|
193
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
185
194
|
_request_timeout: Union[
|
|
186
195
|
None,
|
|
187
196
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -201,6 +210,8 @@ class ExportersPulpApi:
|
|
|
201
210
|
|
|
202
211
|
:param pulp_exporter: (required)
|
|
203
212
|
:type pulp_exporter: PulpExporter
|
|
213
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
214
|
+
:type x_task_diagnostics: List[str]
|
|
204
215
|
:param _request_timeout: timeout setting for this request. If one
|
|
205
216
|
number provided, it will be total request
|
|
206
217
|
timeout. It can also be a pair (tuple) of
|
|
@@ -225,6 +236,7 @@ class ExportersPulpApi:
|
|
|
225
236
|
|
|
226
237
|
_param = self._create_serialize(
|
|
227
238
|
pulp_exporter=pulp_exporter,
|
|
239
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
228
240
|
_request_auth=_request_auth,
|
|
229
241
|
_content_type=_content_type,
|
|
230
242
|
_headers=_headers,
|
|
@@ -244,6 +256,7 @@ class ExportersPulpApi:
|
|
|
244
256
|
def _create_serialize(
|
|
245
257
|
self,
|
|
246
258
|
pulp_exporter,
|
|
259
|
+
x_task_diagnostics,
|
|
247
260
|
_request_auth,
|
|
248
261
|
_content_type,
|
|
249
262
|
_headers,
|
|
@@ -253,6 +266,7 @@ class ExportersPulpApi:
|
|
|
253
266
|
_host = None
|
|
254
267
|
|
|
255
268
|
_collection_formats: Dict[str, str] = {
|
|
269
|
+
'X-Task-Diagnostics': 'csv',
|
|
256
270
|
}
|
|
257
271
|
|
|
258
272
|
_path_params: Dict[str, str] = {}
|
|
@@ -267,6 +281,8 @@ class ExportersPulpApi:
|
|
|
267
281
|
# process the path parameters
|
|
268
282
|
# process the query parameters
|
|
269
283
|
# process the header parameters
|
|
284
|
+
if x_task_diagnostics is not None:
|
|
285
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
270
286
|
# process the form parameters
|
|
271
287
|
# process the body parameter
|
|
272
288
|
if pulp_exporter is not None:
|
|
@@ -325,6 +341,7 @@ class ExportersPulpApi:
|
|
|
325
341
|
def delete(
|
|
326
342
|
self,
|
|
327
343
|
pulp_exporter_href: StrictStr,
|
|
344
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
328
345
|
_request_timeout: Union[
|
|
329
346
|
None,
|
|
330
347
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -344,6 +361,8 @@ class ExportersPulpApi:
|
|
|
344
361
|
|
|
345
362
|
:param pulp_exporter_href: (required)
|
|
346
363
|
:type pulp_exporter_href: str
|
|
364
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
365
|
+
:type x_task_diagnostics: List[str]
|
|
347
366
|
:param _request_timeout: timeout setting for this request. If one
|
|
348
367
|
number provided, it will be total request
|
|
349
368
|
timeout. It can also be a pair (tuple) of
|
|
@@ -368,6 +387,7 @@ class ExportersPulpApi:
|
|
|
368
387
|
|
|
369
388
|
_param = self._delete_serialize(
|
|
370
389
|
pulp_exporter_href=pulp_exporter_href,
|
|
390
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
371
391
|
_request_auth=_request_auth,
|
|
372
392
|
_content_type=_content_type,
|
|
373
393
|
_headers=_headers,
|
|
@@ -392,6 +412,7 @@ class ExportersPulpApi:
|
|
|
392
412
|
def delete_with_http_info(
|
|
393
413
|
self,
|
|
394
414
|
pulp_exporter_href: StrictStr,
|
|
415
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
395
416
|
_request_timeout: Union[
|
|
396
417
|
None,
|
|
397
418
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -411,6 +432,8 @@ class ExportersPulpApi:
|
|
|
411
432
|
|
|
412
433
|
:param pulp_exporter_href: (required)
|
|
413
434
|
:type pulp_exporter_href: str
|
|
435
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
436
|
+
:type x_task_diagnostics: List[str]
|
|
414
437
|
:param _request_timeout: timeout setting for this request. If one
|
|
415
438
|
number provided, it will be total request
|
|
416
439
|
timeout. It can also be a pair (tuple) of
|
|
@@ -435,6 +458,7 @@ class ExportersPulpApi:
|
|
|
435
458
|
|
|
436
459
|
_param = self._delete_serialize(
|
|
437
460
|
pulp_exporter_href=pulp_exporter_href,
|
|
461
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
438
462
|
_request_auth=_request_auth,
|
|
439
463
|
_content_type=_content_type,
|
|
440
464
|
_headers=_headers,
|
|
@@ -459,6 +483,7 @@ class ExportersPulpApi:
|
|
|
459
483
|
def delete_without_preload_content(
|
|
460
484
|
self,
|
|
461
485
|
pulp_exporter_href: StrictStr,
|
|
486
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
462
487
|
_request_timeout: Union[
|
|
463
488
|
None,
|
|
464
489
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -478,6 +503,8 @@ class ExportersPulpApi:
|
|
|
478
503
|
|
|
479
504
|
:param pulp_exporter_href: (required)
|
|
480
505
|
:type pulp_exporter_href: str
|
|
506
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
507
|
+
:type x_task_diagnostics: List[str]
|
|
481
508
|
:param _request_timeout: timeout setting for this request. If one
|
|
482
509
|
number provided, it will be total request
|
|
483
510
|
timeout. It can also be a pair (tuple) of
|
|
@@ -502,6 +529,7 @@ class ExportersPulpApi:
|
|
|
502
529
|
|
|
503
530
|
_param = self._delete_serialize(
|
|
504
531
|
pulp_exporter_href=pulp_exporter_href,
|
|
532
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
505
533
|
_request_auth=_request_auth,
|
|
506
534
|
_content_type=_content_type,
|
|
507
535
|
_headers=_headers,
|
|
@@ -521,6 +549,7 @@ class ExportersPulpApi:
|
|
|
521
549
|
def _delete_serialize(
|
|
522
550
|
self,
|
|
523
551
|
pulp_exporter_href,
|
|
552
|
+
x_task_diagnostics,
|
|
524
553
|
_request_auth,
|
|
525
554
|
_content_type,
|
|
526
555
|
_headers,
|
|
@@ -530,6 +559,7 @@ class ExportersPulpApi:
|
|
|
530
559
|
_host = None
|
|
531
560
|
|
|
532
561
|
_collection_formats: Dict[str, str] = {
|
|
562
|
+
'X-Task-Diagnostics': 'csv',
|
|
533
563
|
}
|
|
534
564
|
|
|
535
565
|
_path_params: Dict[str, str] = {}
|
|
@@ -546,6 +576,8 @@ class ExportersPulpApi:
|
|
|
546
576
|
_path_params['pulp_exporter_href'] = pulp_exporter_href
|
|
547
577
|
# process the query parameters
|
|
548
578
|
# process the header parameters
|
|
579
|
+
if x_task_diagnostics is not None:
|
|
580
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
549
581
|
# process the form parameters
|
|
550
582
|
# process the body parameter
|
|
551
583
|
|
|
@@ -586,6 +618,7 @@ class ExportersPulpApi:
|
|
|
586
618
|
@validate_call
|
|
587
619
|
def list(
|
|
588
620
|
self,
|
|
621
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
589
622
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
590
623
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
591
624
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -621,6 +654,8 @@ class ExportersPulpApi:
|
|
|
621
654
|
|
|
622
655
|
ViewSet for viewing PulpExporters.
|
|
623
656
|
|
|
657
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
658
|
+
:type x_task_diagnostics: List[str]
|
|
624
659
|
:param limit: Number of results to return per page.
|
|
625
660
|
:type limit: int
|
|
626
661
|
:param name: Filter results where name matches value
|
|
@@ -680,6 +715,7 @@ class ExportersPulpApi:
|
|
|
680
715
|
""" # noqa: E501
|
|
681
716
|
|
|
682
717
|
_param = self._list_serialize(
|
|
718
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
683
719
|
limit=limit,
|
|
684
720
|
name=name,
|
|
685
721
|
name__contains=name__contains,
|
|
@@ -721,6 +757,7 @@ class ExportersPulpApi:
|
|
|
721
757
|
@validate_call
|
|
722
758
|
def list_with_http_info(
|
|
723
759
|
self,
|
|
760
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
724
761
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
725
762
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
726
763
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -756,6 +793,8 @@ class ExportersPulpApi:
|
|
|
756
793
|
|
|
757
794
|
ViewSet for viewing PulpExporters.
|
|
758
795
|
|
|
796
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
797
|
+
:type x_task_diagnostics: List[str]
|
|
759
798
|
:param limit: Number of results to return per page.
|
|
760
799
|
:type limit: int
|
|
761
800
|
:param name: Filter results where name matches value
|
|
@@ -815,6 +854,7 @@ class ExportersPulpApi:
|
|
|
815
854
|
""" # noqa: E501
|
|
816
855
|
|
|
817
856
|
_param = self._list_serialize(
|
|
857
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
818
858
|
limit=limit,
|
|
819
859
|
name=name,
|
|
820
860
|
name__contains=name__contains,
|
|
@@ -856,6 +896,7 @@ class ExportersPulpApi:
|
|
|
856
896
|
@validate_call
|
|
857
897
|
def list_without_preload_content(
|
|
858
898
|
self,
|
|
899
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
859
900
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
860
901
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
861
902
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -891,6 +932,8 @@ class ExportersPulpApi:
|
|
|
891
932
|
|
|
892
933
|
ViewSet for viewing PulpExporters.
|
|
893
934
|
|
|
935
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
936
|
+
:type x_task_diagnostics: List[str]
|
|
894
937
|
:param limit: Number of results to return per page.
|
|
895
938
|
:type limit: int
|
|
896
939
|
:param name: Filter results where name matches value
|
|
@@ -950,6 +993,7 @@ class ExportersPulpApi:
|
|
|
950
993
|
""" # noqa: E501
|
|
951
994
|
|
|
952
995
|
_param = self._list_serialize(
|
|
996
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
953
997
|
limit=limit,
|
|
954
998
|
name=name,
|
|
955
999
|
name__contains=name__contains,
|
|
@@ -986,6 +1030,7 @@ class ExportersPulpApi:
|
|
|
986
1030
|
|
|
987
1031
|
def _list_serialize(
|
|
988
1032
|
self,
|
|
1033
|
+
x_task_diagnostics,
|
|
989
1034
|
limit,
|
|
990
1035
|
name,
|
|
991
1036
|
name__contains,
|
|
@@ -1013,6 +1058,7 @@ class ExportersPulpApi:
|
|
|
1013
1058
|
_host = None
|
|
1014
1059
|
|
|
1015
1060
|
_collection_formats: Dict[str, str] = {
|
|
1061
|
+
'X-Task-Diagnostics': 'csv',
|
|
1016
1062
|
'name__in': 'csv',
|
|
1017
1063
|
'ordering': 'csv',
|
|
1018
1064
|
'prn__in': 'csv',
|
|
@@ -1106,6 +1152,8 @@ class ExportersPulpApi:
|
|
|
1106
1152
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1107
1153
|
|
|
1108
1154
|
# process the header parameters
|
|
1155
|
+
if x_task_diagnostics is not None:
|
|
1156
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1109
1157
|
# process the form parameters
|
|
1110
1158
|
# process the body parameter
|
|
1111
1159
|
|
|
@@ -1148,6 +1196,7 @@ class ExportersPulpApi:
|
|
|
1148
1196
|
self,
|
|
1149
1197
|
pulp_exporter_href: StrictStr,
|
|
1150
1198
|
patched_pulp_exporter: PatchedPulpExporter,
|
|
1199
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1151
1200
|
_request_timeout: Union[
|
|
1152
1201
|
None,
|
|
1153
1202
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1169,6 +1218,8 @@ class ExportersPulpApi:
|
|
|
1169
1218
|
:type pulp_exporter_href: str
|
|
1170
1219
|
:param patched_pulp_exporter: (required)
|
|
1171
1220
|
:type patched_pulp_exporter: PatchedPulpExporter
|
|
1221
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1222
|
+
:type x_task_diagnostics: List[str]
|
|
1172
1223
|
:param _request_timeout: timeout setting for this request. If one
|
|
1173
1224
|
number provided, it will be total request
|
|
1174
1225
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1194,6 +1245,7 @@ class ExportersPulpApi:
|
|
|
1194
1245
|
_param = self._partial_update_serialize(
|
|
1195
1246
|
pulp_exporter_href=pulp_exporter_href,
|
|
1196
1247
|
patched_pulp_exporter=patched_pulp_exporter,
|
|
1248
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1197
1249
|
_request_auth=_request_auth,
|
|
1198
1250
|
_content_type=_content_type,
|
|
1199
1251
|
_headers=_headers,
|
|
@@ -1219,6 +1271,7 @@ class ExportersPulpApi:
|
|
|
1219
1271
|
self,
|
|
1220
1272
|
pulp_exporter_href: StrictStr,
|
|
1221
1273
|
patched_pulp_exporter: PatchedPulpExporter,
|
|
1274
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1222
1275
|
_request_timeout: Union[
|
|
1223
1276
|
None,
|
|
1224
1277
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1240,6 +1293,8 @@ class ExportersPulpApi:
|
|
|
1240
1293
|
:type pulp_exporter_href: str
|
|
1241
1294
|
:param patched_pulp_exporter: (required)
|
|
1242
1295
|
:type patched_pulp_exporter: PatchedPulpExporter
|
|
1296
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1297
|
+
:type x_task_diagnostics: List[str]
|
|
1243
1298
|
:param _request_timeout: timeout setting for this request. If one
|
|
1244
1299
|
number provided, it will be total request
|
|
1245
1300
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1265,6 +1320,7 @@ class ExportersPulpApi:
|
|
|
1265
1320
|
_param = self._partial_update_serialize(
|
|
1266
1321
|
pulp_exporter_href=pulp_exporter_href,
|
|
1267
1322
|
patched_pulp_exporter=patched_pulp_exporter,
|
|
1323
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1268
1324
|
_request_auth=_request_auth,
|
|
1269
1325
|
_content_type=_content_type,
|
|
1270
1326
|
_headers=_headers,
|
|
@@ -1290,6 +1346,7 @@ class ExportersPulpApi:
|
|
|
1290
1346
|
self,
|
|
1291
1347
|
pulp_exporter_href: StrictStr,
|
|
1292
1348
|
patched_pulp_exporter: PatchedPulpExporter,
|
|
1349
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1293
1350
|
_request_timeout: Union[
|
|
1294
1351
|
None,
|
|
1295
1352
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1311,6 +1368,8 @@ class ExportersPulpApi:
|
|
|
1311
1368
|
:type pulp_exporter_href: str
|
|
1312
1369
|
:param patched_pulp_exporter: (required)
|
|
1313
1370
|
:type patched_pulp_exporter: PatchedPulpExporter
|
|
1371
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1372
|
+
:type x_task_diagnostics: List[str]
|
|
1314
1373
|
:param _request_timeout: timeout setting for this request. If one
|
|
1315
1374
|
number provided, it will be total request
|
|
1316
1375
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1336,6 +1395,7 @@ class ExportersPulpApi:
|
|
|
1336
1395
|
_param = self._partial_update_serialize(
|
|
1337
1396
|
pulp_exporter_href=pulp_exporter_href,
|
|
1338
1397
|
patched_pulp_exporter=patched_pulp_exporter,
|
|
1398
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1339
1399
|
_request_auth=_request_auth,
|
|
1340
1400
|
_content_type=_content_type,
|
|
1341
1401
|
_headers=_headers,
|
|
@@ -1356,6 +1416,7 @@ class ExportersPulpApi:
|
|
|
1356
1416
|
self,
|
|
1357
1417
|
pulp_exporter_href,
|
|
1358
1418
|
patched_pulp_exporter,
|
|
1419
|
+
x_task_diagnostics,
|
|
1359
1420
|
_request_auth,
|
|
1360
1421
|
_content_type,
|
|
1361
1422
|
_headers,
|
|
@@ -1365,6 +1426,7 @@ class ExportersPulpApi:
|
|
|
1365
1426
|
_host = None
|
|
1366
1427
|
|
|
1367
1428
|
_collection_formats: Dict[str, str] = {
|
|
1429
|
+
'X-Task-Diagnostics': 'csv',
|
|
1368
1430
|
}
|
|
1369
1431
|
|
|
1370
1432
|
_path_params: Dict[str, str] = {}
|
|
@@ -1381,6 +1443,8 @@ class ExportersPulpApi:
|
|
|
1381
1443
|
_path_params['pulp_exporter_href'] = pulp_exporter_href
|
|
1382
1444
|
# process the query parameters
|
|
1383
1445
|
# process the header parameters
|
|
1446
|
+
if x_task_diagnostics is not None:
|
|
1447
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1384
1448
|
# process the form parameters
|
|
1385
1449
|
# process the body parameter
|
|
1386
1450
|
if patched_pulp_exporter is not None:
|
|
@@ -1439,6 +1503,7 @@ class ExportersPulpApi:
|
|
|
1439
1503
|
def read(
|
|
1440
1504
|
self,
|
|
1441
1505
|
pulp_exporter_href: StrictStr,
|
|
1506
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1442
1507
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1443
1508
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1444
1509
|
_request_timeout: Union[
|
|
@@ -1460,6 +1525,8 @@ class ExportersPulpApi:
|
|
|
1460
1525
|
|
|
1461
1526
|
:param pulp_exporter_href: (required)
|
|
1462
1527
|
:type pulp_exporter_href: str
|
|
1528
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1529
|
+
:type x_task_diagnostics: List[str]
|
|
1463
1530
|
:param fields: A list of fields to include in the response.
|
|
1464
1531
|
:type fields: List[str]
|
|
1465
1532
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1488,6 +1555,7 @@ class ExportersPulpApi:
|
|
|
1488
1555
|
|
|
1489
1556
|
_param = self._read_serialize(
|
|
1490
1557
|
pulp_exporter_href=pulp_exporter_href,
|
|
1558
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1491
1559
|
fields=fields,
|
|
1492
1560
|
exclude_fields=exclude_fields,
|
|
1493
1561
|
_request_auth=_request_auth,
|
|
@@ -1514,6 +1582,7 @@ class ExportersPulpApi:
|
|
|
1514
1582
|
def read_with_http_info(
|
|
1515
1583
|
self,
|
|
1516
1584
|
pulp_exporter_href: StrictStr,
|
|
1585
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1517
1586
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1518
1587
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1519
1588
|
_request_timeout: Union[
|
|
@@ -1535,6 +1604,8 @@ class ExportersPulpApi:
|
|
|
1535
1604
|
|
|
1536
1605
|
:param pulp_exporter_href: (required)
|
|
1537
1606
|
:type pulp_exporter_href: str
|
|
1607
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1608
|
+
:type x_task_diagnostics: List[str]
|
|
1538
1609
|
:param fields: A list of fields to include in the response.
|
|
1539
1610
|
:type fields: List[str]
|
|
1540
1611
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1563,6 +1634,7 @@ class ExportersPulpApi:
|
|
|
1563
1634
|
|
|
1564
1635
|
_param = self._read_serialize(
|
|
1565
1636
|
pulp_exporter_href=pulp_exporter_href,
|
|
1637
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1566
1638
|
fields=fields,
|
|
1567
1639
|
exclude_fields=exclude_fields,
|
|
1568
1640
|
_request_auth=_request_auth,
|
|
@@ -1589,6 +1661,7 @@ class ExportersPulpApi:
|
|
|
1589
1661
|
def read_without_preload_content(
|
|
1590
1662
|
self,
|
|
1591
1663
|
pulp_exporter_href: StrictStr,
|
|
1664
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1592
1665
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1593
1666
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1594
1667
|
_request_timeout: Union[
|
|
@@ -1610,6 +1683,8 @@ class ExportersPulpApi:
|
|
|
1610
1683
|
|
|
1611
1684
|
:param pulp_exporter_href: (required)
|
|
1612
1685
|
:type pulp_exporter_href: str
|
|
1686
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1687
|
+
:type x_task_diagnostics: List[str]
|
|
1613
1688
|
:param fields: A list of fields to include in the response.
|
|
1614
1689
|
:type fields: List[str]
|
|
1615
1690
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1638,6 +1713,7 @@ class ExportersPulpApi:
|
|
|
1638
1713
|
|
|
1639
1714
|
_param = self._read_serialize(
|
|
1640
1715
|
pulp_exporter_href=pulp_exporter_href,
|
|
1716
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1641
1717
|
fields=fields,
|
|
1642
1718
|
exclude_fields=exclude_fields,
|
|
1643
1719
|
_request_auth=_request_auth,
|
|
@@ -1659,6 +1735,7 @@ class ExportersPulpApi:
|
|
|
1659
1735
|
def _read_serialize(
|
|
1660
1736
|
self,
|
|
1661
1737
|
pulp_exporter_href,
|
|
1738
|
+
x_task_diagnostics,
|
|
1662
1739
|
fields,
|
|
1663
1740
|
exclude_fields,
|
|
1664
1741
|
_request_auth,
|
|
@@ -1670,6 +1747,7 @@ class ExportersPulpApi:
|
|
|
1670
1747
|
_host = None
|
|
1671
1748
|
|
|
1672
1749
|
_collection_formats: Dict[str, str] = {
|
|
1750
|
+
'X-Task-Diagnostics': 'csv',
|
|
1673
1751
|
'fields': 'multi',
|
|
1674
1752
|
'exclude_fields': 'multi',
|
|
1675
1753
|
}
|
|
@@ -1696,6 +1774,8 @@ class ExportersPulpApi:
|
|
|
1696
1774
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1697
1775
|
|
|
1698
1776
|
# process the header parameters
|
|
1777
|
+
if x_task_diagnostics is not None:
|
|
1778
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1699
1779
|
# process the form parameters
|
|
1700
1780
|
# process the body parameter
|
|
1701
1781
|
|
|
@@ -1738,6 +1818,7 @@ class ExportersPulpApi:
|
|
|
1738
1818
|
self,
|
|
1739
1819
|
pulp_exporter_href: StrictStr,
|
|
1740
1820
|
pulp_exporter: PulpExporter,
|
|
1821
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1741
1822
|
_request_timeout: Union[
|
|
1742
1823
|
None,
|
|
1743
1824
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1759,6 +1840,8 @@ class ExportersPulpApi:
|
|
|
1759
1840
|
:type pulp_exporter_href: str
|
|
1760
1841
|
:param pulp_exporter: (required)
|
|
1761
1842
|
:type pulp_exporter: PulpExporter
|
|
1843
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1844
|
+
:type x_task_diagnostics: List[str]
|
|
1762
1845
|
:param _request_timeout: timeout setting for this request. If one
|
|
1763
1846
|
number provided, it will be total request
|
|
1764
1847
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1784,6 +1867,7 @@ class ExportersPulpApi:
|
|
|
1784
1867
|
_param = self._update_serialize(
|
|
1785
1868
|
pulp_exporter_href=pulp_exporter_href,
|
|
1786
1869
|
pulp_exporter=pulp_exporter,
|
|
1870
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1787
1871
|
_request_auth=_request_auth,
|
|
1788
1872
|
_content_type=_content_type,
|
|
1789
1873
|
_headers=_headers,
|
|
@@ -1809,6 +1893,7 @@ class ExportersPulpApi:
|
|
|
1809
1893
|
self,
|
|
1810
1894
|
pulp_exporter_href: StrictStr,
|
|
1811
1895
|
pulp_exporter: PulpExporter,
|
|
1896
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1812
1897
|
_request_timeout: Union[
|
|
1813
1898
|
None,
|
|
1814
1899
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1830,6 +1915,8 @@ class ExportersPulpApi:
|
|
|
1830
1915
|
:type pulp_exporter_href: str
|
|
1831
1916
|
:param pulp_exporter: (required)
|
|
1832
1917
|
:type pulp_exporter: PulpExporter
|
|
1918
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1919
|
+
:type x_task_diagnostics: List[str]
|
|
1833
1920
|
:param _request_timeout: timeout setting for this request. If one
|
|
1834
1921
|
number provided, it will be total request
|
|
1835
1922
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1855,6 +1942,7 @@ class ExportersPulpApi:
|
|
|
1855
1942
|
_param = self._update_serialize(
|
|
1856
1943
|
pulp_exporter_href=pulp_exporter_href,
|
|
1857
1944
|
pulp_exporter=pulp_exporter,
|
|
1945
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1858
1946
|
_request_auth=_request_auth,
|
|
1859
1947
|
_content_type=_content_type,
|
|
1860
1948
|
_headers=_headers,
|
|
@@ -1880,6 +1968,7 @@ class ExportersPulpApi:
|
|
|
1880
1968
|
self,
|
|
1881
1969
|
pulp_exporter_href: StrictStr,
|
|
1882
1970
|
pulp_exporter: PulpExporter,
|
|
1971
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1883
1972
|
_request_timeout: Union[
|
|
1884
1973
|
None,
|
|
1885
1974
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1901,6 +1990,8 @@ class ExportersPulpApi:
|
|
|
1901
1990
|
:type pulp_exporter_href: str
|
|
1902
1991
|
:param pulp_exporter: (required)
|
|
1903
1992
|
:type pulp_exporter: PulpExporter
|
|
1993
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1994
|
+
:type x_task_diagnostics: List[str]
|
|
1904
1995
|
:param _request_timeout: timeout setting for this request. If one
|
|
1905
1996
|
number provided, it will be total request
|
|
1906
1997
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1926,6 +2017,7 @@ class ExportersPulpApi:
|
|
|
1926
2017
|
_param = self._update_serialize(
|
|
1927
2018
|
pulp_exporter_href=pulp_exporter_href,
|
|
1928
2019
|
pulp_exporter=pulp_exporter,
|
|
2020
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1929
2021
|
_request_auth=_request_auth,
|
|
1930
2022
|
_content_type=_content_type,
|
|
1931
2023
|
_headers=_headers,
|
|
@@ -1946,6 +2038,7 @@ class ExportersPulpApi:
|
|
|
1946
2038
|
self,
|
|
1947
2039
|
pulp_exporter_href,
|
|
1948
2040
|
pulp_exporter,
|
|
2041
|
+
x_task_diagnostics,
|
|
1949
2042
|
_request_auth,
|
|
1950
2043
|
_content_type,
|
|
1951
2044
|
_headers,
|
|
@@ -1955,6 +2048,7 @@ class ExportersPulpApi:
|
|
|
1955
2048
|
_host = None
|
|
1956
2049
|
|
|
1957
2050
|
_collection_formats: Dict[str, str] = {
|
|
2051
|
+
'X-Task-Diagnostics': 'csv',
|
|
1958
2052
|
}
|
|
1959
2053
|
|
|
1960
2054
|
_path_params: Dict[str, str] = {}
|
|
@@ -1971,6 +2065,8 @@ class ExportersPulpApi:
|
|
|
1971
2065
|
_path_params['pulp_exporter_href'] = pulp_exporter_href
|
|
1972
2066
|
# process the query parameters
|
|
1973
2067
|
# process the header parameters
|
|
2068
|
+
if x_task_diagnostics is not None:
|
|
2069
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1974
2070
|
# process the form parameters
|
|
1975
2071
|
# process the body parameter
|
|
1976
2072
|
if pulp_exporter is not None:
|