pulpcore-client 3.81.0__py3-none-any.whl → 3.82.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulpcore-client might be problematic. Click here for more details.

Files changed (64) hide show
  1. pulpcore/client/pulpcore/__init__.py +1 -1
  2. pulpcore/client/pulpcore/api/access_policies_api.py +80 -0
  3. pulpcore/client/pulpcore/api/artifacts_api.py +64 -0
  4. pulpcore/client/pulpcore/api/content_api.py +16 -0
  5. pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py +80 -0
  6. pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py +64 -0
  7. pulpcore/client/pulpcore/api/content_openpgp_signature_api.py +64 -0
  8. pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py +64 -0
  9. pulpcore/client/pulpcore/api/content_openpgp_userid_api.py +64 -0
  10. pulpcore/client/pulpcore/api/contentguards_api.py +16 -0
  11. pulpcore/client/pulpcore/api/contentguards_composite_api.py +160 -0
  12. pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py +160 -0
  13. pulpcore/client/pulpcore/api/contentguards_header_api.py +160 -0
  14. pulpcore/client/pulpcore/api/contentguards_rbac_api.py +160 -0
  15. pulpcore/client/pulpcore/api/distributions_api.py +16 -0
  16. pulpcore/client/pulpcore/api/distributions_artifacts_api.py +32 -0
  17. pulpcore/client/pulpcore/api/distributions_openpgp_api.py +128 -0
  18. pulpcore/client/pulpcore/api/domains_api.py +144 -0
  19. pulpcore/client/pulpcore/api/exporters_filesystem_api.py +96 -0
  20. pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py +64 -0
  21. pulpcore/client/pulpcore/api/exporters_pulp_api.py +96 -0
  22. pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py +64 -0
  23. pulpcore/client/pulpcore/api/groups_api.py +160 -0
  24. pulpcore/client/pulpcore/api/groups_roles_api.py +64 -0
  25. pulpcore/client/pulpcore/api/groups_users_api.py +48 -0
  26. pulpcore/client/pulpcore/api/importers_pulp_api.py +96 -0
  27. pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py +19 -0
  28. pulpcore/client/pulpcore/api/importers_pulp_imports_api.py +64 -0
  29. pulpcore/client/pulpcore/api/livez_api.py +55 -0
  30. pulpcore/client/pulpcore/api/login_api.py +87 -0
  31. pulpcore/client/pulpcore/api/orphans_api.py +19 -0
  32. pulpcore/client/pulpcore/api/orphans_cleanup_api.py +19 -0
  33. pulpcore/client/pulpcore/api/publications_api.py +16 -0
  34. pulpcore/client/pulpcore/api/remotes_api.py +16 -0
  35. pulpcore/client/pulpcore/api/repair_api.py +19 -0
  36. pulpcore/client/pulpcore/api/repositories_api.py +16 -0
  37. pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py +208 -0
  38. pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py +19 -0
  39. pulpcore/client/pulpcore/api/repository_versions_api.py +16 -0
  40. pulpcore/client/pulpcore/api/roles_api.py +96 -0
  41. pulpcore/client/pulpcore/api/signing_services_api.py +32 -0
  42. pulpcore/client/pulpcore/api/status_api.py +55 -0
  43. pulpcore/client/pulpcore/api/task_groups_api.py +48 -0
  44. pulpcore/client/pulpcore/api/task_schedules_api.py +96 -0
  45. pulpcore/client/pulpcore/api/tasks_api.py +166 -6
  46. pulpcore/client/pulpcore/api/uploads_api.py +160 -0
  47. pulpcore/client/pulpcore/api/upstream_pulps_api.py +176 -0
  48. pulpcore/client/pulpcore/api/users_api.py +96 -0
  49. pulpcore/client/pulpcore/api/users_roles_api.py +64 -0
  50. pulpcore/client/pulpcore/api/workers_api.py +32 -0
  51. pulpcore/client/pulpcore/api_client.py +1 -1
  52. pulpcore/client/pulpcore/configuration.py +1 -1
  53. pulpcore/client/pulpcore/models/artifact_distribution_response.py +16 -16
  54. pulpcore/client/pulpcore/models/composite_content_guard.py +1 -1
  55. pulpcore/client/pulpcore/models/composite_content_guard_response.py +1 -1
  56. pulpcore/client/pulpcore/models/content_guard_response.py +1 -1
  57. pulpcore/client/pulpcore/models/patched_composite_content_guard.py +1 -1
  58. pulpcore/client/pulpcore/models/patched_rbac_content_guard.py +1 -1
  59. pulpcore/client/pulpcore/models/rbac_content_guard.py +1 -1
  60. pulpcore/client/pulpcore/models/rbac_content_guard_response.py +1 -1
  61. {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/METADATA +1 -1
  62. {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/RECORD +64 -64
  63. {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/WHEEL +0 -0
  64. {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/top_level.txt +0 -0
@@ -48,6 +48,7 @@ class ContentOpenpgpSignatureApi:
48
48
  @validate_call
49
49
  def list(
50
50
  self,
51
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
51
52
  issuer: Annotated[Optional[StrictStr], Field(description="Filter results where issuer matches value")] = None,
52
53
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
53
54
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
@@ -80,6 +81,8 @@ class ContentOpenpgpSignatureApi:
80
81
 
81
82
  Content viewset that supports only GET by default.
82
83
 
84
+ :param x_task_diagnostics: List of profilers to use on tasks.
85
+ :type x_task_diagnostics: List[str]
83
86
  :param issuer: Filter results where issuer matches value
84
87
  :type issuer: str
85
88
  :param limit: Number of results to return per page.
@@ -133,6 +136,7 @@ class ContentOpenpgpSignatureApi:
133
136
  """ # noqa: E501
134
137
 
135
138
  _param = self._list_serialize(
139
+ x_task_diagnostics=x_task_diagnostics,
136
140
  issuer=issuer,
137
141
  limit=limit,
138
142
  offset=offset,
@@ -171,6 +175,7 @@ class ContentOpenpgpSignatureApi:
171
175
  @validate_call
172
176
  def list_with_http_info(
173
177
  self,
178
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
174
179
  issuer: Annotated[Optional[StrictStr], Field(description="Filter results where issuer matches value")] = None,
175
180
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
176
181
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
@@ -203,6 +208,8 @@ class ContentOpenpgpSignatureApi:
203
208
 
204
209
  Content viewset that supports only GET by default.
205
210
 
211
+ :param x_task_diagnostics: List of profilers to use on tasks.
212
+ :type x_task_diagnostics: List[str]
206
213
  :param issuer: Filter results where issuer matches value
207
214
  :type issuer: str
208
215
  :param limit: Number of results to return per page.
@@ -256,6 +263,7 @@ class ContentOpenpgpSignatureApi:
256
263
  """ # noqa: E501
257
264
 
258
265
  _param = self._list_serialize(
266
+ x_task_diagnostics=x_task_diagnostics,
259
267
  issuer=issuer,
260
268
  limit=limit,
261
269
  offset=offset,
@@ -294,6 +302,7 @@ class ContentOpenpgpSignatureApi:
294
302
  @validate_call
295
303
  def list_without_preload_content(
296
304
  self,
305
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
297
306
  issuer: Annotated[Optional[StrictStr], Field(description="Filter results where issuer matches value")] = None,
298
307
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
299
308
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
@@ -326,6 +335,8 @@ class ContentOpenpgpSignatureApi:
326
335
 
327
336
  Content viewset that supports only GET by default.
328
337
 
338
+ :param x_task_diagnostics: List of profilers to use on tasks.
339
+ :type x_task_diagnostics: List[str]
329
340
  :param issuer: Filter results where issuer matches value
330
341
  :type issuer: str
331
342
  :param limit: Number of results to return per page.
@@ -379,6 +390,7 @@ class ContentOpenpgpSignatureApi:
379
390
  """ # noqa: E501
380
391
 
381
392
  _param = self._list_serialize(
393
+ x_task_diagnostics=x_task_diagnostics,
382
394
  issuer=issuer,
383
395
  limit=limit,
384
396
  offset=offset,
@@ -412,6 +424,7 @@ class ContentOpenpgpSignatureApi:
412
424
 
413
425
  def _list_serialize(
414
426
  self,
427
+ x_task_diagnostics,
415
428
  issuer,
416
429
  limit,
417
430
  offset,
@@ -436,6 +449,7 @@ class ContentOpenpgpSignatureApi:
436
449
  _host = None
437
450
 
438
451
  _collection_formats: Dict[str, str] = {
452
+ 'X-Task-Diagnostics': 'csv',
439
453
  'ordering': 'csv',
440
454
  'prn__in': 'csv',
441
455
  'pulp_href__in': 'csv',
@@ -516,6 +530,8 @@ class ContentOpenpgpSignatureApi:
516
530
  _query_params.append(('exclude_fields', exclude_fields))
517
531
 
518
532
  # process the header parameters
533
+ if x_task_diagnostics is not None:
534
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
519
535
  # process the form parameters
520
536
  # process the body parameter
521
537
 
@@ -557,6 +573,7 @@ class ContentOpenpgpSignatureApi:
557
573
  def read(
558
574
  self,
559
575
  open_p_g_p_signature_href: StrictStr,
576
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
560
577
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
561
578
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
562
579
  _request_timeout: Union[
@@ -578,6 +595,8 @@ class ContentOpenpgpSignatureApi:
578
595
 
579
596
  :param open_p_g_p_signature_href: (required)
580
597
  :type open_p_g_p_signature_href: str
598
+ :param x_task_diagnostics: List of profilers to use on tasks.
599
+ :type x_task_diagnostics: List[str]
581
600
  :param fields: A list of fields to include in the response.
582
601
  :type fields: List[str]
583
602
  :param exclude_fields: A list of fields to exclude from the response.
@@ -606,6 +625,7 @@ class ContentOpenpgpSignatureApi:
606
625
 
607
626
  _param = self._read_serialize(
608
627
  open_p_g_p_signature_href=open_p_g_p_signature_href,
628
+ x_task_diagnostics=x_task_diagnostics,
609
629
  fields=fields,
610
630
  exclude_fields=exclude_fields,
611
631
  _request_auth=_request_auth,
@@ -632,6 +652,7 @@ class ContentOpenpgpSignatureApi:
632
652
  def read_with_http_info(
633
653
  self,
634
654
  open_p_g_p_signature_href: StrictStr,
655
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
635
656
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
636
657
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
637
658
  _request_timeout: Union[
@@ -653,6 +674,8 @@ class ContentOpenpgpSignatureApi:
653
674
 
654
675
  :param open_p_g_p_signature_href: (required)
655
676
  :type open_p_g_p_signature_href: str
677
+ :param x_task_diagnostics: List of profilers to use on tasks.
678
+ :type x_task_diagnostics: List[str]
656
679
  :param fields: A list of fields to include in the response.
657
680
  :type fields: List[str]
658
681
  :param exclude_fields: A list of fields to exclude from the response.
@@ -681,6 +704,7 @@ class ContentOpenpgpSignatureApi:
681
704
 
682
705
  _param = self._read_serialize(
683
706
  open_p_g_p_signature_href=open_p_g_p_signature_href,
707
+ x_task_diagnostics=x_task_diagnostics,
684
708
  fields=fields,
685
709
  exclude_fields=exclude_fields,
686
710
  _request_auth=_request_auth,
@@ -707,6 +731,7 @@ class ContentOpenpgpSignatureApi:
707
731
  def read_without_preload_content(
708
732
  self,
709
733
  open_p_g_p_signature_href: StrictStr,
734
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
710
735
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
711
736
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
712
737
  _request_timeout: Union[
@@ -728,6 +753,8 @@ class ContentOpenpgpSignatureApi:
728
753
 
729
754
  :param open_p_g_p_signature_href: (required)
730
755
  :type open_p_g_p_signature_href: str
756
+ :param x_task_diagnostics: List of profilers to use on tasks.
757
+ :type x_task_diagnostics: List[str]
731
758
  :param fields: A list of fields to include in the response.
732
759
  :type fields: List[str]
733
760
  :param exclude_fields: A list of fields to exclude from the response.
@@ -756,6 +783,7 @@ class ContentOpenpgpSignatureApi:
756
783
 
757
784
  _param = self._read_serialize(
758
785
  open_p_g_p_signature_href=open_p_g_p_signature_href,
786
+ x_task_diagnostics=x_task_diagnostics,
759
787
  fields=fields,
760
788
  exclude_fields=exclude_fields,
761
789
  _request_auth=_request_auth,
@@ -777,6 +805,7 @@ class ContentOpenpgpSignatureApi:
777
805
  def _read_serialize(
778
806
  self,
779
807
  open_p_g_p_signature_href,
808
+ x_task_diagnostics,
780
809
  fields,
781
810
  exclude_fields,
782
811
  _request_auth,
@@ -788,6 +817,7 @@ class ContentOpenpgpSignatureApi:
788
817
  _host = None
789
818
 
790
819
  _collection_formats: Dict[str, str] = {
820
+ 'X-Task-Diagnostics': 'csv',
791
821
  'fields': 'multi',
792
822
  'exclude_fields': 'multi',
793
823
  }
@@ -814,6 +844,8 @@ class ContentOpenpgpSignatureApi:
814
844
  _query_params.append(('exclude_fields', exclude_fields))
815
845
 
816
846
  # process the header parameters
847
+ if x_task_diagnostics is not None:
848
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
817
849
  # process the form parameters
818
850
  # process the body parameter
819
851
 
@@ -856,6 +888,7 @@ class ContentOpenpgpSignatureApi:
856
888
  self,
857
889
  open_p_g_p_signature_href: StrictStr,
858
890
  set_label: SetLabel,
891
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
859
892
  _request_timeout: Union[
860
893
  None,
861
894
  Annotated[StrictFloat, Field(gt=0)],
@@ -877,6 +910,8 @@ class ContentOpenpgpSignatureApi:
877
910
  :type open_p_g_p_signature_href: str
878
911
  :param set_label: (required)
879
912
  :type set_label: SetLabel
913
+ :param x_task_diagnostics: List of profilers to use on tasks.
914
+ :type x_task_diagnostics: List[str]
880
915
  :param _request_timeout: timeout setting for this request. If one
881
916
  number provided, it will be total request
882
917
  timeout. It can also be a pair (tuple) of
@@ -902,6 +937,7 @@ class ContentOpenpgpSignatureApi:
902
937
  _param = self._set_label_serialize(
903
938
  open_p_g_p_signature_href=open_p_g_p_signature_href,
904
939
  set_label=set_label,
940
+ x_task_diagnostics=x_task_diagnostics,
905
941
  _request_auth=_request_auth,
906
942
  _content_type=_content_type,
907
943
  _headers=_headers,
@@ -927,6 +963,7 @@ class ContentOpenpgpSignatureApi:
927
963
  self,
928
964
  open_p_g_p_signature_href: StrictStr,
929
965
  set_label: SetLabel,
966
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
930
967
  _request_timeout: Union[
931
968
  None,
932
969
  Annotated[StrictFloat, Field(gt=0)],
@@ -948,6 +985,8 @@ class ContentOpenpgpSignatureApi:
948
985
  :type open_p_g_p_signature_href: str
949
986
  :param set_label: (required)
950
987
  :type set_label: SetLabel
988
+ :param x_task_diagnostics: List of profilers to use on tasks.
989
+ :type x_task_diagnostics: List[str]
951
990
  :param _request_timeout: timeout setting for this request. If one
952
991
  number provided, it will be total request
953
992
  timeout. It can also be a pair (tuple) of
@@ -973,6 +1012,7 @@ class ContentOpenpgpSignatureApi:
973
1012
  _param = self._set_label_serialize(
974
1013
  open_p_g_p_signature_href=open_p_g_p_signature_href,
975
1014
  set_label=set_label,
1015
+ x_task_diagnostics=x_task_diagnostics,
976
1016
  _request_auth=_request_auth,
977
1017
  _content_type=_content_type,
978
1018
  _headers=_headers,
@@ -998,6 +1038,7 @@ class ContentOpenpgpSignatureApi:
998
1038
  self,
999
1039
  open_p_g_p_signature_href: StrictStr,
1000
1040
  set_label: SetLabel,
1041
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1001
1042
  _request_timeout: Union[
1002
1043
  None,
1003
1044
  Annotated[StrictFloat, Field(gt=0)],
@@ -1019,6 +1060,8 @@ class ContentOpenpgpSignatureApi:
1019
1060
  :type open_p_g_p_signature_href: str
1020
1061
  :param set_label: (required)
1021
1062
  :type set_label: SetLabel
1063
+ :param x_task_diagnostics: List of profilers to use on tasks.
1064
+ :type x_task_diagnostics: List[str]
1022
1065
  :param _request_timeout: timeout setting for this request. If one
1023
1066
  number provided, it will be total request
1024
1067
  timeout. It can also be a pair (tuple) of
@@ -1044,6 +1087,7 @@ class ContentOpenpgpSignatureApi:
1044
1087
  _param = self._set_label_serialize(
1045
1088
  open_p_g_p_signature_href=open_p_g_p_signature_href,
1046
1089
  set_label=set_label,
1090
+ x_task_diagnostics=x_task_diagnostics,
1047
1091
  _request_auth=_request_auth,
1048
1092
  _content_type=_content_type,
1049
1093
  _headers=_headers,
@@ -1064,6 +1108,7 @@ class ContentOpenpgpSignatureApi:
1064
1108
  self,
1065
1109
  open_p_g_p_signature_href,
1066
1110
  set_label,
1111
+ x_task_diagnostics,
1067
1112
  _request_auth,
1068
1113
  _content_type,
1069
1114
  _headers,
@@ -1073,6 +1118,7 @@ class ContentOpenpgpSignatureApi:
1073
1118
  _host = None
1074
1119
 
1075
1120
  _collection_formats: Dict[str, str] = {
1121
+ 'X-Task-Diagnostics': 'csv',
1076
1122
  }
1077
1123
 
1078
1124
  _path_params: Dict[str, str] = {}
@@ -1089,6 +1135,8 @@ class ContentOpenpgpSignatureApi:
1089
1135
  _path_params['open_p_g_p_signature_href'] = open_p_g_p_signature_href
1090
1136
  # process the query parameters
1091
1137
  # process the header parameters
1138
+ if x_task_diagnostics is not None:
1139
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
1092
1140
  # process the form parameters
1093
1141
  # process the body parameter
1094
1142
  if set_label is not None:
@@ -1148,6 +1196,7 @@ class ContentOpenpgpSignatureApi:
1148
1196
  self,
1149
1197
  open_p_g_p_signature_href: StrictStr,
1150
1198
  unset_label: UnsetLabel,
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 ContentOpenpgpSignatureApi:
1169
1218
  :type open_p_g_p_signature_href: str
1170
1219
  :param unset_label: (required)
1171
1220
  :type unset_label: UnsetLabel
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 ContentOpenpgpSignatureApi:
1194
1245
  _param = self._unset_label_serialize(
1195
1246
  open_p_g_p_signature_href=open_p_g_p_signature_href,
1196
1247
  unset_label=unset_label,
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 ContentOpenpgpSignatureApi:
1219
1271
  self,
1220
1272
  open_p_g_p_signature_href: StrictStr,
1221
1273
  unset_label: UnsetLabel,
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 ContentOpenpgpSignatureApi:
1240
1293
  :type open_p_g_p_signature_href: str
1241
1294
  :param unset_label: (required)
1242
1295
  :type unset_label: UnsetLabel
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 ContentOpenpgpSignatureApi:
1265
1320
  _param = self._unset_label_serialize(
1266
1321
  open_p_g_p_signature_href=open_p_g_p_signature_href,
1267
1322
  unset_label=unset_label,
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 ContentOpenpgpSignatureApi:
1290
1346
  self,
1291
1347
  open_p_g_p_signature_href: StrictStr,
1292
1348
  unset_label: UnsetLabel,
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 ContentOpenpgpSignatureApi:
1311
1368
  :type open_p_g_p_signature_href: str
1312
1369
  :param unset_label: (required)
1313
1370
  :type unset_label: UnsetLabel
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 ContentOpenpgpSignatureApi:
1336
1395
  _param = self._unset_label_serialize(
1337
1396
  open_p_g_p_signature_href=open_p_g_p_signature_href,
1338
1397
  unset_label=unset_label,
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 ContentOpenpgpSignatureApi:
1356
1416
  self,
1357
1417
  open_p_g_p_signature_href,
1358
1418
  unset_label,
1419
+ x_task_diagnostics,
1359
1420
  _request_auth,
1360
1421
  _content_type,
1361
1422
  _headers,
@@ -1365,6 +1426,7 @@ class ContentOpenpgpSignatureApi:
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 ContentOpenpgpSignatureApi:
1381
1443
  _path_params['open_p_g_p_signature_href'] = open_p_g_p_signature_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 unset_label is not None: