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
|
@@ -58,6 +58,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
58
58
|
self,
|
|
59
59
|
open_p_g_p_keyring_href: StrictStr,
|
|
60
60
|
nested_role: NestedRole,
|
|
61
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
61
62
|
_request_timeout: Union[
|
|
62
63
|
None,
|
|
63
64
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -79,6 +80,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
79
80
|
:type open_p_g_p_keyring_href: str
|
|
80
81
|
:param nested_role: (required)
|
|
81
82
|
:type nested_role: NestedRole
|
|
83
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
84
|
+
:type x_task_diagnostics: List[str]
|
|
82
85
|
:param _request_timeout: timeout setting for this request. If one
|
|
83
86
|
number provided, it will be total request
|
|
84
87
|
timeout. It can also be a pair (tuple) of
|
|
@@ -104,6 +107,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
104
107
|
_param = self._add_role_serialize(
|
|
105
108
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
106
109
|
nested_role=nested_role,
|
|
110
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
107
111
|
_request_auth=_request_auth,
|
|
108
112
|
_content_type=_content_type,
|
|
109
113
|
_headers=_headers,
|
|
@@ -129,6 +133,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
129
133
|
self,
|
|
130
134
|
open_p_g_p_keyring_href: StrictStr,
|
|
131
135
|
nested_role: NestedRole,
|
|
136
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
132
137
|
_request_timeout: Union[
|
|
133
138
|
None,
|
|
134
139
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -150,6 +155,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
150
155
|
:type open_p_g_p_keyring_href: str
|
|
151
156
|
:param nested_role: (required)
|
|
152
157
|
:type nested_role: NestedRole
|
|
158
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
159
|
+
:type x_task_diagnostics: List[str]
|
|
153
160
|
:param _request_timeout: timeout setting for this request. If one
|
|
154
161
|
number provided, it will be total request
|
|
155
162
|
timeout. It can also be a pair (tuple) of
|
|
@@ -175,6 +182,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
175
182
|
_param = self._add_role_serialize(
|
|
176
183
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
177
184
|
nested_role=nested_role,
|
|
185
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
178
186
|
_request_auth=_request_auth,
|
|
179
187
|
_content_type=_content_type,
|
|
180
188
|
_headers=_headers,
|
|
@@ -200,6 +208,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
200
208
|
self,
|
|
201
209
|
open_p_g_p_keyring_href: StrictStr,
|
|
202
210
|
nested_role: NestedRole,
|
|
211
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
203
212
|
_request_timeout: Union[
|
|
204
213
|
None,
|
|
205
214
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -221,6 +230,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
221
230
|
:type open_p_g_p_keyring_href: str
|
|
222
231
|
:param nested_role: (required)
|
|
223
232
|
:type nested_role: NestedRole
|
|
233
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
234
|
+
:type x_task_diagnostics: List[str]
|
|
224
235
|
:param _request_timeout: timeout setting for this request. If one
|
|
225
236
|
number provided, it will be total request
|
|
226
237
|
timeout. It can also be a pair (tuple) of
|
|
@@ -246,6 +257,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
246
257
|
_param = self._add_role_serialize(
|
|
247
258
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
248
259
|
nested_role=nested_role,
|
|
260
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
249
261
|
_request_auth=_request_auth,
|
|
250
262
|
_content_type=_content_type,
|
|
251
263
|
_headers=_headers,
|
|
@@ -266,6 +278,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
266
278
|
self,
|
|
267
279
|
open_p_g_p_keyring_href,
|
|
268
280
|
nested_role,
|
|
281
|
+
x_task_diagnostics,
|
|
269
282
|
_request_auth,
|
|
270
283
|
_content_type,
|
|
271
284
|
_headers,
|
|
@@ -275,6 +288,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
275
288
|
_host = None
|
|
276
289
|
|
|
277
290
|
_collection_formats: Dict[str, str] = {
|
|
291
|
+
'X-Task-Diagnostics': 'csv',
|
|
278
292
|
}
|
|
279
293
|
|
|
280
294
|
_path_params: Dict[str, str] = {}
|
|
@@ -291,6 +305,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
291
305
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
292
306
|
# process the query parameters
|
|
293
307
|
# process the header parameters
|
|
308
|
+
if x_task_diagnostics is not None:
|
|
309
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
294
310
|
# process the form parameters
|
|
295
311
|
# process the body parameter
|
|
296
312
|
if nested_role is not None:
|
|
@@ -349,6 +365,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
349
365
|
def create(
|
|
350
366
|
self,
|
|
351
367
|
open_pgp_keyring: OpenPGPKeyring,
|
|
368
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
352
369
|
_request_timeout: Union[
|
|
353
370
|
None,
|
|
354
371
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -368,6 +385,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
368
385
|
|
|
369
386
|
:param open_pgp_keyring: (required)
|
|
370
387
|
:type open_pgp_keyring: OpenPGPKeyring
|
|
388
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
389
|
+
:type x_task_diagnostics: List[str]
|
|
371
390
|
:param _request_timeout: timeout setting for this request. If one
|
|
372
391
|
number provided, it will be total request
|
|
373
392
|
timeout. It can also be a pair (tuple) of
|
|
@@ -392,6 +411,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
392
411
|
|
|
393
412
|
_param = self._create_serialize(
|
|
394
413
|
open_pgp_keyring=open_pgp_keyring,
|
|
414
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
395
415
|
_request_auth=_request_auth,
|
|
396
416
|
_content_type=_content_type,
|
|
397
417
|
_headers=_headers,
|
|
@@ -416,6 +436,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
416
436
|
def create_with_http_info(
|
|
417
437
|
self,
|
|
418
438
|
open_pgp_keyring: OpenPGPKeyring,
|
|
439
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
419
440
|
_request_timeout: Union[
|
|
420
441
|
None,
|
|
421
442
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -435,6 +456,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
435
456
|
|
|
436
457
|
:param open_pgp_keyring: (required)
|
|
437
458
|
:type open_pgp_keyring: OpenPGPKeyring
|
|
459
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
460
|
+
:type x_task_diagnostics: List[str]
|
|
438
461
|
:param _request_timeout: timeout setting for this request. If one
|
|
439
462
|
number provided, it will be total request
|
|
440
463
|
timeout. It can also be a pair (tuple) of
|
|
@@ -459,6 +482,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
459
482
|
|
|
460
483
|
_param = self._create_serialize(
|
|
461
484
|
open_pgp_keyring=open_pgp_keyring,
|
|
485
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
462
486
|
_request_auth=_request_auth,
|
|
463
487
|
_content_type=_content_type,
|
|
464
488
|
_headers=_headers,
|
|
@@ -483,6 +507,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
483
507
|
def create_without_preload_content(
|
|
484
508
|
self,
|
|
485
509
|
open_pgp_keyring: OpenPGPKeyring,
|
|
510
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
486
511
|
_request_timeout: Union[
|
|
487
512
|
None,
|
|
488
513
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -502,6 +527,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
502
527
|
|
|
503
528
|
:param open_pgp_keyring: (required)
|
|
504
529
|
:type open_pgp_keyring: OpenPGPKeyring
|
|
530
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
531
|
+
:type x_task_diagnostics: List[str]
|
|
505
532
|
:param _request_timeout: timeout setting for this request. If one
|
|
506
533
|
number provided, it will be total request
|
|
507
534
|
timeout. It can also be a pair (tuple) of
|
|
@@ -526,6 +553,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
526
553
|
|
|
527
554
|
_param = self._create_serialize(
|
|
528
555
|
open_pgp_keyring=open_pgp_keyring,
|
|
556
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
529
557
|
_request_auth=_request_auth,
|
|
530
558
|
_content_type=_content_type,
|
|
531
559
|
_headers=_headers,
|
|
@@ -545,6 +573,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
545
573
|
def _create_serialize(
|
|
546
574
|
self,
|
|
547
575
|
open_pgp_keyring,
|
|
576
|
+
x_task_diagnostics,
|
|
548
577
|
_request_auth,
|
|
549
578
|
_content_type,
|
|
550
579
|
_headers,
|
|
@@ -554,6 +583,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
554
583
|
_host = None
|
|
555
584
|
|
|
556
585
|
_collection_formats: Dict[str, str] = {
|
|
586
|
+
'X-Task-Diagnostics': 'csv',
|
|
557
587
|
}
|
|
558
588
|
|
|
559
589
|
_path_params: Dict[str, str] = {}
|
|
@@ -568,6 +598,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
568
598
|
# process the path parameters
|
|
569
599
|
# process the query parameters
|
|
570
600
|
# process the header parameters
|
|
601
|
+
if x_task_diagnostics is not None:
|
|
602
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
571
603
|
# process the form parameters
|
|
572
604
|
# process the body parameter
|
|
573
605
|
if open_pgp_keyring is not None:
|
|
@@ -626,6 +658,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
626
658
|
def delete(
|
|
627
659
|
self,
|
|
628
660
|
open_p_g_p_keyring_href: StrictStr,
|
|
661
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
629
662
|
_request_timeout: Union[
|
|
630
663
|
None,
|
|
631
664
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -645,6 +678,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
645
678
|
|
|
646
679
|
:param open_p_g_p_keyring_href: (required)
|
|
647
680
|
:type open_p_g_p_keyring_href: str
|
|
681
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
682
|
+
:type x_task_diagnostics: List[str]
|
|
648
683
|
:param _request_timeout: timeout setting for this request. If one
|
|
649
684
|
number provided, it will be total request
|
|
650
685
|
timeout. It can also be a pair (tuple) of
|
|
@@ -669,6 +704,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
669
704
|
|
|
670
705
|
_param = self._delete_serialize(
|
|
671
706
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
707
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
672
708
|
_request_auth=_request_auth,
|
|
673
709
|
_content_type=_content_type,
|
|
674
710
|
_headers=_headers,
|
|
@@ -693,6 +729,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
693
729
|
def delete_with_http_info(
|
|
694
730
|
self,
|
|
695
731
|
open_p_g_p_keyring_href: StrictStr,
|
|
732
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
696
733
|
_request_timeout: Union[
|
|
697
734
|
None,
|
|
698
735
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -712,6 +749,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
712
749
|
|
|
713
750
|
:param open_p_g_p_keyring_href: (required)
|
|
714
751
|
:type open_p_g_p_keyring_href: str
|
|
752
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
753
|
+
:type x_task_diagnostics: List[str]
|
|
715
754
|
:param _request_timeout: timeout setting for this request. If one
|
|
716
755
|
number provided, it will be total request
|
|
717
756
|
timeout. It can also be a pair (tuple) of
|
|
@@ -736,6 +775,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
736
775
|
|
|
737
776
|
_param = self._delete_serialize(
|
|
738
777
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
778
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
739
779
|
_request_auth=_request_auth,
|
|
740
780
|
_content_type=_content_type,
|
|
741
781
|
_headers=_headers,
|
|
@@ -760,6 +800,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
760
800
|
def delete_without_preload_content(
|
|
761
801
|
self,
|
|
762
802
|
open_p_g_p_keyring_href: StrictStr,
|
|
803
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
763
804
|
_request_timeout: Union[
|
|
764
805
|
None,
|
|
765
806
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -779,6 +820,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
779
820
|
|
|
780
821
|
:param open_p_g_p_keyring_href: (required)
|
|
781
822
|
:type open_p_g_p_keyring_href: str
|
|
823
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
824
|
+
:type x_task_diagnostics: List[str]
|
|
782
825
|
:param _request_timeout: timeout setting for this request. If one
|
|
783
826
|
number provided, it will be total request
|
|
784
827
|
timeout. It can also be a pair (tuple) of
|
|
@@ -803,6 +846,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
803
846
|
|
|
804
847
|
_param = self._delete_serialize(
|
|
805
848
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
849
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
806
850
|
_request_auth=_request_auth,
|
|
807
851
|
_content_type=_content_type,
|
|
808
852
|
_headers=_headers,
|
|
@@ -822,6 +866,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
822
866
|
def _delete_serialize(
|
|
823
867
|
self,
|
|
824
868
|
open_p_g_p_keyring_href,
|
|
869
|
+
x_task_diagnostics,
|
|
825
870
|
_request_auth,
|
|
826
871
|
_content_type,
|
|
827
872
|
_headers,
|
|
@@ -831,6 +876,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
831
876
|
_host = None
|
|
832
877
|
|
|
833
878
|
_collection_formats: Dict[str, str] = {
|
|
879
|
+
'X-Task-Diagnostics': 'csv',
|
|
834
880
|
}
|
|
835
881
|
|
|
836
882
|
_path_params: Dict[str, str] = {}
|
|
@@ -847,6 +893,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
847
893
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
848
894
|
# process the query parameters
|
|
849
895
|
# process the header parameters
|
|
896
|
+
if x_task_diagnostics is not None:
|
|
897
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
850
898
|
# process the form parameters
|
|
851
899
|
# process the body parameter
|
|
852
900
|
|
|
@@ -887,6 +935,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
887
935
|
@validate_call
|
|
888
936
|
def list(
|
|
889
937
|
self,
|
|
938
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
890
939
|
latest_with_content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
891
940
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
892
941
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
@@ -934,6 +983,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
934
983
|
|
|
935
984
|
A ViewSet for an ordinary repository.
|
|
936
985
|
|
|
986
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
987
|
+
:type x_task_diagnostics: List[str]
|
|
937
988
|
:param latest_with_content: Content Unit referenced by HREF/PRN
|
|
938
989
|
:type latest_with_content: str
|
|
939
990
|
:param limit: Number of results to return per page.
|
|
@@ -1017,6 +1068,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1017
1068
|
""" # noqa: E501
|
|
1018
1069
|
|
|
1019
1070
|
_param = self._list_serialize(
|
|
1071
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1020
1072
|
latest_with_content=latest_with_content,
|
|
1021
1073
|
limit=limit,
|
|
1022
1074
|
name=name,
|
|
@@ -1070,6 +1122,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1070
1122
|
@validate_call
|
|
1071
1123
|
def list_with_http_info(
|
|
1072
1124
|
self,
|
|
1125
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1073
1126
|
latest_with_content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
1074
1127
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1075
1128
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
@@ -1117,6 +1170,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1117
1170
|
|
|
1118
1171
|
A ViewSet for an ordinary repository.
|
|
1119
1172
|
|
|
1173
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1174
|
+
:type x_task_diagnostics: List[str]
|
|
1120
1175
|
:param latest_with_content: Content Unit referenced by HREF/PRN
|
|
1121
1176
|
:type latest_with_content: str
|
|
1122
1177
|
:param limit: Number of results to return per page.
|
|
@@ -1200,6 +1255,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1200
1255
|
""" # noqa: E501
|
|
1201
1256
|
|
|
1202
1257
|
_param = self._list_serialize(
|
|
1258
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1203
1259
|
latest_with_content=latest_with_content,
|
|
1204
1260
|
limit=limit,
|
|
1205
1261
|
name=name,
|
|
@@ -1253,6 +1309,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1253
1309
|
@validate_call
|
|
1254
1310
|
def list_without_preload_content(
|
|
1255
1311
|
self,
|
|
1312
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1256
1313
|
latest_with_content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
1257
1314
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1258
1315
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
@@ -1300,6 +1357,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1300
1357
|
|
|
1301
1358
|
A ViewSet for an ordinary repository.
|
|
1302
1359
|
|
|
1360
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1361
|
+
:type x_task_diagnostics: List[str]
|
|
1303
1362
|
:param latest_with_content: Content Unit referenced by HREF/PRN
|
|
1304
1363
|
:type latest_with_content: str
|
|
1305
1364
|
:param limit: Number of results to return per page.
|
|
@@ -1383,6 +1442,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1383
1442
|
""" # noqa: E501
|
|
1384
1443
|
|
|
1385
1444
|
_param = self._list_serialize(
|
|
1445
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1386
1446
|
latest_with_content=latest_with_content,
|
|
1387
1447
|
limit=limit,
|
|
1388
1448
|
name=name,
|
|
@@ -1431,6 +1491,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1431
1491
|
|
|
1432
1492
|
def _list_serialize(
|
|
1433
1493
|
self,
|
|
1494
|
+
x_task_diagnostics,
|
|
1434
1495
|
latest_with_content,
|
|
1435
1496
|
limit,
|
|
1436
1497
|
name,
|
|
@@ -1470,6 +1531,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1470
1531
|
_host = None
|
|
1471
1532
|
|
|
1472
1533
|
_collection_formats: Dict[str, str] = {
|
|
1534
|
+
'X-Task-Diagnostics': 'csv',
|
|
1473
1535
|
'name__in': 'csv',
|
|
1474
1536
|
'ordering': 'csv',
|
|
1475
1537
|
'prn__in': 'csv',
|
|
@@ -1612,6 +1674,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1612
1674
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1613
1675
|
|
|
1614
1676
|
# process the header parameters
|
|
1677
|
+
if x_task_diagnostics is not None:
|
|
1678
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1615
1679
|
# process the form parameters
|
|
1616
1680
|
# process the body parameter
|
|
1617
1681
|
|
|
@@ -1653,6 +1717,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1653
1717
|
def list_roles(
|
|
1654
1718
|
self,
|
|
1655
1719
|
open_p_g_p_keyring_href: StrictStr,
|
|
1720
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1656
1721
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1657
1722
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1658
1723
|
_request_timeout: Union[
|
|
@@ -1674,6 +1739,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1674
1739
|
|
|
1675
1740
|
:param open_p_g_p_keyring_href: (required)
|
|
1676
1741
|
:type open_p_g_p_keyring_href: str
|
|
1742
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1743
|
+
:type x_task_diagnostics: List[str]
|
|
1677
1744
|
:param fields: A list of fields to include in the response.
|
|
1678
1745
|
:type fields: List[str]
|
|
1679
1746
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1702,6 +1769,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1702
1769
|
|
|
1703
1770
|
_param = self._list_roles_serialize(
|
|
1704
1771
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
1772
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1705
1773
|
fields=fields,
|
|
1706
1774
|
exclude_fields=exclude_fields,
|
|
1707
1775
|
_request_auth=_request_auth,
|
|
@@ -1728,6 +1796,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1728
1796
|
def list_roles_with_http_info(
|
|
1729
1797
|
self,
|
|
1730
1798
|
open_p_g_p_keyring_href: StrictStr,
|
|
1799
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1731
1800
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1732
1801
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1733
1802
|
_request_timeout: Union[
|
|
@@ -1749,6 +1818,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1749
1818
|
|
|
1750
1819
|
:param open_p_g_p_keyring_href: (required)
|
|
1751
1820
|
:type open_p_g_p_keyring_href: str
|
|
1821
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1822
|
+
:type x_task_diagnostics: List[str]
|
|
1752
1823
|
:param fields: A list of fields to include in the response.
|
|
1753
1824
|
:type fields: List[str]
|
|
1754
1825
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1777,6 +1848,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1777
1848
|
|
|
1778
1849
|
_param = self._list_roles_serialize(
|
|
1779
1850
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
1851
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1780
1852
|
fields=fields,
|
|
1781
1853
|
exclude_fields=exclude_fields,
|
|
1782
1854
|
_request_auth=_request_auth,
|
|
@@ -1803,6 +1875,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1803
1875
|
def list_roles_without_preload_content(
|
|
1804
1876
|
self,
|
|
1805
1877
|
open_p_g_p_keyring_href: StrictStr,
|
|
1878
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1806
1879
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1807
1880
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1808
1881
|
_request_timeout: Union[
|
|
@@ -1824,6 +1897,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1824
1897
|
|
|
1825
1898
|
:param open_p_g_p_keyring_href: (required)
|
|
1826
1899
|
:type open_p_g_p_keyring_href: str
|
|
1900
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1901
|
+
:type x_task_diagnostics: List[str]
|
|
1827
1902
|
:param fields: A list of fields to include in the response.
|
|
1828
1903
|
:type fields: List[str]
|
|
1829
1904
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1852,6 +1927,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1852
1927
|
|
|
1853
1928
|
_param = self._list_roles_serialize(
|
|
1854
1929
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
1930
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1855
1931
|
fields=fields,
|
|
1856
1932
|
exclude_fields=exclude_fields,
|
|
1857
1933
|
_request_auth=_request_auth,
|
|
@@ -1873,6 +1949,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1873
1949
|
def _list_roles_serialize(
|
|
1874
1950
|
self,
|
|
1875
1951
|
open_p_g_p_keyring_href,
|
|
1952
|
+
x_task_diagnostics,
|
|
1876
1953
|
fields,
|
|
1877
1954
|
exclude_fields,
|
|
1878
1955
|
_request_auth,
|
|
@@ -1884,6 +1961,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1884
1961
|
_host = None
|
|
1885
1962
|
|
|
1886
1963
|
_collection_formats: Dict[str, str] = {
|
|
1964
|
+
'X-Task-Diagnostics': 'csv',
|
|
1887
1965
|
'fields': 'multi',
|
|
1888
1966
|
'exclude_fields': 'multi',
|
|
1889
1967
|
}
|
|
@@ -1910,6 +1988,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1910
1988
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1911
1989
|
|
|
1912
1990
|
# process the header parameters
|
|
1991
|
+
if x_task_diagnostics is not None:
|
|
1992
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1913
1993
|
# process the form parameters
|
|
1914
1994
|
# process the body parameter
|
|
1915
1995
|
|
|
@@ -1952,6 +2032,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1952
2032
|
self,
|
|
1953
2033
|
open_p_g_p_keyring_href: StrictStr,
|
|
1954
2034
|
repository_add_remove_content: RepositoryAddRemoveContent,
|
|
2035
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1955
2036
|
_request_timeout: Union[
|
|
1956
2037
|
None,
|
|
1957
2038
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1973,6 +2054,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1973
2054
|
:type open_p_g_p_keyring_href: str
|
|
1974
2055
|
:param repository_add_remove_content: (required)
|
|
1975
2056
|
:type repository_add_remove_content: RepositoryAddRemoveContent
|
|
2057
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2058
|
+
:type x_task_diagnostics: List[str]
|
|
1976
2059
|
:param _request_timeout: timeout setting for this request. If one
|
|
1977
2060
|
number provided, it will be total request
|
|
1978
2061
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1998,6 +2081,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
1998
2081
|
_param = self._modify_serialize(
|
|
1999
2082
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2000
2083
|
repository_add_remove_content=repository_add_remove_content,
|
|
2084
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2001
2085
|
_request_auth=_request_auth,
|
|
2002
2086
|
_content_type=_content_type,
|
|
2003
2087
|
_headers=_headers,
|
|
@@ -2023,6 +2107,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2023
2107
|
self,
|
|
2024
2108
|
open_p_g_p_keyring_href: StrictStr,
|
|
2025
2109
|
repository_add_remove_content: RepositoryAddRemoveContent,
|
|
2110
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2026
2111
|
_request_timeout: Union[
|
|
2027
2112
|
None,
|
|
2028
2113
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2044,6 +2129,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2044
2129
|
:type open_p_g_p_keyring_href: str
|
|
2045
2130
|
:param repository_add_remove_content: (required)
|
|
2046
2131
|
:type repository_add_remove_content: RepositoryAddRemoveContent
|
|
2132
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2133
|
+
:type x_task_diagnostics: List[str]
|
|
2047
2134
|
:param _request_timeout: timeout setting for this request. If one
|
|
2048
2135
|
number provided, it will be total request
|
|
2049
2136
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2069,6 +2156,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2069
2156
|
_param = self._modify_serialize(
|
|
2070
2157
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2071
2158
|
repository_add_remove_content=repository_add_remove_content,
|
|
2159
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2072
2160
|
_request_auth=_request_auth,
|
|
2073
2161
|
_content_type=_content_type,
|
|
2074
2162
|
_headers=_headers,
|
|
@@ -2094,6 +2182,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2094
2182
|
self,
|
|
2095
2183
|
open_p_g_p_keyring_href: StrictStr,
|
|
2096
2184
|
repository_add_remove_content: RepositoryAddRemoveContent,
|
|
2185
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2097
2186
|
_request_timeout: Union[
|
|
2098
2187
|
None,
|
|
2099
2188
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2115,6 +2204,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2115
2204
|
:type open_p_g_p_keyring_href: str
|
|
2116
2205
|
:param repository_add_remove_content: (required)
|
|
2117
2206
|
:type repository_add_remove_content: RepositoryAddRemoveContent
|
|
2207
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2208
|
+
:type x_task_diagnostics: List[str]
|
|
2118
2209
|
:param _request_timeout: timeout setting for this request. If one
|
|
2119
2210
|
number provided, it will be total request
|
|
2120
2211
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2140,6 +2231,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2140
2231
|
_param = self._modify_serialize(
|
|
2141
2232
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2142
2233
|
repository_add_remove_content=repository_add_remove_content,
|
|
2234
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2143
2235
|
_request_auth=_request_auth,
|
|
2144
2236
|
_content_type=_content_type,
|
|
2145
2237
|
_headers=_headers,
|
|
@@ -2160,6 +2252,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2160
2252
|
self,
|
|
2161
2253
|
open_p_g_p_keyring_href,
|
|
2162
2254
|
repository_add_remove_content,
|
|
2255
|
+
x_task_diagnostics,
|
|
2163
2256
|
_request_auth,
|
|
2164
2257
|
_content_type,
|
|
2165
2258
|
_headers,
|
|
@@ -2169,6 +2262,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2169
2262
|
_host = None
|
|
2170
2263
|
|
|
2171
2264
|
_collection_formats: Dict[str, str] = {
|
|
2265
|
+
'X-Task-Diagnostics': 'csv',
|
|
2172
2266
|
}
|
|
2173
2267
|
|
|
2174
2268
|
_path_params: Dict[str, str] = {}
|
|
@@ -2185,6 +2279,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2185
2279
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
2186
2280
|
# process the query parameters
|
|
2187
2281
|
# process the header parameters
|
|
2282
|
+
if x_task_diagnostics is not None:
|
|
2283
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2188
2284
|
# process the form parameters
|
|
2189
2285
|
# process the body parameter
|
|
2190
2286
|
if repository_add_remove_content is not None:
|
|
@@ -2243,6 +2339,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2243
2339
|
def my_permissions(
|
|
2244
2340
|
self,
|
|
2245
2341
|
open_p_g_p_keyring_href: StrictStr,
|
|
2342
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2246
2343
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2247
2344
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2248
2345
|
_request_timeout: Union[
|
|
@@ -2264,6 +2361,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2264
2361
|
|
|
2265
2362
|
:param open_p_g_p_keyring_href: (required)
|
|
2266
2363
|
:type open_p_g_p_keyring_href: str
|
|
2364
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2365
|
+
:type x_task_diagnostics: List[str]
|
|
2267
2366
|
:param fields: A list of fields to include in the response.
|
|
2268
2367
|
:type fields: List[str]
|
|
2269
2368
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2292,6 +2391,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2292
2391
|
|
|
2293
2392
|
_param = self._my_permissions_serialize(
|
|
2294
2393
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2394
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2295
2395
|
fields=fields,
|
|
2296
2396
|
exclude_fields=exclude_fields,
|
|
2297
2397
|
_request_auth=_request_auth,
|
|
@@ -2318,6 +2418,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2318
2418
|
def my_permissions_with_http_info(
|
|
2319
2419
|
self,
|
|
2320
2420
|
open_p_g_p_keyring_href: StrictStr,
|
|
2421
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2321
2422
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2322
2423
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2323
2424
|
_request_timeout: Union[
|
|
@@ -2339,6 +2440,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2339
2440
|
|
|
2340
2441
|
:param open_p_g_p_keyring_href: (required)
|
|
2341
2442
|
:type open_p_g_p_keyring_href: str
|
|
2443
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2444
|
+
:type x_task_diagnostics: List[str]
|
|
2342
2445
|
:param fields: A list of fields to include in the response.
|
|
2343
2446
|
:type fields: List[str]
|
|
2344
2447
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2367,6 +2470,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2367
2470
|
|
|
2368
2471
|
_param = self._my_permissions_serialize(
|
|
2369
2472
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2473
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2370
2474
|
fields=fields,
|
|
2371
2475
|
exclude_fields=exclude_fields,
|
|
2372
2476
|
_request_auth=_request_auth,
|
|
@@ -2393,6 +2497,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2393
2497
|
def my_permissions_without_preload_content(
|
|
2394
2498
|
self,
|
|
2395
2499
|
open_p_g_p_keyring_href: StrictStr,
|
|
2500
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2396
2501
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2397
2502
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2398
2503
|
_request_timeout: Union[
|
|
@@ -2414,6 +2519,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2414
2519
|
|
|
2415
2520
|
:param open_p_g_p_keyring_href: (required)
|
|
2416
2521
|
:type open_p_g_p_keyring_href: str
|
|
2522
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2523
|
+
:type x_task_diagnostics: List[str]
|
|
2417
2524
|
:param fields: A list of fields to include in the response.
|
|
2418
2525
|
:type fields: List[str]
|
|
2419
2526
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2442,6 +2549,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2442
2549
|
|
|
2443
2550
|
_param = self._my_permissions_serialize(
|
|
2444
2551
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2552
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2445
2553
|
fields=fields,
|
|
2446
2554
|
exclude_fields=exclude_fields,
|
|
2447
2555
|
_request_auth=_request_auth,
|
|
@@ -2463,6 +2571,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2463
2571
|
def _my_permissions_serialize(
|
|
2464
2572
|
self,
|
|
2465
2573
|
open_p_g_p_keyring_href,
|
|
2574
|
+
x_task_diagnostics,
|
|
2466
2575
|
fields,
|
|
2467
2576
|
exclude_fields,
|
|
2468
2577
|
_request_auth,
|
|
@@ -2474,6 +2583,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2474
2583
|
_host = None
|
|
2475
2584
|
|
|
2476
2585
|
_collection_formats: Dict[str, str] = {
|
|
2586
|
+
'X-Task-Diagnostics': 'csv',
|
|
2477
2587
|
'fields': 'multi',
|
|
2478
2588
|
'exclude_fields': 'multi',
|
|
2479
2589
|
}
|
|
@@ -2500,6 +2610,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2500
2610
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
2501
2611
|
|
|
2502
2612
|
# process the header parameters
|
|
2613
|
+
if x_task_diagnostics is not None:
|
|
2614
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2503
2615
|
# process the form parameters
|
|
2504
2616
|
# process the body parameter
|
|
2505
2617
|
|
|
@@ -2542,6 +2654,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2542
2654
|
self,
|
|
2543
2655
|
open_p_g_p_keyring_href: StrictStr,
|
|
2544
2656
|
patched_open_pgp_keyring: PatchedOpenPGPKeyring,
|
|
2657
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2545
2658
|
_request_timeout: Union[
|
|
2546
2659
|
None,
|
|
2547
2660
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2563,6 +2676,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2563
2676
|
:type open_p_g_p_keyring_href: str
|
|
2564
2677
|
:param patched_open_pgp_keyring: (required)
|
|
2565
2678
|
:type patched_open_pgp_keyring: PatchedOpenPGPKeyring
|
|
2679
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2680
|
+
:type x_task_diagnostics: List[str]
|
|
2566
2681
|
:param _request_timeout: timeout setting for this request. If one
|
|
2567
2682
|
number provided, it will be total request
|
|
2568
2683
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2588,6 +2703,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2588
2703
|
_param = self._partial_update_serialize(
|
|
2589
2704
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2590
2705
|
patched_open_pgp_keyring=patched_open_pgp_keyring,
|
|
2706
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2591
2707
|
_request_auth=_request_auth,
|
|
2592
2708
|
_content_type=_content_type,
|
|
2593
2709
|
_headers=_headers,
|
|
@@ -2613,6 +2729,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2613
2729
|
self,
|
|
2614
2730
|
open_p_g_p_keyring_href: StrictStr,
|
|
2615
2731
|
patched_open_pgp_keyring: PatchedOpenPGPKeyring,
|
|
2732
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2616
2733
|
_request_timeout: Union[
|
|
2617
2734
|
None,
|
|
2618
2735
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2634,6 +2751,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2634
2751
|
:type open_p_g_p_keyring_href: str
|
|
2635
2752
|
:param patched_open_pgp_keyring: (required)
|
|
2636
2753
|
:type patched_open_pgp_keyring: PatchedOpenPGPKeyring
|
|
2754
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2755
|
+
:type x_task_diagnostics: List[str]
|
|
2637
2756
|
:param _request_timeout: timeout setting for this request. If one
|
|
2638
2757
|
number provided, it will be total request
|
|
2639
2758
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2659,6 +2778,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2659
2778
|
_param = self._partial_update_serialize(
|
|
2660
2779
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2661
2780
|
patched_open_pgp_keyring=patched_open_pgp_keyring,
|
|
2781
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2662
2782
|
_request_auth=_request_auth,
|
|
2663
2783
|
_content_type=_content_type,
|
|
2664
2784
|
_headers=_headers,
|
|
@@ -2684,6 +2804,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2684
2804
|
self,
|
|
2685
2805
|
open_p_g_p_keyring_href: StrictStr,
|
|
2686
2806
|
patched_open_pgp_keyring: PatchedOpenPGPKeyring,
|
|
2807
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2687
2808
|
_request_timeout: Union[
|
|
2688
2809
|
None,
|
|
2689
2810
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2705,6 +2826,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2705
2826
|
:type open_p_g_p_keyring_href: str
|
|
2706
2827
|
:param patched_open_pgp_keyring: (required)
|
|
2707
2828
|
:type patched_open_pgp_keyring: PatchedOpenPGPKeyring
|
|
2829
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2830
|
+
:type x_task_diagnostics: List[str]
|
|
2708
2831
|
:param _request_timeout: timeout setting for this request. If one
|
|
2709
2832
|
number provided, it will be total request
|
|
2710
2833
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2730,6 +2853,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2730
2853
|
_param = self._partial_update_serialize(
|
|
2731
2854
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
2732
2855
|
patched_open_pgp_keyring=patched_open_pgp_keyring,
|
|
2856
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2733
2857
|
_request_auth=_request_auth,
|
|
2734
2858
|
_content_type=_content_type,
|
|
2735
2859
|
_headers=_headers,
|
|
@@ -2750,6 +2874,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2750
2874
|
self,
|
|
2751
2875
|
open_p_g_p_keyring_href,
|
|
2752
2876
|
patched_open_pgp_keyring,
|
|
2877
|
+
x_task_diagnostics,
|
|
2753
2878
|
_request_auth,
|
|
2754
2879
|
_content_type,
|
|
2755
2880
|
_headers,
|
|
@@ -2759,6 +2884,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2759
2884
|
_host = None
|
|
2760
2885
|
|
|
2761
2886
|
_collection_formats: Dict[str, str] = {
|
|
2887
|
+
'X-Task-Diagnostics': 'csv',
|
|
2762
2888
|
}
|
|
2763
2889
|
|
|
2764
2890
|
_path_params: Dict[str, str] = {}
|
|
@@ -2775,6 +2901,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2775
2901
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
2776
2902
|
# process the query parameters
|
|
2777
2903
|
# process the header parameters
|
|
2904
|
+
if x_task_diagnostics is not None:
|
|
2905
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2778
2906
|
# process the form parameters
|
|
2779
2907
|
# process the body parameter
|
|
2780
2908
|
if patched_open_pgp_keyring is not None:
|
|
@@ -2833,6 +2961,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2833
2961
|
def read(
|
|
2834
2962
|
self,
|
|
2835
2963
|
open_p_g_p_keyring_href: StrictStr,
|
|
2964
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2836
2965
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2837
2966
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2838
2967
|
_request_timeout: Union[
|
|
@@ -2854,6 +2983,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2854
2983
|
|
|
2855
2984
|
:param open_p_g_p_keyring_href: (required)
|
|
2856
2985
|
:type open_p_g_p_keyring_href: str
|
|
2986
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2987
|
+
:type x_task_diagnostics: List[str]
|
|
2857
2988
|
:param fields: A list of fields to include in the response.
|
|
2858
2989
|
:type fields: List[str]
|
|
2859
2990
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2882,6 +3013,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2882
3013
|
|
|
2883
3014
|
_param = self._read_serialize(
|
|
2884
3015
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3016
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2885
3017
|
fields=fields,
|
|
2886
3018
|
exclude_fields=exclude_fields,
|
|
2887
3019
|
_request_auth=_request_auth,
|
|
@@ -2908,6 +3040,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2908
3040
|
def read_with_http_info(
|
|
2909
3041
|
self,
|
|
2910
3042
|
open_p_g_p_keyring_href: StrictStr,
|
|
3043
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2911
3044
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2912
3045
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2913
3046
|
_request_timeout: Union[
|
|
@@ -2929,6 +3062,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2929
3062
|
|
|
2930
3063
|
:param open_p_g_p_keyring_href: (required)
|
|
2931
3064
|
:type open_p_g_p_keyring_href: str
|
|
3065
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3066
|
+
:type x_task_diagnostics: List[str]
|
|
2932
3067
|
:param fields: A list of fields to include in the response.
|
|
2933
3068
|
:type fields: List[str]
|
|
2934
3069
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -2957,6 +3092,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2957
3092
|
|
|
2958
3093
|
_param = self._read_serialize(
|
|
2959
3094
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3095
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2960
3096
|
fields=fields,
|
|
2961
3097
|
exclude_fields=exclude_fields,
|
|
2962
3098
|
_request_auth=_request_auth,
|
|
@@ -2983,6 +3119,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
2983
3119
|
def read_without_preload_content(
|
|
2984
3120
|
self,
|
|
2985
3121
|
open_p_g_p_keyring_href: StrictStr,
|
|
3122
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2986
3123
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
2987
3124
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
2988
3125
|
_request_timeout: Union[
|
|
@@ -3004,6 +3141,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3004
3141
|
|
|
3005
3142
|
:param open_p_g_p_keyring_href: (required)
|
|
3006
3143
|
:type open_p_g_p_keyring_href: str
|
|
3144
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3145
|
+
:type x_task_diagnostics: List[str]
|
|
3007
3146
|
:param fields: A list of fields to include in the response.
|
|
3008
3147
|
:type fields: List[str]
|
|
3009
3148
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -3032,6 +3171,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3032
3171
|
|
|
3033
3172
|
_param = self._read_serialize(
|
|
3034
3173
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3174
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3035
3175
|
fields=fields,
|
|
3036
3176
|
exclude_fields=exclude_fields,
|
|
3037
3177
|
_request_auth=_request_auth,
|
|
@@ -3053,6 +3193,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3053
3193
|
def _read_serialize(
|
|
3054
3194
|
self,
|
|
3055
3195
|
open_p_g_p_keyring_href,
|
|
3196
|
+
x_task_diagnostics,
|
|
3056
3197
|
fields,
|
|
3057
3198
|
exclude_fields,
|
|
3058
3199
|
_request_auth,
|
|
@@ -3064,6 +3205,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3064
3205
|
_host = None
|
|
3065
3206
|
|
|
3066
3207
|
_collection_formats: Dict[str, str] = {
|
|
3208
|
+
'X-Task-Diagnostics': 'csv',
|
|
3067
3209
|
'fields': 'multi',
|
|
3068
3210
|
'exclude_fields': 'multi',
|
|
3069
3211
|
}
|
|
@@ -3090,6 +3232,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3090
3232
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
3091
3233
|
|
|
3092
3234
|
# process the header parameters
|
|
3235
|
+
if x_task_diagnostics is not None:
|
|
3236
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3093
3237
|
# process the form parameters
|
|
3094
3238
|
# process the body parameter
|
|
3095
3239
|
|
|
@@ -3132,6 +3276,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3132
3276
|
self,
|
|
3133
3277
|
open_p_g_p_keyring_href: StrictStr,
|
|
3134
3278
|
nested_role: NestedRole,
|
|
3279
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3135
3280
|
_request_timeout: Union[
|
|
3136
3281
|
None,
|
|
3137
3282
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3153,6 +3298,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3153
3298
|
:type open_p_g_p_keyring_href: str
|
|
3154
3299
|
:param nested_role: (required)
|
|
3155
3300
|
:type nested_role: NestedRole
|
|
3301
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3302
|
+
:type x_task_diagnostics: List[str]
|
|
3156
3303
|
:param _request_timeout: timeout setting for this request. If one
|
|
3157
3304
|
number provided, it will be total request
|
|
3158
3305
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3178,6 +3325,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3178
3325
|
_param = self._remove_role_serialize(
|
|
3179
3326
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3180
3327
|
nested_role=nested_role,
|
|
3328
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3181
3329
|
_request_auth=_request_auth,
|
|
3182
3330
|
_content_type=_content_type,
|
|
3183
3331
|
_headers=_headers,
|
|
@@ -3203,6 +3351,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3203
3351
|
self,
|
|
3204
3352
|
open_p_g_p_keyring_href: StrictStr,
|
|
3205
3353
|
nested_role: NestedRole,
|
|
3354
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3206
3355
|
_request_timeout: Union[
|
|
3207
3356
|
None,
|
|
3208
3357
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3224,6 +3373,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3224
3373
|
:type open_p_g_p_keyring_href: str
|
|
3225
3374
|
:param nested_role: (required)
|
|
3226
3375
|
:type nested_role: NestedRole
|
|
3376
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3377
|
+
:type x_task_diagnostics: List[str]
|
|
3227
3378
|
:param _request_timeout: timeout setting for this request. If one
|
|
3228
3379
|
number provided, it will be total request
|
|
3229
3380
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3249,6 +3400,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3249
3400
|
_param = self._remove_role_serialize(
|
|
3250
3401
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3251
3402
|
nested_role=nested_role,
|
|
3403
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3252
3404
|
_request_auth=_request_auth,
|
|
3253
3405
|
_content_type=_content_type,
|
|
3254
3406
|
_headers=_headers,
|
|
@@ -3274,6 +3426,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3274
3426
|
self,
|
|
3275
3427
|
open_p_g_p_keyring_href: StrictStr,
|
|
3276
3428
|
nested_role: NestedRole,
|
|
3429
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3277
3430
|
_request_timeout: Union[
|
|
3278
3431
|
None,
|
|
3279
3432
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3295,6 +3448,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3295
3448
|
:type open_p_g_p_keyring_href: str
|
|
3296
3449
|
:param nested_role: (required)
|
|
3297
3450
|
:type nested_role: NestedRole
|
|
3451
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3452
|
+
:type x_task_diagnostics: List[str]
|
|
3298
3453
|
:param _request_timeout: timeout setting for this request. If one
|
|
3299
3454
|
number provided, it will be total request
|
|
3300
3455
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3320,6 +3475,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3320
3475
|
_param = self._remove_role_serialize(
|
|
3321
3476
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3322
3477
|
nested_role=nested_role,
|
|
3478
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3323
3479
|
_request_auth=_request_auth,
|
|
3324
3480
|
_content_type=_content_type,
|
|
3325
3481
|
_headers=_headers,
|
|
@@ -3340,6 +3496,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3340
3496
|
self,
|
|
3341
3497
|
open_p_g_p_keyring_href,
|
|
3342
3498
|
nested_role,
|
|
3499
|
+
x_task_diagnostics,
|
|
3343
3500
|
_request_auth,
|
|
3344
3501
|
_content_type,
|
|
3345
3502
|
_headers,
|
|
@@ -3349,6 +3506,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3349
3506
|
_host = None
|
|
3350
3507
|
|
|
3351
3508
|
_collection_formats: Dict[str, str] = {
|
|
3509
|
+
'X-Task-Diagnostics': 'csv',
|
|
3352
3510
|
}
|
|
3353
3511
|
|
|
3354
3512
|
_path_params: Dict[str, str] = {}
|
|
@@ -3365,6 +3523,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3365
3523
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
3366
3524
|
# process the query parameters
|
|
3367
3525
|
# process the header parameters
|
|
3526
|
+
if x_task_diagnostics is not None:
|
|
3527
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3368
3528
|
# process the form parameters
|
|
3369
3529
|
# process the body parameter
|
|
3370
3530
|
if nested_role is not None:
|
|
@@ -3424,6 +3584,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3424
3584
|
self,
|
|
3425
3585
|
open_p_g_p_keyring_href: StrictStr,
|
|
3426
3586
|
set_label: SetLabel,
|
|
3587
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3427
3588
|
_request_timeout: Union[
|
|
3428
3589
|
None,
|
|
3429
3590
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3445,6 +3606,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3445
3606
|
:type open_p_g_p_keyring_href: str
|
|
3446
3607
|
:param set_label: (required)
|
|
3447
3608
|
:type set_label: SetLabel
|
|
3609
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3610
|
+
:type x_task_diagnostics: List[str]
|
|
3448
3611
|
:param _request_timeout: timeout setting for this request. If one
|
|
3449
3612
|
number provided, it will be total request
|
|
3450
3613
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3470,6 +3633,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3470
3633
|
_param = self._set_label_serialize(
|
|
3471
3634
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3472
3635
|
set_label=set_label,
|
|
3636
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3473
3637
|
_request_auth=_request_auth,
|
|
3474
3638
|
_content_type=_content_type,
|
|
3475
3639
|
_headers=_headers,
|
|
@@ -3495,6 +3659,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3495
3659
|
self,
|
|
3496
3660
|
open_p_g_p_keyring_href: StrictStr,
|
|
3497
3661
|
set_label: SetLabel,
|
|
3662
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3498
3663
|
_request_timeout: Union[
|
|
3499
3664
|
None,
|
|
3500
3665
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3516,6 +3681,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3516
3681
|
:type open_p_g_p_keyring_href: str
|
|
3517
3682
|
:param set_label: (required)
|
|
3518
3683
|
:type set_label: SetLabel
|
|
3684
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3685
|
+
:type x_task_diagnostics: List[str]
|
|
3519
3686
|
:param _request_timeout: timeout setting for this request. If one
|
|
3520
3687
|
number provided, it will be total request
|
|
3521
3688
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3541,6 +3708,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3541
3708
|
_param = self._set_label_serialize(
|
|
3542
3709
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3543
3710
|
set_label=set_label,
|
|
3711
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3544
3712
|
_request_auth=_request_auth,
|
|
3545
3713
|
_content_type=_content_type,
|
|
3546
3714
|
_headers=_headers,
|
|
@@ -3566,6 +3734,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3566
3734
|
self,
|
|
3567
3735
|
open_p_g_p_keyring_href: StrictStr,
|
|
3568
3736
|
set_label: SetLabel,
|
|
3737
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3569
3738
|
_request_timeout: Union[
|
|
3570
3739
|
None,
|
|
3571
3740
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3587,6 +3756,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3587
3756
|
:type open_p_g_p_keyring_href: str
|
|
3588
3757
|
:param set_label: (required)
|
|
3589
3758
|
:type set_label: SetLabel
|
|
3759
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3760
|
+
:type x_task_diagnostics: List[str]
|
|
3590
3761
|
:param _request_timeout: timeout setting for this request. If one
|
|
3591
3762
|
number provided, it will be total request
|
|
3592
3763
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3612,6 +3783,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3612
3783
|
_param = self._set_label_serialize(
|
|
3613
3784
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3614
3785
|
set_label=set_label,
|
|
3786
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3615
3787
|
_request_auth=_request_auth,
|
|
3616
3788
|
_content_type=_content_type,
|
|
3617
3789
|
_headers=_headers,
|
|
@@ -3632,6 +3804,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3632
3804
|
self,
|
|
3633
3805
|
open_p_g_p_keyring_href,
|
|
3634
3806
|
set_label,
|
|
3807
|
+
x_task_diagnostics,
|
|
3635
3808
|
_request_auth,
|
|
3636
3809
|
_content_type,
|
|
3637
3810
|
_headers,
|
|
@@ -3641,6 +3814,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3641
3814
|
_host = None
|
|
3642
3815
|
|
|
3643
3816
|
_collection_formats: Dict[str, str] = {
|
|
3817
|
+
'X-Task-Diagnostics': 'csv',
|
|
3644
3818
|
}
|
|
3645
3819
|
|
|
3646
3820
|
_path_params: Dict[str, str] = {}
|
|
@@ -3657,6 +3831,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3657
3831
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
3658
3832
|
# process the query parameters
|
|
3659
3833
|
# process the header parameters
|
|
3834
|
+
if x_task_diagnostics is not None:
|
|
3835
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3660
3836
|
# process the form parameters
|
|
3661
3837
|
# process the body parameter
|
|
3662
3838
|
if set_label is not None:
|
|
@@ -3716,6 +3892,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3716
3892
|
self,
|
|
3717
3893
|
open_p_g_p_keyring_href: StrictStr,
|
|
3718
3894
|
unset_label: UnsetLabel,
|
|
3895
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3719
3896
|
_request_timeout: Union[
|
|
3720
3897
|
None,
|
|
3721
3898
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3737,6 +3914,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3737
3914
|
:type open_p_g_p_keyring_href: str
|
|
3738
3915
|
:param unset_label: (required)
|
|
3739
3916
|
:type unset_label: UnsetLabel
|
|
3917
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3918
|
+
:type x_task_diagnostics: List[str]
|
|
3740
3919
|
:param _request_timeout: timeout setting for this request. If one
|
|
3741
3920
|
number provided, it will be total request
|
|
3742
3921
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3762,6 +3941,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3762
3941
|
_param = self._unset_label_serialize(
|
|
3763
3942
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3764
3943
|
unset_label=unset_label,
|
|
3944
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3765
3945
|
_request_auth=_request_auth,
|
|
3766
3946
|
_content_type=_content_type,
|
|
3767
3947
|
_headers=_headers,
|
|
@@ -3787,6 +3967,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3787
3967
|
self,
|
|
3788
3968
|
open_p_g_p_keyring_href: StrictStr,
|
|
3789
3969
|
unset_label: UnsetLabel,
|
|
3970
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3790
3971
|
_request_timeout: Union[
|
|
3791
3972
|
None,
|
|
3792
3973
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3808,6 +3989,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3808
3989
|
:type open_p_g_p_keyring_href: str
|
|
3809
3990
|
:param unset_label: (required)
|
|
3810
3991
|
:type unset_label: UnsetLabel
|
|
3992
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
3993
|
+
:type x_task_diagnostics: List[str]
|
|
3811
3994
|
:param _request_timeout: timeout setting for this request. If one
|
|
3812
3995
|
number provided, it will be total request
|
|
3813
3996
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3833,6 +4016,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3833
4016
|
_param = self._unset_label_serialize(
|
|
3834
4017
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3835
4018
|
unset_label=unset_label,
|
|
4019
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3836
4020
|
_request_auth=_request_auth,
|
|
3837
4021
|
_content_type=_content_type,
|
|
3838
4022
|
_headers=_headers,
|
|
@@ -3858,6 +4042,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3858
4042
|
self,
|
|
3859
4043
|
open_p_g_p_keyring_href: StrictStr,
|
|
3860
4044
|
unset_label: UnsetLabel,
|
|
4045
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
3861
4046
|
_request_timeout: Union[
|
|
3862
4047
|
None,
|
|
3863
4048
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3879,6 +4064,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3879
4064
|
:type open_p_g_p_keyring_href: str
|
|
3880
4065
|
:param unset_label: (required)
|
|
3881
4066
|
:type unset_label: UnsetLabel
|
|
4067
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4068
|
+
:type x_task_diagnostics: List[str]
|
|
3882
4069
|
:param _request_timeout: timeout setting for this request. If one
|
|
3883
4070
|
number provided, it will be total request
|
|
3884
4071
|
timeout. It can also be a pair (tuple) of
|
|
@@ -3904,6 +4091,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3904
4091
|
_param = self._unset_label_serialize(
|
|
3905
4092
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
3906
4093
|
unset_label=unset_label,
|
|
4094
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
3907
4095
|
_request_auth=_request_auth,
|
|
3908
4096
|
_content_type=_content_type,
|
|
3909
4097
|
_headers=_headers,
|
|
@@ -3924,6 +4112,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3924
4112
|
self,
|
|
3925
4113
|
open_p_g_p_keyring_href,
|
|
3926
4114
|
unset_label,
|
|
4115
|
+
x_task_diagnostics,
|
|
3927
4116
|
_request_auth,
|
|
3928
4117
|
_content_type,
|
|
3929
4118
|
_headers,
|
|
@@ -3933,6 +4122,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3933
4122
|
_host = None
|
|
3934
4123
|
|
|
3935
4124
|
_collection_formats: Dict[str, str] = {
|
|
4125
|
+
'X-Task-Diagnostics': 'csv',
|
|
3936
4126
|
}
|
|
3937
4127
|
|
|
3938
4128
|
_path_params: Dict[str, str] = {}
|
|
@@ -3949,6 +4139,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
3949
4139
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
3950
4140
|
# process the query parameters
|
|
3951
4141
|
# process the header parameters
|
|
4142
|
+
if x_task_diagnostics is not None:
|
|
4143
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
3952
4144
|
# process the form parameters
|
|
3953
4145
|
# process the body parameter
|
|
3954
4146
|
if unset_label is not None:
|
|
@@ -4008,6 +4200,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4008
4200
|
self,
|
|
4009
4201
|
open_p_g_p_keyring_href: StrictStr,
|
|
4010
4202
|
open_pgp_keyring: OpenPGPKeyring,
|
|
4203
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4011
4204
|
_request_timeout: Union[
|
|
4012
4205
|
None,
|
|
4013
4206
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4029,6 +4222,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4029
4222
|
:type open_p_g_p_keyring_href: str
|
|
4030
4223
|
:param open_pgp_keyring: (required)
|
|
4031
4224
|
:type open_pgp_keyring: OpenPGPKeyring
|
|
4225
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4226
|
+
:type x_task_diagnostics: List[str]
|
|
4032
4227
|
:param _request_timeout: timeout setting for this request. If one
|
|
4033
4228
|
number provided, it will be total request
|
|
4034
4229
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4054,6 +4249,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4054
4249
|
_param = self._update_serialize(
|
|
4055
4250
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
4056
4251
|
open_pgp_keyring=open_pgp_keyring,
|
|
4252
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4057
4253
|
_request_auth=_request_auth,
|
|
4058
4254
|
_content_type=_content_type,
|
|
4059
4255
|
_headers=_headers,
|
|
@@ -4079,6 +4275,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4079
4275
|
self,
|
|
4080
4276
|
open_p_g_p_keyring_href: StrictStr,
|
|
4081
4277
|
open_pgp_keyring: OpenPGPKeyring,
|
|
4278
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4082
4279
|
_request_timeout: Union[
|
|
4083
4280
|
None,
|
|
4084
4281
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4100,6 +4297,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4100
4297
|
:type open_p_g_p_keyring_href: str
|
|
4101
4298
|
:param open_pgp_keyring: (required)
|
|
4102
4299
|
:type open_pgp_keyring: OpenPGPKeyring
|
|
4300
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4301
|
+
:type x_task_diagnostics: List[str]
|
|
4103
4302
|
:param _request_timeout: timeout setting for this request. If one
|
|
4104
4303
|
number provided, it will be total request
|
|
4105
4304
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4125,6 +4324,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4125
4324
|
_param = self._update_serialize(
|
|
4126
4325
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
4127
4326
|
open_pgp_keyring=open_pgp_keyring,
|
|
4327
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4128
4328
|
_request_auth=_request_auth,
|
|
4129
4329
|
_content_type=_content_type,
|
|
4130
4330
|
_headers=_headers,
|
|
@@ -4150,6 +4350,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4150
4350
|
self,
|
|
4151
4351
|
open_p_g_p_keyring_href: StrictStr,
|
|
4152
4352
|
open_pgp_keyring: OpenPGPKeyring,
|
|
4353
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
4153
4354
|
_request_timeout: Union[
|
|
4154
4355
|
None,
|
|
4155
4356
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -4171,6 +4372,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4171
4372
|
:type open_p_g_p_keyring_href: str
|
|
4172
4373
|
:param open_pgp_keyring: (required)
|
|
4173
4374
|
:type open_pgp_keyring: OpenPGPKeyring
|
|
4375
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
4376
|
+
:type x_task_diagnostics: List[str]
|
|
4174
4377
|
:param _request_timeout: timeout setting for this request. If one
|
|
4175
4378
|
number provided, it will be total request
|
|
4176
4379
|
timeout. It can also be a pair (tuple) of
|
|
@@ -4196,6 +4399,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4196
4399
|
_param = self._update_serialize(
|
|
4197
4400
|
open_p_g_p_keyring_href=open_p_g_p_keyring_href,
|
|
4198
4401
|
open_pgp_keyring=open_pgp_keyring,
|
|
4402
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
4199
4403
|
_request_auth=_request_auth,
|
|
4200
4404
|
_content_type=_content_type,
|
|
4201
4405
|
_headers=_headers,
|
|
@@ -4216,6 +4420,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4216
4420
|
self,
|
|
4217
4421
|
open_p_g_p_keyring_href,
|
|
4218
4422
|
open_pgp_keyring,
|
|
4423
|
+
x_task_diagnostics,
|
|
4219
4424
|
_request_auth,
|
|
4220
4425
|
_content_type,
|
|
4221
4426
|
_headers,
|
|
@@ -4225,6 +4430,7 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4225
4430
|
_host = None
|
|
4226
4431
|
|
|
4227
4432
|
_collection_formats: Dict[str, str] = {
|
|
4433
|
+
'X-Task-Diagnostics': 'csv',
|
|
4228
4434
|
}
|
|
4229
4435
|
|
|
4230
4436
|
_path_params: Dict[str, str] = {}
|
|
@@ -4241,6 +4447,8 @@ class RepositoriesOpenpgpKeyringApi:
|
|
|
4241
4447
|
_path_params['open_p_g_p_keyring_href'] = open_p_g_p_keyring_href
|
|
4242
4448
|
# process the query parameters
|
|
4243
4449
|
# process the header parameters
|
|
4450
|
+
if x_task_diagnostics is not None:
|
|
4451
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
4244
4452
|
# process the form parameters
|
|
4245
4453
|
# process the body parameter
|
|
4246
4454
|
if open_pgp_keyring is not None:
|