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
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "3.81.0"
18
+ __version__ = "3.82.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pulpcore.client.pulpcore.api.access_policies_api import AccessPoliciesApi
@@ -46,6 +46,7 @@ class AccessPoliciesApi:
46
46
  @validate_call
47
47
  def list(
48
48
  self,
49
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
49
50
  customized: Annotated[Optional[StrictBool], Field(description="Filter results where customized matches value")] = None,
50
51
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
51
52
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
@@ -82,6 +83,8 @@ class AccessPoliciesApi:
82
83
 
83
84
  ViewSet for AccessPolicy.
84
85
 
86
+ :param x_task_diagnostics: List of profilers to use on tasks.
87
+ :type x_task_diagnostics: List[str]
85
88
  :param customized: Filter results where customized matches value
86
89
  :type customized: bool
87
90
  :param limit: Number of results to return per page.
@@ -143,6 +146,7 @@ class AccessPoliciesApi:
143
146
  """ # noqa: E501
144
147
 
145
148
  _param = self._list_serialize(
149
+ x_task_diagnostics=x_task_diagnostics,
146
150
  customized=customized,
147
151
  limit=limit,
148
152
  offset=offset,
@@ -185,6 +189,7 @@ class AccessPoliciesApi:
185
189
  @validate_call
186
190
  def list_with_http_info(
187
191
  self,
192
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
188
193
  customized: Annotated[Optional[StrictBool], Field(description="Filter results where customized matches value")] = None,
189
194
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
190
195
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
@@ -221,6 +226,8 @@ class AccessPoliciesApi:
221
226
 
222
227
  ViewSet for AccessPolicy.
223
228
 
229
+ :param x_task_diagnostics: List of profilers to use on tasks.
230
+ :type x_task_diagnostics: List[str]
224
231
  :param customized: Filter results where customized matches value
225
232
  :type customized: bool
226
233
  :param limit: Number of results to return per page.
@@ -282,6 +289,7 @@ class AccessPoliciesApi:
282
289
  """ # noqa: E501
283
290
 
284
291
  _param = self._list_serialize(
292
+ x_task_diagnostics=x_task_diagnostics,
285
293
  customized=customized,
286
294
  limit=limit,
287
295
  offset=offset,
@@ -324,6 +332,7 @@ class AccessPoliciesApi:
324
332
  @validate_call
325
333
  def list_without_preload_content(
326
334
  self,
335
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
327
336
  customized: Annotated[Optional[StrictBool], Field(description="Filter results where customized matches value")] = None,
328
337
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
329
338
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
@@ -360,6 +369,8 @@ class AccessPoliciesApi:
360
369
 
361
370
  ViewSet for AccessPolicy.
362
371
 
372
+ :param x_task_diagnostics: List of profilers to use on tasks.
373
+ :type x_task_diagnostics: List[str]
363
374
  :param customized: Filter results where customized matches value
364
375
  :type customized: bool
365
376
  :param limit: Number of results to return per page.
@@ -421,6 +432,7 @@ class AccessPoliciesApi:
421
432
  """ # noqa: E501
422
433
 
423
434
  _param = self._list_serialize(
435
+ x_task_diagnostics=x_task_diagnostics,
424
436
  customized=customized,
425
437
  limit=limit,
426
438
  offset=offset,
@@ -458,6 +470,7 @@ class AccessPoliciesApi:
458
470
 
459
471
  def _list_serialize(
460
472
  self,
473
+ x_task_diagnostics,
461
474
  customized,
462
475
  limit,
463
476
  offset,
@@ -486,6 +499,7 @@ class AccessPoliciesApi:
486
499
  _host = None
487
500
 
488
501
  _collection_formats: Dict[str, str] = {
502
+ 'X-Task-Diagnostics': 'csv',
489
503
  'ordering': 'csv',
490
504
  'prn__in': 'csv',
491
505
  'pulp_href__in': 'csv',
@@ -583,6 +597,8 @@ class AccessPoliciesApi:
583
597
  _query_params.append(('exclude_fields', exclude_fields))
584
598
 
585
599
  # process the header parameters
600
+ if x_task_diagnostics is not None:
601
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
586
602
  # process the form parameters
587
603
  # process the body parameter
588
604
 
@@ -625,6 +641,7 @@ class AccessPoliciesApi:
625
641
  self,
626
642
  access_policy_href: StrictStr,
627
643
  patched_access_policy: PatchedAccessPolicy,
644
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
628
645
  _request_timeout: Union[
629
646
  None,
630
647
  Annotated[StrictFloat, Field(gt=0)],
@@ -646,6 +663,8 @@ class AccessPoliciesApi:
646
663
  :type access_policy_href: str
647
664
  :param patched_access_policy: (required)
648
665
  :type patched_access_policy: PatchedAccessPolicy
666
+ :param x_task_diagnostics: List of profilers to use on tasks.
667
+ :type x_task_diagnostics: List[str]
649
668
  :param _request_timeout: timeout setting for this request. If one
650
669
  number provided, it will be total request
651
670
  timeout. It can also be a pair (tuple) of
@@ -671,6 +690,7 @@ class AccessPoliciesApi:
671
690
  _param = self._partial_update_serialize(
672
691
  access_policy_href=access_policy_href,
673
692
  patched_access_policy=patched_access_policy,
693
+ x_task_diagnostics=x_task_diagnostics,
674
694
  _request_auth=_request_auth,
675
695
  _content_type=_content_type,
676
696
  _headers=_headers,
@@ -696,6 +716,7 @@ class AccessPoliciesApi:
696
716
  self,
697
717
  access_policy_href: StrictStr,
698
718
  patched_access_policy: PatchedAccessPolicy,
719
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
699
720
  _request_timeout: Union[
700
721
  None,
701
722
  Annotated[StrictFloat, Field(gt=0)],
@@ -717,6 +738,8 @@ class AccessPoliciesApi:
717
738
  :type access_policy_href: str
718
739
  :param patched_access_policy: (required)
719
740
  :type patched_access_policy: PatchedAccessPolicy
741
+ :param x_task_diagnostics: List of profilers to use on tasks.
742
+ :type x_task_diagnostics: List[str]
720
743
  :param _request_timeout: timeout setting for this request. If one
721
744
  number provided, it will be total request
722
745
  timeout. It can also be a pair (tuple) of
@@ -742,6 +765,7 @@ class AccessPoliciesApi:
742
765
  _param = self._partial_update_serialize(
743
766
  access_policy_href=access_policy_href,
744
767
  patched_access_policy=patched_access_policy,
768
+ x_task_diagnostics=x_task_diagnostics,
745
769
  _request_auth=_request_auth,
746
770
  _content_type=_content_type,
747
771
  _headers=_headers,
@@ -767,6 +791,7 @@ class AccessPoliciesApi:
767
791
  self,
768
792
  access_policy_href: StrictStr,
769
793
  patched_access_policy: PatchedAccessPolicy,
794
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
770
795
  _request_timeout: Union[
771
796
  None,
772
797
  Annotated[StrictFloat, Field(gt=0)],
@@ -788,6 +813,8 @@ class AccessPoliciesApi:
788
813
  :type access_policy_href: str
789
814
  :param patched_access_policy: (required)
790
815
  :type patched_access_policy: PatchedAccessPolicy
816
+ :param x_task_diagnostics: List of profilers to use on tasks.
817
+ :type x_task_diagnostics: List[str]
791
818
  :param _request_timeout: timeout setting for this request. If one
792
819
  number provided, it will be total request
793
820
  timeout. It can also be a pair (tuple) of
@@ -813,6 +840,7 @@ class AccessPoliciesApi:
813
840
  _param = self._partial_update_serialize(
814
841
  access_policy_href=access_policy_href,
815
842
  patched_access_policy=patched_access_policy,
843
+ x_task_diagnostics=x_task_diagnostics,
816
844
  _request_auth=_request_auth,
817
845
  _content_type=_content_type,
818
846
  _headers=_headers,
@@ -833,6 +861,7 @@ class AccessPoliciesApi:
833
861
  self,
834
862
  access_policy_href,
835
863
  patched_access_policy,
864
+ x_task_diagnostics,
836
865
  _request_auth,
837
866
  _content_type,
838
867
  _headers,
@@ -842,6 +871,7 @@ class AccessPoliciesApi:
842
871
  _host = None
843
872
 
844
873
  _collection_formats: Dict[str, str] = {
874
+ 'X-Task-Diagnostics': 'csv',
845
875
  }
846
876
 
847
877
  _path_params: Dict[str, str] = {}
@@ -858,6 +888,8 @@ class AccessPoliciesApi:
858
888
  _path_params['access_policy_href'] = access_policy_href
859
889
  # process the query parameters
860
890
  # process the header parameters
891
+ if x_task_diagnostics is not None:
892
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
861
893
  # process the form parameters
862
894
  # process the body parameter
863
895
  if patched_access_policy is not None:
@@ -916,6 +948,7 @@ class AccessPoliciesApi:
916
948
  def read(
917
949
  self,
918
950
  access_policy_href: StrictStr,
951
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
919
952
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
920
953
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
921
954
  _request_timeout: Union[
@@ -937,6 +970,8 @@ class AccessPoliciesApi:
937
970
 
938
971
  :param access_policy_href: (required)
939
972
  :type access_policy_href: str
973
+ :param x_task_diagnostics: List of profilers to use on tasks.
974
+ :type x_task_diagnostics: List[str]
940
975
  :param fields: A list of fields to include in the response.
941
976
  :type fields: List[str]
942
977
  :param exclude_fields: A list of fields to exclude from the response.
@@ -965,6 +1000,7 @@ class AccessPoliciesApi:
965
1000
 
966
1001
  _param = self._read_serialize(
967
1002
  access_policy_href=access_policy_href,
1003
+ x_task_diagnostics=x_task_diagnostics,
968
1004
  fields=fields,
969
1005
  exclude_fields=exclude_fields,
970
1006
  _request_auth=_request_auth,
@@ -991,6 +1027,7 @@ class AccessPoliciesApi:
991
1027
  def read_with_http_info(
992
1028
  self,
993
1029
  access_policy_href: StrictStr,
1030
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
994
1031
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
995
1032
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
996
1033
  _request_timeout: Union[
@@ -1012,6 +1049,8 @@ class AccessPoliciesApi:
1012
1049
 
1013
1050
  :param access_policy_href: (required)
1014
1051
  :type access_policy_href: str
1052
+ :param x_task_diagnostics: List of profilers to use on tasks.
1053
+ :type x_task_diagnostics: List[str]
1015
1054
  :param fields: A list of fields to include in the response.
1016
1055
  :type fields: List[str]
1017
1056
  :param exclude_fields: A list of fields to exclude from the response.
@@ -1040,6 +1079,7 @@ class AccessPoliciesApi:
1040
1079
 
1041
1080
  _param = self._read_serialize(
1042
1081
  access_policy_href=access_policy_href,
1082
+ x_task_diagnostics=x_task_diagnostics,
1043
1083
  fields=fields,
1044
1084
  exclude_fields=exclude_fields,
1045
1085
  _request_auth=_request_auth,
@@ -1066,6 +1106,7 @@ class AccessPoliciesApi:
1066
1106
  def read_without_preload_content(
1067
1107
  self,
1068
1108
  access_policy_href: StrictStr,
1109
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1069
1110
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
1070
1111
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
1071
1112
  _request_timeout: Union[
@@ -1087,6 +1128,8 @@ class AccessPoliciesApi:
1087
1128
 
1088
1129
  :param access_policy_href: (required)
1089
1130
  :type access_policy_href: str
1131
+ :param x_task_diagnostics: List of profilers to use on tasks.
1132
+ :type x_task_diagnostics: List[str]
1090
1133
  :param fields: A list of fields to include in the response.
1091
1134
  :type fields: List[str]
1092
1135
  :param exclude_fields: A list of fields to exclude from the response.
@@ -1115,6 +1158,7 @@ class AccessPoliciesApi:
1115
1158
 
1116
1159
  _param = self._read_serialize(
1117
1160
  access_policy_href=access_policy_href,
1161
+ x_task_diagnostics=x_task_diagnostics,
1118
1162
  fields=fields,
1119
1163
  exclude_fields=exclude_fields,
1120
1164
  _request_auth=_request_auth,
@@ -1136,6 +1180,7 @@ class AccessPoliciesApi:
1136
1180
  def _read_serialize(
1137
1181
  self,
1138
1182
  access_policy_href,
1183
+ x_task_diagnostics,
1139
1184
  fields,
1140
1185
  exclude_fields,
1141
1186
  _request_auth,
@@ -1147,6 +1192,7 @@ class AccessPoliciesApi:
1147
1192
  _host = None
1148
1193
 
1149
1194
  _collection_formats: Dict[str, str] = {
1195
+ 'X-Task-Diagnostics': 'csv',
1150
1196
  'fields': 'multi',
1151
1197
  'exclude_fields': 'multi',
1152
1198
  }
@@ -1173,6 +1219,8 @@ class AccessPoliciesApi:
1173
1219
  _query_params.append(('exclude_fields', exclude_fields))
1174
1220
 
1175
1221
  # process the header parameters
1222
+ if x_task_diagnostics is not None:
1223
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
1176
1224
  # process the form parameters
1177
1225
  # process the body parameter
1178
1226
 
@@ -1214,6 +1262,7 @@ class AccessPoliciesApi:
1214
1262
  def reset(
1215
1263
  self,
1216
1264
  access_policy_href: StrictStr,
1265
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1217
1266
  _request_timeout: Union[
1218
1267
  None,
1219
1268
  Annotated[StrictFloat, Field(gt=0)],
@@ -1233,6 +1282,8 @@ class AccessPoliciesApi:
1233
1282
 
1234
1283
  :param access_policy_href: (required)
1235
1284
  :type access_policy_href: str
1285
+ :param x_task_diagnostics: List of profilers to use on tasks.
1286
+ :type x_task_diagnostics: List[str]
1236
1287
  :param _request_timeout: timeout setting for this request. If one
1237
1288
  number provided, it will be total request
1238
1289
  timeout. It can also be a pair (tuple) of
@@ -1257,6 +1308,7 @@ class AccessPoliciesApi:
1257
1308
 
1258
1309
  _param = self._reset_serialize(
1259
1310
  access_policy_href=access_policy_href,
1311
+ x_task_diagnostics=x_task_diagnostics,
1260
1312
  _request_auth=_request_auth,
1261
1313
  _content_type=_content_type,
1262
1314
  _headers=_headers,
@@ -1281,6 +1333,7 @@ class AccessPoliciesApi:
1281
1333
  def reset_with_http_info(
1282
1334
  self,
1283
1335
  access_policy_href: StrictStr,
1336
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1284
1337
  _request_timeout: Union[
1285
1338
  None,
1286
1339
  Annotated[StrictFloat, Field(gt=0)],
@@ -1300,6 +1353,8 @@ class AccessPoliciesApi:
1300
1353
 
1301
1354
  :param access_policy_href: (required)
1302
1355
  :type access_policy_href: str
1356
+ :param x_task_diagnostics: List of profilers to use on tasks.
1357
+ :type x_task_diagnostics: List[str]
1303
1358
  :param _request_timeout: timeout setting for this request. If one
1304
1359
  number provided, it will be total request
1305
1360
  timeout. It can also be a pair (tuple) of
@@ -1324,6 +1379,7 @@ class AccessPoliciesApi:
1324
1379
 
1325
1380
  _param = self._reset_serialize(
1326
1381
  access_policy_href=access_policy_href,
1382
+ x_task_diagnostics=x_task_diagnostics,
1327
1383
  _request_auth=_request_auth,
1328
1384
  _content_type=_content_type,
1329
1385
  _headers=_headers,
@@ -1348,6 +1404,7 @@ class AccessPoliciesApi:
1348
1404
  def reset_without_preload_content(
1349
1405
  self,
1350
1406
  access_policy_href: StrictStr,
1407
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1351
1408
  _request_timeout: Union[
1352
1409
  None,
1353
1410
  Annotated[StrictFloat, Field(gt=0)],
@@ -1367,6 +1424,8 @@ class AccessPoliciesApi:
1367
1424
 
1368
1425
  :param access_policy_href: (required)
1369
1426
  :type access_policy_href: str
1427
+ :param x_task_diagnostics: List of profilers to use on tasks.
1428
+ :type x_task_diagnostics: List[str]
1370
1429
  :param _request_timeout: timeout setting for this request. If one
1371
1430
  number provided, it will be total request
1372
1431
  timeout. It can also be a pair (tuple) of
@@ -1391,6 +1450,7 @@ class AccessPoliciesApi:
1391
1450
 
1392
1451
  _param = self._reset_serialize(
1393
1452
  access_policy_href=access_policy_href,
1453
+ x_task_diagnostics=x_task_diagnostics,
1394
1454
  _request_auth=_request_auth,
1395
1455
  _content_type=_content_type,
1396
1456
  _headers=_headers,
@@ -1410,6 +1470,7 @@ class AccessPoliciesApi:
1410
1470
  def _reset_serialize(
1411
1471
  self,
1412
1472
  access_policy_href,
1473
+ x_task_diagnostics,
1413
1474
  _request_auth,
1414
1475
  _content_type,
1415
1476
  _headers,
@@ -1419,6 +1480,7 @@ class AccessPoliciesApi:
1419
1480
  _host = None
1420
1481
 
1421
1482
  _collection_formats: Dict[str, str] = {
1483
+ 'X-Task-Diagnostics': 'csv',
1422
1484
  }
1423
1485
 
1424
1486
  _path_params: Dict[str, str] = {}
@@ -1435,6 +1497,8 @@ class AccessPoliciesApi:
1435
1497
  _path_params['access_policy_href'] = access_policy_href
1436
1498
  # process the query parameters
1437
1499
  # process the header parameters
1500
+ if x_task_diagnostics is not None:
1501
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
1438
1502
  # process the form parameters
1439
1503
  # process the body parameter
1440
1504
 
@@ -1477,6 +1541,7 @@ class AccessPoliciesApi:
1477
1541
  self,
1478
1542
  access_policy_href: StrictStr,
1479
1543
  access_policy: AccessPolicy,
1544
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1480
1545
  _request_timeout: Union[
1481
1546
  None,
1482
1547
  Annotated[StrictFloat, Field(gt=0)],
@@ -1498,6 +1563,8 @@ class AccessPoliciesApi:
1498
1563
  :type access_policy_href: str
1499
1564
  :param access_policy: (required)
1500
1565
  :type access_policy: AccessPolicy
1566
+ :param x_task_diagnostics: List of profilers to use on tasks.
1567
+ :type x_task_diagnostics: List[str]
1501
1568
  :param _request_timeout: timeout setting for this request. If one
1502
1569
  number provided, it will be total request
1503
1570
  timeout. It can also be a pair (tuple) of
@@ -1523,6 +1590,7 @@ class AccessPoliciesApi:
1523
1590
  _param = self._update_serialize(
1524
1591
  access_policy_href=access_policy_href,
1525
1592
  access_policy=access_policy,
1593
+ x_task_diagnostics=x_task_diagnostics,
1526
1594
  _request_auth=_request_auth,
1527
1595
  _content_type=_content_type,
1528
1596
  _headers=_headers,
@@ -1548,6 +1616,7 @@ class AccessPoliciesApi:
1548
1616
  self,
1549
1617
  access_policy_href: StrictStr,
1550
1618
  access_policy: AccessPolicy,
1619
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1551
1620
  _request_timeout: Union[
1552
1621
  None,
1553
1622
  Annotated[StrictFloat, Field(gt=0)],
@@ -1569,6 +1638,8 @@ class AccessPoliciesApi:
1569
1638
  :type access_policy_href: str
1570
1639
  :param access_policy: (required)
1571
1640
  :type access_policy: AccessPolicy
1641
+ :param x_task_diagnostics: List of profilers to use on tasks.
1642
+ :type x_task_diagnostics: List[str]
1572
1643
  :param _request_timeout: timeout setting for this request. If one
1573
1644
  number provided, it will be total request
1574
1645
  timeout. It can also be a pair (tuple) of
@@ -1594,6 +1665,7 @@ class AccessPoliciesApi:
1594
1665
  _param = self._update_serialize(
1595
1666
  access_policy_href=access_policy_href,
1596
1667
  access_policy=access_policy,
1668
+ x_task_diagnostics=x_task_diagnostics,
1597
1669
  _request_auth=_request_auth,
1598
1670
  _content_type=_content_type,
1599
1671
  _headers=_headers,
@@ -1619,6 +1691,7 @@ class AccessPoliciesApi:
1619
1691
  self,
1620
1692
  access_policy_href: StrictStr,
1621
1693
  access_policy: AccessPolicy,
1694
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1622
1695
  _request_timeout: Union[
1623
1696
  None,
1624
1697
  Annotated[StrictFloat, Field(gt=0)],
@@ -1640,6 +1713,8 @@ class AccessPoliciesApi:
1640
1713
  :type access_policy_href: str
1641
1714
  :param access_policy: (required)
1642
1715
  :type access_policy: AccessPolicy
1716
+ :param x_task_diagnostics: List of profilers to use on tasks.
1717
+ :type x_task_diagnostics: List[str]
1643
1718
  :param _request_timeout: timeout setting for this request. If one
1644
1719
  number provided, it will be total request
1645
1720
  timeout. It can also be a pair (tuple) of
@@ -1665,6 +1740,7 @@ class AccessPoliciesApi:
1665
1740
  _param = self._update_serialize(
1666
1741
  access_policy_href=access_policy_href,
1667
1742
  access_policy=access_policy,
1743
+ x_task_diagnostics=x_task_diagnostics,
1668
1744
  _request_auth=_request_auth,
1669
1745
  _content_type=_content_type,
1670
1746
  _headers=_headers,
@@ -1685,6 +1761,7 @@ class AccessPoliciesApi:
1685
1761
  self,
1686
1762
  access_policy_href,
1687
1763
  access_policy,
1764
+ x_task_diagnostics,
1688
1765
  _request_auth,
1689
1766
  _content_type,
1690
1767
  _headers,
@@ -1694,6 +1771,7 @@ class AccessPoliciesApi:
1694
1771
  _host = None
1695
1772
 
1696
1773
  _collection_formats: Dict[str, str] = {
1774
+ 'X-Task-Diagnostics': 'csv',
1697
1775
  }
1698
1776
 
1699
1777
  _path_params: Dict[str, str] = {}
@@ -1710,6 +1788,8 @@ class AccessPoliciesApi:
1710
1788
  _path_params['access_policy_href'] = access_policy_href
1711
1789
  # process the query parameters
1712
1790
  # process the header parameters
1791
+ if x_task_diagnostics is not None:
1792
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
1713
1793
  # process the form parameters
1714
1794
  # process the body parameter
1715
1795
  if access_policy is not None: