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
|
@@ -53,6 +53,7 @@ class DomainsApi:
|
|
|
53
53
|
def create(
|
|
54
54
|
self,
|
|
55
55
|
domain: Domain,
|
|
56
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
56
57
|
_request_timeout: Union[
|
|
57
58
|
None,
|
|
58
59
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -72,6 +73,8 @@ class DomainsApi:
|
|
|
72
73
|
|
|
73
74
|
:param domain: (required)
|
|
74
75
|
:type domain: Domain
|
|
76
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
77
|
+
:type x_task_diagnostics: List[str]
|
|
75
78
|
:param _request_timeout: timeout setting for this request. If one
|
|
76
79
|
number provided, it will be total request
|
|
77
80
|
timeout. It can also be a pair (tuple) of
|
|
@@ -96,6 +99,7 @@ class DomainsApi:
|
|
|
96
99
|
|
|
97
100
|
_param = self._create_serialize(
|
|
98
101
|
domain=domain,
|
|
102
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
99
103
|
_request_auth=_request_auth,
|
|
100
104
|
_content_type=_content_type,
|
|
101
105
|
_headers=_headers,
|
|
@@ -120,6 +124,7 @@ class DomainsApi:
|
|
|
120
124
|
def create_with_http_info(
|
|
121
125
|
self,
|
|
122
126
|
domain: Domain,
|
|
127
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
123
128
|
_request_timeout: Union[
|
|
124
129
|
None,
|
|
125
130
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -139,6 +144,8 @@ class DomainsApi:
|
|
|
139
144
|
|
|
140
145
|
:param domain: (required)
|
|
141
146
|
:type domain: Domain
|
|
147
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
148
|
+
:type x_task_diagnostics: List[str]
|
|
142
149
|
:param _request_timeout: timeout setting for this request. If one
|
|
143
150
|
number provided, it will be total request
|
|
144
151
|
timeout. It can also be a pair (tuple) of
|
|
@@ -163,6 +170,7 @@ class DomainsApi:
|
|
|
163
170
|
|
|
164
171
|
_param = self._create_serialize(
|
|
165
172
|
domain=domain,
|
|
173
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
166
174
|
_request_auth=_request_auth,
|
|
167
175
|
_content_type=_content_type,
|
|
168
176
|
_headers=_headers,
|
|
@@ -187,6 +195,7 @@ class DomainsApi:
|
|
|
187
195
|
def create_without_preload_content(
|
|
188
196
|
self,
|
|
189
197
|
domain: Domain,
|
|
198
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
190
199
|
_request_timeout: Union[
|
|
191
200
|
None,
|
|
192
201
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -206,6 +215,8 @@ class DomainsApi:
|
|
|
206
215
|
|
|
207
216
|
:param domain: (required)
|
|
208
217
|
:type domain: Domain
|
|
218
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
219
|
+
:type x_task_diagnostics: List[str]
|
|
209
220
|
:param _request_timeout: timeout setting for this request. If one
|
|
210
221
|
number provided, it will be total request
|
|
211
222
|
timeout. It can also be a pair (tuple) of
|
|
@@ -230,6 +241,7 @@ class DomainsApi:
|
|
|
230
241
|
|
|
231
242
|
_param = self._create_serialize(
|
|
232
243
|
domain=domain,
|
|
244
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
233
245
|
_request_auth=_request_auth,
|
|
234
246
|
_content_type=_content_type,
|
|
235
247
|
_headers=_headers,
|
|
@@ -249,6 +261,7 @@ class DomainsApi:
|
|
|
249
261
|
def _create_serialize(
|
|
250
262
|
self,
|
|
251
263
|
domain,
|
|
264
|
+
x_task_diagnostics,
|
|
252
265
|
_request_auth,
|
|
253
266
|
_content_type,
|
|
254
267
|
_headers,
|
|
@@ -258,6 +271,7 @@ class DomainsApi:
|
|
|
258
271
|
_host = None
|
|
259
272
|
|
|
260
273
|
_collection_formats: Dict[str, str] = {
|
|
274
|
+
'X-Task-Diagnostics': 'csv',
|
|
261
275
|
}
|
|
262
276
|
|
|
263
277
|
_path_params: Dict[str, str] = {}
|
|
@@ -272,6 +286,8 @@ class DomainsApi:
|
|
|
272
286
|
# process the path parameters
|
|
273
287
|
# process the query parameters
|
|
274
288
|
# process the header parameters
|
|
289
|
+
if x_task_diagnostics is not None:
|
|
290
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
275
291
|
# process the form parameters
|
|
276
292
|
# process the body parameter
|
|
277
293
|
if domain is not None:
|
|
@@ -330,6 +346,7 @@ class DomainsApi:
|
|
|
330
346
|
def delete(
|
|
331
347
|
self,
|
|
332
348
|
domain_href: StrictStr,
|
|
349
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
333
350
|
_request_timeout: Union[
|
|
334
351
|
None,
|
|
335
352
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -349,6 +366,8 @@ class DomainsApi:
|
|
|
349
366
|
|
|
350
367
|
:param domain_href: (required)
|
|
351
368
|
:type domain_href: str
|
|
369
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
370
|
+
:type x_task_diagnostics: List[str]
|
|
352
371
|
:param _request_timeout: timeout setting for this request. If one
|
|
353
372
|
number provided, it will be total request
|
|
354
373
|
timeout. It can also be a pair (tuple) of
|
|
@@ -373,6 +392,7 @@ class DomainsApi:
|
|
|
373
392
|
|
|
374
393
|
_param = self._delete_serialize(
|
|
375
394
|
domain_href=domain_href,
|
|
395
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
376
396
|
_request_auth=_request_auth,
|
|
377
397
|
_content_type=_content_type,
|
|
378
398
|
_headers=_headers,
|
|
@@ -397,6 +417,7 @@ class DomainsApi:
|
|
|
397
417
|
def delete_with_http_info(
|
|
398
418
|
self,
|
|
399
419
|
domain_href: StrictStr,
|
|
420
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
400
421
|
_request_timeout: Union[
|
|
401
422
|
None,
|
|
402
423
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -416,6 +437,8 @@ class DomainsApi:
|
|
|
416
437
|
|
|
417
438
|
:param domain_href: (required)
|
|
418
439
|
:type domain_href: str
|
|
440
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
441
|
+
:type x_task_diagnostics: List[str]
|
|
419
442
|
:param _request_timeout: timeout setting for this request. If one
|
|
420
443
|
number provided, it will be total request
|
|
421
444
|
timeout. It can also be a pair (tuple) of
|
|
@@ -440,6 +463,7 @@ class DomainsApi:
|
|
|
440
463
|
|
|
441
464
|
_param = self._delete_serialize(
|
|
442
465
|
domain_href=domain_href,
|
|
466
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
443
467
|
_request_auth=_request_auth,
|
|
444
468
|
_content_type=_content_type,
|
|
445
469
|
_headers=_headers,
|
|
@@ -464,6 +488,7 @@ class DomainsApi:
|
|
|
464
488
|
def delete_without_preload_content(
|
|
465
489
|
self,
|
|
466
490
|
domain_href: StrictStr,
|
|
491
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
467
492
|
_request_timeout: Union[
|
|
468
493
|
None,
|
|
469
494
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -483,6 +508,8 @@ class DomainsApi:
|
|
|
483
508
|
|
|
484
509
|
:param domain_href: (required)
|
|
485
510
|
:type domain_href: str
|
|
511
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
512
|
+
:type x_task_diagnostics: List[str]
|
|
486
513
|
:param _request_timeout: timeout setting for this request. If one
|
|
487
514
|
number provided, it will be total request
|
|
488
515
|
timeout. It can also be a pair (tuple) of
|
|
@@ -507,6 +534,7 @@ class DomainsApi:
|
|
|
507
534
|
|
|
508
535
|
_param = self._delete_serialize(
|
|
509
536
|
domain_href=domain_href,
|
|
537
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
510
538
|
_request_auth=_request_auth,
|
|
511
539
|
_content_type=_content_type,
|
|
512
540
|
_headers=_headers,
|
|
@@ -526,6 +554,7 @@ class DomainsApi:
|
|
|
526
554
|
def _delete_serialize(
|
|
527
555
|
self,
|
|
528
556
|
domain_href,
|
|
557
|
+
x_task_diagnostics,
|
|
529
558
|
_request_auth,
|
|
530
559
|
_content_type,
|
|
531
560
|
_headers,
|
|
@@ -535,6 +564,7 @@ class DomainsApi:
|
|
|
535
564
|
_host = None
|
|
536
565
|
|
|
537
566
|
_collection_formats: Dict[str, str] = {
|
|
567
|
+
'X-Task-Diagnostics': 'csv',
|
|
538
568
|
}
|
|
539
569
|
|
|
540
570
|
_path_params: Dict[str, str] = {}
|
|
@@ -551,6 +581,8 @@ class DomainsApi:
|
|
|
551
581
|
_path_params['domain_href'] = domain_href
|
|
552
582
|
# process the query parameters
|
|
553
583
|
# process the header parameters
|
|
584
|
+
if x_task_diagnostics is not None:
|
|
585
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
554
586
|
# process the form parameters
|
|
555
587
|
# process the body parameter
|
|
556
588
|
|
|
@@ -591,6 +623,7 @@ class DomainsApi:
|
|
|
591
623
|
@validate_call
|
|
592
624
|
def list(
|
|
593
625
|
self,
|
|
626
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
594
627
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
595
628
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
596
629
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -627,6 +660,8 @@ class DomainsApi:
|
|
|
627
660
|
|
|
628
661
|
ViewSet for Domain. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
|
629
662
|
|
|
663
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
664
|
+
:type x_task_diagnostics: List[str]
|
|
630
665
|
:param limit: Number of results to return per page.
|
|
631
666
|
:type limit: int
|
|
632
667
|
:param name: Filter results where name matches value
|
|
@@ -688,6 +723,7 @@ class DomainsApi:
|
|
|
688
723
|
""" # noqa: E501
|
|
689
724
|
|
|
690
725
|
_param = self._list_serialize(
|
|
726
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
691
727
|
limit=limit,
|
|
692
728
|
name=name,
|
|
693
729
|
name__contains=name__contains,
|
|
@@ -730,6 +766,7 @@ class DomainsApi:
|
|
|
730
766
|
@validate_call
|
|
731
767
|
def list_with_http_info(
|
|
732
768
|
self,
|
|
769
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
733
770
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
734
771
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
735
772
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -766,6 +803,8 @@ class DomainsApi:
|
|
|
766
803
|
|
|
767
804
|
ViewSet for Domain. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
|
768
805
|
|
|
806
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
807
|
+
:type x_task_diagnostics: List[str]
|
|
769
808
|
:param limit: Number of results to return per page.
|
|
770
809
|
:type limit: int
|
|
771
810
|
:param name: Filter results where name matches value
|
|
@@ -827,6 +866,7 @@ class DomainsApi:
|
|
|
827
866
|
""" # noqa: E501
|
|
828
867
|
|
|
829
868
|
_param = self._list_serialize(
|
|
869
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
830
870
|
limit=limit,
|
|
831
871
|
name=name,
|
|
832
872
|
name__contains=name__contains,
|
|
@@ -869,6 +909,7 @@ class DomainsApi:
|
|
|
869
909
|
@validate_call
|
|
870
910
|
def list_without_preload_content(
|
|
871
911
|
self,
|
|
912
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
872
913
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
873
914
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
874
915
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -905,6 +946,8 @@ class DomainsApi:
|
|
|
905
946
|
|
|
906
947
|
ViewSet for Domain. NOTE: This API endpoint is in \"tech preview\" and subject to change
|
|
907
948
|
|
|
949
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
950
|
+
:type x_task_diagnostics: List[str]
|
|
908
951
|
:param limit: Number of results to return per page.
|
|
909
952
|
:type limit: int
|
|
910
953
|
:param name: Filter results where name matches value
|
|
@@ -966,6 +1009,7 @@ class DomainsApi:
|
|
|
966
1009
|
""" # noqa: E501
|
|
967
1010
|
|
|
968
1011
|
_param = self._list_serialize(
|
|
1012
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
969
1013
|
limit=limit,
|
|
970
1014
|
name=name,
|
|
971
1015
|
name__contains=name__contains,
|
|
@@ -1003,6 +1047,7 @@ class DomainsApi:
|
|
|
1003
1047
|
|
|
1004
1048
|
def _list_serialize(
|
|
1005
1049
|
self,
|
|
1050
|
+
x_task_diagnostics,
|
|
1006
1051
|
limit,
|
|
1007
1052
|
name,
|
|
1008
1053
|
name__contains,
|
|
@@ -1031,6 +1076,7 @@ class DomainsApi:
|
|
|
1031
1076
|
_host = None
|
|
1032
1077
|
|
|
1033
1078
|
_collection_formats: Dict[str, str] = {
|
|
1079
|
+
'X-Task-Diagnostics': 'csv',
|
|
1034
1080
|
'name__in': 'csv',
|
|
1035
1081
|
'ordering': 'csv',
|
|
1036
1082
|
'prn__in': 'csv',
|
|
@@ -1128,6 +1174,8 @@ class DomainsApi:
|
|
|
1128
1174
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1129
1175
|
|
|
1130
1176
|
# process the header parameters
|
|
1177
|
+
if x_task_diagnostics is not None:
|
|
1178
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1131
1179
|
# process the form parameters
|
|
1132
1180
|
# process the body parameter
|
|
1133
1181
|
|
|
@@ -1169,6 +1217,7 @@ class DomainsApi:
|
|
|
1169
1217
|
def migrate(
|
|
1170
1218
|
self,
|
|
1171
1219
|
domain_backend_migrator: DomainBackendMigrator,
|
|
1220
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1172
1221
|
_request_timeout: Union[
|
|
1173
1222
|
None,
|
|
1174
1223
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1188,6 +1237,8 @@ class DomainsApi:
|
|
|
1188
1237
|
|
|
1189
1238
|
:param domain_backend_migrator: (required)
|
|
1190
1239
|
:type domain_backend_migrator: DomainBackendMigrator
|
|
1240
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1241
|
+
:type x_task_diagnostics: List[str]
|
|
1191
1242
|
:param _request_timeout: timeout setting for this request. If one
|
|
1192
1243
|
number provided, it will be total request
|
|
1193
1244
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1212,6 +1263,7 @@ class DomainsApi:
|
|
|
1212
1263
|
|
|
1213
1264
|
_param = self._migrate_serialize(
|
|
1214
1265
|
domain_backend_migrator=domain_backend_migrator,
|
|
1266
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1215
1267
|
_request_auth=_request_auth,
|
|
1216
1268
|
_content_type=_content_type,
|
|
1217
1269
|
_headers=_headers,
|
|
@@ -1236,6 +1288,7 @@ class DomainsApi:
|
|
|
1236
1288
|
def migrate_with_http_info(
|
|
1237
1289
|
self,
|
|
1238
1290
|
domain_backend_migrator: DomainBackendMigrator,
|
|
1291
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1239
1292
|
_request_timeout: Union[
|
|
1240
1293
|
None,
|
|
1241
1294
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1255,6 +1308,8 @@ class DomainsApi:
|
|
|
1255
1308
|
|
|
1256
1309
|
:param domain_backend_migrator: (required)
|
|
1257
1310
|
:type domain_backend_migrator: DomainBackendMigrator
|
|
1311
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1312
|
+
:type x_task_diagnostics: List[str]
|
|
1258
1313
|
:param _request_timeout: timeout setting for this request. If one
|
|
1259
1314
|
number provided, it will be total request
|
|
1260
1315
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1279,6 +1334,7 @@ class DomainsApi:
|
|
|
1279
1334
|
|
|
1280
1335
|
_param = self._migrate_serialize(
|
|
1281
1336
|
domain_backend_migrator=domain_backend_migrator,
|
|
1337
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1282
1338
|
_request_auth=_request_auth,
|
|
1283
1339
|
_content_type=_content_type,
|
|
1284
1340
|
_headers=_headers,
|
|
@@ -1303,6 +1359,7 @@ class DomainsApi:
|
|
|
1303
1359
|
def migrate_without_preload_content(
|
|
1304
1360
|
self,
|
|
1305
1361
|
domain_backend_migrator: DomainBackendMigrator,
|
|
1362
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1306
1363
|
_request_timeout: Union[
|
|
1307
1364
|
None,
|
|
1308
1365
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1322,6 +1379,8 @@ class DomainsApi:
|
|
|
1322
1379
|
|
|
1323
1380
|
:param domain_backend_migrator: (required)
|
|
1324
1381
|
:type domain_backend_migrator: DomainBackendMigrator
|
|
1382
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1383
|
+
:type x_task_diagnostics: List[str]
|
|
1325
1384
|
:param _request_timeout: timeout setting for this request. If one
|
|
1326
1385
|
number provided, it will be total request
|
|
1327
1386
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1346,6 +1405,7 @@ class DomainsApi:
|
|
|
1346
1405
|
|
|
1347
1406
|
_param = self._migrate_serialize(
|
|
1348
1407
|
domain_backend_migrator=domain_backend_migrator,
|
|
1408
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1349
1409
|
_request_auth=_request_auth,
|
|
1350
1410
|
_content_type=_content_type,
|
|
1351
1411
|
_headers=_headers,
|
|
@@ -1365,6 +1425,7 @@ class DomainsApi:
|
|
|
1365
1425
|
def _migrate_serialize(
|
|
1366
1426
|
self,
|
|
1367
1427
|
domain_backend_migrator,
|
|
1428
|
+
x_task_diagnostics,
|
|
1368
1429
|
_request_auth,
|
|
1369
1430
|
_content_type,
|
|
1370
1431
|
_headers,
|
|
@@ -1374,6 +1435,7 @@ class DomainsApi:
|
|
|
1374
1435
|
_host = None
|
|
1375
1436
|
|
|
1376
1437
|
_collection_formats: Dict[str, str] = {
|
|
1438
|
+
'X-Task-Diagnostics': 'csv',
|
|
1377
1439
|
}
|
|
1378
1440
|
|
|
1379
1441
|
_path_params: Dict[str, str] = {}
|
|
@@ -1388,6 +1450,8 @@ class DomainsApi:
|
|
|
1388
1450
|
# process the path parameters
|
|
1389
1451
|
# process the query parameters
|
|
1390
1452
|
# process the header parameters
|
|
1453
|
+
if x_task_diagnostics is not None:
|
|
1454
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1391
1455
|
# process the form parameters
|
|
1392
1456
|
# process the body parameter
|
|
1393
1457
|
if domain_backend_migrator is not None:
|
|
@@ -1447,6 +1511,7 @@ class DomainsApi:
|
|
|
1447
1511
|
self,
|
|
1448
1512
|
domain_href: StrictStr,
|
|
1449
1513
|
patched_domain: PatchedDomain,
|
|
1514
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1450
1515
|
_request_timeout: Union[
|
|
1451
1516
|
None,
|
|
1452
1517
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1468,6 +1533,8 @@ class DomainsApi:
|
|
|
1468
1533
|
:type domain_href: str
|
|
1469
1534
|
:param patched_domain: (required)
|
|
1470
1535
|
:type patched_domain: PatchedDomain
|
|
1536
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1537
|
+
:type x_task_diagnostics: List[str]
|
|
1471
1538
|
:param _request_timeout: timeout setting for this request. If one
|
|
1472
1539
|
number provided, it will be total request
|
|
1473
1540
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1493,6 +1560,7 @@ class DomainsApi:
|
|
|
1493
1560
|
_param = self._partial_update_serialize(
|
|
1494
1561
|
domain_href=domain_href,
|
|
1495
1562
|
patched_domain=patched_domain,
|
|
1563
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1496
1564
|
_request_auth=_request_auth,
|
|
1497
1565
|
_content_type=_content_type,
|
|
1498
1566
|
_headers=_headers,
|
|
@@ -1518,6 +1586,7 @@ class DomainsApi:
|
|
|
1518
1586
|
self,
|
|
1519
1587
|
domain_href: StrictStr,
|
|
1520
1588
|
patched_domain: PatchedDomain,
|
|
1589
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1521
1590
|
_request_timeout: Union[
|
|
1522
1591
|
None,
|
|
1523
1592
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1539,6 +1608,8 @@ class DomainsApi:
|
|
|
1539
1608
|
:type domain_href: str
|
|
1540
1609
|
:param patched_domain: (required)
|
|
1541
1610
|
:type patched_domain: PatchedDomain
|
|
1611
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1612
|
+
:type x_task_diagnostics: List[str]
|
|
1542
1613
|
:param _request_timeout: timeout setting for this request. If one
|
|
1543
1614
|
number provided, it will be total request
|
|
1544
1615
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1564,6 +1635,7 @@ class DomainsApi:
|
|
|
1564
1635
|
_param = self._partial_update_serialize(
|
|
1565
1636
|
domain_href=domain_href,
|
|
1566
1637
|
patched_domain=patched_domain,
|
|
1638
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1567
1639
|
_request_auth=_request_auth,
|
|
1568
1640
|
_content_type=_content_type,
|
|
1569
1641
|
_headers=_headers,
|
|
@@ -1589,6 +1661,7 @@ class DomainsApi:
|
|
|
1589
1661
|
self,
|
|
1590
1662
|
domain_href: StrictStr,
|
|
1591
1663
|
patched_domain: PatchedDomain,
|
|
1664
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1592
1665
|
_request_timeout: Union[
|
|
1593
1666
|
None,
|
|
1594
1667
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1610,6 +1683,8 @@ class DomainsApi:
|
|
|
1610
1683
|
:type domain_href: str
|
|
1611
1684
|
:param patched_domain: (required)
|
|
1612
1685
|
:type patched_domain: PatchedDomain
|
|
1686
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1687
|
+
:type x_task_diagnostics: List[str]
|
|
1613
1688
|
:param _request_timeout: timeout setting for this request. If one
|
|
1614
1689
|
number provided, it will be total request
|
|
1615
1690
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1635,6 +1710,7 @@ class DomainsApi:
|
|
|
1635
1710
|
_param = self._partial_update_serialize(
|
|
1636
1711
|
domain_href=domain_href,
|
|
1637
1712
|
patched_domain=patched_domain,
|
|
1713
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1638
1714
|
_request_auth=_request_auth,
|
|
1639
1715
|
_content_type=_content_type,
|
|
1640
1716
|
_headers=_headers,
|
|
@@ -1655,6 +1731,7 @@ class DomainsApi:
|
|
|
1655
1731
|
self,
|
|
1656
1732
|
domain_href,
|
|
1657
1733
|
patched_domain,
|
|
1734
|
+
x_task_diagnostics,
|
|
1658
1735
|
_request_auth,
|
|
1659
1736
|
_content_type,
|
|
1660
1737
|
_headers,
|
|
@@ -1664,6 +1741,7 @@ class DomainsApi:
|
|
|
1664
1741
|
_host = None
|
|
1665
1742
|
|
|
1666
1743
|
_collection_formats: Dict[str, str] = {
|
|
1744
|
+
'X-Task-Diagnostics': 'csv',
|
|
1667
1745
|
}
|
|
1668
1746
|
|
|
1669
1747
|
_path_params: Dict[str, str] = {}
|
|
@@ -1680,6 +1758,8 @@ class DomainsApi:
|
|
|
1680
1758
|
_path_params['domain_href'] = domain_href
|
|
1681
1759
|
# process the query parameters
|
|
1682
1760
|
# process the header parameters
|
|
1761
|
+
if x_task_diagnostics is not None:
|
|
1762
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1683
1763
|
# process the form parameters
|
|
1684
1764
|
# process the body parameter
|
|
1685
1765
|
if patched_domain is not None:
|
|
@@ -1738,6 +1818,7 @@ class DomainsApi:
|
|
|
1738
1818
|
def read(
|
|
1739
1819
|
self,
|
|
1740
1820
|
domain_href: StrictStr,
|
|
1821
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1741
1822
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1742
1823
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1743
1824
|
_request_timeout: Union[
|
|
@@ -1759,6 +1840,8 @@ class DomainsApi:
|
|
|
1759
1840
|
|
|
1760
1841
|
:param domain_href: (required)
|
|
1761
1842
|
:type domain_href: str
|
|
1843
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1844
|
+
:type x_task_diagnostics: List[str]
|
|
1762
1845
|
:param fields: A list of fields to include in the response.
|
|
1763
1846
|
:type fields: List[str]
|
|
1764
1847
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1787,6 +1870,7 @@ class DomainsApi:
|
|
|
1787
1870
|
|
|
1788
1871
|
_param = self._read_serialize(
|
|
1789
1872
|
domain_href=domain_href,
|
|
1873
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1790
1874
|
fields=fields,
|
|
1791
1875
|
exclude_fields=exclude_fields,
|
|
1792
1876
|
_request_auth=_request_auth,
|
|
@@ -1813,6 +1897,7 @@ class DomainsApi:
|
|
|
1813
1897
|
def read_with_http_info(
|
|
1814
1898
|
self,
|
|
1815
1899
|
domain_href: StrictStr,
|
|
1900
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1816
1901
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1817
1902
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1818
1903
|
_request_timeout: Union[
|
|
@@ -1834,6 +1919,8 @@ class DomainsApi:
|
|
|
1834
1919
|
|
|
1835
1920
|
:param domain_href: (required)
|
|
1836
1921
|
:type domain_href: str
|
|
1922
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1923
|
+
:type x_task_diagnostics: List[str]
|
|
1837
1924
|
:param fields: A list of fields to include in the response.
|
|
1838
1925
|
:type fields: List[str]
|
|
1839
1926
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1862,6 +1949,7 @@ class DomainsApi:
|
|
|
1862
1949
|
|
|
1863
1950
|
_param = self._read_serialize(
|
|
1864
1951
|
domain_href=domain_href,
|
|
1952
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1865
1953
|
fields=fields,
|
|
1866
1954
|
exclude_fields=exclude_fields,
|
|
1867
1955
|
_request_auth=_request_auth,
|
|
@@ -1888,6 +1976,7 @@ class DomainsApi:
|
|
|
1888
1976
|
def read_without_preload_content(
|
|
1889
1977
|
self,
|
|
1890
1978
|
domain_href: StrictStr,
|
|
1979
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1891
1980
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1892
1981
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1893
1982
|
_request_timeout: Union[
|
|
@@ -1909,6 +1998,8 @@ class DomainsApi:
|
|
|
1909
1998
|
|
|
1910
1999
|
:param domain_href: (required)
|
|
1911
2000
|
:type domain_href: str
|
|
2001
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2002
|
+
:type x_task_diagnostics: List[str]
|
|
1912
2003
|
:param fields: A list of fields to include in the response.
|
|
1913
2004
|
:type fields: List[str]
|
|
1914
2005
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1937,6 +2028,7 @@ class DomainsApi:
|
|
|
1937
2028
|
|
|
1938
2029
|
_param = self._read_serialize(
|
|
1939
2030
|
domain_href=domain_href,
|
|
2031
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1940
2032
|
fields=fields,
|
|
1941
2033
|
exclude_fields=exclude_fields,
|
|
1942
2034
|
_request_auth=_request_auth,
|
|
@@ -1958,6 +2050,7 @@ class DomainsApi:
|
|
|
1958
2050
|
def _read_serialize(
|
|
1959
2051
|
self,
|
|
1960
2052
|
domain_href,
|
|
2053
|
+
x_task_diagnostics,
|
|
1961
2054
|
fields,
|
|
1962
2055
|
exclude_fields,
|
|
1963
2056
|
_request_auth,
|
|
@@ -1969,6 +2062,7 @@ class DomainsApi:
|
|
|
1969
2062
|
_host = None
|
|
1970
2063
|
|
|
1971
2064
|
_collection_formats: Dict[str, str] = {
|
|
2065
|
+
'X-Task-Diagnostics': 'csv',
|
|
1972
2066
|
'fields': 'multi',
|
|
1973
2067
|
'exclude_fields': 'multi',
|
|
1974
2068
|
}
|
|
@@ -1995,6 +2089,8 @@ class DomainsApi:
|
|
|
1995
2089
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1996
2090
|
|
|
1997
2091
|
# process the header parameters
|
|
2092
|
+
if x_task_diagnostics is not None:
|
|
2093
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1998
2094
|
# process the form parameters
|
|
1999
2095
|
# process the body parameter
|
|
2000
2096
|
|
|
@@ -2037,6 +2133,7 @@ class DomainsApi:
|
|
|
2037
2133
|
self,
|
|
2038
2134
|
domain_href: StrictStr,
|
|
2039
2135
|
set_label: SetLabel,
|
|
2136
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2040
2137
|
_request_timeout: Union[
|
|
2041
2138
|
None,
|
|
2042
2139
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2058,6 +2155,8 @@ class DomainsApi:
|
|
|
2058
2155
|
:type domain_href: str
|
|
2059
2156
|
:param set_label: (required)
|
|
2060
2157
|
:type set_label: SetLabel
|
|
2158
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2159
|
+
:type x_task_diagnostics: List[str]
|
|
2061
2160
|
:param _request_timeout: timeout setting for this request. If one
|
|
2062
2161
|
number provided, it will be total request
|
|
2063
2162
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2083,6 +2182,7 @@ class DomainsApi:
|
|
|
2083
2182
|
_param = self._set_label_serialize(
|
|
2084
2183
|
domain_href=domain_href,
|
|
2085
2184
|
set_label=set_label,
|
|
2185
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2086
2186
|
_request_auth=_request_auth,
|
|
2087
2187
|
_content_type=_content_type,
|
|
2088
2188
|
_headers=_headers,
|
|
@@ -2108,6 +2208,7 @@ class DomainsApi:
|
|
|
2108
2208
|
self,
|
|
2109
2209
|
domain_href: StrictStr,
|
|
2110
2210
|
set_label: SetLabel,
|
|
2211
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2111
2212
|
_request_timeout: Union[
|
|
2112
2213
|
None,
|
|
2113
2214
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2129,6 +2230,8 @@ class DomainsApi:
|
|
|
2129
2230
|
:type domain_href: str
|
|
2130
2231
|
:param set_label: (required)
|
|
2131
2232
|
:type set_label: SetLabel
|
|
2233
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2234
|
+
:type x_task_diagnostics: List[str]
|
|
2132
2235
|
:param _request_timeout: timeout setting for this request. If one
|
|
2133
2236
|
number provided, it will be total request
|
|
2134
2237
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2154,6 +2257,7 @@ class DomainsApi:
|
|
|
2154
2257
|
_param = self._set_label_serialize(
|
|
2155
2258
|
domain_href=domain_href,
|
|
2156
2259
|
set_label=set_label,
|
|
2260
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2157
2261
|
_request_auth=_request_auth,
|
|
2158
2262
|
_content_type=_content_type,
|
|
2159
2263
|
_headers=_headers,
|
|
@@ -2179,6 +2283,7 @@ class DomainsApi:
|
|
|
2179
2283
|
self,
|
|
2180
2284
|
domain_href: StrictStr,
|
|
2181
2285
|
set_label: SetLabel,
|
|
2286
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2182
2287
|
_request_timeout: Union[
|
|
2183
2288
|
None,
|
|
2184
2289
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2200,6 +2305,8 @@ class DomainsApi:
|
|
|
2200
2305
|
:type domain_href: str
|
|
2201
2306
|
:param set_label: (required)
|
|
2202
2307
|
:type set_label: SetLabel
|
|
2308
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2309
|
+
:type x_task_diagnostics: List[str]
|
|
2203
2310
|
:param _request_timeout: timeout setting for this request. If one
|
|
2204
2311
|
number provided, it will be total request
|
|
2205
2312
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2225,6 +2332,7 @@ class DomainsApi:
|
|
|
2225
2332
|
_param = self._set_label_serialize(
|
|
2226
2333
|
domain_href=domain_href,
|
|
2227
2334
|
set_label=set_label,
|
|
2335
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2228
2336
|
_request_auth=_request_auth,
|
|
2229
2337
|
_content_type=_content_type,
|
|
2230
2338
|
_headers=_headers,
|
|
@@ -2245,6 +2353,7 @@ class DomainsApi:
|
|
|
2245
2353
|
self,
|
|
2246
2354
|
domain_href,
|
|
2247
2355
|
set_label,
|
|
2356
|
+
x_task_diagnostics,
|
|
2248
2357
|
_request_auth,
|
|
2249
2358
|
_content_type,
|
|
2250
2359
|
_headers,
|
|
@@ -2254,6 +2363,7 @@ class DomainsApi:
|
|
|
2254
2363
|
_host = None
|
|
2255
2364
|
|
|
2256
2365
|
_collection_formats: Dict[str, str] = {
|
|
2366
|
+
'X-Task-Diagnostics': 'csv',
|
|
2257
2367
|
}
|
|
2258
2368
|
|
|
2259
2369
|
_path_params: Dict[str, str] = {}
|
|
@@ -2270,6 +2380,8 @@ class DomainsApi:
|
|
|
2270
2380
|
_path_params['domain_href'] = domain_href
|
|
2271
2381
|
# process the query parameters
|
|
2272
2382
|
# process the header parameters
|
|
2383
|
+
if x_task_diagnostics is not None:
|
|
2384
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2273
2385
|
# process the form parameters
|
|
2274
2386
|
# process the body parameter
|
|
2275
2387
|
if set_label is not None:
|
|
@@ -2329,6 +2441,7 @@ class DomainsApi:
|
|
|
2329
2441
|
self,
|
|
2330
2442
|
domain_href: StrictStr,
|
|
2331
2443
|
unset_label: UnsetLabel,
|
|
2444
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2332
2445
|
_request_timeout: Union[
|
|
2333
2446
|
None,
|
|
2334
2447
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2350,6 +2463,8 @@ class DomainsApi:
|
|
|
2350
2463
|
:type domain_href: str
|
|
2351
2464
|
:param unset_label: (required)
|
|
2352
2465
|
:type unset_label: UnsetLabel
|
|
2466
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2467
|
+
:type x_task_diagnostics: List[str]
|
|
2353
2468
|
:param _request_timeout: timeout setting for this request. If one
|
|
2354
2469
|
number provided, it will be total request
|
|
2355
2470
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2375,6 +2490,7 @@ class DomainsApi:
|
|
|
2375
2490
|
_param = self._unset_label_serialize(
|
|
2376
2491
|
domain_href=domain_href,
|
|
2377
2492
|
unset_label=unset_label,
|
|
2493
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2378
2494
|
_request_auth=_request_auth,
|
|
2379
2495
|
_content_type=_content_type,
|
|
2380
2496
|
_headers=_headers,
|
|
@@ -2400,6 +2516,7 @@ class DomainsApi:
|
|
|
2400
2516
|
self,
|
|
2401
2517
|
domain_href: StrictStr,
|
|
2402
2518
|
unset_label: UnsetLabel,
|
|
2519
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2403
2520
|
_request_timeout: Union[
|
|
2404
2521
|
None,
|
|
2405
2522
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2421,6 +2538,8 @@ class DomainsApi:
|
|
|
2421
2538
|
:type domain_href: str
|
|
2422
2539
|
:param unset_label: (required)
|
|
2423
2540
|
:type unset_label: UnsetLabel
|
|
2541
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2542
|
+
:type x_task_diagnostics: List[str]
|
|
2424
2543
|
:param _request_timeout: timeout setting for this request. If one
|
|
2425
2544
|
number provided, it will be total request
|
|
2426
2545
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2446,6 +2565,7 @@ class DomainsApi:
|
|
|
2446
2565
|
_param = self._unset_label_serialize(
|
|
2447
2566
|
domain_href=domain_href,
|
|
2448
2567
|
unset_label=unset_label,
|
|
2568
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2449
2569
|
_request_auth=_request_auth,
|
|
2450
2570
|
_content_type=_content_type,
|
|
2451
2571
|
_headers=_headers,
|
|
@@ -2471,6 +2591,7 @@ class DomainsApi:
|
|
|
2471
2591
|
self,
|
|
2472
2592
|
domain_href: StrictStr,
|
|
2473
2593
|
unset_label: UnsetLabel,
|
|
2594
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2474
2595
|
_request_timeout: Union[
|
|
2475
2596
|
None,
|
|
2476
2597
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2492,6 +2613,8 @@ class DomainsApi:
|
|
|
2492
2613
|
:type domain_href: str
|
|
2493
2614
|
:param unset_label: (required)
|
|
2494
2615
|
:type unset_label: UnsetLabel
|
|
2616
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2617
|
+
:type x_task_diagnostics: List[str]
|
|
2495
2618
|
:param _request_timeout: timeout setting for this request. If one
|
|
2496
2619
|
number provided, it will be total request
|
|
2497
2620
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2517,6 +2640,7 @@ class DomainsApi:
|
|
|
2517
2640
|
_param = self._unset_label_serialize(
|
|
2518
2641
|
domain_href=domain_href,
|
|
2519
2642
|
unset_label=unset_label,
|
|
2643
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2520
2644
|
_request_auth=_request_auth,
|
|
2521
2645
|
_content_type=_content_type,
|
|
2522
2646
|
_headers=_headers,
|
|
@@ -2537,6 +2661,7 @@ class DomainsApi:
|
|
|
2537
2661
|
self,
|
|
2538
2662
|
domain_href,
|
|
2539
2663
|
unset_label,
|
|
2664
|
+
x_task_diagnostics,
|
|
2540
2665
|
_request_auth,
|
|
2541
2666
|
_content_type,
|
|
2542
2667
|
_headers,
|
|
@@ -2546,6 +2671,7 @@ class DomainsApi:
|
|
|
2546
2671
|
_host = None
|
|
2547
2672
|
|
|
2548
2673
|
_collection_formats: Dict[str, str] = {
|
|
2674
|
+
'X-Task-Diagnostics': 'csv',
|
|
2549
2675
|
}
|
|
2550
2676
|
|
|
2551
2677
|
_path_params: Dict[str, str] = {}
|
|
@@ -2562,6 +2688,8 @@ class DomainsApi:
|
|
|
2562
2688
|
_path_params['domain_href'] = domain_href
|
|
2563
2689
|
# process the query parameters
|
|
2564
2690
|
# process the header parameters
|
|
2691
|
+
if x_task_diagnostics is not None:
|
|
2692
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2565
2693
|
# process the form parameters
|
|
2566
2694
|
# process the body parameter
|
|
2567
2695
|
if unset_label is not None:
|
|
@@ -2621,6 +2749,7 @@ class DomainsApi:
|
|
|
2621
2749
|
self,
|
|
2622
2750
|
domain_href: StrictStr,
|
|
2623
2751
|
domain: Domain,
|
|
2752
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2624
2753
|
_request_timeout: Union[
|
|
2625
2754
|
None,
|
|
2626
2755
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2642,6 +2771,8 @@ class DomainsApi:
|
|
|
2642
2771
|
:type domain_href: str
|
|
2643
2772
|
:param domain: (required)
|
|
2644
2773
|
:type domain: Domain
|
|
2774
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2775
|
+
:type x_task_diagnostics: List[str]
|
|
2645
2776
|
:param _request_timeout: timeout setting for this request. If one
|
|
2646
2777
|
number provided, it will be total request
|
|
2647
2778
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2667,6 +2798,7 @@ class DomainsApi:
|
|
|
2667
2798
|
_param = self._update_serialize(
|
|
2668
2799
|
domain_href=domain_href,
|
|
2669
2800
|
domain=domain,
|
|
2801
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2670
2802
|
_request_auth=_request_auth,
|
|
2671
2803
|
_content_type=_content_type,
|
|
2672
2804
|
_headers=_headers,
|
|
@@ -2692,6 +2824,7 @@ class DomainsApi:
|
|
|
2692
2824
|
self,
|
|
2693
2825
|
domain_href: StrictStr,
|
|
2694
2826
|
domain: Domain,
|
|
2827
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2695
2828
|
_request_timeout: Union[
|
|
2696
2829
|
None,
|
|
2697
2830
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2713,6 +2846,8 @@ class DomainsApi:
|
|
|
2713
2846
|
:type domain_href: str
|
|
2714
2847
|
:param domain: (required)
|
|
2715
2848
|
:type domain: Domain
|
|
2849
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2850
|
+
:type x_task_diagnostics: List[str]
|
|
2716
2851
|
:param _request_timeout: timeout setting for this request. If one
|
|
2717
2852
|
number provided, it will be total request
|
|
2718
2853
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2738,6 +2873,7 @@ class DomainsApi:
|
|
|
2738
2873
|
_param = self._update_serialize(
|
|
2739
2874
|
domain_href=domain_href,
|
|
2740
2875
|
domain=domain,
|
|
2876
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2741
2877
|
_request_auth=_request_auth,
|
|
2742
2878
|
_content_type=_content_type,
|
|
2743
2879
|
_headers=_headers,
|
|
@@ -2763,6 +2899,7 @@ class DomainsApi:
|
|
|
2763
2899
|
self,
|
|
2764
2900
|
domain_href: StrictStr,
|
|
2765
2901
|
domain: Domain,
|
|
2902
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2766
2903
|
_request_timeout: Union[
|
|
2767
2904
|
None,
|
|
2768
2905
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2784,6 +2921,8 @@ class DomainsApi:
|
|
|
2784
2921
|
:type domain_href: str
|
|
2785
2922
|
:param domain: (required)
|
|
2786
2923
|
:type domain: Domain
|
|
2924
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2925
|
+
:type x_task_diagnostics: List[str]
|
|
2787
2926
|
:param _request_timeout: timeout setting for this request. If one
|
|
2788
2927
|
number provided, it will be total request
|
|
2789
2928
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2809,6 +2948,7 @@ class DomainsApi:
|
|
|
2809
2948
|
_param = self._update_serialize(
|
|
2810
2949
|
domain_href=domain_href,
|
|
2811
2950
|
domain=domain,
|
|
2951
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2812
2952
|
_request_auth=_request_auth,
|
|
2813
2953
|
_content_type=_content_type,
|
|
2814
2954
|
_headers=_headers,
|
|
@@ -2829,6 +2969,7 @@ class DomainsApi:
|
|
|
2829
2969
|
self,
|
|
2830
2970
|
domain_href,
|
|
2831
2971
|
domain,
|
|
2972
|
+
x_task_diagnostics,
|
|
2832
2973
|
_request_auth,
|
|
2833
2974
|
_content_type,
|
|
2834
2975
|
_headers,
|
|
@@ -2838,6 +2979,7 @@ class DomainsApi:
|
|
|
2838
2979
|
_host = None
|
|
2839
2980
|
|
|
2840
2981
|
_collection_formats: Dict[str, str] = {
|
|
2982
|
+
'X-Task-Diagnostics': 'csv',
|
|
2841
2983
|
}
|
|
2842
2984
|
|
|
2843
2985
|
_path_params: Dict[str, str] = {}
|
|
@@ -2854,6 +2996,8 @@ class DomainsApi:
|
|
|
2854
2996
|
_path_params['domain_href'] = domain_href
|
|
2855
2997
|
# process the query parameters
|
|
2856
2998
|
# process the header parameters
|
|
2999
|
+
if x_task_diagnostics is not None:
|
|
3000
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2857
3001
|
# process the form parameters
|
|
2858
3002
|
# process the body parameter
|
|
2859
3003
|
if domain is not None:
|