pulpcore-client 3.80.2__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 +17 -17
  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.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/METADATA +1 -1
  62. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/RECORD +64 -64
  63. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/WHEEL +0 -0
  64. {pulpcore_client-3.80.2.dist-info → pulpcore_client-3.82.0.dist-info}/top_level.txt +0 -0
@@ -48,6 +48,7 @@ class ContentOpenpgpUseridApi:
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
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
52
53
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
53
54
  ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `user_id` - User id * `-user_id` - User id (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
@@ -88,6 +89,8 @@ class ContentOpenpgpUseridApi:
88
89
 
89
90
  Content viewset that supports only GET by default.
90
91
 
92
+ :param x_task_diagnostics: List of profilers to use on tasks.
93
+ :type x_task_diagnostics: List[str]
91
94
  :param limit: Number of results to return per page.
92
95
  :type limit: int
93
96
  :param offset: The initial index from which to return the results.
@@ -157,6 +160,7 @@ class ContentOpenpgpUseridApi:
157
160
  """ # noqa: E501
158
161
 
159
162
  _param = self._list_serialize(
163
+ x_task_diagnostics=x_task_diagnostics,
160
164
  limit=limit,
161
165
  offset=offset,
162
166
  ordering=ordering,
@@ -203,6 +207,7 @@ class ContentOpenpgpUseridApi:
203
207
  @validate_call
204
208
  def list_with_http_info(
205
209
  self,
210
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
206
211
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
207
212
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
208
213
  ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `user_id` - User id * `-user_id` - User id (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
@@ -243,6 +248,8 @@ class ContentOpenpgpUseridApi:
243
248
 
244
249
  Content viewset that supports only GET by default.
245
250
 
251
+ :param x_task_diagnostics: List of profilers to use on tasks.
252
+ :type x_task_diagnostics: List[str]
246
253
  :param limit: Number of results to return per page.
247
254
  :type limit: int
248
255
  :param offset: The initial index from which to return the results.
@@ -312,6 +319,7 @@ class ContentOpenpgpUseridApi:
312
319
  """ # noqa: E501
313
320
 
314
321
  _param = self._list_serialize(
322
+ x_task_diagnostics=x_task_diagnostics,
315
323
  limit=limit,
316
324
  offset=offset,
317
325
  ordering=ordering,
@@ -358,6 +366,7 @@ class ContentOpenpgpUseridApi:
358
366
  @validate_call
359
367
  def list_without_preload_content(
360
368
  self,
369
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
361
370
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
362
371
  offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
363
372
  ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `user_id` - User id * `-user_id` - User id (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
@@ -398,6 +407,8 @@ class ContentOpenpgpUseridApi:
398
407
 
399
408
  Content viewset that supports only GET by default.
400
409
 
410
+ :param x_task_diagnostics: List of profilers to use on tasks.
411
+ :type x_task_diagnostics: List[str]
401
412
  :param limit: Number of results to return per page.
402
413
  :type limit: int
403
414
  :param offset: The initial index from which to return the results.
@@ -467,6 +478,7 @@ class ContentOpenpgpUseridApi:
467
478
  """ # noqa: E501
468
479
 
469
480
  _param = self._list_serialize(
481
+ x_task_diagnostics=x_task_diagnostics,
470
482
  limit=limit,
471
483
  offset=offset,
472
484
  ordering=ordering,
@@ -508,6 +520,7 @@ class ContentOpenpgpUseridApi:
508
520
 
509
521
  def _list_serialize(
510
522
  self,
523
+ x_task_diagnostics,
511
524
  limit,
512
525
  offset,
513
526
  ordering,
@@ -540,6 +553,7 @@ class ContentOpenpgpUseridApi:
540
553
  _host = None
541
554
 
542
555
  _collection_formats: Dict[str, str] = {
556
+ 'X-Task-Diagnostics': 'csv',
543
557
  'ordering': 'csv',
544
558
  'prn__in': 'csv',
545
559
  'pulp_href__in': 'csv',
@@ -653,6 +667,8 @@ class ContentOpenpgpUseridApi:
653
667
  _query_params.append(('exclude_fields', exclude_fields))
654
668
 
655
669
  # process the header parameters
670
+ if x_task_diagnostics is not None:
671
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
656
672
  # process the form parameters
657
673
  # process the body parameter
658
674
 
@@ -694,6 +710,7 @@ class ContentOpenpgpUseridApi:
694
710
  def read(
695
711
  self,
696
712
  open_p_g_p_user_i_d_href: StrictStr,
713
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
697
714
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
698
715
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
699
716
  _request_timeout: Union[
@@ -715,6 +732,8 @@ class ContentOpenpgpUseridApi:
715
732
 
716
733
  :param open_p_g_p_user_i_d_href: (required)
717
734
  :type open_p_g_p_user_i_d_href: str
735
+ :param x_task_diagnostics: List of profilers to use on tasks.
736
+ :type x_task_diagnostics: List[str]
718
737
  :param fields: A list of fields to include in the response.
719
738
  :type fields: List[str]
720
739
  :param exclude_fields: A list of fields to exclude from the response.
@@ -743,6 +762,7 @@ class ContentOpenpgpUseridApi:
743
762
 
744
763
  _param = self._read_serialize(
745
764
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
765
+ x_task_diagnostics=x_task_diagnostics,
746
766
  fields=fields,
747
767
  exclude_fields=exclude_fields,
748
768
  _request_auth=_request_auth,
@@ -769,6 +789,7 @@ class ContentOpenpgpUseridApi:
769
789
  def read_with_http_info(
770
790
  self,
771
791
  open_p_g_p_user_i_d_href: StrictStr,
792
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
772
793
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
773
794
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
774
795
  _request_timeout: Union[
@@ -790,6 +811,8 @@ class ContentOpenpgpUseridApi:
790
811
 
791
812
  :param open_p_g_p_user_i_d_href: (required)
792
813
  :type open_p_g_p_user_i_d_href: str
814
+ :param x_task_diagnostics: List of profilers to use on tasks.
815
+ :type x_task_diagnostics: List[str]
793
816
  :param fields: A list of fields to include in the response.
794
817
  :type fields: List[str]
795
818
  :param exclude_fields: A list of fields to exclude from the response.
@@ -818,6 +841,7 @@ class ContentOpenpgpUseridApi:
818
841
 
819
842
  _param = self._read_serialize(
820
843
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
844
+ x_task_diagnostics=x_task_diagnostics,
821
845
  fields=fields,
822
846
  exclude_fields=exclude_fields,
823
847
  _request_auth=_request_auth,
@@ -844,6 +868,7 @@ class ContentOpenpgpUseridApi:
844
868
  def read_without_preload_content(
845
869
  self,
846
870
  open_p_g_p_user_i_d_href: StrictStr,
871
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
847
872
  fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
848
873
  exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
849
874
  _request_timeout: Union[
@@ -865,6 +890,8 @@ class ContentOpenpgpUseridApi:
865
890
 
866
891
  :param open_p_g_p_user_i_d_href: (required)
867
892
  :type open_p_g_p_user_i_d_href: str
893
+ :param x_task_diagnostics: List of profilers to use on tasks.
894
+ :type x_task_diagnostics: List[str]
868
895
  :param fields: A list of fields to include in the response.
869
896
  :type fields: List[str]
870
897
  :param exclude_fields: A list of fields to exclude from the response.
@@ -893,6 +920,7 @@ class ContentOpenpgpUseridApi:
893
920
 
894
921
  _param = self._read_serialize(
895
922
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
923
+ x_task_diagnostics=x_task_diagnostics,
896
924
  fields=fields,
897
925
  exclude_fields=exclude_fields,
898
926
  _request_auth=_request_auth,
@@ -914,6 +942,7 @@ class ContentOpenpgpUseridApi:
914
942
  def _read_serialize(
915
943
  self,
916
944
  open_p_g_p_user_i_d_href,
945
+ x_task_diagnostics,
917
946
  fields,
918
947
  exclude_fields,
919
948
  _request_auth,
@@ -925,6 +954,7 @@ class ContentOpenpgpUseridApi:
925
954
  _host = None
926
955
 
927
956
  _collection_formats: Dict[str, str] = {
957
+ 'X-Task-Diagnostics': 'csv',
928
958
  'fields': 'multi',
929
959
  'exclude_fields': 'multi',
930
960
  }
@@ -951,6 +981,8 @@ class ContentOpenpgpUseridApi:
951
981
  _query_params.append(('exclude_fields', exclude_fields))
952
982
 
953
983
  # process the header parameters
984
+ if x_task_diagnostics is not None:
985
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
954
986
  # process the form parameters
955
987
  # process the body parameter
956
988
 
@@ -993,6 +1025,7 @@ class ContentOpenpgpUseridApi:
993
1025
  self,
994
1026
  open_p_g_p_user_i_d_href: StrictStr,
995
1027
  set_label: SetLabel,
1028
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
996
1029
  _request_timeout: Union[
997
1030
  None,
998
1031
  Annotated[StrictFloat, Field(gt=0)],
@@ -1014,6 +1047,8 @@ class ContentOpenpgpUseridApi:
1014
1047
  :type open_p_g_p_user_i_d_href: str
1015
1048
  :param set_label: (required)
1016
1049
  :type set_label: SetLabel
1050
+ :param x_task_diagnostics: List of profilers to use on tasks.
1051
+ :type x_task_diagnostics: List[str]
1017
1052
  :param _request_timeout: timeout setting for this request. If one
1018
1053
  number provided, it will be total request
1019
1054
  timeout. It can also be a pair (tuple) of
@@ -1039,6 +1074,7 @@ class ContentOpenpgpUseridApi:
1039
1074
  _param = self._set_label_serialize(
1040
1075
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
1041
1076
  set_label=set_label,
1077
+ x_task_diagnostics=x_task_diagnostics,
1042
1078
  _request_auth=_request_auth,
1043
1079
  _content_type=_content_type,
1044
1080
  _headers=_headers,
@@ -1064,6 +1100,7 @@ class ContentOpenpgpUseridApi:
1064
1100
  self,
1065
1101
  open_p_g_p_user_i_d_href: StrictStr,
1066
1102
  set_label: SetLabel,
1103
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1067
1104
  _request_timeout: Union[
1068
1105
  None,
1069
1106
  Annotated[StrictFloat, Field(gt=0)],
@@ -1085,6 +1122,8 @@ class ContentOpenpgpUseridApi:
1085
1122
  :type open_p_g_p_user_i_d_href: str
1086
1123
  :param set_label: (required)
1087
1124
  :type set_label: SetLabel
1125
+ :param x_task_diagnostics: List of profilers to use on tasks.
1126
+ :type x_task_diagnostics: List[str]
1088
1127
  :param _request_timeout: timeout setting for this request. If one
1089
1128
  number provided, it will be total request
1090
1129
  timeout. It can also be a pair (tuple) of
@@ -1110,6 +1149,7 @@ class ContentOpenpgpUseridApi:
1110
1149
  _param = self._set_label_serialize(
1111
1150
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
1112
1151
  set_label=set_label,
1152
+ x_task_diagnostics=x_task_diagnostics,
1113
1153
  _request_auth=_request_auth,
1114
1154
  _content_type=_content_type,
1115
1155
  _headers=_headers,
@@ -1135,6 +1175,7 @@ class ContentOpenpgpUseridApi:
1135
1175
  self,
1136
1176
  open_p_g_p_user_i_d_href: StrictStr,
1137
1177
  set_label: SetLabel,
1178
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1138
1179
  _request_timeout: Union[
1139
1180
  None,
1140
1181
  Annotated[StrictFloat, Field(gt=0)],
@@ -1156,6 +1197,8 @@ class ContentOpenpgpUseridApi:
1156
1197
  :type open_p_g_p_user_i_d_href: str
1157
1198
  :param set_label: (required)
1158
1199
  :type set_label: SetLabel
1200
+ :param x_task_diagnostics: List of profilers to use on tasks.
1201
+ :type x_task_diagnostics: List[str]
1159
1202
  :param _request_timeout: timeout setting for this request. If one
1160
1203
  number provided, it will be total request
1161
1204
  timeout. It can also be a pair (tuple) of
@@ -1181,6 +1224,7 @@ class ContentOpenpgpUseridApi:
1181
1224
  _param = self._set_label_serialize(
1182
1225
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
1183
1226
  set_label=set_label,
1227
+ x_task_diagnostics=x_task_diagnostics,
1184
1228
  _request_auth=_request_auth,
1185
1229
  _content_type=_content_type,
1186
1230
  _headers=_headers,
@@ -1201,6 +1245,7 @@ class ContentOpenpgpUseridApi:
1201
1245
  self,
1202
1246
  open_p_g_p_user_i_d_href,
1203
1247
  set_label,
1248
+ x_task_diagnostics,
1204
1249
  _request_auth,
1205
1250
  _content_type,
1206
1251
  _headers,
@@ -1210,6 +1255,7 @@ class ContentOpenpgpUseridApi:
1210
1255
  _host = None
1211
1256
 
1212
1257
  _collection_formats: Dict[str, str] = {
1258
+ 'X-Task-Diagnostics': 'csv',
1213
1259
  }
1214
1260
 
1215
1261
  _path_params: Dict[str, str] = {}
@@ -1226,6 +1272,8 @@ class ContentOpenpgpUseridApi:
1226
1272
  _path_params['open_p_g_p_user_i_d_href'] = open_p_g_p_user_i_d_href
1227
1273
  # process the query parameters
1228
1274
  # process the header parameters
1275
+ if x_task_diagnostics is not None:
1276
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
1229
1277
  # process the form parameters
1230
1278
  # process the body parameter
1231
1279
  if set_label is not None:
@@ -1285,6 +1333,7 @@ class ContentOpenpgpUseridApi:
1285
1333
  self,
1286
1334
  open_p_g_p_user_i_d_href: StrictStr,
1287
1335
  unset_label: UnsetLabel,
1336
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1288
1337
  _request_timeout: Union[
1289
1338
  None,
1290
1339
  Annotated[StrictFloat, Field(gt=0)],
@@ -1306,6 +1355,8 @@ class ContentOpenpgpUseridApi:
1306
1355
  :type open_p_g_p_user_i_d_href: str
1307
1356
  :param unset_label: (required)
1308
1357
  :type unset_label: UnsetLabel
1358
+ :param x_task_diagnostics: List of profilers to use on tasks.
1359
+ :type x_task_diagnostics: List[str]
1309
1360
  :param _request_timeout: timeout setting for this request. If one
1310
1361
  number provided, it will be total request
1311
1362
  timeout. It can also be a pair (tuple) of
@@ -1331,6 +1382,7 @@ class ContentOpenpgpUseridApi:
1331
1382
  _param = self._unset_label_serialize(
1332
1383
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
1333
1384
  unset_label=unset_label,
1385
+ x_task_diagnostics=x_task_diagnostics,
1334
1386
  _request_auth=_request_auth,
1335
1387
  _content_type=_content_type,
1336
1388
  _headers=_headers,
@@ -1356,6 +1408,7 @@ class ContentOpenpgpUseridApi:
1356
1408
  self,
1357
1409
  open_p_g_p_user_i_d_href: StrictStr,
1358
1410
  unset_label: UnsetLabel,
1411
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1359
1412
  _request_timeout: Union[
1360
1413
  None,
1361
1414
  Annotated[StrictFloat, Field(gt=0)],
@@ -1377,6 +1430,8 @@ class ContentOpenpgpUseridApi:
1377
1430
  :type open_p_g_p_user_i_d_href: str
1378
1431
  :param unset_label: (required)
1379
1432
  :type unset_label: UnsetLabel
1433
+ :param x_task_diagnostics: List of profilers to use on tasks.
1434
+ :type x_task_diagnostics: List[str]
1380
1435
  :param _request_timeout: timeout setting for this request. If one
1381
1436
  number provided, it will be total request
1382
1437
  timeout. It can also be a pair (tuple) of
@@ -1402,6 +1457,7 @@ class ContentOpenpgpUseridApi:
1402
1457
  _param = self._unset_label_serialize(
1403
1458
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
1404
1459
  unset_label=unset_label,
1460
+ x_task_diagnostics=x_task_diagnostics,
1405
1461
  _request_auth=_request_auth,
1406
1462
  _content_type=_content_type,
1407
1463
  _headers=_headers,
@@ -1427,6 +1483,7 @@ class ContentOpenpgpUseridApi:
1427
1483
  self,
1428
1484
  open_p_g_p_user_i_d_href: StrictStr,
1429
1485
  unset_label: UnsetLabel,
1486
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
1430
1487
  _request_timeout: Union[
1431
1488
  None,
1432
1489
  Annotated[StrictFloat, Field(gt=0)],
@@ -1448,6 +1505,8 @@ class ContentOpenpgpUseridApi:
1448
1505
  :type open_p_g_p_user_i_d_href: str
1449
1506
  :param unset_label: (required)
1450
1507
  :type unset_label: UnsetLabel
1508
+ :param x_task_diagnostics: List of profilers to use on tasks.
1509
+ :type x_task_diagnostics: List[str]
1451
1510
  :param _request_timeout: timeout setting for this request. If one
1452
1511
  number provided, it will be total request
1453
1512
  timeout. It can also be a pair (tuple) of
@@ -1473,6 +1532,7 @@ class ContentOpenpgpUseridApi:
1473
1532
  _param = self._unset_label_serialize(
1474
1533
  open_p_g_p_user_i_d_href=open_p_g_p_user_i_d_href,
1475
1534
  unset_label=unset_label,
1535
+ x_task_diagnostics=x_task_diagnostics,
1476
1536
  _request_auth=_request_auth,
1477
1537
  _content_type=_content_type,
1478
1538
  _headers=_headers,
@@ -1493,6 +1553,7 @@ class ContentOpenpgpUseridApi:
1493
1553
  self,
1494
1554
  open_p_g_p_user_i_d_href,
1495
1555
  unset_label,
1556
+ x_task_diagnostics,
1496
1557
  _request_auth,
1497
1558
  _content_type,
1498
1559
  _headers,
@@ -1502,6 +1563,7 @@ class ContentOpenpgpUseridApi:
1502
1563
  _host = None
1503
1564
 
1504
1565
  _collection_formats: Dict[str, str] = {
1566
+ 'X-Task-Diagnostics': 'csv',
1505
1567
  }
1506
1568
 
1507
1569
  _path_params: Dict[str, str] = {}
@@ -1518,6 +1580,8 @@ class ContentOpenpgpUseridApi:
1518
1580
  _path_params['open_p_g_p_user_i_d_href'] = open_p_g_p_user_i_d_href
1519
1581
  # process the query parameters
1520
1582
  # process the header parameters
1583
+ if x_task_diagnostics is not None:
1584
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
1521
1585
  # process the form parameters
1522
1586
  # process the body parameter
1523
1587
  if unset_label is not None:
@@ -43,6 +43,7 @@ class ContentguardsApi:
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
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
47
48
  name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
48
49
  name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
@@ -80,6 +81,8 @@ class ContentguardsApi:
80
81
 
81
82
  Endpoint to list all contentguards.
82
83
 
84
+ :param x_task_diagnostics: List of profilers to use on tasks.
85
+ :type x_task_diagnostics: List[str]
83
86
  :param limit: Number of results to return per page.
84
87
  :type limit: int
85
88
  :param name: Filter results where name matches value
@@ -143,6 +146,7 @@ class ContentguardsApi:
143
146
  """ # noqa: E501
144
147
 
145
148
  _param = self._list_serialize(
149
+ x_task_diagnostics=x_task_diagnostics,
146
150
  limit=limit,
147
151
  name=name,
148
152
  name__contains=name__contains,
@@ -186,6 +190,7 @@ class ContentguardsApi:
186
190
  @validate_call
187
191
  def list_with_http_info(
188
192
  self,
193
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
189
194
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
190
195
  name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
191
196
  name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
@@ -223,6 +228,8 @@ class ContentguardsApi:
223
228
 
224
229
  Endpoint to list all contentguards.
225
230
 
231
+ :param x_task_diagnostics: List of profilers to use on tasks.
232
+ :type x_task_diagnostics: List[str]
226
233
  :param limit: Number of results to return per page.
227
234
  :type limit: int
228
235
  :param name: Filter results where name matches value
@@ -286,6 +293,7 @@ class ContentguardsApi:
286
293
  """ # noqa: E501
287
294
 
288
295
  _param = self._list_serialize(
296
+ x_task_diagnostics=x_task_diagnostics,
289
297
  limit=limit,
290
298
  name=name,
291
299
  name__contains=name__contains,
@@ -329,6 +337,7 @@ class ContentguardsApi:
329
337
  @validate_call
330
338
  def list_without_preload_content(
331
339
  self,
340
+ x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
332
341
  limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
333
342
  name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
334
343
  name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
@@ -366,6 +375,8 @@ class ContentguardsApi:
366
375
 
367
376
  Endpoint to list all contentguards.
368
377
 
378
+ :param x_task_diagnostics: List of profilers to use on tasks.
379
+ :type x_task_diagnostics: List[str]
369
380
  :param limit: Number of results to return per page.
370
381
  :type limit: int
371
382
  :param name: Filter results where name matches value
@@ -429,6 +440,7 @@ class ContentguardsApi:
429
440
  """ # noqa: E501
430
441
 
431
442
  _param = self._list_serialize(
443
+ x_task_diagnostics=x_task_diagnostics,
432
444
  limit=limit,
433
445
  name=name,
434
446
  name__contains=name__contains,
@@ -467,6 +479,7 @@ class ContentguardsApi:
467
479
 
468
480
  def _list_serialize(
469
481
  self,
482
+ x_task_diagnostics,
470
483
  limit,
471
484
  name,
472
485
  name__contains,
@@ -496,6 +509,7 @@ class ContentguardsApi:
496
509
  _host = None
497
510
 
498
511
  _collection_formats: Dict[str, str] = {
512
+ 'X-Task-Diagnostics': 'csv',
499
513
  'name__in': 'csv',
500
514
  'ordering': 'csv',
501
515
  'prn__in': 'csv',
@@ -598,6 +612,8 @@ class ContentguardsApi:
598
612
  _query_params.append(('exclude_fields', exclude_fields))
599
613
 
600
614
  # process the header parameters
615
+ if x_task_diagnostics is not None:
616
+ _header_params['X-Task-Diagnostics'] = x_task_diagnostics
601
617
  # process the form parameters
602
618
  # process the body parameter
603
619