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.
- 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
|
@@ -50,6 +50,7 @@ class TaskSchedulesApi:
|
|
|
50
50
|
self,
|
|
51
51
|
task_schedule_href: StrictStr,
|
|
52
52
|
nested_role: NestedRole,
|
|
53
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
53
54
|
_request_timeout: Union[
|
|
54
55
|
None,
|
|
55
56
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -71,6 +72,8 @@ class TaskSchedulesApi:
|
|
|
71
72
|
:type task_schedule_href: str
|
|
72
73
|
:param nested_role: (required)
|
|
73
74
|
:type nested_role: NestedRole
|
|
75
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
76
|
+
:type x_task_diagnostics: List[str]
|
|
74
77
|
:param _request_timeout: timeout setting for this request. If one
|
|
75
78
|
number provided, it will be total request
|
|
76
79
|
timeout. It can also be a pair (tuple) of
|
|
@@ -96,6 +99,7 @@ class TaskSchedulesApi:
|
|
|
96
99
|
_param = self._add_role_serialize(
|
|
97
100
|
task_schedule_href=task_schedule_href,
|
|
98
101
|
nested_role=nested_role,
|
|
102
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
99
103
|
_request_auth=_request_auth,
|
|
100
104
|
_content_type=_content_type,
|
|
101
105
|
_headers=_headers,
|
|
@@ -121,6 +125,7 @@ class TaskSchedulesApi:
|
|
|
121
125
|
self,
|
|
122
126
|
task_schedule_href: StrictStr,
|
|
123
127
|
nested_role: NestedRole,
|
|
128
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
124
129
|
_request_timeout: Union[
|
|
125
130
|
None,
|
|
126
131
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -142,6 +147,8 @@ class TaskSchedulesApi:
|
|
|
142
147
|
:type task_schedule_href: str
|
|
143
148
|
:param nested_role: (required)
|
|
144
149
|
:type nested_role: NestedRole
|
|
150
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
151
|
+
:type x_task_diagnostics: List[str]
|
|
145
152
|
:param _request_timeout: timeout setting for this request. If one
|
|
146
153
|
number provided, it will be total request
|
|
147
154
|
timeout. It can also be a pair (tuple) of
|
|
@@ -167,6 +174,7 @@ class TaskSchedulesApi:
|
|
|
167
174
|
_param = self._add_role_serialize(
|
|
168
175
|
task_schedule_href=task_schedule_href,
|
|
169
176
|
nested_role=nested_role,
|
|
177
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
170
178
|
_request_auth=_request_auth,
|
|
171
179
|
_content_type=_content_type,
|
|
172
180
|
_headers=_headers,
|
|
@@ -192,6 +200,7 @@ class TaskSchedulesApi:
|
|
|
192
200
|
self,
|
|
193
201
|
task_schedule_href: StrictStr,
|
|
194
202
|
nested_role: NestedRole,
|
|
203
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
195
204
|
_request_timeout: Union[
|
|
196
205
|
None,
|
|
197
206
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -213,6 +222,8 @@ class TaskSchedulesApi:
|
|
|
213
222
|
:type task_schedule_href: str
|
|
214
223
|
:param nested_role: (required)
|
|
215
224
|
:type nested_role: NestedRole
|
|
225
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
226
|
+
:type x_task_diagnostics: List[str]
|
|
216
227
|
:param _request_timeout: timeout setting for this request. If one
|
|
217
228
|
number provided, it will be total request
|
|
218
229
|
timeout. It can also be a pair (tuple) of
|
|
@@ -238,6 +249,7 @@ class TaskSchedulesApi:
|
|
|
238
249
|
_param = self._add_role_serialize(
|
|
239
250
|
task_schedule_href=task_schedule_href,
|
|
240
251
|
nested_role=nested_role,
|
|
252
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
241
253
|
_request_auth=_request_auth,
|
|
242
254
|
_content_type=_content_type,
|
|
243
255
|
_headers=_headers,
|
|
@@ -258,6 +270,7 @@ class TaskSchedulesApi:
|
|
|
258
270
|
self,
|
|
259
271
|
task_schedule_href,
|
|
260
272
|
nested_role,
|
|
273
|
+
x_task_diagnostics,
|
|
261
274
|
_request_auth,
|
|
262
275
|
_content_type,
|
|
263
276
|
_headers,
|
|
@@ -267,6 +280,7 @@ class TaskSchedulesApi:
|
|
|
267
280
|
_host = None
|
|
268
281
|
|
|
269
282
|
_collection_formats: Dict[str, str] = {
|
|
283
|
+
'X-Task-Diagnostics': 'csv',
|
|
270
284
|
}
|
|
271
285
|
|
|
272
286
|
_path_params: Dict[str, str] = {}
|
|
@@ -283,6 +297,8 @@ class TaskSchedulesApi:
|
|
|
283
297
|
_path_params['task_schedule_href'] = task_schedule_href
|
|
284
298
|
# process the query parameters
|
|
285
299
|
# process the header parameters
|
|
300
|
+
if x_task_diagnostics is not None:
|
|
301
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
286
302
|
# process the form parameters
|
|
287
303
|
# process the body parameter
|
|
288
304
|
if nested_role is not None:
|
|
@@ -340,6 +356,7 @@ class TaskSchedulesApi:
|
|
|
340
356
|
@validate_call
|
|
341
357
|
def list(
|
|
342
358
|
self,
|
|
359
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
343
360
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
344
361
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
345
362
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -370,6 +387,8 @@ class TaskSchedulesApi:
|
|
|
370
387
|
|
|
371
388
|
ViewSet to monitor task schedules.
|
|
372
389
|
|
|
390
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
391
|
+
:type x_task_diagnostics: List[str]
|
|
373
392
|
:param limit: Number of results to return per page.
|
|
374
393
|
:type limit: int
|
|
375
394
|
:param name: Filter results where name matches value
|
|
@@ -419,6 +438,7 @@ class TaskSchedulesApi:
|
|
|
419
438
|
""" # noqa: E501
|
|
420
439
|
|
|
421
440
|
_param = self._list_serialize(
|
|
441
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
422
442
|
limit=limit,
|
|
423
443
|
name=name,
|
|
424
444
|
name__contains=name__contains,
|
|
@@ -455,6 +475,7 @@ class TaskSchedulesApi:
|
|
|
455
475
|
@validate_call
|
|
456
476
|
def list_with_http_info(
|
|
457
477
|
self,
|
|
478
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
458
479
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
459
480
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
460
481
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -485,6 +506,8 @@ class TaskSchedulesApi:
|
|
|
485
506
|
|
|
486
507
|
ViewSet to monitor task schedules.
|
|
487
508
|
|
|
509
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
510
|
+
:type x_task_diagnostics: List[str]
|
|
488
511
|
:param limit: Number of results to return per page.
|
|
489
512
|
:type limit: int
|
|
490
513
|
:param name: Filter results where name matches value
|
|
@@ -534,6 +557,7 @@ class TaskSchedulesApi:
|
|
|
534
557
|
""" # noqa: E501
|
|
535
558
|
|
|
536
559
|
_param = self._list_serialize(
|
|
560
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
537
561
|
limit=limit,
|
|
538
562
|
name=name,
|
|
539
563
|
name__contains=name__contains,
|
|
@@ -570,6 +594,7 @@ class TaskSchedulesApi:
|
|
|
570
594
|
@validate_call
|
|
571
595
|
def list_without_preload_content(
|
|
572
596
|
self,
|
|
597
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
573
598
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
574
599
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
575
600
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -600,6 +625,8 @@ class TaskSchedulesApi:
|
|
|
600
625
|
|
|
601
626
|
ViewSet to monitor task schedules.
|
|
602
627
|
|
|
628
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
629
|
+
:type x_task_diagnostics: List[str]
|
|
603
630
|
:param limit: Number of results to return per page.
|
|
604
631
|
:type limit: int
|
|
605
632
|
:param name: Filter results where name matches value
|
|
@@ -649,6 +676,7 @@ class TaskSchedulesApi:
|
|
|
649
676
|
""" # noqa: E501
|
|
650
677
|
|
|
651
678
|
_param = self._list_serialize(
|
|
679
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
652
680
|
limit=limit,
|
|
653
681
|
name=name,
|
|
654
682
|
name__contains=name__contains,
|
|
@@ -680,6 +708,7 @@ class TaskSchedulesApi:
|
|
|
680
708
|
|
|
681
709
|
def _list_serialize(
|
|
682
710
|
self,
|
|
711
|
+
x_task_diagnostics,
|
|
683
712
|
limit,
|
|
684
713
|
name,
|
|
685
714
|
name__contains,
|
|
@@ -702,6 +731,7 @@ class TaskSchedulesApi:
|
|
|
702
731
|
_host = None
|
|
703
732
|
|
|
704
733
|
_collection_formats: Dict[str, str] = {
|
|
734
|
+
'X-Task-Diagnostics': 'csv',
|
|
705
735
|
'ordering': 'csv',
|
|
706
736
|
'prn__in': 'csv',
|
|
707
737
|
'pulp_href__in': 'csv',
|
|
@@ -774,6 +804,8 @@ class TaskSchedulesApi:
|
|
|
774
804
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
775
805
|
|
|
776
806
|
# process the header parameters
|
|
807
|
+
if x_task_diagnostics is not None:
|
|
808
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
777
809
|
# process the form parameters
|
|
778
810
|
# process the body parameter
|
|
779
811
|
|
|
@@ -815,6 +847,7 @@ class TaskSchedulesApi:
|
|
|
815
847
|
def list_roles(
|
|
816
848
|
self,
|
|
817
849
|
task_schedule_href: StrictStr,
|
|
850
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
818
851
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
819
852
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
820
853
|
_request_timeout: Union[
|
|
@@ -836,6 +869,8 @@ class TaskSchedulesApi:
|
|
|
836
869
|
|
|
837
870
|
:param task_schedule_href: (required)
|
|
838
871
|
:type task_schedule_href: str
|
|
872
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
873
|
+
:type x_task_diagnostics: List[str]
|
|
839
874
|
:param fields: A list of fields to include in the response.
|
|
840
875
|
:type fields: List[str]
|
|
841
876
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -864,6 +899,7 @@ class TaskSchedulesApi:
|
|
|
864
899
|
|
|
865
900
|
_param = self._list_roles_serialize(
|
|
866
901
|
task_schedule_href=task_schedule_href,
|
|
902
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
867
903
|
fields=fields,
|
|
868
904
|
exclude_fields=exclude_fields,
|
|
869
905
|
_request_auth=_request_auth,
|
|
@@ -890,6 +926,7 @@ class TaskSchedulesApi:
|
|
|
890
926
|
def list_roles_with_http_info(
|
|
891
927
|
self,
|
|
892
928
|
task_schedule_href: StrictStr,
|
|
929
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
893
930
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
894
931
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
895
932
|
_request_timeout: Union[
|
|
@@ -911,6 +948,8 @@ class TaskSchedulesApi:
|
|
|
911
948
|
|
|
912
949
|
:param task_schedule_href: (required)
|
|
913
950
|
:type task_schedule_href: str
|
|
951
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
952
|
+
:type x_task_diagnostics: List[str]
|
|
914
953
|
:param fields: A list of fields to include in the response.
|
|
915
954
|
:type fields: List[str]
|
|
916
955
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -939,6 +978,7 @@ class TaskSchedulesApi:
|
|
|
939
978
|
|
|
940
979
|
_param = self._list_roles_serialize(
|
|
941
980
|
task_schedule_href=task_schedule_href,
|
|
981
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
942
982
|
fields=fields,
|
|
943
983
|
exclude_fields=exclude_fields,
|
|
944
984
|
_request_auth=_request_auth,
|
|
@@ -965,6 +1005,7 @@ class TaskSchedulesApi:
|
|
|
965
1005
|
def list_roles_without_preload_content(
|
|
966
1006
|
self,
|
|
967
1007
|
task_schedule_href: StrictStr,
|
|
1008
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
968
1009
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
969
1010
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
970
1011
|
_request_timeout: Union[
|
|
@@ -986,6 +1027,8 @@ class TaskSchedulesApi:
|
|
|
986
1027
|
|
|
987
1028
|
:param task_schedule_href: (required)
|
|
988
1029
|
:type task_schedule_href: str
|
|
1030
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1031
|
+
:type x_task_diagnostics: List[str]
|
|
989
1032
|
:param fields: A list of fields to include in the response.
|
|
990
1033
|
:type fields: List[str]
|
|
991
1034
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1014,6 +1057,7 @@ class TaskSchedulesApi:
|
|
|
1014
1057
|
|
|
1015
1058
|
_param = self._list_roles_serialize(
|
|
1016
1059
|
task_schedule_href=task_schedule_href,
|
|
1060
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1017
1061
|
fields=fields,
|
|
1018
1062
|
exclude_fields=exclude_fields,
|
|
1019
1063
|
_request_auth=_request_auth,
|
|
@@ -1035,6 +1079,7 @@ class TaskSchedulesApi:
|
|
|
1035
1079
|
def _list_roles_serialize(
|
|
1036
1080
|
self,
|
|
1037
1081
|
task_schedule_href,
|
|
1082
|
+
x_task_diagnostics,
|
|
1038
1083
|
fields,
|
|
1039
1084
|
exclude_fields,
|
|
1040
1085
|
_request_auth,
|
|
@@ -1046,6 +1091,7 @@ class TaskSchedulesApi:
|
|
|
1046
1091
|
_host = None
|
|
1047
1092
|
|
|
1048
1093
|
_collection_formats: Dict[str, str] = {
|
|
1094
|
+
'X-Task-Diagnostics': 'csv',
|
|
1049
1095
|
'fields': 'multi',
|
|
1050
1096
|
'exclude_fields': 'multi',
|
|
1051
1097
|
}
|
|
@@ -1072,6 +1118,8 @@ class TaskSchedulesApi:
|
|
|
1072
1118
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1073
1119
|
|
|
1074
1120
|
# process the header parameters
|
|
1121
|
+
if x_task_diagnostics is not None:
|
|
1122
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1075
1123
|
# process the form parameters
|
|
1076
1124
|
# process the body parameter
|
|
1077
1125
|
|
|
@@ -1113,6 +1161,7 @@ class TaskSchedulesApi:
|
|
|
1113
1161
|
def my_permissions(
|
|
1114
1162
|
self,
|
|
1115
1163
|
task_schedule_href: StrictStr,
|
|
1164
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1116
1165
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1117
1166
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1118
1167
|
_request_timeout: Union[
|
|
@@ -1134,6 +1183,8 @@ class TaskSchedulesApi:
|
|
|
1134
1183
|
|
|
1135
1184
|
:param task_schedule_href: (required)
|
|
1136
1185
|
:type task_schedule_href: str
|
|
1186
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1187
|
+
:type x_task_diagnostics: List[str]
|
|
1137
1188
|
:param fields: A list of fields to include in the response.
|
|
1138
1189
|
:type fields: List[str]
|
|
1139
1190
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1162,6 +1213,7 @@ class TaskSchedulesApi:
|
|
|
1162
1213
|
|
|
1163
1214
|
_param = self._my_permissions_serialize(
|
|
1164
1215
|
task_schedule_href=task_schedule_href,
|
|
1216
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1165
1217
|
fields=fields,
|
|
1166
1218
|
exclude_fields=exclude_fields,
|
|
1167
1219
|
_request_auth=_request_auth,
|
|
@@ -1188,6 +1240,7 @@ class TaskSchedulesApi:
|
|
|
1188
1240
|
def my_permissions_with_http_info(
|
|
1189
1241
|
self,
|
|
1190
1242
|
task_schedule_href: StrictStr,
|
|
1243
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1191
1244
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1192
1245
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1193
1246
|
_request_timeout: Union[
|
|
@@ -1209,6 +1262,8 @@ class TaskSchedulesApi:
|
|
|
1209
1262
|
|
|
1210
1263
|
:param task_schedule_href: (required)
|
|
1211
1264
|
:type task_schedule_href: str
|
|
1265
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1266
|
+
:type x_task_diagnostics: List[str]
|
|
1212
1267
|
:param fields: A list of fields to include in the response.
|
|
1213
1268
|
:type fields: List[str]
|
|
1214
1269
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1237,6 +1292,7 @@ class TaskSchedulesApi:
|
|
|
1237
1292
|
|
|
1238
1293
|
_param = self._my_permissions_serialize(
|
|
1239
1294
|
task_schedule_href=task_schedule_href,
|
|
1295
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1240
1296
|
fields=fields,
|
|
1241
1297
|
exclude_fields=exclude_fields,
|
|
1242
1298
|
_request_auth=_request_auth,
|
|
@@ -1263,6 +1319,7 @@ class TaskSchedulesApi:
|
|
|
1263
1319
|
def my_permissions_without_preload_content(
|
|
1264
1320
|
self,
|
|
1265
1321
|
task_schedule_href: StrictStr,
|
|
1322
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1266
1323
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1267
1324
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1268
1325
|
_request_timeout: Union[
|
|
@@ -1284,6 +1341,8 @@ class TaskSchedulesApi:
|
|
|
1284
1341
|
|
|
1285
1342
|
:param task_schedule_href: (required)
|
|
1286
1343
|
:type task_schedule_href: str
|
|
1344
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1345
|
+
:type x_task_diagnostics: List[str]
|
|
1287
1346
|
:param fields: A list of fields to include in the response.
|
|
1288
1347
|
:type fields: List[str]
|
|
1289
1348
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1312,6 +1371,7 @@ class TaskSchedulesApi:
|
|
|
1312
1371
|
|
|
1313
1372
|
_param = self._my_permissions_serialize(
|
|
1314
1373
|
task_schedule_href=task_schedule_href,
|
|
1374
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1315
1375
|
fields=fields,
|
|
1316
1376
|
exclude_fields=exclude_fields,
|
|
1317
1377
|
_request_auth=_request_auth,
|
|
@@ -1333,6 +1393,7 @@ class TaskSchedulesApi:
|
|
|
1333
1393
|
def _my_permissions_serialize(
|
|
1334
1394
|
self,
|
|
1335
1395
|
task_schedule_href,
|
|
1396
|
+
x_task_diagnostics,
|
|
1336
1397
|
fields,
|
|
1337
1398
|
exclude_fields,
|
|
1338
1399
|
_request_auth,
|
|
@@ -1344,6 +1405,7 @@ class TaskSchedulesApi:
|
|
|
1344
1405
|
_host = None
|
|
1345
1406
|
|
|
1346
1407
|
_collection_formats: Dict[str, str] = {
|
|
1408
|
+
'X-Task-Diagnostics': 'csv',
|
|
1347
1409
|
'fields': 'multi',
|
|
1348
1410
|
'exclude_fields': 'multi',
|
|
1349
1411
|
}
|
|
@@ -1370,6 +1432,8 @@ class TaskSchedulesApi:
|
|
|
1370
1432
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1371
1433
|
|
|
1372
1434
|
# process the header parameters
|
|
1435
|
+
if x_task_diagnostics is not None:
|
|
1436
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1373
1437
|
# process the form parameters
|
|
1374
1438
|
# process the body parameter
|
|
1375
1439
|
|
|
@@ -1411,6 +1475,7 @@ class TaskSchedulesApi:
|
|
|
1411
1475
|
def read(
|
|
1412
1476
|
self,
|
|
1413
1477
|
task_schedule_href: StrictStr,
|
|
1478
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1414
1479
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1415
1480
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1416
1481
|
_request_timeout: Union[
|
|
@@ -1432,6 +1497,8 @@ class TaskSchedulesApi:
|
|
|
1432
1497
|
|
|
1433
1498
|
:param task_schedule_href: (required)
|
|
1434
1499
|
:type task_schedule_href: str
|
|
1500
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1501
|
+
:type x_task_diagnostics: List[str]
|
|
1435
1502
|
:param fields: A list of fields to include in the response.
|
|
1436
1503
|
:type fields: List[str]
|
|
1437
1504
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1460,6 +1527,7 @@ class TaskSchedulesApi:
|
|
|
1460
1527
|
|
|
1461
1528
|
_param = self._read_serialize(
|
|
1462
1529
|
task_schedule_href=task_schedule_href,
|
|
1530
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1463
1531
|
fields=fields,
|
|
1464
1532
|
exclude_fields=exclude_fields,
|
|
1465
1533
|
_request_auth=_request_auth,
|
|
@@ -1486,6 +1554,7 @@ class TaskSchedulesApi:
|
|
|
1486
1554
|
def read_with_http_info(
|
|
1487
1555
|
self,
|
|
1488
1556
|
task_schedule_href: StrictStr,
|
|
1557
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1489
1558
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1490
1559
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1491
1560
|
_request_timeout: Union[
|
|
@@ -1507,6 +1576,8 @@ class TaskSchedulesApi:
|
|
|
1507
1576
|
|
|
1508
1577
|
:param task_schedule_href: (required)
|
|
1509
1578
|
:type task_schedule_href: str
|
|
1579
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1580
|
+
:type x_task_diagnostics: List[str]
|
|
1510
1581
|
:param fields: A list of fields to include in the response.
|
|
1511
1582
|
:type fields: List[str]
|
|
1512
1583
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1535,6 +1606,7 @@ class TaskSchedulesApi:
|
|
|
1535
1606
|
|
|
1536
1607
|
_param = self._read_serialize(
|
|
1537
1608
|
task_schedule_href=task_schedule_href,
|
|
1609
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1538
1610
|
fields=fields,
|
|
1539
1611
|
exclude_fields=exclude_fields,
|
|
1540
1612
|
_request_auth=_request_auth,
|
|
@@ -1561,6 +1633,7 @@ class TaskSchedulesApi:
|
|
|
1561
1633
|
def read_without_preload_content(
|
|
1562
1634
|
self,
|
|
1563
1635
|
task_schedule_href: StrictStr,
|
|
1636
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1564
1637
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1565
1638
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1566
1639
|
_request_timeout: Union[
|
|
@@ -1582,6 +1655,8 @@ class TaskSchedulesApi:
|
|
|
1582
1655
|
|
|
1583
1656
|
:param task_schedule_href: (required)
|
|
1584
1657
|
:type task_schedule_href: str
|
|
1658
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1659
|
+
:type x_task_diagnostics: List[str]
|
|
1585
1660
|
:param fields: A list of fields to include in the response.
|
|
1586
1661
|
:type fields: List[str]
|
|
1587
1662
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1610,6 +1685,7 @@ class TaskSchedulesApi:
|
|
|
1610
1685
|
|
|
1611
1686
|
_param = self._read_serialize(
|
|
1612
1687
|
task_schedule_href=task_schedule_href,
|
|
1688
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1613
1689
|
fields=fields,
|
|
1614
1690
|
exclude_fields=exclude_fields,
|
|
1615
1691
|
_request_auth=_request_auth,
|
|
@@ -1631,6 +1707,7 @@ class TaskSchedulesApi:
|
|
|
1631
1707
|
def _read_serialize(
|
|
1632
1708
|
self,
|
|
1633
1709
|
task_schedule_href,
|
|
1710
|
+
x_task_diagnostics,
|
|
1634
1711
|
fields,
|
|
1635
1712
|
exclude_fields,
|
|
1636
1713
|
_request_auth,
|
|
@@ -1642,6 +1719,7 @@ class TaskSchedulesApi:
|
|
|
1642
1719
|
_host = None
|
|
1643
1720
|
|
|
1644
1721
|
_collection_formats: Dict[str, str] = {
|
|
1722
|
+
'X-Task-Diagnostics': 'csv',
|
|
1645
1723
|
'fields': 'multi',
|
|
1646
1724
|
'exclude_fields': 'multi',
|
|
1647
1725
|
}
|
|
@@ -1668,6 +1746,8 @@ class TaskSchedulesApi:
|
|
|
1668
1746
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1669
1747
|
|
|
1670
1748
|
# process the header parameters
|
|
1749
|
+
if x_task_diagnostics is not None:
|
|
1750
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1671
1751
|
# process the form parameters
|
|
1672
1752
|
# process the body parameter
|
|
1673
1753
|
|
|
@@ -1710,6 +1790,7 @@ class TaskSchedulesApi:
|
|
|
1710
1790
|
self,
|
|
1711
1791
|
task_schedule_href: StrictStr,
|
|
1712
1792
|
nested_role: NestedRole,
|
|
1793
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1713
1794
|
_request_timeout: Union[
|
|
1714
1795
|
None,
|
|
1715
1796
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1731,6 +1812,8 @@ class TaskSchedulesApi:
|
|
|
1731
1812
|
:type task_schedule_href: str
|
|
1732
1813
|
:param nested_role: (required)
|
|
1733
1814
|
:type nested_role: NestedRole
|
|
1815
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1816
|
+
:type x_task_diagnostics: List[str]
|
|
1734
1817
|
:param _request_timeout: timeout setting for this request. If one
|
|
1735
1818
|
number provided, it will be total request
|
|
1736
1819
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1756,6 +1839,7 @@ class TaskSchedulesApi:
|
|
|
1756
1839
|
_param = self._remove_role_serialize(
|
|
1757
1840
|
task_schedule_href=task_schedule_href,
|
|
1758
1841
|
nested_role=nested_role,
|
|
1842
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1759
1843
|
_request_auth=_request_auth,
|
|
1760
1844
|
_content_type=_content_type,
|
|
1761
1845
|
_headers=_headers,
|
|
@@ -1781,6 +1865,7 @@ class TaskSchedulesApi:
|
|
|
1781
1865
|
self,
|
|
1782
1866
|
task_schedule_href: StrictStr,
|
|
1783
1867
|
nested_role: NestedRole,
|
|
1868
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1784
1869
|
_request_timeout: Union[
|
|
1785
1870
|
None,
|
|
1786
1871
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1802,6 +1887,8 @@ class TaskSchedulesApi:
|
|
|
1802
1887
|
:type task_schedule_href: str
|
|
1803
1888
|
:param nested_role: (required)
|
|
1804
1889
|
:type nested_role: NestedRole
|
|
1890
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1891
|
+
:type x_task_diagnostics: List[str]
|
|
1805
1892
|
:param _request_timeout: timeout setting for this request. If one
|
|
1806
1893
|
number provided, it will be total request
|
|
1807
1894
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1827,6 +1914,7 @@ class TaskSchedulesApi:
|
|
|
1827
1914
|
_param = self._remove_role_serialize(
|
|
1828
1915
|
task_schedule_href=task_schedule_href,
|
|
1829
1916
|
nested_role=nested_role,
|
|
1917
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1830
1918
|
_request_auth=_request_auth,
|
|
1831
1919
|
_content_type=_content_type,
|
|
1832
1920
|
_headers=_headers,
|
|
@@ -1852,6 +1940,7 @@ class TaskSchedulesApi:
|
|
|
1852
1940
|
self,
|
|
1853
1941
|
task_schedule_href: StrictStr,
|
|
1854
1942
|
nested_role: NestedRole,
|
|
1943
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1855
1944
|
_request_timeout: Union[
|
|
1856
1945
|
None,
|
|
1857
1946
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1873,6 +1962,8 @@ class TaskSchedulesApi:
|
|
|
1873
1962
|
:type task_schedule_href: str
|
|
1874
1963
|
:param nested_role: (required)
|
|
1875
1964
|
:type nested_role: NestedRole
|
|
1965
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1966
|
+
:type x_task_diagnostics: List[str]
|
|
1876
1967
|
:param _request_timeout: timeout setting for this request. If one
|
|
1877
1968
|
number provided, it will be total request
|
|
1878
1969
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1898,6 +1989,7 @@ class TaskSchedulesApi:
|
|
|
1898
1989
|
_param = self._remove_role_serialize(
|
|
1899
1990
|
task_schedule_href=task_schedule_href,
|
|
1900
1991
|
nested_role=nested_role,
|
|
1992
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1901
1993
|
_request_auth=_request_auth,
|
|
1902
1994
|
_content_type=_content_type,
|
|
1903
1995
|
_headers=_headers,
|
|
@@ -1918,6 +2010,7 @@ class TaskSchedulesApi:
|
|
|
1918
2010
|
self,
|
|
1919
2011
|
task_schedule_href,
|
|
1920
2012
|
nested_role,
|
|
2013
|
+
x_task_diagnostics,
|
|
1921
2014
|
_request_auth,
|
|
1922
2015
|
_content_type,
|
|
1923
2016
|
_headers,
|
|
@@ -1927,6 +2020,7 @@ class TaskSchedulesApi:
|
|
|
1927
2020
|
_host = None
|
|
1928
2021
|
|
|
1929
2022
|
_collection_formats: Dict[str, str] = {
|
|
2023
|
+
'X-Task-Diagnostics': 'csv',
|
|
1930
2024
|
}
|
|
1931
2025
|
|
|
1932
2026
|
_path_params: Dict[str, str] = {}
|
|
@@ -1943,6 +2037,8 @@ class TaskSchedulesApi:
|
|
|
1943
2037
|
_path_params['task_schedule_href'] = task_schedule_href
|
|
1944
2038
|
# process the query parameters
|
|
1945
2039
|
# process the header parameters
|
|
2040
|
+
if x_task_diagnostics is not None:
|
|
2041
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1946
2042
|
# process the form parameters
|
|
1947
2043
|
# process the body parameter
|
|
1948
2044
|
if nested_role is not None:
|