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
|
@@ -43,6 +43,7 @@ class DistributionsApi:
|
|
|
43
43
|
@validate_call
|
|
44
44
|
def list(
|
|
45
45
|
self,
|
|
46
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
46
47
|
base_path: Annotated[Optional[StrictStr], Field(description="Filter results where base_path matches value")] = None,
|
|
47
48
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
48
49
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
@@ -89,6 +90,8 @@ class DistributionsApi:
|
|
|
89
90
|
|
|
90
91
|
Provides base viewset for Distributions.
|
|
91
92
|
|
|
93
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
94
|
+
:type x_task_diagnostics: List[str]
|
|
92
95
|
:param base_path: Filter results where base_path matches value
|
|
93
96
|
:type base_path: str
|
|
94
97
|
:param base_path__contains: Filter results where base_path contains value
|
|
@@ -170,6 +173,7 @@ class DistributionsApi:
|
|
|
170
173
|
""" # noqa: E501
|
|
171
174
|
|
|
172
175
|
_param = self._list_serialize(
|
|
176
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
173
177
|
base_path=base_path,
|
|
174
178
|
base_path__contains=base_path__contains,
|
|
175
179
|
base_path__icontains=base_path__icontains,
|
|
@@ -222,6 +226,7 @@ class DistributionsApi:
|
|
|
222
226
|
@validate_call
|
|
223
227
|
def list_with_http_info(
|
|
224
228
|
self,
|
|
229
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
225
230
|
base_path: Annotated[Optional[StrictStr], Field(description="Filter results where base_path matches value")] = None,
|
|
226
231
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
227
232
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
@@ -268,6 +273,8 @@ class DistributionsApi:
|
|
|
268
273
|
|
|
269
274
|
Provides base viewset for Distributions.
|
|
270
275
|
|
|
276
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
277
|
+
:type x_task_diagnostics: List[str]
|
|
271
278
|
:param base_path: Filter results where base_path matches value
|
|
272
279
|
:type base_path: str
|
|
273
280
|
:param base_path__contains: Filter results where base_path contains value
|
|
@@ -349,6 +356,7 @@ class DistributionsApi:
|
|
|
349
356
|
""" # noqa: E501
|
|
350
357
|
|
|
351
358
|
_param = self._list_serialize(
|
|
359
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
352
360
|
base_path=base_path,
|
|
353
361
|
base_path__contains=base_path__contains,
|
|
354
362
|
base_path__icontains=base_path__icontains,
|
|
@@ -401,6 +409,7 @@ class DistributionsApi:
|
|
|
401
409
|
@validate_call
|
|
402
410
|
def list_without_preload_content(
|
|
403
411
|
self,
|
|
412
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
404
413
|
base_path: Annotated[Optional[StrictStr], Field(description="Filter results where base_path matches value")] = None,
|
|
405
414
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
406
415
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
@@ -447,6 +456,8 @@ class DistributionsApi:
|
|
|
447
456
|
|
|
448
457
|
Provides base viewset for Distributions.
|
|
449
458
|
|
|
459
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
460
|
+
:type x_task_diagnostics: List[str]
|
|
450
461
|
:param base_path: Filter results where base_path matches value
|
|
451
462
|
:type base_path: str
|
|
452
463
|
:param base_path__contains: Filter results where base_path contains value
|
|
@@ -528,6 +539,7 @@ class DistributionsApi:
|
|
|
528
539
|
""" # noqa: E501
|
|
529
540
|
|
|
530
541
|
_param = self._list_serialize(
|
|
542
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
531
543
|
base_path=base_path,
|
|
532
544
|
base_path__contains=base_path__contains,
|
|
533
545
|
base_path__icontains=base_path__icontains,
|
|
@@ -575,6 +587,7 @@ class DistributionsApi:
|
|
|
575
587
|
|
|
576
588
|
def _list_serialize(
|
|
577
589
|
self,
|
|
590
|
+
x_task_diagnostics,
|
|
578
591
|
base_path,
|
|
579
592
|
base_path__contains,
|
|
580
593
|
base_path__icontains,
|
|
@@ -613,6 +626,7 @@ class DistributionsApi:
|
|
|
613
626
|
_host = None
|
|
614
627
|
|
|
615
628
|
_collection_formats: Dict[str, str] = {
|
|
629
|
+
'X-Task-Diagnostics': 'csv',
|
|
616
630
|
'base_path__in': 'csv',
|
|
617
631
|
'name__in': 'csv',
|
|
618
632
|
'ordering': 'csv',
|
|
@@ -753,6 +767,8 @@ class DistributionsApi:
|
|
|
753
767
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
754
768
|
|
|
755
769
|
# process the header parameters
|
|
770
|
+
if x_task_diagnostics is not None:
|
|
771
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
756
772
|
# process the form parameters
|
|
757
773
|
# process the body parameter
|
|
758
774
|
|
|
@@ -44,6 +44,7 @@ class DistributionsArtifactsApi:
|
|
|
44
44
|
@validate_call
|
|
45
45
|
def list(
|
|
46
46
|
self,
|
|
47
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
47
48
|
base_path: Annotated[Optional[StrictStr], Field(description="Filter results where base_path matches value")] = None,
|
|
48
49
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
49
50
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
@@ -88,6 +89,8 @@ class DistributionsArtifactsApi:
|
|
|
88
89
|
|
|
89
90
|
ViewSet for ArtifactDistribution.
|
|
90
91
|
|
|
92
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
93
|
+
:type x_task_diagnostics: List[str]
|
|
91
94
|
:param base_path: Filter results where base_path matches value
|
|
92
95
|
:type base_path: str
|
|
93
96
|
:param base_path__contains: Filter results where base_path contains value
|
|
@@ -165,6 +168,7 @@ class DistributionsArtifactsApi:
|
|
|
165
168
|
""" # noqa: E501
|
|
166
169
|
|
|
167
170
|
_param = self._list_serialize(
|
|
171
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
168
172
|
base_path=base_path,
|
|
169
173
|
base_path__contains=base_path__contains,
|
|
170
174
|
base_path__icontains=base_path__icontains,
|
|
@@ -215,6 +219,7 @@ class DistributionsArtifactsApi:
|
|
|
215
219
|
@validate_call
|
|
216
220
|
def list_with_http_info(
|
|
217
221
|
self,
|
|
222
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
218
223
|
base_path: Annotated[Optional[StrictStr], Field(description="Filter results where base_path matches value")] = None,
|
|
219
224
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
220
225
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
@@ -259,6 +264,8 @@ class DistributionsArtifactsApi:
|
|
|
259
264
|
|
|
260
265
|
ViewSet for ArtifactDistribution.
|
|
261
266
|
|
|
267
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
268
|
+
:type x_task_diagnostics: List[str]
|
|
262
269
|
:param base_path: Filter results where base_path matches value
|
|
263
270
|
:type base_path: str
|
|
264
271
|
:param base_path__contains: Filter results where base_path contains value
|
|
@@ -336,6 +343,7 @@ class DistributionsArtifactsApi:
|
|
|
336
343
|
""" # noqa: E501
|
|
337
344
|
|
|
338
345
|
_param = self._list_serialize(
|
|
346
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
339
347
|
base_path=base_path,
|
|
340
348
|
base_path__contains=base_path__contains,
|
|
341
349
|
base_path__icontains=base_path__icontains,
|
|
@@ -386,6 +394,7 @@ class DistributionsArtifactsApi:
|
|
|
386
394
|
@validate_call
|
|
387
395
|
def list_without_preload_content(
|
|
388
396
|
self,
|
|
397
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
389
398
|
base_path: Annotated[Optional[StrictStr], Field(description="Filter results where base_path matches value")] = None,
|
|
390
399
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
391
400
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
@@ -430,6 +439,8 @@ class DistributionsArtifactsApi:
|
|
|
430
439
|
|
|
431
440
|
ViewSet for ArtifactDistribution.
|
|
432
441
|
|
|
442
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
443
|
+
:type x_task_diagnostics: List[str]
|
|
433
444
|
:param base_path: Filter results where base_path matches value
|
|
434
445
|
:type base_path: str
|
|
435
446
|
:param base_path__contains: Filter results where base_path contains value
|
|
@@ -507,6 +518,7 @@ class DistributionsArtifactsApi:
|
|
|
507
518
|
""" # noqa: E501
|
|
508
519
|
|
|
509
520
|
_param = self._list_serialize(
|
|
521
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
510
522
|
base_path=base_path,
|
|
511
523
|
base_path__contains=base_path__contains,
|
|
512
524
|
base_path__icontains=base_path__icontains,
|
|
@@ -552,6 +564,7 @@ class DistributionsArtifactsApi:
|
|
|
552
564
|
|
|
553
565
|
def _list_serialize(
|
|
554
566
|
self,
|
|
567
|
+
x_task_diagnostics,
|
|
555
568
|
base_path,
|
|
556
569
|
base_path__contains,
|
|
557
570
|
base_path__icontains,
|
|
@@ -588,6 +601,7 @@ class DistributionsArtifactsApi:
|
|
|
588
601
|
_host = None
|
|
589
602
|
|
|
590
603
|
_collection_formats: Dict[str, str] = {
|
|
604
|
+
'X-Task-Diagnostics': 'csv',
|
|
591
605
|
'base_path__in': 'csv',
|
|
592
606
|
'name__in': 'csv',
|
|
593
607
|
'ordering': 'csv',
|
|
@@ -719,6 +733,8 @@ class DistributionsArtifactsApi:
|
|
|
719
733
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
720
734
|
|
|
721
735
|
# process the header parameters
|
|
736
|
+
if x_task_diagnostics is not None:
|
|
737
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
722
738
|
# process the form parameters
|
|
723
739
|
# process the body parameter
|
|
724
740
|
|
|
@@ -760,6 +776,7 @@ class DistributionsArtifactsApi:
|
|
|
760
776
|
def read(
|
|
761
777
|
self,
|
|
762
778
|
artifact_distribution_href: StrictStr,
|
|
779
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
763
780
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
764
781
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
765
782
|
_request_timeout: Union[
|
|
@@ -781,6 +798,8 @@ class DistributionsArtifactsApi:
|
|
|
781
798
|
|
|
782
799
|
:param artifact_distribution_href: (required)
|
|
783
800
|
:type artifact_distribution_href: str
|
|
801
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
802
|
+
:type x_task_diagnostics: List[str]
|
|
784
803
|
:param fields: A list of fields to include in the response.
|
|
785
804
|
:type fields: List[str]
|
|
786
805
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -809,6 +828,7 @@ class DistributionsArtifactsApi:
|
|
|
809
828
|
|
|
810
829
|
_param = self._read_serialize(
|
|
811
830
|
artifact_distribution_href=artifact_distribution_href,
|
|
831
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
812
832
|
fields=fields,
|
|
813
833
|
exclude_fields=exclude_fields,
|
|
814
834
|
_request_auth=_request_auth,
|
|
@@ -835,6 +855,7 @@ class DistributionsArtifactsApi:
|
|
|
835
855
|
def read_with_http_info(
|
|
836
856
|
self,
|
|
837
857
|
artifact_distribution_href: StrictStr,
|
|
858
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
838
859
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
839
860
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
840
861
|
_request_timeout: Union[
|
|
@@ -856,6 +877,8 @@ class DistributionsArtifactsApi:
|
|
|
856
877
|
|
|
857
878
|
:param artifact_distribution_href: (required)
|
|
858
879
|
:type artifact_distribution_href: str
|
|
880
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
881
|
+
:type x_task_diagnostics: List[str]
|
|
859
882
|
:param fields: A list of fields to include in the response.
|
|
860
883
|
:type fields: List[str]
|
|
861
884
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -884,6 +907,7 @@ class DistributionsArtifactsApi:
|
|
|
884
907
|
|
|
885
908
|
_param = self._read_serialize(
|
|
886
909
|
artifact_distribution_href=artifact_distribution_href,
|
|
910
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
887
911
|
fields=fields,
|
|
888
912
|
exclude_fields=exclude_fields,
|
|
889
913
|
_request_auth=_request_auth,
|
|
@@ -910,6 +934,7 @@ class DistributionsArtifactsApi:
|
|
|
910
934
|
def read_without_preload_content(
|
|
911
935
|
self,
|
|
912
936
|
artifact_distribution_href: StrictStr,
|
|
937
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
913
938
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
914
939
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
915
940
|
_request_timeout: Union[
|
|
@@ -931,6 +956,8 @@ class DistributionsArtifactsApi:
|
|
|
931
956
|
|
|
932
957
|
:param artifact_distribution_href: (required)
|
|
933
958
|
:type artifact_distribution_href: str
|
|
959
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
960
|
+
:type x_task_diagnostics: List[str]
|
|
934
961
|
:param fields: A list of fields to include in the response.
|
|
935
962
|
:type fields: List[str]
|
|
936
963
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -959,6 +986,7 @@ class DistributionsArtifactsApi:
|
|
|
959
986
|
|
|
960
987
|
_param = self._read_serialize(
|
|
961
988
|
artifact_distribution_href=artifact_distribution_href,
|
|
989
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
962
990
|
fields=fields,
|
|
963
991
|
exclude_fields=exclude_fields,
|
|
964
992
|
_request_auth=_request_auth,
|
|
@@ -980,6 +1008,7 @@ class DistributionsArtifactsApi:
|
|
|
980
1008
|
def _read_serialize(
|
|
981
1009
|
self,
|
|
982
1010
|
artifact_distribution_href,
|
|
1011
|
+
x_task_diagnostics,
|
|
983
1012
|
fields,
|
|
984
1013
|
exclude_fields,
|
|
985
1014
|
_request_auth,
|
|
@@ -991,6 +1020,7 @@ class DistributionsArtifactsApi:
|
|
|
991
1020
|
_host = None
|
|
992
1021
|
|
|
993
1022
|
_collection_formats: Dict[str, str] = {
|
|
1023
|
+
'X-Task-Diagnostics': 'csv',
|
|
994
1024
|
'fields': 'multi',
|
|
995
1025
|
'exclude_fields': 'multi',
|
|
996
1026
|
}
|
|
@@ -1017,6 +1047,8 @@ class DistributionsArtifactsApi:
|
|
|
1017
1047
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1018
1048
|
|
|
1019
1049
|
# process the header parameters
|
|
1050
|
+
if x_task_diagnostics is not None:
|
|
1051
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1020
1052
|
# process the form parameters
|
|
1021
1053
|
# process the body parameter
|
|
1022
1054
|
|