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
|
@@ -47,6 +47,7 @@ class GroupsRolesApi:
|
|
|
47
47
|
self,
|
|
48
48
|
group_href: StrictStr,
|
|
49
49
|
group_role: GroupRole,
|
|
50
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
50
51
|
_request_timeout: Union[
|
|
51
52
|
None,
|
|
52
53
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -68,6 +69,8 @@ class GroupsRolesApi:
|
|
|
68
69
|
:type group_href: str
|
|
69
70
|
:param group_role: (required)
|
|
70
71
|
:type group_role: GroupRole
|
|
72
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
73
|
+
:type x_task_diagnostics: List[str]
|
|
71
74
|
:param _request_timeout: timeout setting for this request. If one
|
|
72
75
|
number provided, it will be total request
|
|
73
76
|
timeout. It can also be a pair (tuple) of
|
|
@@ -93,6 +96,7 @@ class GroupsRolesApi:
|
|
|
93
96
|
_param = self._create_serialize(
|
|
94
97
|
group_href=group_href,
|
|
95
98
|
group_role=group_role,
|
|
99
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
96
100
|
_request_auth=_request_auth,
|
|
97
101
|
_content_type=_content_type,
|
|
98
102
|
_headers=_headers,
|
|
@@ -118,6 +122,7 @@ class GroupsRolesApi:
|
|
|
118
122
|
self,
|
|
119
123
|
group_href: StrictStr,
|
|
120
124
|
group_role: GroupRole,
|
|
125
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
121
126
|
_request_timeout: Union[
|
|
122
127
|
None,
|
|
123
128
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -139,6 +144,8 @@ class GroupsRolesApi:
|
|
|
139
144
|
:type group_href: str
|
|
140
145
|
:param group_role: (required)
|
|
141
146
|
:type group_role: GroupRole
|
|
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
|
|
@@ -164,6 +171,7 @@ class GroupsRolesApi:
|
|
|
164
171
|
_param = self._create_serialize(
|
|
165
172
|
group_href=group_href,
|
|
166
173
|
group_role=group_role,
|
|
174
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
167
175
|
_request_auth=_request_auth,
|
|
168
176
|
_content_type=_content_type,
|
|
169
177
|
_headers=_headers,
|
|
@@ -189,6 +197,7 @@ class GroupsRolesApi:
|
|
|
189
197
|
self,
|
|
190
198
|
group_href: StrictStr,
|
|
191
199
|
group_role: GroupRole,
|
|
200
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
192
201
|
_request_timeout: Union[
|
|
193
202
|
None,
|
|
194
203
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -210,6 +219,8 @@ class GroupsRolesApi:
|
|
|
210
219
|
:type group_href: str
|
|
211
220
|
:param group_role: (required)
|
|
212
221
|
:type group_role: GroupRole
|
|
222
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
223
|
+
:type x_task_diagnostics: List[str]
|
|
213
224
|
:param _request_timeout: timeout setting for this request. If one
|
|
214
225
|
number provided, it will be total request
|
|
215
226
|
timeout. It can also be a pair (tuple) of
|
|
@@ -235,6 +246,7 @@ class GroupsRolesApi:
|
|
|
235
246
|
_param = self._create_serialize(
|
|
236
247
|
group_href=group_href,
|
|
237
248
|
group_role=group_role,
|
|
249
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
238
250
|
_request_auth=_request_auth,
|
|
239
251
|
_content_type=_content_type,
|
|
240
252
|
_headers=_headers,
|
|
@@ -255,6 +267,7 @@ class GroupsRolesApi:
|
|
|
255
267
|
self,
|
|
256
268
|
group_href,
|
|
257
269
|
group_role,
|
|
270
|
+
x_task_diagnostics,
|
|
258
271
|
_request_auth,
|
|
259
272
|
_content_type,
|
|
260
273
|
_headers,
|
|
@@ -264,6 +277,7 @@ class GroupsRolesApi:
|
|
|
264
277
|
_host = None
|
|
265
278
|
|
|
266
279
|
_collection_formats: Dict[str, str] = {
|
|
280
|
+
'X-Task-Diagnostics': 'csv',
|
|
267
281
|
}
|
|
268
282
|
|
|
269
283
|
_path_params: Dict[str, str] = {}
|
|
@@ -280,6 +294,8 @@ class GroupsRolesApi:
|
|
|
280
294
|
_path_params['group_href'] = group_href
|
|
281
295
|
# process the query parameters
|
|
282
296
|
# process the header parameters
|
|
297
|
+
if x_task_diagnostics is not None:
|
|
298
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
283
299
|
# process the form parameters
|
|
284
300
|
# process the body parameter
|
|
285
301
|
if group_role is not None:
|
|
@@ -338,6 +354,7 @@ class GroupsRolesApi:
|
|
|
338
354
|
def delete(
|
|
339
355
|
self,
|
|
340
356
|
groups_group_role_href: StrictStr,
|
|
357
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
341
358
|
_request_timeout: Union[
|
|
342
359
|
None,
|
|
343
360
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -357,6 +374,8 @@ class GroupsRolesApi:
|
|
|
357
374
|
|
|
358
375
|
:param groups_group_role_href: (required)
|
|
359
376
|
:type groups_group_role_href: str
|
|
377
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
378
|
+
:type x_task_diagnostics: List[str]
|
|
360
379
|
:param _request_timeout: timeout setting for this request. If one
|
|
361
380
|
number provided, it will be total request
|
|
362
381
|
timeout. It can also be a pair (tuple) of
|
|
@@ -381,6 +400,7 @@ class GroupsRolesApi:
|
|
|
381
400
|
|
|
382
401
|
_param = self._delete_serialize(
|
|
383
402
|
groups_group_role_href=groups_group_role_href,
|
|
403
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
384
404
|
_request_auth=_request_auth,
|
|
385
405
|
_content_type=_content_type,
|
|
386
406
|
_headers=_headers,
|
|
@@ -405,6 +425,7 @@ class GroupsRolesApi:
|
|
|
405
425
|
def delete_with_http_info(
|
|
406
426
|
self,
|
|
407
427
|
groups_group_role_href: StrictStr,
|
|
428
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
408
429
|
_request_timeout: Union[
|
|
409
430
|
None,
|
|
410
431
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -424,6 +445,8 @@ class GroupsRolesApi:
|
|
|
424
445
|
|
|
425
446
|
:param groups_group_role_href: (required)
|
|
426
447
|
:type groups_group_role_href: str
|
|
448
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
449
|
+
:type x_task_diagnostics: List[str]
|
|
427
450
|
:param _request_timeout: timeout setting for this request. If one
|
|
428
451
|
number provided, it will be total request
|
|
429
452
|
timeout. It can also be a pair (tuple) of
|
|
@@ -448,6 +471,7 @@ class GroupsRolesApi:
|
|
|
448
471
|
|
|
449
472
|
_param = self._delete_serialize(
|
|
450
473
|
groups_group_role_href=groups_group_role_href,
|
|
474
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
451
475
|
_request_auth=_request_auth,
|
|
452
476
|
_content_type=_content_type,
|
|
453
477
|
_headers=_headers,
|
|
@@ -472,6 +496,7 @@ class GroupsRolesApi:
|
|
|
472
496
|
def delete_without_preload_content(
|
|
473
497
|
self,
|
|
474
498
|
groups_group_role_href: StrictStr,
|
|
499
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
475
500
|
_request_timeout: Union[
|
|
476
501
|
None,
|
|
477
502
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -491,6 +516,8 @@ class GroupsRolesApi:
|
|
|
491
516
|
|
|
492
517
|
:param groups_group_role_href: (required)
|
|
493
518
|
:type groups_group_role_href: str
|
|
519
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
520
|
+
:type x_task_diagnostics: List[str]
|
|
494
521
|
:param _request_timeout: timeout setting for this request. If one
|
|
495
522
|
number provided, it will be total request
|
|
496
523
|
timeout. It can also be a pair (tuple) of
|
|
@@ -515,6 +542,7 @@ class GroupsRolesApi:
|
|
|
515
542
|
|
|
516
543
|
_param = self._delete_serialize(
|
|
517
544
|
groups_group_role_href=groups_group_role_href,
|
|
545
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
518
546
|
_request_auth=_request_auth,
|
|
519
547
|
_content_type=_content_type,
|
|
520
548
|
_headers=_headers,
|
|
@@ -534,6 +562,7 @@ class GroupsRolesApi:
|
|
|
534
562
|
def _delete_serialize(
|
|
535
563
|
self,
|
|
536
564
|
groups_group_role_href,
|
|
565
|
+
x_task_diagnostics,
|
|
537
566
|
_request_auth,
|
|
538
567
|
_content_type,
|
|
539
568
|
_headers,
|
|
@@ -543,6 +572,7 @@ class GroupsRolesApi:
|
|
|
543
572
|
_host = None
|
|
544
573
|
|
|
545
574
|
_collection_formats: Dict[str, str] = {
|
|
575
|
+
'X-Task-Diagnostics': 'csv',
|
|
546
576
|
}
|
|
547
577
|
|
|
548
578
|
_path_params: Dict[str, str] = {}
|
|
@@ -559,6 +589,8 @@ class GroupsRolesApi:
|
|
|
559
589
|
_path_params['groups_group_role_href'] = groups_group_role_href
|
|
560
590
|
# process the query parameters
|
|
561
591
|
# process the header parameters
|
|
592
|
+
if x_task_diagnostics is not None:
|
|
593
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
562
594
|
# process the form parameters
|
|
563
595
|
# process the body parameter
|
|
564
596
|
|
|
@@ -593,6 +625,7 @@ class GroupsRolesApi:
|
|
|
593
625
|
def list(
|
|
594
626
|
self,
|
|
595
627
|
group_href: StrictStr,
|
|
628
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
596
629
|
content_object: Annotated[Optional[StrictStr], Field(description="content_object")] = None,
|
|
597
630
|
domain: Annotated[Optional[StrictStr], Field(description="Foreign Key referenced by HREF")] = None,
|
|
598
631
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -628,6 +661,8 @@ class GroupsRolesApi:
|
|
|
628
661
|
|
|
629
662
|
:param group_href: (required)
|
|
630
663
|
:type group_href: str
|
|
664
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
665
|
+
:type x_task_diagnostics: List[str]
|
|
631
666
|
:param content_object: content_object
|
|
632
667
|
:type content_object: str
|
|
633
668
|
:param domain: Foreign Key referenced by HREF
|
|
@@ -684,6 +719,7 @@ class GroupsRolesApi:
|
|
|
684
719
|
|
|
685
720
|
_param = self._list_serialize(
|
|
686
721
|
group_href=group_href,
|
|
722
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
687
723
|
content_object=content_object,
|
|
688
724
|
domain=domain,
|
|
689
725
|
limit=limit,
|
|
@@ -724,6 +760,7 @@ class GroupsRolesApi:
|
|
|
724
760
|
def list_with_http_info(
|
|
725
761
|
self,
|
|
726
762
|
group_href: StrictStr,
|
|
763
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
727
764
|
content_object: Annotated[Optional[StrictStr], Field(description="content_object")] = None,
|
|
728
765
|
domain: Annotated[Optional[StrictStr], Field(description="Foreign Key referenced by HREF")] = None,
|
|
729
766
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -759,6 +796,8 @@ class GroupsRolesApi:
|
|
|
759
796
|
|
|
760
797
|
:param group_href: (required)
|
|
761
798
|
:type group_href: str
|
|
799
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
800
|
+
:type x_task_diagnostics: List[str]
|
|
762
801
|
:param content_object: content_object
|
|
763
802
|
:type content_object: str
|
|
764
803
|
:param domain: Foreign Key referenced by HREF
|
|
@@ -815,6 +854,7 @@ class GroupsRolesApi:
|
|
|
815
854
|
|
|
816
855
|
_param = self._list_serialize(
|
|
817
856
|
group_href=group_href,
|
|
857
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
818
858
|
content_object=content_object,
|
|
819
859
|
domain=domain,
|
|
820
860
|
limit=limit,
|
|
@@ -855,6 +895,7 @@ class GroupsRolesApi:
|
|
|
855
895
|
def list_without_preload_content(
|
|
856
896
|
self,
|
|
857
897
|
group_href: StrictStr,
|
|
898
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
858
899
|
content_object: Annotated[Optional[StrictStr], Field(description="content_object")] = None,
|
|
859
900
|
domain: Annotated[Optional[StrictStr], Field(description="Foreign Key referenced by HREF")] = None,
|
|
860
901
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -890,6 +931,8 @@ class GroupsRolesApi:
|
|
|
890
931
|
|
|
891
932
|
:param group_href: (required)
|
|
892
933
|
:type group_href: str
|
|
934
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
935
|
+
:type x_task_diagnostics: List[str]
|
|
893
936
|
:param content_object: content_object
|
|
894
937
|
:type content_object: str
|
|
895
938
|
:param domain: Foreign Key referenced by HREF
|
|
@@ -946,6 +989,7 @@ class GroupsRolesApi:
|
|
|
946
989
|
|
|
947
990
|
_param = self._list_serialize(
|
|
948
991
|
group_href=group_href,
|
|
992
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
949
993
|
content_object=content_object,
|
|
950
994
|
domain=domain,
|
|
951
995
|
limit=limit,
|
|
@@ -981,6 +1025,7 @@ class GroupsRolesApi:
|
|
|
981
1025
|
def _list_serialize(
|
|
982
1026
|
self,
|
|
983
1027
|
group_href,
|
|
1028
|
+
x_task_diagnostics,
|
|
984
1029
|
content_object,
|
|
985
1030
|
domain,
|
|
986
1031
|
limit,
|
|
@@ -1006,6 +1051,7 @@ class GroupsRolesApi:
|
|
|
1006
1051
|
_host = None
|
|
1007
1052
|
|
|
1008
1053
|
_collection_formats: Dict[str, str] = {
|
|
1054
|
+
'X-Task-Diagnostics': 'csv',
|
|
1009
1055
|
'ordering': 'csv',
|
|
1010
1056
|
'prn__in': 'csv',
|
|
1011
1057
|
'pulp_href__in': 'csv',
|
|
@@ -1093,6 +1139,8 @@ class GroupsRolesApi:
|
|
|
1093
1139
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1094
1140
|
|
|
1095
1141
|
# process the header parameters
|
|
1142
|
+
if x_task_diagnostics is not None:
|
|
1143
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1096
1144
|
# process the form parameters
|
|
1097
1145
|
# process the body parameter
|
|
1098
1146
|
|
|
@@ -1134,6 +1182,7 @@ class GroupsRolesApi:
|
|
|
1134
1182
|
def read(
|
|
1135
1183
|
self,
|
|
1136
1184
|
groups_group_role_href: StrictStr,
|
|
1185
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1137
1186
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1138
1187
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1139
1188
|
_request_timeout: Union[
|
|
@@ -1155,6 +1204,8 @@ class GroupsRolesApi:
|
|
|
1155
1204
|
|
|
1156
1205
|
:param groups_group_role_href: (required)
|
|
1157
1206
|
:type groups_group_role_href: str
|
|
1207
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1208
|
+
:type x_task_diagnostics: List[str]
|
|
1158
1209
|
:param fields: A list of fields to include in the response.
|
|
1159
1210
|
:type fields: List[str]
|
|
1160
1211
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1183,6 +1234,7 @@ class GroupsRolesApi:
|
|
|
1183
1234
|
|
|
1184
1235
|
_param = self._read_serialize(
|
|
1185
1236
|
groups_group_role_href=groups_group_role_href,
|
|
1237
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1186
1238
|
fields=fields,
|
|
1187
1239
|
exclude_fields=exclude_fields,
|
|
1188
1240
|
_request_auth=_request_auth,
|
|
@@ -1209,6 +1261,7 @@ class GroupsRolesApi:
|
|
|
1209
1261
|
def read_with_http_info(
|
|
1210
1262
|
self,
|
|
1211
1263
|
groups_group_role_href: StrictStr,
|
|
1264
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1212
1265
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1213
1266
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1214
1267
|
_request_timeout: Union[
|
|
@@ -1230,6 +1283,8 @@ class GroupsRolesApi:
|
|
|
1230
1283
|
|
|
1231
1284
|
:param groups_group_role_href: (required)
|
|
1232
1285
|
:type groups_group_role_href: str
|
|
1286
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1287
|
+
:type x_task_diagnostics: List[str]
|
|
1233
1288
|
:param fields: A list of fields to include in the response.
|
|
1234
1289
|
:type fields: List[str]
|
|
1235
1290
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1258,6 +1313,7 @@ class GroupsRolesApi:
|
|
|
1258
1313
|
|
|
1259
1314
|
_param = self._read_serialize(
|
|
1260
1315
|
groups_group_role_href=groups_group_role_href,
|
|
1316
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1261
1317
|
fields=fields,
|
|
1262
1318
|
exclude_fields=exclude_fields,
|
|
1263
1319
|
_request_auth=_request_auth,
|
|
@@ -1284,6 +1340,7 @@ class GroupsRolesApi:
|
|
|
1284
1340
|
def read_without_preload_content(
|
|
1285
1341
|
self,
|
|
1286
1342
|
groups_group_role_href: StrictStr,
|
|
1343
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1287
1344
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1288
1345
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1289
1346
|
_request_timeout: Union[
|
|
@@ -1305,6 +1362,8 @@ class GroupsRolesApi:
|
|
|
1305
1362
|
|
|
1306
1363
|
:param groups_group_role_href: (required)
|
|
1307
1364
|
:type groups_group_role_href: str
|
|
1365
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1366
|
+
:type x_task_diagnostics: List[str]
|
|
1308
1367
|
:param fields: A list of fields to include in the response.
|
|
1309
1368
|
:type fields: List[str]
|
|
1310
1369
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1333,6 +1392,7 @@ class GroupsRolesApi:
|
|
|
1333
1392
|
|
|
1334
1393
|
_param = self._read_serialize(
|
|
1335
1394
|
groups_group_role_href=groups_group_role_href,
|
|
1395
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1336
1396
|
fields=fields,
|
|
1337
1397
|
exclude_fields=exclude_fields,
|
|
1338
1398
|
_request_auth=_request_auth,
|
|
@@ -1354,6 +1414,7 @@ class GroupsRolesApi:
|
|
|
1354
1414
|
def _read_serialize(
|
|
1355
1415
|
self,
|
|
1356
1416
|
groups_group_role_href,
|
|
1417
|
+
x_task_diagnostics,
|
|
1357
1418
|
fields,
|
|
1358
1419
|
exclude_fields,
|
|
1359
1420
|
_request_auth,
|
|
@@ -1365,6 +1426,7 @@ class GroupsRolesApi:
|
|
|
1365
1426
|
_host = None
|
|
1366
1427
|
|
|
1367
1428
|
_collection_formats: Dict[str, str] = {
|
|
1429
|
+
'X-Task-Diagnostics': 'csv',
|
|
1368
1430
|
'fields': 'multi',
|
|
1369
1431
|
'exclude_fields': 'multi',
|
|
1370
1432
|
}
|
|
@@ -1391,6 +1453,8 @@ class GroupsRolesApi:
|
|
|
1391
1453
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1392
1454
|
|
|
1393
1455
|
# process the header parameters
|
|
1456
|
+
if x_task_diagnostics is not None:
|
|
1457
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1394
1458
|
# process the form parameters
|
|
1395
1459
|
# process the body parameter
|
|
1396
1460
|
|
|
@@ -47,6 +47,7 @@ class GroupsUsersApi:
|
|
|
47
47
|
self,
|
|
48
48
|
group_href: StrictStr,
|
|
49
49
|
group_user: GroupUser,
|
|
50
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
50
51
|
_request_timeout: Union[
|
|
51
52
|
None,
|
|
52
53
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -68,6 +69,8 @@ class GroupsUsersApi:
|
|
|
68
69
|
:type group_href: str
|
|
69
70
|
:param group_user: (required)
|
|
70
71
|
:type group_user: GroupUser
|
|
72
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
73
|
+
:type x_task_diagnostics: List[str]
|
|
71
74
|
:param _request_timeout: timeout setting for this request. If one
|
|
72
75
|
number provided, it will be total request
|
|
73
76
|
timeout. It can also be a pair (tuple) of
|
|
@@ -93,6 +96,7 @@ class GroupsUsersApi:
|
|
|
93
96
|
_param = self._create_serialize(
|
|
94
97
|
group_href=group_href,
|
|
95
98
|
group_user=group_user,
|
|
99
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
96
100
|
_request_auth=_request_auth,
|
|
97
101
|
_content_type=_content_type,
|
|
98
102
|
_headers=_headers,
|
|
@@ -118,6 +122,7 @@ class GroupsUsersApi:
|
|
|
118
122
|
self,
|
|
119
123
|
group_href: StrictStr,
|
|
120
124
|
group_user: GroupUser,
|
|
125
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
121
126
|
_request_timeout: Union[
|
|
122
127
|
None,
|
|
123
128
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -139,6 +144,8 @@ class GroupsUsersApi:
|
|
|
139
144
|
:type group_href: str
|
|
140
145
|
:param group_user: (required)
|
|
141
146
|
:type group_user: GroupUser
|
|
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
|
|
@@ -164,6 +171,7 @@ class GroupsUsersApi:
|
|
|
164
171
|
_param = self._create_serialize(
|
|
165
172
|
group_href=group_href,
|
|
166
173
|
group_user=group_user,
|
|
174
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
167
175
|
_request_auth=_request_auth,
|
|
168
176
|
_content_type=_content_type,
|
|
169
177
|
_headers=_headers,
|
|
@@ -189,6 +197,7 @@ class GroupsUsersApi:
|
|
|
189
197
|
self,
|
|
190
198
|
group_href: StrictStr,
|
|
191
199
|
group_user: GroupUser,
|
|
200
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
192
201
|
_request_timeout: Union[
|
|
193
202
|
None,
|
|
194
203
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -210,6 +219,8 @@ class GroupsUsersApi:
|
|
|
210
219
|
:type group_href: str
|
|
211
220
|
:param group_user: (required)
|
|
212
221
|
:type group_user: GroupUser
|
|
222
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
223
|
+
:type x_task_diagnostics: List[str]
|
|
213
224
|
:param _request_timeout: timeout setting for this request. If one
|
|
214
225
|
number provided, it will be total request
|
|
215
226
|
timeout. It can also be a pair (tuple) of
|
|
@@ -235,6 +246,7 @@ class GroupsUsersApi:
|
|
|
235
246
|
_param = self._create_serialize(
|
|
236
247
|
group_href=group_href,
|
|
237
248
|
group_user=group_user,
|
|
249
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
238
250
|
_request_auth=_request_auth,
|
|
239
251
|
_content_type=_content_type,
|
|
240
252
|
_headers=_headers,
|
|
@@ -255,6 +267,7 @@ class GroupsUsersApi:
|
|
|
255
267
|
self,
|
|
256
268
|
group_href,
|
|
257
269
|
group_user,
|
|
270
|
+
x_task_diagnostics,
|
|
258
271
|
_request_auth,
|
|
259
272
|
_content_type,
|
|
260
273
|
_headers,
|
|
@@ -264,6 +277,7 @@ class GroupsUsersApi:
|
|
|
264
277
|
_host = None
|
|
265
278
|
|
|
266
279
|
_collection_formats: Dict[str, str] = {
|
|
280
|
+
'X-Task-Diagnostics': 'csv',
|
|
267
281
|
}
|
|
268
282
|
|
|
269
283
|
_path_params: Dict[str, str] = {}
|
|
@@ -280,6 +294,8 @@ class GroupsUsersApi:
|
|
|
280
294
|
_path_params['group_href'] = group_href
|
|
281
295
|
# process the query parameters
|
|
282
296
|
# process the header parameters
|
|
297
|
+
if x_task_diagnostics is not None:
|
|
298
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
283
299
|
# process the form parameters
|
|
284
300
|
# process the body parameter
|
|
285
301
|
if group_user is not None:
|
|
@@ -338,6 +354,7 @@ class GroupsUsersApi:
|
|
|
338
354
|
def delete(
|
|
339
355
|
self,
|
|
340
356
|
groups_user_href: StrictStr,
|
|
357
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
341
358
|
_request_timeout: Union[
|
|
342
359
|
None,
|
|
343
360
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -357,6 +374,8 @@ class GroupsUsersApi:
|
|
|
357
374
|
|
|
358
375
|
:param groups_user_href: (required)
|
|
359
376
|
:type groups_user_href: str
|
|
377
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
378
|
+
:type x_task_diagnostics: List[str]
|
|
360
379
|
:param _request_timeout: timeout setting for this request. If one
|
|
361
380
|
number provided, it will be total request
|
|
362
381
|
timeout. It can also be a pair (tuple) of
|
|
@@ -381,6 +400,7 @@ class GroupsUsersApi:
|
|
|
381
400
|
|
|
382
401
|
_param = self._delete_serialize(
|
|
383
402
|
groups_user_href=groups_user_href,
|
|
403
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
384
404
|
_request_auth=_request_auth,
|
|
385
405
|
_content_type=_content_type,
|
|
386
406
|
_headers=_headers,
|
|
@@ -405,6 +425,7 @@ class GroupsUsersApi:
|
|
|
405
425
|
def delete_with_http_info(
|
|
406
426
|
self,
|
|
407
427
|
groups_user_href: StrictStr,
|
|
428
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
408
429
|
_request_timeout: Union[
|
|
409
430
|
None,
|
|
410
431
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -424,6 +445,8 @@ class GroupsUsersApi:
|
|
|
424
445
|
|
|
425
446
|
:param groups_user_href: (required)
|
|
426
447
|
:type groups_user_href: str
|
|
448
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
449
|
+
:type x_task_diagnostics: List[str]
|
|
427
450
|
:param _request_timeout: timeout setting for this request. If one
|
|
428
451
|
number provided, it will be total request
|
|
429
452
|
timeout. It can also be a pair (tuple) of
|
|
@@ -448,6 +471,7 @@ class GroupsUsersApi:
|
|
|
448
471
|
|
|
449
472
|
_param = self._delete_serialize(
|
|
450
473
|
groups_user_href=groups_user_href,
|
|
474
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
451
475
|
_request_auth=_request_auth,
|
|
452
476
|
_content_type=_content_type,
|
|
453
477
|
_headers=_headers,
|
|
@@ -472,6 +496,7 @@ class GroupsUsersApi:
|
|
|
472
496
|
def delete_without_preload_content(
|
|
473
497
|
self,
|
|
474
498
|
groups_user_href: StrictStr,
|
|
499
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
475
500
|
_request_timeout: Union[
|
|
476
501
|
None,
|
|
477
502
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -491,6 +516,8 @@ class GroupsUsersApi:
|
|
|
491
516
|
|
|
492
517
|
:param groups_user_href: (required)
|
|
493
518
|
:type groups_user_href: str
|
|
519
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
520
|
+
:type x_task_diagnostics: List[str]
|
|
494
521
|
:param _request_timeout: timeout setting for this request. If one
|
|
495
522
|
number provided, it will be total request
|
|
496
523
|
timeout. It can also be a pair (tuple) of
|
|
@@ -515,6 +542,7 @@ class GroupsUsersApi:
|
|
|
515
542
|
|
|
516
543
|
_param = self._delete_serialize(
|
|
517
544
|
groups_user_href=groups_user_href,
|
|
545
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
518
546
|
_request_auth=_request_auth,
|
|
519
547
|
_content_type=_content_type,
|
|
520
548
|
_headers=_headers,
|
|
@@ -534,6 +562,7 @@ class GroupsUsersApi:
|
|
|
534
562
|
def _delete_serialize(
|
|
535
563
|
self,
|
|
536
564
|
groups_user_href,
|
|
565
|
+
x_task_diagnostics,
|
|
537
566
|
_request_auth,
|
|
538
567
|
_content_type,
|
|
539
568
|
_headers,
|
|
@@ -543,6 +572,7 @@ class GroupsUsersApi:
|
|
|
543
572
|
_host = None
|
|
544
573
|
|
|
545
574
|
_collection_formats: Dict[str, str] = {
|
|
575
|
+
'X-Task-Diagnostics': 'csv',
|
|
546
576
|
}
|
|
547
577
|
|
|
548
578
|
_path_params: Dict[str, str] = {}
|
|
@@ -559,6 +589,8 @@ class GroupsUsersApi:
|
|
|
559
589
|
_path_params['groups_user_href'] = groups_user_href
|
|
560
590
|
# process the query parameters
|
|
561
591
|
# process the header parameters
|
|
592
|
+
if x_task_diagnostics is not None:
|
|
593
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
562
594
|
# process the form parameters
|
|
563
595
|
# process the body parameter
|
|
564
596
|
|
|
@@ -593,6 +625,7 @@ class GroupsUsersApi:
|
|
|
593
625
|
def list(
|
|
594
626
|
self,
|
|
595
627
|
group_href: StrictStr,
|
|
628
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
596
629
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
597
630
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
598
631
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
@@ -616,6 +649,8 @@ class GroupsUsersApi:
|
|
|
616
649
|
|
|
617
650
|
:param group_href: (required)
|
|
618
651
|
:type group_href: str
|
|
652
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
653
|
+
:type x_task_diagnostics: List[str]
|
|
619
654
|
:param limit: Number of results to return per page.
|
|
620
655
|
:type limit: int
|
|
621
656
|
:param offset: The initial index from which to return the results.
|
|
@@ -648,6 +683,7 @@ class GroupsUsersApi:
|
|
|
648
683
|
|
|
649
684
|
_param = self._list_serialize(
|
|
650
685
|
group_href=group_href,
|
|
686
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
651
687
|
limit=limit,
|
|
652
688
|
offset=offset,
|
|
653
689
|
fields=fields,
|
|
@@ -676,6 +712,7 @@ class GroupsUsersApi:
|
|
|
676
712
|
def list_with_http_info(
|
|
677
713
|
self,
|
|
678
714
|
group_href: StrictStr,
|
|
715
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
679
716
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
680
717
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
681
718
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
@@ -699,6 +736,8 @@ class GroupsUsersApi:
|
|
|
699
736
|
|
|
700
737
|
:param group_href: (required)
|
|
701
738
|
:type group_href: str
|
|
739
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
740
|
+
:type x_task_diagnostics: List[str]
|
|
702
741
|
:param limit: Number of results to return per page.
|
|
703
742
|
:type limit: int
|
|
704
743
|
:param offset: The initial index from which to return the results.
|
|
@@ -731,6 +770,7 @@ class GroupsUsersApi:
|
|
|
731
770
|
|
|
732
771
|
_param = self._list_serialize(
|
|
733
772
|
group_href=group_href,
|
|
773
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
734
774
|
limit=limit,
|
|
735
775
|
offset=offset,
|
|
736
776
|
fields=fields,
|
|
@@ -759,6 +799,7 @@ class GroupsUsersApi:
|
|
|
759
799
|
def list_without_preload_content(
|
|
760
800
|
self,
|
|
761
801
|
group_href: StrictStr,
|
|
802
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
762
803
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
763
804
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
764
805
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
@@ -782,6 +823,8 @@ class GroupsUsersApi:
|
|
|
782
823
|
|
|
783
824
|
:param group_href: (required)
|
|
784
825
|
:type group_href: str
|
|
826
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
827
|
+
:type x_task_diagnostics: List[str]
|
|
785
828
|
:param limit: Number of results to return per page.
|
|
786
829
|
:type limit: int
|
|
787
830
|
:param offset: The initial index from which to return the results.
|
|
@@ -814,6 +857,7 @@ class GroupsUsersApi:
|
|
|
814
857
|
|
|
815
858
|
_param = self._list_serialize(
|
|
816
859
|
group_href=group_href,
|
|
860
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
817
861
|
limit=limit,
|
|
818
862
|
offset=offset,
|
|
819
863
|
fields=fields,
|
|
@@ -837,6 +881,7 @@ class GroupsUsersApi:
|
|
|
837
881
|
def _list_serialize(
|
|
838
882
|
self,
|
|
839
883
|
group_href,
|
|
884
|
+
x_task_diagnostics,
|
|
840
885
|
limit,
|
|
841
886
|
offset,
|
|
842
887
|
fields,
|
|
@@ -850,6 +895,7 @@ class GroupsUsersApi:
|
|
|
850
895
|
_host = None
|
|
851
896
|
|
|
852
897
|
_collection_formats: Dict[str, str] = {
|
|
898
|
+
'X-Task-Diagnostics': 'csv',
|
|
853
899
|
'fields': 'multi',
|
|
854
900
|
'exclude_fields': 'multi',
|
|
855
901
|
}
|
|
@@ -884,6 +930,8 @@ class GroupsUsersApi:
|
|
|
884
930
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
885
931
|
|
|
886
932
|
# process the header parameters
|
|
933
|
+
if x_task_diagnostics is not None:
|
|
934
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
887
935
|
# process the form parameters
|
|
888
936
|
# process the body parameter
|
|
889
937
|
|