pulpcore-client 3.81.0__py3-none-any.whl → 3.82.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulpcore-client might be problematic. Click here for more details.
- 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 +16 -16
- 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.0.dist-info}/METADATA +1 -1
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/RECORD +64 -64
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/WHEEL +0 -0
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/top_level.txt +0 -0
|
@@ -52,6 +52,7 @@ class GroupsApi:
|
|
|
52
52
|
self,
|
|
53
53
|
group_href: StrictStr,
|
|
54
54
|
nested_role: NestedRole,
|
|
55
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
55
56
|
_request_timeout: Union[
|
|
56
57
|
None,
|
|
57
58
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -73,6 +74,8 @@ class GroupsApi:
|
|
|
73
74
|
:type group_href: str
|
|
74
75
|
:param nested_role: (required)
|
|
75
76
|
:type nested_role: NestedRole
|
|
77
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
78
|
+
:type x_task_diagnostics: List[str]
|
|
76
79
|
:param _request_timeout: timeout setting for this request. If one
|
|
77
80
|
number provided, it will be total request
|
|
78
81
|
timeout. It can also be a pair (tuple) of
|
|
@@ -98,6 +101,7 @@ class GroupsApi:
|
|
|
98
101
|
_param = self._add_role_serialize(
|
|
99
102
|
group_href=group_href,
|
|
100
103
|
nested_role=nested_role,
|
|
104
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
101
105
|
_request_auth=_request_auth,
|
|
102
106
|
_content_type=_content_type,
|
|
103
107
|
_headers=_headers,
|
|
@@ -123,6 +127,7 @@ class GroupsApi:
|
|
|
123
127
|
self,
|
|
124
128
|
group_href: StrictStr,
|
|
125
129
|
nested_role: NestedRole,
|
|
130
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
126
131
|
_request_timeout: Union[
|
|
127
132
|
None,
|
|
128
133
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -144,6 +149,8 @@ class GroupsApi:
|
|
|
144
149
|
:type group_href: str
|
|
145
150
|
:param nested_role: (required)
|
|
146
151
|
:type nested_role: NestedRole
|
|
152
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
153
|
+
:type x_task_diagnostics: List[str]
|
|
147
154
|
:param _request_timeout: timeout setting for this request. If one
|
|
148
155
|
number provided, it will be total request
|
|
149
156
|
timeout. It can also be a pair (tuple) of
|
|
@@ -169,6 +176,7 @@ class GroupsApi:
|
|
|
169
176
|
_param = self._add_role_serialize(
|
|
170
177
|
group_href=group_href,
|
|
171
178
|
nested_role=nested_role,
|
|
179
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
172
180
|
_request_auth=_request_auth,
|
|
173
181
|
_content_type=_content_type,
|
|
174
182
|
_headers=_headers,
|
|
@@ -194,6 +202,7 @@ class GroupsApi:
|
|
|
194
202
|
self,
|
|
195
203
|
group_href: StrictStr,
|
|
196
204
|
nested_role: NestedRole,
|
|
205
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
197
206
|
_request_timeout: Union[
|
|
198
207
|
None,
|
|
199
208
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -215,6 +224,8 @@ class GroupsApi:
|
|
|
215
224
|
:type group_href: str
|
|
216
225
|
:param nested_role: (required)
|
|
217
226
|
:type nested_role: NestedRole
|
|
227
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
228
|
+
:type x_task_diagnostics: List[str]
|
|
218
229
|
:param _request_timeout: timeout setting for this request. If one
|
|
219
230
|
number provided, it will be total request
|
|
220
231
|
timeout. It can also be a pair (tuple) of
|
|
@@ -240,6 +251,7 @@ class GroupsApi:
|
|
|
240
251
|
_param = self._add_role_serialize(
|
|
241
252
|
group_href=group_href,
|
|
242
253
|
nested_role=nested_role,
|
|
254
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
243
255
|
_request_auth=_request_auth,
|
|
244
256
|
_content_type=_content_type,
|
|
245
257
|
_headers=_headers,
|
|
@@ -260,6 +272,7 @@ class GroupsApi:
|
|
|
260
272
|
self,
|
|
261
273
|
group_href,
|
|
262
274
|
nested_role,
|
|
275
|
+
x_task_diagnostics,
|
|
263
276
|
_request_auth,
|
|
264
277
|
_content_type,
|
|
265
278
|
_headers,
|
|
@@ -269,6 +282,7 @@ class GroupsApi:
|
|
|
269
282
|
_host = None
|
|
270
283
|
|
|
271
284
|
_collection_formats: Dict[str, str] = {
|
|
285
|
+
'X-Task-Diagnostics': 'csv',
|
|
272
286
|
}
|
|
273
287
|
|
|
274
288
|
_path_params: Dict[str, str] = {}
|
|
@@ -285,6 +299,8 @@ class GroupsApi:
|
|
|
285
299
|
_path_params['group_href'] = group_href
|
|
286
300
|
# process the query parameters
|
|
287
301
|
# process the header parameters
|
|
302
|
+
if x_task_diagnostics is not None:
|
|
303
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
288
304
|
# process the form parameters
|
|
289
305
|
# process the body parameter
|
|
290
306
|
if nested_role is not None:
|
|
@@ -343,6 +359,7 @@ class GroupsApi:
|
|
|
343
359
|
def create(
|
|
344
360
|
self,
|
|
345
361
|
group: Group,
|
|
362
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
346
363
|
_request_timeout: Union[
|
|
347
364
|
None,
|
|
348
365
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -362,6 +379,8 @@ class GroupsApi:
|
|
|
362
379
|
|
|
363
380
|
:param group: (required)
|
|
364
381
|
:type group: Group
|
|
382
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
383
|
+
:type x_task_diagnostics: List[str]
|
|
365
384
|
:param _request_timeout: timeout setting for this request. If one
|
|
366
385
|
number provided, it will be total request
|
|
367
386
|
timeout. It can also be a pair (tuple) of
|
|
@@ -386,6 +405,7 @@ class GroupsApi:
|
|
|
386
405
|
|
|
387
406
|
_param = self._create_serialize(
|
|
388
407
|
group=group,
|
|
408
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
389
409
|
_request_auth=_request_auth,
|
|
390
410
|
_content_type=_content_type,
|
|
391
411
|
_headers=_headers,
|
|
@@ -410,6 +430,7 @@ class GroupsApi:
|
|
|
410
430
|
def create_with_http_info(
|
|
411
431
|
self,
|
|
412
432
|
group: Group,
|
|
433
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
413
434
|
_request_timeout: Union[
|
|
414
435
|
None,
|
|
415
436
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -429,6 +450,8 @@ class GroupsApi:
|
|
|
429
450
|
|
|
430
451
|
:param group: (required)
|
|
431
452
|
:type group: Group
|
|
453
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
454
|
+
:type x_task_diagnostics: List[str]
|
|
432
455
|
:param _request_timeout: timeout setting for this request. If one
|
|
433
456
|
number provided, it will be total request
|
|
434
457
|
timeout. It can also be a pair (tuple) of
|
|
@@ -453,6 +476,7 @@ class GroupsApi:
|
|
|
453
476
|
|
|
454
477
|
_param = self._create_serialize(
|
|
455
478
|
group=group,
|
|
479
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
456
480
|
_request_auth=_request_auth,
|
|
457
481
|
_content_type=_content_type,
|
|
458
482
|
_headers=_headers,
|
|
@@ -477,6 +501,7 @@ class GroupsApi:
|
|
|
477
501
|
def create_without_preload_content(
|
|
478
502
|
self,
|
|
479
503
|
group: Group,
|
|
504
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
480
505
|
_request_timeout: Union[
|
|
481
506
|
None,
|
|
482
507
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -496,6 +521,8 @@ class GroupsApi:
|
|
|
496
521
|
|
|
497
522
|
:param group: (required)
|
|
498
523
|
:type group: Group
|
|
524
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
525
|
+
:type x_task_diagnostics: List[str]
|
|
499
526
|
:param _request_timeout: timeout setting for this request. If one
|
|
500
527
|
number provided, it will be total request
|
|
501
528
|
timeout. It can also be a pair (tuple) of
|
|
@@ -520,6 +547,7 @@ class GroupsApi:
|
|
|
520
547
|
|
|
521
548
|
_param = self._create_serialize(
|
|
522
549
|
group=group,
|
|
550
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
523
551
|
_request_auth=_request_auth,
|
|
524
552
|
_content_type=_content_type,
|
|
525
553
|
_headers=_headers,
|
|
@@ -539,6 +567,7 @@ class GroupsApi:
|
|
|
539
567
|
def _create_serialize(
|
|
540
568
|
self,
|
|
541
569
|
group,
|
|
570
|
+
x_task_diagnostics,
|
|
542
571
|
_request_auth,
|
|
543
572
|
_content_type,
|
|
544
573
|
_headers,
|
|
@@ -548,6 +577,7 @@ class GroupsApi:
|
|
|
548
577
|
_host = None
|
|
549
578
|
|
|
550
579
|
_collection_formats: Dict[str, str] = {
|
|
580
|
+
'X-Task-Diagnostics': 'csv',
|
|
551
581
|
}
|
|
552
582
|
|
|
553
583
|
_path_params: Dict[str, str] = {}
|
|
@@ -562,6 +592,8 @@ class GroupsApi:
|
|
|
562
592
|
# process the path parameters
|
|
563
593
|
# process the query parameters
|
|
564
594
|
# process the header parameters
|
|
595
|
+
if x_task_diagnostics is not None:
|
|
596
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
565
597
|
# process the form parameters
|
|
566
598
|
# process the body parameter
|
|
567
599
|
if group is not None:
|
|
@@ -620,6 +652,7 @@ class GroupsApi:
|
|
|
620
652
|
def delete(
|
|
621
653
|
self,
|
|
622
654
|
group_href: StrictStr,
|
|
655
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
623
656
|
_request_timeout: Union[
|
|
624
657
|
None,
|
|
625
658
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -639,6 +672,8 @@ class GroupsApi:
|
|
|
639
672
|
|
|
640
673
|
:param group_href: (required)
|
|
641
674
|
:type group_href: str
|
|
675
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
676
|
+
:type x_task_diagnostics: List[str]
|
|
642
677
|
:param _request_timeout: timeout setting for this request. If one
|
|
643
678
|
number provided, it will be total request
|
|
644
679
|
timeout. It can also be a pair (tuple) of
|
|
@@ -663,6 +698,7 @@ class GroupsApi:
|
|
|
663
698
|
|
|
664
699
|
_param = self._delete_serialize(
|
|
665
700
|
group_href=group_href,
|
|
701
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
666
702
|
_request_auth=_request_auth,
|
|
667
703
|
_content_type=_content_type,
|
|
668
704
|
_headers=_headers,
|
|
@@ -687,6 +723,7 @@ class GroupsApi:
|
|
|
687
723
|
def delete_with_http_info(
|
|
688
724
|
self,
|
|
689
725
|
group_href: StrictStr,
|
|
726
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
690
727
|
_request_timeout: Union[
|
|
691
728
|
None,
|
|
692
729
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -706,6 +743,8 @@ class GroupsApi:
|
|
|
706
743
|
|
|
707
744
|
:param group_href: (required)
|
|
708
745
|
:type group_href: str
|
|
746
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
747
|
+
:type x_task_diagnostics: List[str]
|
|
709
748
|
:param _request_timeout: timeout setting for this request. If one
|
|
710
749
|
number provided, it will be total request
|
|
711
750
|
timeout. It can also be a pair (tuple) of
|
|
@@ -730,6 +769,7 @@ class GroupsApi:
|
|
|
730
769
|
|
|
731
770
|
_param = self._delete_serialize(
|
|
732
771
|
group_href=group_href,
|
|
772
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
733
773
|
_request_auth=_request_auth,
|
|
734
774
|
_content_type=_content_type,
|
|
735
775
|
_headers=_headers,
|
|
@@ -754,6 +794,7 @@ class GroupsApi:
|
|
|
754
794
|
def delete_without_preload_content(
|
|
755
795
|
self,
|
|
756
796
|
group_href: StrictStr,
|
|
797
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
757
798
|
_request_timeout: Union[
|
|
758
799
|
None,
|
|
759
800
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -773,6 +814,8 @@ class GroupsApi:
|
|
|
773
814
|
|
|
774
815
|
:param group_href: (required)
|
|
775
816
|
:type group_href: str
|
|
817
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
818
|
+
:type x_task_diagnostics: List[str]
|
|
776
819
|
:param _request_timeout: timeout setting for this request. If one
|
|
777
820
|
number provided, it will be total request
|
|
778
821
|
timeout. It can also be a pair (tuple) of
|
|
@@ -797,6 +840,7 @@ class GroupsApi:
|
|
|
797
840
|
|
|
798
841
|
_param = self._delete_serialize(
|
|
799
842
|
group_href=group_href,
|
|
843
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
800
844
|
_request_auth=_request_auth,
|
|
801
845
|
_content_type=_content_type,
|
|
802
846
|
_headers=_headers,
|
|
@@ -816,6 +860,7 @@ class GroupsApi:
|
|
|
816
860
|
def _delete_serialize(
|
|
817
861
|
self,
|
|
818
862
|
group_href,
|
|
863
|
+
x_task_diagnostics,
|
|
819
864
|
_request_auth,
|
|
820
865
|
_content_type,
|
|
821
866
|
_headers,
|
|
@@ -825,6 +870,7 @@ class GroupsApi:
|
|
|
825
870
|
_host = None
|
|
826
871
|
|
|
827
872
|
_collection_formats: Dict[str, str] = {
|
|
873
|
+
'X-Task-Diagnostics': 'csv',
|
|
828
874
|
}
|
|
829
875
|
|
|
830
876
|
_path_params: Dict[str, str] = {}
|
|
@@ -841,6 +887,8 @@ class GroupsApi:
|
|
|
841
887
|
_path_params['group_href'] = group_href
|
|
842
888
|
# process the query parameters
|
|
843
889
|
# process the header parameters
|
|
890
|
+
if x_task_diagnostics is not None:
|
|
891
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
844
892
|
# process the form parameters
|
|
845
893
|
# process the body parameter
|
|
846
894
|
|
|
@@ -874,6 +922,7 @@ class GroupsApi:
|
|
|
874
922
|
@validate_call
|
|
875
923
|
def list(
|
|
876
924
|
self,
|
|
925
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
877
926
|
id: Annotated[Optional[StrictInt], Field(description="Filter results where id matches value")] = None,
|
|
878
927
|
id__in: Annotated[Optional[List[StrictInt]], Field(description="Filter results where id is in a comma-separated list of values")] = None,
|
|
879
928
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -907,6 +956,8 @@ class GroupsApi:
|
|
|
907
956
|
|
|
908
957
|
ViewSet for Group.
|
|
909
958
|
|
|
959
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
960
|
+
:type x_task_diagnostics: List[str]
|
|
910
961
|
:param id: Filter results where id matches value
|
|
911
962
|
:type id: int
|
|
912
963
|
:param id__in: Filter results where id is in a comma-separated list of values
|
|
@@ -962,6 +1013,7 @@ class GroupsApi:
|
|
|
962
1013
|
""" # noqa: E501
|
|
963
1014
|
|
|
964
1015
|
_param = self._list_serialize(
|
|
1016
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
965
1017
|
id=id,
|
|
966
1018
|
id__in=id__in,
|
|
967
1019
|
limit=limit,
|
|
@@ -1001,6 +1053,7 @@ class GroupsApi:
|
|
|
1001
1053
|
@validate_call
|
|
1002
1054
|
def list_with_http_info(
|
|
1003
1055
|
self,
|
|
1056
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1004
1057
|
id: Annotated[Optional[StrictInt], Field(description="Filter results where id matches value")] = None,
|
|
1005
1058
|
id__in: Annotated[Optional[List[StrictInt]], Field(description="Filter results where id is in a comma-separated list of values")] = None,
|
|
1006
1059
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -1034,6 +1087,8 @@ class GroupsApi:
|
|
|
1034
1087
|
|
|
1035
1088
|
ViewSet for Group.
|
|
1036
1089
|
|
|
1090
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1091
|
+
:type x_task_diagnostics: List[str]
|
|
1037
1092
|
:param id: Filter results where id matches value
|
|
1038
1093
|
:type id: int
|
|
1039
1094
|
:param id__in: Filter results where id is in a comma-separated list of values
|
|
@@ -1089,6 +1144,7 @@ class GroupsApi:
|
|
|
1089
1144
|
""" # noqa: E501
|
|
1090
1145
|
|
|
1091
1146
|
_param = self._list_serialize(
|
|
1147
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1092
1148
|
id=id,
|
|
1093
1149
|
id__in=id__in,
|
|
1094
1150
|
limit=limit,
|
|
@@ -1128,6 +1184,7 @@ class GroupsApi:
|
|
|
1128
1184
|
@validate_call
|
|
1129
1185
|
def list_without_preload_content(
|
|
1130
1186
|
self,
|
|
1187
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1131
1188
|
id: Annotated[Optional[StrictInt], Field(description="Filter results where id matches value")] = None,
|
|
1132
1189
|
id__in: Annotated[Optional[List[StrictInt]], Field(description="Filter results where id is in a comma-separated list of values")] = None,
|
|
1133
1190
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -1161,6 +1218,8 @@ class GroupsApi:
|
|
|
1161
1218
|
|
|
1162
1219
|
ViewSet for Group.
|
|
1163
1220
|
|
|
1221
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1222
|
+
:type x_task_diagnostics: List[str]
|
|
1164
1223
|
:param id: Filter results where id matches value
|
|
1165
1224
|
:type id: int
|
|
1166
1225
|
:param id__in: Filter results where id is in a comma-separated list of values
|
|
@@ -1216,6 +1275,7 @@ class GroupsApi:
|
|
|
1216
1275
|
""" # noqa: E501
|
|
1217
1276
|
|
|
1218
1277
|
_param = self._list_serialize(
|
|
1278
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1219
1279
|
id=id,
|
|
1220
1280
|
id__in=id__in,
|
|
1221
1281
|
limit=limit,
|
|
@@ -1250,6 +1310,7 @@ class GroupsApi:
|
|
|
1250
1310
|
|
|
1251
1311
|
def _list_serialize(
|
|
1252
1312
|
self,
|
|
1313
|
+
x_task_diagnostics,
|
|
1253
1314
|
id,
|
|
1254
1315
|
id__in,
|
|
1255
1316
|
limit,
|
|
@@ -1275,6 +1336,7 @@ class GroupsApi:
|
|
|
1275
1336
|
_host = None
|
|
1276
1337
|
|
|
1277
1338
|
_collection_formats: Dict[str, str] = {
|
|
1339
|
+
'X-Task-Diagnostics': 'csv',
|
|
1278
1340
|
'id__in': 'csv',
|
|
1279
1341
|
'name__in': 'csv',
|
|
1280
1342
|
'ordering': 'csv',
|
|
@@ -1361,6 +1423,8 @@ class GroupsApi:
|
|
|
1361
1423
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1362
1424
|
|
|
1363
1425
|
# process the header parameters
|
|
1426
|
+
if x_task_diagnostics is not None:
|
|
1427
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1364
1428
|
# process the form parameters
|
|
1365
1429
|
# process the body parameter
|
|
1366
1430
|
|
|
@@ -1402,6 +1466,7 @@ class GroupsApi:
|
|
|
1402
1466
|
def list_roles(
|
|
1403
1467
|
self,
|
|
1404
1468
|
group_href: StrictStr,
|
|
1469
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1405
1470
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1406
1471
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1407
1472
|
_request_timeout: Union[
|
|
@@ -1423,6 +1488,8 @@ class GroupsApi:
|
|
|
1423
1488
|
|
|
1424
1489
|
:param group_href: (required)
|
|
1425
1490
|
:type group_href: str
|
|
1491
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1492
|
+
:type x_task_diagnostics: List[str]
|
|
1426
1493
|
:param fields: A list of fields to include in the response.
|
|
1427
1494
|
:type fields: List[str]
|
|
1428
1495
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1451,6 +1518,7 @@ class GroupsApi:
|
|
|
1451
1518
|
|
|
1452
1519
|
_param = self._list_roles_serialize(
|
|
1453
1520
|
group_href=group_href,
|
|
1521
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1454
1522
|
fields=fields,
|
|
1455
1523
|
exclude_fields=exclude_fields,
|
|
1456
1524
|
_request_auth=_request_auth,
|
|
@@ -1477,6 +1545,7 @@ class GroupsApi:
|
|
|
1477
1545
|
def list_roles_with_http_info(
|
|
1478
1546
|
self,
|
|
1479
1547
|
group_href: StrictStr,
|
|
1548
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1480
1549
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1481
1550
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1482
1551
|
_request_timeout: Union[
|
|
@@ -1498,6 +1567,8 @@ class GroupsApi:
|
|
|
1498
1567
|
|
|
1499
1568
|
:param group_href: (required)
|
|
1500
1569
|
:type group_href: str
|
|
1570
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1571
|
+
:type x_task_diagnostics: List[str]
|
|
1501
1572
|
:param fields: A list of fields to include in the response.
|
|
1502
1573
|
:type fields: List[str]
|
|
1503
1574
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1526,6 +1597,7 @@ class GroupsApi:
|
|
|
1526
1597
|
|
|
1527
1598
|
_param = self._list_roles_serialize(
|
|
1528
1599
|
group_href=group_href,
|
|
1600
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1529
1601
|
fields=fields,
|
|
1530
1602
|
exclude_fields=exclude_fields,
|
|
1531
1603
|
_request_auth=_request_auth,
|
|
@@ -1552,6 +1624,7 @@ class GroupsApi:
|
|
|
1552
1624
|
def list_roles_without_preload_content(
|
|
1553
1625
|
self,
|
|
1554
1626
|
group_href: StrictStr,
|
|
1627
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1555
1628
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1556
1629
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1557
1630
|
_request_timeout: Union[
|
|
@@ -1573,6 +1646,8 @@ class GroupsApi:
|
|
|
1573
1646
|
|
|
1574
1647
|
:param group_href: (required)
|
|
1575
1648
|
:type group_href: str
|
|
1649
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1650
|
+
:type x_task_diagnostics: List[str]
|
|
1576
1651
|
:param fields: A list of fields to include in the response.
|
|
1577
1652
|
:type fields: List[str]
|
|
1578
1653
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1601,6 +1676,7 @@ class GroupsApi:
|
|
|
1601
1676
|
|
|
1602
1677
|
_param = self._list_roles_serialize(
|
|
1603
1678
|
group_href=group_href,
|
|
1679
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1604
1680
|
fields=fields,
|
|
1605
1681
|
exclude_fields=exclude_fields,
|
|
1606
1682
|
_request_auth=_request_auth,
|
|
@@ -1622,6 +1698,7 @@ class GroupsApi:
|
|
|
1622
1698
|
def _list_roles_serialize(
|
|
1623
1699
|
self,
|
|
1624
1700
|
group_href,
|
|
1701
|
+
x_task_diagnostics,
|
|
1625
1702
|
fields,
|
|
1626
1703
|
exclude_fields,
|
|
1627
1704
|
_request_auth,
|
|
@@ -1633,6 +1710,7 @@ class GroupsApi:
|
|
|
1633
1710
|
_host = None
|
|
1634
1711
|
|
|
1635
1712
|
_collection_formats: Dict[str, str] = {
|
|
1713
|
+
'X-Task-Diagnostics': 'csv',
|
|
1636
1714
|
'fields': 'multi',
|
|
1637
1715
|
'exclude_fields': 'multi',
|
|
1638
1716
|
}
|
|
@@ -1659,6 +1737,8 @@ class GroupsApi:
|
|
|
1659
1737
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1660
1738
|
|
|
1661
1739
|
# process the header parameters
|
|
1740
|
+
if x_task_diagnostics is not None:
|
|
1741
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1662
1742
|
# process the form parameters
|
|
1663
1743
|
# process the body parameter
|
|
1664
1744
|
|
|
@@ -1700,6 +1780,7 @@ class GroupsApi:
|
|
|
1700
1780
|
def my_permissions(
|
|
1701
1781
|
self,
|
|
1702
1782
|
group_href: StrictStr,
|
|
1783
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1703
1784
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1704
1785
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1705
1786
|
_request_timeout: Union[
|
|
@@ -1721,6 +1802,8 @@ class GroupsApi:
|
|
|
1721
1802
|
|
|
1722
1803
|
:param group_href: (required)
|
|
1723
1804
|
:type group_href: str
|
|
1805
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1806
|
+
:type x_task_diagnostics: List[str]
|
|
1724
1807
|
:param fields: A list of fields to include in the response.
|
|
1725
1808
|
:type fields: List[str]
|
|
1726
1809
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1749,6 +1832,7 @@ class GroupsApi:
|
|
|
1749
1832
|
|
|
1750
1833
|
_param = self._my_permissions_serialize(
|
|
1751
1834
|
group_href=group_href,
|
|
1835
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1752
1836
|
fields=fields,
|
|
1753
1837
|
exclude_fields=exclude_fields,
|
|
1754
1838
|
_request_auth=_request_auth,
|
|
@@ -1775,6 +1859,7 @@ class GroupsApi:
|
|
|
1775
1859
|
def my_permissions_with_http_info(
|
|
1776
1860
|
self,
|
|
1777
1861
|
group_href: StrictStr,
|
|
1862
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1778
1863
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1779
1864
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1780
1865
|
_request_timeout: Union[
|
|
@@ -1796,6 +1881,8 @@ class GroupsApi:
|
|
|
1796
1881
|
|
|
1797
1882
|
:param group_href: (required)
|
|
1798
1883
|
:type group_href: str
|
|
1884
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1885
|
+
:type x_task_diagnostics: List[str]
|
|
1799
1886
|
:param fields: A list of fields to include in the response.
|
|
1800
1887
|
:type fields: List[str]
|
|
1801
1888
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1824,6 +1911,7 @@ class GroupsApi:
|
|
|
1824
1911
|
|
|
1825
1912
|
_param = self._my_permissions_serialize(
|
|
1826
1913
|
group_href=group_href,
|
|
1914
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1827
1915
|
fields=fields,
|
|
1828
1916
|
exclude_fields=exclude_fields,
|
|
1829
1917
|
_request_auth=_request_auth,
|
|
@@ -1850,6 +1938,7 @@ class GroupsApi:
|
|
|
1850
1938
|
def my_permissions_without_preload_content(
|
|
1851
1939
|
self,
|
|
1852
1940
|
group_href: StrictStr,
|
|
1941
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1853
1942
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1854
1943
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1855
1944
|
_request_timeout: Union[
|
|
@@ -1871,6 +1960,8 @@ class GroupsApi:
|
|
|
1871
1960
|
|
|
1872
1961
|
:param group_href: (required)
|
|
1873
1962
|
:type group_href: str
|
|
1963
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1964
|
+
:type x_task_diagnostics: List[str]
|
|
1874
1965
|
:param fields: A list of fields to include in the response.
|
|
1875
1966
|
:type fields: List[str]
|
|
1876
1967
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1899,6 +1990,7 @@ class GroupsApi:
|
|
|
1899
1990
|
|
|
1900
1991
|
_param = self._my_permissions_serialize(
|
|
1901
1992
|
group_href=group_href,
|
|
1993
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1902
1994
|
fields=fields,
|
|
1903
1995
|
exclude_fields=exclude_fields,
|
|
1904
1996
|
_request_auth=_request_auth,
|
|
@@ -1920,6 +2012,7 @@ class GroupsApi:
|
|
|
1920
2012
|
def _my_permissions_serialize(
|
|
1921
2013
|
self,
|
|
1922
2014
|
group_href,
|
|
2015
|
+
x_task_diagnostics,
|
|
1923
2016
|
fields,
|
|
1924
2017
|
exclude_fields,
|
|
1925
2018
|
_request_auth,
|
|
@@ -1931,6 +2024,7 @@ class GroupsApi:
|
|
|
1931
2024
|
_host = None
|
|
1932
2025
|
|
|
1933
2026
|
_collection_formats: Dict[str, str] = {
|
|
2027
|
+
'X-Task-Diagnostics': 'csv',
|
|
1934
2028
|
'fields': 'multi',
|
|
1935
2029
|
'exclude_fields': 'multi',
|
|
1936
2030
|
}
|
|
@@ -1957,6 +2051,8 @@ class GroupsApi:
|
|
|
1957
2051
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1958
2052
|
|
|
1959
2053
|
# process the header parameters
|
|
2054
|
+
if x_task_diagnostics is not None:
|
|
2055
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1960
2056
|
# process the form parameters
|
|
1961
2057
|
# process the body parameter
|
|
1962
2058
|
|
|
@@ -1999,6 +2095,7 @@ class GroupsApi:
|
|
|
1999
2095
|
self,
|
|
2000
2096
|
group_href: StrictStr,
|
|
2001
2097
|
patched_group: PatchedGroup,
|
|
2098
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2002
2099
|
_request_timeout: Union[
|
|
2003
2100
|
None,
|
|
2004
2101
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2020,6 +2117,8 @@ class GroupsApi:
|
|
|
2020
2117
|
:type group_href: str
|
|
2021
2118
|
:param patched_group: (required)
|
|
2022
2119
|
:type patched_group: PatchedGroup
|
|
2120
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2121
|
+
:type x_task_diagnostics: List[str]
|
|
2023
2122
|
:param _request_timeout: timeout setting for this request. If one
|
|
2024
2123
|
number provided, it will be total request
|
|
2025
2124
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2045,6 +2144,7 @@ class GroupsApi:
|
|
|
2045
2144
|
_param = self._partial_update_serialize(
|
|
2046
2145
|
group_href=group_href,
|
|
2047
2146
|
patched_group=patched_group,
|
|
2147
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2048
2148
|
_request_auth=_request_auth,
|
|
2049
2149
|
_content_type=_content_type,
|
|
2050
2150
|
_headers=_headers,
|
|
@@ -2070,6 +2170,7 @@ class GroupsApi:
|
|
|
2070
2170
|
self,
|
|
2071
2171
|
group_href: StrictStr,
|
|
2072
2172
|
patched_group: PatchedGroup,
|
|
2173
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2073
2174
|
_request_timeout: Union[
|
|
2074
2175
|
None,
|
|
2075
2176
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2091,6 +2192,8 @@ class GroupsApi:
|
|
|
2091
2192
|
:type group_href: str
|
|
2092
2193
|
:param patched_group: (required)
|
|
2093
2194
|
:type patched_group: PatchedGroup
|
|
2195
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2196
|
+
:type x_task_diagnostics: List[str]
|
|
2094
2197
|
:param _request_timeout: timeout setting for this request. If one
|
|
2095
2198
|
number provided, it will be total request
|
|
2096
2199
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2116,6 +2219,7 @@ class GroupsApi:
|
|
|
2116
2219
|
_param = self._partial_update_serialize(
|
|
2117
2220
|
group_href=group_href,
|
|
2118
2221
|
patched_group=patched_group,
|
|
2222
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2119
2223
|
_request_auth=_request_auth,
|
|
2120
2224
|
_content_type=_content_type,
|
|
2121
2225
|
_headers=_headers,
|
|
@@ -2141,6 +2245,7 @@ class GroupsApi:
|
|
|
2141
2245
|
self,
|
|
2142
2246
|
group_href: StrictStr,
|
|
2143
2247
|
patched_group: PatchedGroup,
|
|
2248
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2144
2249
|
_request_timeout: Union[
|
|
2145
2250
|
None,
|
|
2146
2251
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2162,6 +2267,8 @@ class GroupsApi:
|
|
|
2162
2267
|
:type group_href: str
|
|
2163
2268
|
:param patched_group: (required)
|
|
2164
2269
|
:type patched_group: PatchedGroup
|
|
2270
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2271
|
+
:type x_task_diagnostics: List[str]
|
|
2165
2272
|
:param _request_timeout: timeout setting for this request. If one
|
|
2166
2273
|
number provided, it will be total request
|
|
2167
2274
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2187,6 +2294,7 @@ class GroupsApi:
|
|
|
2187
2294
|
_param = self._partial_update_serialize(
|
|
2188
2295
|
group_href=group_href,
|
|
2189
2296
|
patched_group=patched_group,
|
|
2297
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2190
2298
|
_request_auth=_request_auth,
|
|
2191
2299
|
_content_type=_content_type,
|
|
2192
2300
|
_headers=_headers,
|
|
@@ -2207,6 +2315,7 @@ class GroupsApi:
|
|
|
2207
2315
|
self,
|
|
2208
2316
|
group_href,
|
|
2209
2317
|
patched_group,
|
|
2318
|
+
x_task_diagnostics,
|
|
2210
2319
|
_request_auth,
|
|
2211
2320
|
_content_type,
|
|
2212
2321
|
_headers,
|
|
@@ -2216,6 +2325,7 @@ class GroupsApi:
|
|
|
2216
2325
|
_host = None
|
|
2217
2326
|
|
|
2218
2327
|
_collection_formats: Dict[str, str] = {
|
|
2328
|
+
'X-Task-Diagnostics': 'csv',
|
|
2219
2329
|
}
|
|
2220
2330
|
|
|
2221
2331
|
_path_params: Dict[str, str] = {}
|
|
@@ -2232,6 +2342,8 @@ class GroupsApi:
|
|
|
2232
2342
|
_path_params['group_href'] = group_href
|
|
2233
2343
|
# process the query parameters
|
|
2234
2344
|
# process the header parameters
|
|
2345
|
+
if x_task_diagnostics is not None:
|
|
2346
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2235
2347
|
# process the form parameters
|
|
2236
2348
|
# process the body parameter
|
|
2237
2349
|
if patched_group is not None:
|
|
@@ -2290,6 +2402,7 @@ class GroupsApi:
|
|
|
2290
2402
|
def read(
|
|
2291
2403
|
self,
|
|
2292
2404
|
group_href: StrictStr,
|
|
2405
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2293
2406
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2294
2407
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2295
2408
|
_request_timeout: Union[
|
|
@@ -2311,6 +2424,8 @@ class GroupsApi:
|
|
|
2311
2424
|
|
|
2312
2425
|
:param group_href: (required)
|
|
2313
2426
|
:type group_href: str
|
|
2427
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2428
|
+
:type x_task_diagnostics: List[str]
|
|
2314
2429
|
:param fields: A list of fields to include in the response.
|
|
2315
2430
|
:type fields: List[str]
|
|
2316
2431
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2339,6 +2454,7 @@ class GroupsApi:
|
|
|
2339
2454
|
|
|
2340
2455
|
_param = self._read_serialize(
|
|
2341
2456
|
group_href=group_href,
|
|
2457
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2342
2458
|
fields=fields,
|
|
2343
2459
|
exclude_fields=exclude_fields,
|
|
2344
2460
|
_request_auth=_request_auth,
|
|
@@ -2365,6 +2481,7 @@ class GroupsApi:
|
|
|
2365
2481
|
def read_with_http_info(
|
|
2366
2482
|
self,
|
|
2367
2483
|
group_href: StrictStr,
|
|
2484
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2368
2485
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2369
2486
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2370
2487
|
_request_timeout: Union[
|
|
@@ -2386,6 +2503,8 @@ class GroupsApi:
|
|
|
2386
2503
|
|
|
2387
2504
|
:param group_href: (required)
|
|
2388
2505
|
:type group_href: str
|
|
2506
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2507
|
+
:type x_task_diagnostics: List[str]
|
|
2389
2508
|
:param fields: A list of fields to include in the response.
|
|
2390
2509
|
:type fields: List[str]
|
|
2391
2510
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2414,6 +2533,7 @@ class GroupsApi:
|
|
|
2414
2533
|
|
|
2415
2534
|
_param = self._read_serialize(
|
|
2416
2535
|
group_href=group_href,
|
|
2536
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2417
2537
|
fields=fields,
|
|
2418
2538
|
exclude_fields=exclude_fields,
|
|
2419
2539
|
_request_auth=_request_auth,
|
|
@@ -2440,6 +2560,7 @@ class GroupsApi:
|
|
|
2440
2560
|
def read_without_preload_content(
|
|
2441
2561
|
self,
|
|
2442
2562
|
group_href: StrictStr,
|
|
2563
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2443
2564
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2444
2565
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2445
2566
|
_request_timeout: Union[
|
|
@@ -2461,6 +2582,8 @@ class GroupsApi:
|
|
|
2461
2582
|
|
|
2462
2583
|
:param group_href: (required)
|
|
2463
2584
|
:type group_href: str
|
|
2585
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2586
|
+
:type x_task_diagnostics: List[str]
|
|
2464
2587
|
:param fields: A list of fields to include in the response.
|
|
2465
2588
|
:type fields: List[str]
|
|
2466
2589
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2489,6 +2612,7 @@ class GroupsApi:
|
|
|
2489
2612
|
|
|
2490
2613
|
_param = self._read_serialize(
|
|
2491
2614
|
group_href=group_href,
|
|
2615
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2492
2616
|
fields=fields,
|
|
2493
2617
|
exclude_fields=exclude_fields,
|
|
2494
2618
|
_request_auth=_request_auth,
|
|
@@ -2510,6 +2634,7 @@ class GroupsApi:
|
|
|
2510
2634
|
def _read_serialize(
|
|
2511
2635
|
self,
|
|
2512
2636
|
group_href,
|
|
2637
|
+
x_task_diagnostics,
|
|
2513
2638
|
fields,
|
|
2514
2639
|
exclude_fields,
|
|
2515
2640
|
_request_auth,
|
|
@@ -2521,6 +2646,7 @@ class GroupsApi:
|
|
|
2521
2646
|
_host = None
|
|
2522
2647
|
|
|
2523
2648
|
_collection_formats: Dict[str, str] = {
|
|
2649
|
+
'X-Task-Diagnostics': 'csv',
|
|
2524
2650
|
'fields': 'multi',
|
|
2525
2651
|
'exclude_fields': 'multi',
|
|
2526
2652
|
}
|
|
@@ -2547,6 +2673,8 @@ class GroupsApi:
|
|
|
2547
2673
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
2548
2674
|
|
|
2549
2675
|
# process the header parameters
|
|
2676
|
+
if x_task_diagnostics is not None:
|
|
2677
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2550
2678
|
# process the form parameters
|
|
2551
2679
|
# process the body parameter
|
|
2552
2680
|
|
|
@@ -2589,6 +2717,7 @@ class GroupsApi:
|
|
|
2589
2717
|
self,
|
|
2590
2718
|
group_href: StrictStr,
|
|
2591
2719
|
nested_role: NestedRole,
|
|
2720
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2592
2721
|
_request_timeout: Union[
|
|
2593
2722
|
None,
|
|
2594
2723
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2610,6 +2739,8 @@ class GroupsApi:
|
|
|
2610
2739
|
:type group_href: str
|
|
2611
2740
|
:param nested_role: (required)
|
|
2612
2741
|
:type nested_role: NestedRole
|
|
2742
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2743
|
+
:type x_task_diagnostics: List[str]
|
|
2613
2744
|
:param _request_timeout: timeout setting for this request. If one
|
|
2614
2745
|
number provided, it will be total request
|
|
2615
2746
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2635,6 +2766,7 @@ class GroupsApi:
|
|
|
2635
2766
|
_param = self._remove_role_serialize(
|
|
2636
2767
|
group_href=group_href,
|
|
2637
2768
|
nested_role=nested_role,
|
|
2769
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2638
2770
|
_request_auth=_request_auth,
|
|
2639
2771
|
_content_type=_content_type,
|
|
2640
2772
|
_headers=_headers,
|
|
@@ -2660,6 +2792,7 @@ class GroupsApi:
|
|
|
2660
2792
|
self,
|
|
2661
2793
|
group_href: StrictStr,
|
|
2662
2794
|
nested_role: NestedRole,
|
|
2795
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2663
2796
|
_request_timeout: Union[
|
|
2664
2797
|
None,
|
|
2665
2798
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2681,6 +2814,8 @@ class GroupsApi:
|
|
|
2681
2814
|
:type group_href: str
|
|
2682
2815
|
:param nested_role: (required)
|
|
2683
2816
|
:type nested_role: NestedRole
|
|
2817
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2818
|
+
:type x_task_diagnostics: List[str]
|
|
2684
2819
|
:param _request_timeout: timeout setting for this request. If one
|
|
2685
2820
|
number provided, it will be total request
|
|
2686
2821
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2706,6 +2841,7 @@ class GroupsApi:
|
|
|
2706
2841
|
_param = self._remove_role_serialize(
|
|
2707
2842
|
group_href=group_href,
|
|
2708
2843
|
nested_role=nested_role,
|
|
2844
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2709
2845
|
_request_auth=_request_auth,
|
|
2710
2846
|
_content_type=_content_type,
|
|
2711
2847
|
_headers=_headers,
|
|
@@ -2731,6 +2867,7 @@ class GroupsApi:
|
|
|
2731
2867
|
self,
|
|
2732
2868
|
group_href: StrictStr,
|
|
2733
2869
|
nested_role: NestedRole,
|
|
2870
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2734
2871
|
_request_timeout: Union[
|
|
2735
2872
|
None,
|
|
2736
2873
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2752,6 +2889,8 @@ class GroupsApi:
|
|
|
2752
2889
|
:type group_href: str
|
|
2753
2890
|
:param nested_role: (required)
|
|
2754
2891
|
:type nested_role: NestedRole
|
|
2892
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2893
|
+
:type x_task_diagnostics: List[str]
|
|
2755
2894
|
:param _request_timeout: timeout setting for this request. If one
|
|
2756
2895
|
number provided, it will be total request
|
|
2757
2896
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2777,6 +2916,7 @@ class GroupsApi:
|
|
|
2777
2916
|
_param = self._remove_role_serialize(
|
|
2778
2917
|
group_href=group_href,
|
|
2779
2918
|
nested_role=nested_role,
|
|
2919
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2780
2920
|
_request_auth=_request_auth,
|
|
2781
2921
|
_content_type=_content_type,
|
|
2782
2922
|
_headers=_headers,
|
|
@@ -2797,6 +2937,7 @@ class GroupsApi:
|
|
|
2797
2937
|
self,
|
|
2798
2938
|
group_href,
|
|
2799
2939
|
nested_role,
|
|
2940
|
+
x_task_diagnostics,
|
|
2800
2941
|
_request_auth,
|
|
2801
2942
|
_content_type,
|
|
2802
2943
|
_headers,
|
|
@@ -2806,6 +2947,7 @@ class GroupsApi:
|
|
|
2806
2947
|
_host = None
|
|
2807
2948
|
|
|
2808
2949
|
_collection_formats: Dict[str, str] = {
|
|
2950
|
+
'X-Task-Diagnostics': 'csv',
|
|
2809
2951
|
}
|
|
2810
2952
|
|
|
2811
2953
|
_path_params: Dict[str, str] = {}
|
|
@@ -2822,6 +2964,8 @@ class GroupsApi:
|
|
|
2822
2964
|
_path_params['group_href'] = group_href
|
|
2823
2965
|
# process the query parameters
|
|
2824
2966
|
# process the header parameters
|
|
2967
|
+
if x_task_diagnostics is not None:
|
|
2968
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2825
2969
|
# process the form parameters
|
|
2826
2970
|
# process the body parameter
|
|
2827
2971
|
if nested_role is not None:
|
|
@@ -2881,6 +3025,7 @@ class GroupsApi:
|
|
|
2881
3025
|
self,
|
|
2882
3026
|
group_href: StrictStr,
|
|
2883
3027
|
group: Group,
|
|
3028
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2884
3029
|
_request_timeout: Union[
|
|
2885
3030
|
None,
|
|
2886
3031
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2902,6 +3047,8 @@ class GroupsApi:
|
|
|
2902
3047
|
:type group_href: str
|
|
2903
3048
|
:param group: (required)
|
|
2904
3049
|
:type group: Group
|
|
3050
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3051
|
+
:type x_task_diagnostics: List[str]
|
|
2905
3052
|
:param _request_timeout: timeout setting for this request. If one
|
|
2906
3053
|
number provided, it will be total request
|
|
2907
3054
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2927,6 +3074,7 @@ class GroupsApi:
|
|
|
2927
3074
|
_param = self._update_serialize(
|
|
2928
3075
|
group_href=group_href,
|
|
2929
3076
|
group=group,
|
|
3077
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2930
3078
|
_request_auth=_request_auth,
|
|
2931
3079
|
_content_type=_content_type,
|
|
2932
3080
|
_headers=_headers,
|
|
@@ -2952,6 +3100,7 @@ class GroupsApi:
|
|
|
2952
3100
|
self,
|
|
2953
3101
|
group_href: StrictStr,
|
|
2954
3102
|
group: Group,
|
|
3103
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2955
3104
|
_request_timeout: Union[
|
|
2956
3105
|
None,
|
|
2957
3106
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2973,6 +3122,8 @@ class GroupsApi:
|
|
|
2973
3122
|
:type group_href: str
|
|
2974
3123
|
:param group: (required)
|
|
2975
3124
|
:type group: Group
|
|
3125
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3126
|
+
:type x_task_diagnostics: List[str]
|
|
2976
3127
|
:param _request_timeout: timeout setting for this request. If one
|
|
2977
3128
|
number provided, it will be total request
|
|
2978
3129
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2998,6 +3149,7 @@ class GroupsApi:
|
|
|
2998
3149
|
_param = self._update_serialize(
|
|
2999
3150
|
group_href=group_href,
|
|
3000
3151
|
group=group,
|
|
3152
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3001
3153
|
_request_auth=_request_auth,
|
|
3002
3154
|
_content_type=_content_type,
|
|
3003
3155
|
_headers=_headers,
|
|
@@ -3023,6 +3175,7 @@ class GroupsApi:
|
|
|
3023
3175
|
self,
|
|
3024
3176
|
group_href: StrictStr,
|
|
3025
3177
|
group: Group,
|
|
3178
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3026
3179
|
_request_timeout: Union[
|
|
3027
3180
|
None,
|
|
3028
3181
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3044,6 +3197,8 @@ class GroupsApi:
|
|
|
3044
3197
|
:type group_href: str
|
|
3045
3198
|
:param group: (required)
|
|
3046
3199
|
:type group: Group
|
|
3200
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3201
|
+
:type x_task_diagnostics: List[str]
|
|
3047
3202
|
:param _request_timeout: timeout setting for this request. If one
|
|
3048
3203
|
number provided, it will be total request
|
|
3049
3204
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3069,6 +3224,7 @@ class GroupsApi:
|
|
|
3069
3224
|
_param = self._update_serialize(
|
|
3070
3225
|
group_href=group_href,
|
|
3071
3226
|
group=group,
|
|
3227
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3072
3228
|
_request_auth=_request_auth,
|
|
3073
3229
|
_content_type=_content_type,
|
|
3074
3230
|
_headers=_headers,
|
|
@@ -3089,6 +3245,7 @@ class GroupsApi:
|
|
|
3089
3245
|
self,
|
|
3090
3246
|
group_href,
|
|
3091
3247
|
group,
|
|
3248
|
+
x_task_diagnostics,
|
|
3092
3249
|
_request_auth,
|
|
3093
3250
|
_content_type,
|
|
3094
3251
|
_headers,
|
|
@@ -3098,6 +3255,7 @@ class GroupsApi:
|
|
|
3098
3255
|
_host = None
|
|
3099
3256
|
|
|
3100
3257
|
_collection_formats: Dict[str, str] = {
|
|
3258
|
+
'X-Task-Diagnostics': 'csv',
|
|
3101
3259
|
}
|
|
3102
3260
|
|
|
3103
3261
|
_path_params: Dict[str, str] = {}
|
|
@@ -3114,6 +3272,8 @@ class GroupsApi:
|
|
|
3114
3272
|
_path_params['group_href'] = group_href
|
|
3115
3273
|
# process the query parameters
|
|
3116
3274
|
# process the header parameters
|
|
3275
|
+
if x_task_diagnostics is not None:
|
|
3276
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3117
3277
|
# process the form parameters
|
|
3118
3278
|
# process the body parameter
|
|
3119
3279
|
if group is not None:
|