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
|
@@ -47,6 +47,7 @@ class UsersApi:
|
|
|
47
47
|
def create(
|
|
48
48
|
self,
|
|
49
49
|
user: User,
|
|
50
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
50
51
|
_request_timeout: Union[
|
|
51
52
|
None,
|
|
52
53
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -66,6 +67,8 @@ class UsersApi:
|
|
|
66
67
|
|
|
67
68
|
:param user: (required)
|
|
68
69
|
:type user: User
|
|
70
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
71
|
+
:type x_task_diagnostics: List[str]
|
|
69
72
|
:param _request_timeout: timeout setting for this request. If one
|
|
70
73
|
number provided, it will be total request
|
|
71
74
|
timeout. It can also be a pair (tuple) of
|
|
@@ -90,6 +93,7 @@ class UsersApi:
|
|
|
90
93
|
|
|
91
94
|
_param = self._create_serialize(
|
|
92
95
|
user=user,
|
|
96
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
93
97
|
_request_auth=_request_auth,
|
|
94
98
|
_content_type=_content_type,
|
|
95
99
|
_headers=_headers,
|
|
@@ -114,6 +118,7 @@ class UsersApi:
|
|
|
114
118
|
def create_with_http_info(
|
|
115
119
|
self,
|
|
116
120
|
user: User,
|
|
121
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
117
122
|
_request_timeout: Union[
|
|
118
123
|
None,
|
|
119
124
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -133,6 +138,8 @@ class UsersApi:
|
|
|
133
138
|
|
|
134
139
|
:param user: (required)
|
|
135
140
|
:type user: User
|
|
141
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
142
|
+
:type x_task_diagnostics: List[str]
|
|
136
143
|
:param _request_timeout: timeout setting for this request. If one
|
|
137
144
|
number provided, it will be total request
|
|
138
145
|
timeout. It can also be a pair (tuple) of
|
|
@@ -157,6 +164,7 @@ class UsersApi:
|
|
|
157
164
|
|
|
158
165
|
_param = self._create_serialize(
|
|
159
166
|
user=user,
|
|
167
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
160
168
|
_request_auth=_request_auth,
|
|
161
169
|
_content_type=_content_type,
|
|
162
170
|
_headers=_headers,
|
|
@@ -181,6 +189,7 @@ class UsersApi:
|
|
|
181
189
|
def create_without_preload_content(
|
|
182
190
|
self,
|
|
183
191
|
user: User,
|
|
192
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
184
193
|
_request_timeout: Union[
|
|
185
194
|
None,
|
|
186
195
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -200,6 +209,8 @@ class UsersApi:
|
|
|
200
209
|
|
|
201
210
|
:param user: (required)
|
|
202
211
|
:type user: User
|
|
212
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
213
|
+
:type x_task_diagnostics: List[str]
|
|
203
214
|
:param _request_timeout: timeout setting for this request. If one
|
|
204
215
|
number provided, it will be total request
|
|
205
216
|
timeout. It can also be a pair (tuple) of
|
|
@@ -224,6 +235,7 @@ class UsersApi:
|
|
|
224
235
|
|
|
225
236
|
_param = self._create_serialize(
|
|
226
237
|
user=user,
|
|
238
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
227
239
|
_request_auth=_request_auth,
|
|
228
240
|
_content_type=_content_type,
|
|
229
241
|
_headers=_headers,
|
|
@@ -243,6 +255,7 @@ class UsersApi:
|
|
|
243
255
|
def _create_serialize(
|
|
244
256
|
self,
|
|
245
257
|
user,
|
|
258
|
+
x_task_diagnostics,
|
|
246
259
|
_request_auth,
|
|
247
260
|
_content_type,
|
|
248
261
|
_headers,
|
|
@@ -252,6 +265,7 @@ class UsersApi:
|
|
|
252
265
|
_host = None
|
|
253
266
|
|
|
254
267
|
_collection_formats: Dict[str, str] = {
|
|
268
|
+
'X-Task-Diagnostics': 'csv',
|
|
255
269
|
}
|
|
256
270
|
|
|
257
271
|
_path_params: Dict[str, str] = {}
|
|
@@ -266,6 +280,8 @@ class UsersApi:
|
|
|
266
280
|
# process the path parameters
|
|
267
281
|
# process the query parameters
|
|
268
282
|
# process the header parameters
|
|
283
|
+
if x_task_diagnostics is not None:
|
|
284
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
269
285
|
# process the form parameters
|
|
270
286
|
# process the body parameter
|
|
271
287
|
if user is not None:
|
|
@@ -324,6 +340,7 @@ class UsersApi:
|
|
|
324
340
|
def delete(
|
|
325
341
|
self,
|
|
326
342
|
auth_user_href: StrictStr,
|
|
343
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
327
344
|
_request_timeout: Union[
|
|
328
345
|
None,
|
|
329
346
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -343,6 +360,8 @@ class UsersApi:
|
|
|
343
360
|
|
|
344
361
|
:param auth_user_href: (required)
|
|
345
362
|
:type auth_user_href: str
|
|
363
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
364
|
+
:type x_task_diagnostics: List[str]
|
|
346
365
|
:param _request_timeout: timeout setting for this request. If one
|
|
347
366
|
number provided, it will be total request
|
|
348
367
|
timeout. It can also be a pair (tuple) of
|
|
@@ -367,6 +386,7 @@ class UsersApi:
|
|
|
367
386
|
|
|
368
387
|
_param = self._delete_serialize(
|
|
369
388
|
auth_user_href=auth_user_href,
|
|
389
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
370
390
|
_request_auth=_request_auth,
|
|
371
391
|
_content_type=_content_type,
|
|
372
392
|
_headers=_headers,
|
|
@@ -391,6 +411,7 @@ class UsersApi:
|
|
|
391
411
|
def delete_with_http_info(
|
|
392
412
|
self,
|
|
393
413
|
auth_user_href: StrictStr,
|
|
414
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
394
415
|
_request_timeout: Union[
|
|
395
416
|
None,
|
|
396
417
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -410,6 +431,8 @@ class UsersApi:
|
|
|
410
431
|
|
|
411
432
|
:param auth_user_href: (required)
|
|
412
433
|
:type auth_user_href: str
|
|
434
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
435
|
+
:type x_task_diagnostics: List[str]
|
|
413
436
|
:param _request_timeout: timeout setting for this request. If one
|
|
414
437
|
number provided, it will be total request
|
|
415
438
|
timeout. It can also be a pair (tuple) of
|
|
@@ -434,6 +457,7 @@ class UsersApi:
|
|
|
434
457
|
|
|
435
458
|
_param = self._delete_serialize(
|
|
436
459
|
auth_user_href=auth_user_href,
|
|
460
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
437
461
|
_request_auth=_request_auth,
|
|
438
462
|
_content_type=_content_type,
|
|
439
463
|
_headers=_headers,
|
|
@@ -458,6 +482,7 @@ class UsersApi:
|
|
|
458
482
|
def delete_without_preload_content(
|
|
459
483
|
self,
|
|
460
484
|
auth_user_href: StrictStr,
|
|
485
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
461
486
|
_request_timeout: Union[
|
|
462
487
|
None,
|
|
463
488
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -477,6 +502,8 @@ class UsersApi:
|
|
|
477
502
|
|
|
478
503
|
:param auth_user_href: (required)
|
|
479
504
|
:type auth_user_href: str
|
|
505
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
506
|
+
:type x_task_diagnostics: List[str]
|
|
480
507
|
:param _request_timeout: timeout setting for this request. If one
|
|
481
508
|
number provided, it will be total request
|
|
482
509
|
timeout. It can also be a pair (tuple) of
|
|
@@ -501,6 +528,7 @@ class UsersApi:
|
|
|
501
528
|
|
|
502
529
|
_param = self._delete_serialize(
|
|
503
530
|
auth_user_href=auth_user_href,
|
|
531
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
504
532
|
_request_auth=_request_auth,
|
|
505
533
|
_content_type=_content_type,
|
|
506
534
|
_headers=_headers,
|
|
@@ -520,6 +548,7 @@ class UsersApi:
|
|
|
520
548
|
def _delete_serialize(
|
|
521
549
|
self,
|
|
522
550
|
auth_user_href,
|
|
551
|
+
x_task_diagnostics,
|
|
523
552
|
_request_auth,
|
|
524
553
|
_content_type,
|
|
525
554
|
_headers,
|
|
@@ -529,6 +558,7 @@ class UsersApi:
|
|
|
529
558
|
_host = None
|
|
530
559
|
|
|
531
560
|
_collection_formats: Dict[str, str] = {
|
|
561
|
+
'X-Task-Diagnostics': 'csv',
|
|
532
562
|
}
|
|
533
563
|
|
|
534
564
|
_path_params: Dict[str, str] = {}
|
|
@@ -545,6 +575,8 @@ class UsersApi:
|
|
|
545
575
|
_path_params['auth_user_href'] = auth_user_href
|
|
546
576
|
# process the query parameters
|
|
547
577
|
# process the header parameters
|
|
578
|
+
if x_task_diagnostics is not None:
|
|
579
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
548
580
|
# process the form parameters
|
|
549
581
|
# process the body parameter
|
|
550
582
|
|
|
@@ -578,6 +610,7 @@ class UsersApi:
|
|
|
578
610
|
@validate_call
|
|
579
611
|
def list(
|
|
580
612
|
self,
|
|
613
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
581
614
|
email: Annotated[Optional[StrictStr], Field(description="Filter results where email matches value")] = None,
|
|
582
615
|
email__contains: Annotated[Optional[StrictStr], Field(description="Filter results where email contains value")] = None,
|
|
583
616
|
email__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where email contains value")] = None,
|
|
@@ -626,6 +659,8 @@ class UsersApi:
|
|
|
626
659
|
|
|
627
660
|
ViewSet for User.
|
|
628
661
|
|
|
662
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
663
|
+
:type x_task_diagnostics: List[str]
|
|
629
664
|
:param email: Filter results where email matches value
|
|
630
665
|
:type email: str
|
|
631
666
|
:param email__contains: Filter results where email contains value
|
|
@@ -711,6 +746,7 @@ class UsersApi:
|
|
|
711
746
|
""" # noqa: E501
|
|
712
747
|
|
|
713
748
|
_param = self._list_serialize(
|
|
749
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
714
750
|
email=email,
|
|
715
751
|
email__contains=email__contains,
|
|
716
752
|
email__icontains=email__icontains,
|
|
@@ -765,6 +801,7 @@ class UsersApi:
|
|
|
765
801
|
@validate_call
|
|
766
802
|
def list_with_http_info(
|
|
767
803
|
self,
|
|
804
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
768
805
|
email: Annotated[Optional[StrictStr], Field(description="Filter results where email matches value")] = None,
|
|
769
806
|
email__contains: Annotated[Optional[StrictStr], Field(description="Filter results where email contains value")] = None,
|
|
770
807
|
email__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where email contains value")] = None,
|
|
@@ -813,6 +850,8 @@ class UsersApi:
|
|
|
813
850
|
|
|
814
851
|
ViewSet for User.
|
|
815
852
|
|
|
853
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
854
|
+
:type x_task_diagnostics: List[str]
|
|
816
855
|
:param email: Filter results where email matches value
|
|
817
856
|
:type email: str
|
|
818
857
|
:param email__contains: Filter results where email contains value
|
|
@@ -898,6 +937,7 @@ class UsersApi:
|
|
|
898
937
|
""" # noqa: E501
|
|
899
938
|
|
|
900
939
|
_param = self._list_serialize(
|
|
940
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
901
941
|
email=email,
|
|
902
942
|
email__contains=email__contains,
|
|
903
943
|
email__icontains=email__icontains,
|
|
@@ -952,6 +992,7 @@ class UsersApi:
|
|
|
952
992
|
@validate_call
|
|
953
993
|
def list_without_preload_content(
|
|
954
994
|
self,
|
|
995
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
955
996
|
email: Annotated[Optional[StrictStr], Field(description="Filter results where email matches value")] = None,
|
|
956
997
|
email__contains: Annotated[Optional[StrictStr], Field(description="Filter results where email contains value")] = None,
|
|
957
998
|
email__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where email contains value")] = None,
|
|
@@ -1000,6 +1041,8 @@ class UsersApi:
|
|
|
1000
1041
|
|
|
1001
1042
|
ViewSet for User.
|
|
1002
1043
|
|
|
1044
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1045
|
+
:type x_task_diagnostics: List[str]
|
|
1003
1046
|
:param email: Filter results where email matches value
|
|
1004
1047
|
:type email: str
|
|
1005
1048
|
:param email__contains: Filter results where email contains value
|
|
@@ -1085,6 +1128,7 @@ class UsersApi:
|
|
|
1085
1128
|
""" # noqa: E501
|
|
1086
1129
|
|
|
1087
1130
|
_param = self._list_serialize(
|
|
1131
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1088
1132
|
email=email,
|
|
1089
1133
|
email__contains=email__contains,
|
|
1090
1134
|
email__icontains=email__icontains,
|
|
@@ -1134,6 +1178,7 @@ class UsersApi:
|
|
|
1134
1178
|
|
|
1135
1179
|
def _list_serialize(
|
|
1136
1180
|
self,
|
|
1181
|
+
x_task_diagnostics,
|
|
1137
1182
|
email,
|
|
1138
1183
|
email__contains,
|
|
1139
1184
|
email__icontains,
|
|
@@ -1174,6 +1219,7 @@ class UsersApi:
|
|
|
1174
1219
|
_host = None
|
|
1175
1220
|
|
|
1176
1221
|
_collection_formats: Dict[str, str] = {
|
|
1222
|
+
'X-Task-Diagnostics': 'csv',
|
|
1177
1223
|
'email__in': 'csv',
|
|
1178
1224
|
'first_name__in': 'csv',
|
|
1179
1225
|
'last_name__in': 'csv',
|
|
@@ -1322,6 +1368,8 @@ class UsersApi:
|
|
|
1322
1368
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1323
1369
|
|
|
1324
1370
|
# process the header parameters
|
|
1371
|
+
if x_task_diagnostics is not None:
|
|
1372
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1325
1373
|
# process the form parameters
|
|
1326
1374
|
# process the body parameter
|
|
1327
1375
|
|
|
@@ -1364,6 +1412,7 @@ class UsersApi:
|
|
|
1364
1412
|
self,
|
|
1365
1413
|
auth_user_href: StrictStr,
|
|
1366
1414
|
patched_user: PatchedUser,
|
|
1415
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1367
1416
|
_request_timeout: Union[
|
|
1368
1417
|
None,
|
|
1369
1418
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1385,6 +1434,8 @@ class UsersApi:
|
|
|
1385
1434
|
:type auth_user_href: str
|
|
1386
1435
|
:param patched_user: (required)
|
|
1387
1436
|
:type patched_user: PatchedUser
|
|
1437
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1438
|
+
:type x_task_diagnostics: List[str]
|
|
1388
1439
|
:param _request_timeout: timeout setting for this request. If one
|
|
1389
1440
|
number provided, it will be total request
|
|
1390
1441
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1410,6 +1461,7 @@ class UsersApi:
|
|
|
1410
1461
|
_param = self._partial_update_serialize(
|
|
1411
1462
|
auth_user_href=auth_user_href,
|
|
1412
1463
|
patched_user=patched_user,
|
|
1464
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1413
1465
|
_request_auth=_request_auth,
|
|
1414
1466
|
_content_type=_content_type,
|
|
1415
1467
|
_headers=_headers,
|
|
@@ -1435,6 +1487,7 @@ class UsersApi:
|
|
|
1435
1487
|
self,
|
|
1436
1488
|
auth_user_href: StrictStr,
|
|
1437
1489
|
patched_user: PatchedUser,
|
|
1490
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1438
1491
|
_request_timeout: Union[
|
|
1439
1492
|
None,
|
|
1440
1493
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1456,6 +1509,8 @@ class UsersApi:
|
|
|
1456
1509
|
:type auth_user_href: str
|
|
1457
1510
|
:param patched_user: (required)
|
|
1458
1511
|
:type patched_user: PatchedUser
|
|
1512
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1513
|
+
:type x_task_diagnostics: List[str]
|
|
1459
1514
|
:param _request_timeout: timeout setting for this request. If one
|
|
1460
1515
|
number provided, it will be total request
|
|
1461
1516
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1481,6 +1536,7 @@ class UsersApi:
|
|
|
1481
1536
|
_param = self._partial_update_serialize(
|
|
1482
1537
|
auth_user_href=auth_user_href,
|
|
1483
1538
|
patched_user=patched_user,
|
|
1539
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1484
1540
|
_request_auth=_request_auth,
|
|
1485
1541
|
_content_type=_content_type,
|
|
1486
1542
|
_headers=_headers,
|
|
@@ -1506,6 +1562,7 @@ class UsersApi:
|
|
|
1506
1562
|
self,
|
|
1507
1563
|
auth_user_href: StrictStr,
|
|
1508
1564
|
patched_user: PatchedUser,
|
|
1565
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1509
1566
|
_request_timeout: Union[
|
|
1510
1567
|
None,
|
|
1511
1568
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1527,6 +1584,8 @@ class UsersApi:
|
|
|
1527
1584
|
:type auth_user_href: str
|
|
1528
1585
|
:param patched_user: (required)
|
|
1529
1586
|
:type patched_user: PatchedUser
|
|
1587
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1588
|
+
:type x_task_diagnostics: List[str]
|
|
1530
1589
|
:param _request_timeout: timeout setting for this request. If one
|
|
1531
1590
|
number provided, it will be total request
|
|
1532
1591
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1552,6 +1611,7 @@ class UsersApi:
|
|
|
1552
1611
|
_param = self._partial_update_serialize(
|
|
1553
1612
|
auth_user_href=auth_user_href,
|
|
1554
1613
|
patched_user=patched_user,
|
|
1614
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1555
1615
|
_request_auth=_request_auth,
|
|
1556
1616
|
_content_type=_content_type,
|
|
1557
1617
|
_headers=_headers,
|
|
@@ -1572,6 +1632,7 @@ class UsersApi:
|
|
|
1572
1632
|
self,
|
|
1573
1633
|
auth_user_href,
|
|
1574
1634
|
patched_user,
|
|
1635
|
+
x_task_diagnostics,
|
|
1575
1636
|
_request_auth,
|
|
1576
1637
|
_content_type,
|
|
1577
1638
|
_headers,
|
|
@@ -1581,6 +1642,7 @@ class UsersApi:
|
|
|
1581
1642
|
_host = None
|
|
1582
1643
|
|
|
1583
1644
|
_collection_formats: Dict[str, str] = {
|
|
1645
|
+
'X-Task-Diagnostics': 'csv',
|
|
1584
1646
|
}
|
|
1585
1647
|
|
|
1586
1648
|
_path_params: Dict[str, str] = {}
|
|
@@ -1597,6 +1659,8 @@ class UsersApi:
|
|
|
1597
1659
|
_path_params['auth_user_href'] = auth_user_href
|
|
1598
1660
|
# process the query parameters
|
|
1599
1661
|
# process the header parameters
|
|
1662
|
+
if x_task_diagnostics is not None:
|
|
1663
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1600
1664
|
# process the form parameters
|
|
1601
1665
|
# process the body parameter
|
|
1602
1666
|
if patched_user is not None:
|
|
@@ -1655,6 +1719,7 @@ class UsersApi:
|
|
|
1655
1719
|
def read(
|
|
1656
1720
|
self,
|
|
1657
1721
|
auth_user_href: StrictStr,
|
|
1722
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1658
1723
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1659
1724
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1660
1725
|
_request_timeout: Union[
|
|
@@ -1676,6 +1741,8 @@ class UsersApi:
|
|
|
1676
1741
|
|
|
1677
1742
|
:param auth_user_href: (required)
|
|
1678
1743
|
:type auth_user_href: str
|
|
1744
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1745
|
+
:type x_task_diagnostics: List[str]
|
|
1679
1746
|
:param fields: A list of fields to include in the response.
|
|
1680
1747
|
:type fields: List[str]
|
|
1681
1748
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1704,6 +1771,7 @@ class UsersApi:
|
|
|
1704
1771
|
|
|
1705
1772
|
_param = self._read_serialize(
|
|
1706
1773
|
auth_user_href=auth_user_href,
|
|
1774
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1707
1775
|
fields=fields,
|
|
1708
1776
|
exclude_fields=exclude_fields,
|
|
1709
1777
|
_request_auth=_request_auth,
|
|
@@ -1730,6 +1798,7 @@ class UsersApi:
|
|
|
1730
1798
|
def read_with_http_info(
|
|
1731
1799
|
self,
|
|
1732
1800
|
auth_user_href: StrictStr,
|
|
1801
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1733
1802
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1734
1803
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1735
1804
|
_request_timeout: Union[
|
|
@@ -1751,6 +1820,8 @@ class UsersApi:
|
|
|
1751
1820
|
|
|
1752
1821
|
:param auth_user_href: (required)
|
|
1753
1822
|
:type auth_user_href: str
|
|
1823
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1824
|
+
:type x_task_diagnostics: List[str]
|
|
1754
1825
|
:param fields: A list of fields to include in the response.
|
|
1755
1826
|
:type fields: List[str]
|
|
1756
1827
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1779,6 +1850,7 @@ class UsersApi:
|
|
|
1779
1850
|
|
|
1780
1851
|
_param = self._read_serialize(
|
|
1781
1852
|
auth_user_href=auth_user_href,
|
|
1853
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1782
1854
|
fields=fields,
|
|
1783
1855
|
exclude_fields=exclude_fields,
|
|
1784
1856
|
_request_auth=_request_auth,
|
|
@@ -1805,6 +1877,7 @@ class UsersApi:
|
|
|
1805
1877
|
def read_without_preload_content(
|
|
1806
1878
|
self,
|
|
1807
1879
|
auth_user_href: StrictStr,
|
|
1880
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1808
1881
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1809
1882
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1810
1883
|
_request_timeout: Union[
|
|
@@ -1826,6 +1899,8 @@ class UsersApi:
|
|
|
1826
1899
|
|
|
1827
1900
|
:param auth_user_href: (required)
|
|
1828
1901
|
:type auth_user_href: str
|
|
1902
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1903
|
+
:type x_task_diagnostics: List[str]
|
|
1829
1904
|
:param fields: A list of fields to include in the response.
|
|
1830
1905
|
:type fields: List[str]
|
|
1831
1906
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1854,6 +1929,7 @@ class UsersApi:
|
|
|
1854
1929
|
|
|
1855
1930
|
_param = self._read_serialize(
|
|
1856
1931
|
auth_user_href=auth_user_href,
|
|
1932
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1857
1933
|
fields=fields,
|
|
1858
1934
|
exclude_fields=exclude_fields,
|
|
1859
1935
|
_request_auth=_request_auth,
|
|
@@ -1875,6 +1951,7 @@ class UsersApi:
|
|
|
1875
1951
|
def _read_serialize(
|
|
1876
1952
|
self,
|
|
1877
1953
|
auth_user_href,
|
|
1954
|
+
x_task_diagnostics,
|
|
1878
1955
|
fields,
|
|
1879
1956
|
exclude_fields,
|
|
1880
1957
|
_request_auth,
|
|
@@ -1886,6 +1963,7 @@ class UsersApi:
|
|
|
1886
1963
|
_host = None
|
|
1887
1964
|
|
|
1888
1965
|
_collection_formats: Dict[str, str] = {
|
|
1966
|
+
'X-Task-Diagnostics': 'csv',
|
|
1889
1967
|
'fields': 'multi',
|
|
1890
1968
|
'exclude_fields': 'multi',
|
|
1891
1969
|
}
|
|
@@ -1912,6 +1990,8 @@ class UsersApi:
|
|
|
1912
1990
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1913
1991
|
|
|
1914
1992
|
# process the header parameters
|
|
1993
|
+
if x_task_diagnostics is not None:
|
|
1994
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1915
1995
|
# process the form parameters
|
|
1916
1996
|
# process the body parameter
|
|
1917
1997
|
|
|
@@ -1954,6 +2034,7 @@ class UsersApi:
|
|
|
1954
2034
|
self,
|
|
1955
2035
|
auth_user_href: StrictStr,
|
|
1956
2036
|
user: User,
|
|
2037
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1957
2038
|
_request_timeout: Union[
|
|
1958
2039
|
None,
|
|
1959
2040
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1975,6 +2056,8 @@ class UsersApi:
|
|
|
1975
2056
|
:type auth_user_href: str
|
|
1976
2057
|
:param user: (required)
|
|
1977
2058
|
:type user: User
|
|
2059
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2060
|
+
:type x_task_diagnostics: List[str]
|
|
1978
2061
|
:param _request_timeout: timeout setting for this request. If one
|
|
1979
2062
|
number provided, it will be total request
|
|
1980
2063
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2000,6 +2083,7 @@ class UsersApi:
|
|
|
2000
2083
|
_param = self._update_serialize(
|
|
2001
2084
|
auth_user_href=auth_user_href,
|
|
2002
2085
|
user=user,
|
|
2086
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2003
2087
|
_request_auth=_request_auth,
|
|
2004
2088
|
_content_type=_content_type,
|
|
2005
2089
|
_headers=_headers,
|
|
@@ -2025,6 +2109,7 @@ class UsersApi:
|
|
|
2025
2109
|
self,
|
|
2026
2110
|
auth_user_href: StrictStr,
|
|
2027
2111
|
user: User,
|
|
2112
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2028
2113
|
_request_timeout: Union[
|
|
2029
2114
|
None,
|
|
2030
2115
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2046,6 +2131,8 @@ class UsersApi:
|
|
|
2046
2131
|
:type auth_user_href: str
|
|
2047
2132
|
:param user: (required)
|
|
2048
2133
|
:type user: User
|
|
2134
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2135
|
+
:type x_task_diagnostics: List[str]
|
|
2049
2136
|
:param _request_timeout: timeout setting for this request. If one
|
|
2050
2137
|
number provided, it will be total request
|
|
2051
2138
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2071,6 +2158,7 @@ class UsersApi:
|
|
|
2071
2158
|
_param = self._update_serialize(
|
|
2072
2159
|
auth_user_href=auth_user_href,
|
|
2073
2160
|
user=user,
|
|
2161
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2074
2162
|
_request_auth=_request_auth,
|
|
2075
2163
|
_content_type=_content_type,
|
|
2076
2164
|
_headers=_headers,
|
|
@@ -2096,6 +2184,7 @@ class UsersApi:
|
|
|
2096
2184
|
self,
|
|
2097
2185
|
auth_user_href: StrictStr,
|
|
2098
2186
|
user: User,
|
|
2187
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2099
2188
|
_request_timeout: Union[
|
|
2100
2189
|
None,
|
|
2101
2190
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2117,6 +2206,8 @@ class UsersApi:
|
|
|
2117
2206
|
:type auth_user_href: str
|
|
2118
2207
|
:param user: (required)
|
|
2119
2208
|
:type user: User
|
|
2209
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2210
|
+
:type x_task_diagnostics: List[str]
|
|
2120
2211
|
:param _request_timeout: timeout setting for this request. If one
|
|
2121
2212
|
number provided, it will be total request
|
|
2122
2213
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2142,6 +2233,7 @@ class UsersApi:
|
|
|
2142
2233
|
_param = self._update_serialize(
|
|
2143
2234
|
auth_user_href=auth_user_href,
|
|
2144
2235
|
user=user,
|
|
2236
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2145
2237
|
_request_auth=_request_auth,
|
|
2146
2238
|
_content_type=_content_type,
|
|
2147
2239
|
_headers=_headers,
|
|
@@ -2162,6 +2254,7 @@ class UsersApi:
|
|
|
2162
2254
|
self,
|
|
2163
2255
|
auth_user_href,
|
|
2164
2256
|
user,
|
|
2257
|
+
x_task_diagnostics,
|
|
2165
2258
|
_request_auth,
|
|
2166
2259
|
_content_type,
|
|
2167
2260
|
_headers,
|
|
@@ -2171,6 +2264,7 @@ class UsersApi:
|
|
|
2171
2264
|
_host = None
|
|
2172
2265
|
|
|
2173
2266
|
_collection_formats: Dict[str, str] = {
|
|
2267
|
+
'X-Task-Diagnostics': 'csv',
|
|
2174
2268
|
}
|
|
2175
2269
|
|
|
2176
2270
|
_path_params: Dict[str, str] = {}
|
|
@@ -2187,6 +2281,8 @@ class UsersApi:
|
|
|
2187
2281
|
_path_params['auth_user_href'] = auth_user_href
|
|
2188
2282
|
# process the query parameters
|
|
2189
2283
|
# process the header parameters
|
|
2284
|
+
if x_task_diagnostics is not None:
|
|
2285
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2190
2286
|
# process the form parameters
|
|
2191
2287
|
# process the body parameter
|
|
2192
2288
|
if user is not None:
|