pulpcore-client 3.81.0__py3-none-any.whl → 3.82.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulpcore-client might be problematic. Click here for more details.
- pulpcore/client/pulpcore/__init__.py +1 -1
- pulpcore/client/pulpcore/api/access_policies_api.py +80 -0
- pulpcore/client/pulpcore/api/artifacts_api.py +64 -0
- pulpcore/client/pulpcore/api/content_api.py +16 -0
- pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py +80 -0
- pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py +64 -0
- pulpcore/client/pulpcore/api/content_openpgp_signature_api.py +64 -0
- pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py +64 -0
- pulpcore/client/pulpcore/api/content_openpgp_userid_api.py +64 -0
- pulpcore/client/pulpcore/api/contentguards_api.py +16 -0
- pulpcore/client/pulpcore/api/contentguards_composite_api.py +160 -0
- pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py +160 -0
- pulpcore/client/pulpcore/api/contentguards_header_api.py +160 -0
- pulpcore/client/pulpcore/api/contentguards_rbac_api.py +160 -0
- pulpcore/client/pulpcore/api/distributions_api.py +16 -0
- pulpcore/client/pulpcore/api/distributions_artifacts_api.py +32 -0
- pulpcore/client/pulpcore/api/distributions_openpgp_api.py +128 -0
- pulpcore/client/pulpcore/api/domains_api.py +144 -0
- pulpcore/client/pulpcore/api/exporters_filesystem_api.py +96 -0
- pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py +64 -0
- pulpcore/client/pulpcore/api/exporters_pulp_api.py +96 -0
- pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py +64 -0
- pulpcore/client/pulpcore/api/groups_api.py +160 -0
- pulpcore/client/pulpcore/api/groups_roles_api.py +64 -0
- pulpcore/client/pulpcore/api/groups_users_api.py +48 -0
- pulpcore/client/pulpcore/api/importers_pulp_api.py +96 -0
- pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py +19 -0
- pulpcore/client/pulpcore/api/importers_pulp_imports_api.py +64 -0
- pulpcore/client/pulpcore/api/livez_api.py +55 -0
- pulpcore/client/pulpcore/api/login_api.py +87 -0
- pulpcore/client/pulpcore/api/orphans_api.py +19 -0
- pulpcore/client/pulpcore/api/orphans_cleanup_api.py +19 -0
- pulpcore/client/pulpcore/api/publications_api.py +16 -0
- pulpcore/client/pulpcore/api/remotes_api.py +16 -0
- pulpcore/client/pulpcore/api/repair_api.py +19 -0
- pulpcore/client/pulpcore/api/repositories_api.py +16 -0
- pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py +208 -0
- pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py +19 -0
- pulpcore/client/pulpcore/api/repository_versions_api.py +16 -0
- pulpcore/client/pulpcore/api/roles_api.py +96 -0
- pulpcore/client/pulpcore/api/signing_services_api.py +32 -0
- pulpcore/client/pulpcore/api/status_api.py +55 -0
- pulpcore/client/pulpcore/api/task_groups_api.py +48 -0
- pulpcore/client/pulpcore/api/task_schedules_api.py +96 -0
- pulpcore/client/pulpcore/api/tasks_api.py +166 -6
- pulpcore/client/pulpcore/api/uploads_api.py +160 -0
- pulpcore/client/pulpcore/api/upstream_pulps_api.py +176 -0
- pulpcore/client/pulpcore/api/users_api.py +96 -0
- pulpcore/client/pulpcore/api/users_roles_api.py +64 -0
- pulpcore/client/pulpcore/api/workers_api.py +32 -0
- pulpcore/client/pulpcore/api_client.py +1 -1
- pulpcore/client/pulpcore/configuration.py +1 -1
- pulpcore/client/pulpcore/models/artifact_distribution_response.py +16 -16
- pulpcore/client/pulpcore/models/composite_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/composite_content_guard_response.py +1 -1
- pulpcore/client/pulpcore/models/content_guard_response.py +1 -1
- pulpcore/client/pulpcore/models/patched_composite_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/patched_rbac_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/rbac_content_guard.py +1 -1
- pulpcore/client/pulpcore/models/rbac_content_guard_response.py +1 -1
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/METADATA +1 -1
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/RECORD +64 -64
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/WHEEL +0 -0
- {pulpcore_client-3.81.0.dist-info → pulpcore_client-3.82.0.dist-info}/top_level.txt +0 -0
|
@@ -52,6 +52,7 @@ class DistributionsOpenpgpApi:
|
|
|
52
52
|
def create(
|
|
53
53
|
self,
|
|
54
54
|
open_pgp_distribution: OpenPGPDistribution,
|
|
55
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
55
56
|
_request_timeout: Union[
|
|
56
57
|
None,
|
|
57
58
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -71,6 +72,8 @@ class DistributionsOpenpgpApi:
|
|
|
71
72
|
|
|
72
73
|
:param open_pgp_distribution: (required)
|
|
73
74
|
:type open_pgp_distribution: OpenPGPDistribution
|
|
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
|
|
@@ -95,6 +98,7 @@ class DistributionsOpenpgpApi:
|
|
|
95
98
|
|
|
96
99
|
_param = self._create_serialize(
|
|
97
100
|
open_pgp_distribution=open_pgp_distribution,
|
|
101
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
98
102
|
_request_auth=_request_auth,
|
|
99
103
|
_content_type=_content_type,
|
|
100
104
|
_headers=_headers,
|
|
@@ -119,6 +123,7 @@ class DistributionsOpenpgpApi:
|
|
|
119
123
|
def create_with_http_info(
|
|
120
124
|
self,
|
|
121
125
|
open_pgp_distribution: OpenPGPDistribution,
|
|
126
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
122
127
|
_request_timeout: Union[
|
|
123
128
|
None,
|
|
124
129
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -138,6 +143,8 @@ class DistributionsOpenpgpApi:
|
|
|
138
143
|
|
|
139
144
|
:param open_pgp_distribution: (required)
|
|
140
145
|
:type open_pgp_distribution: OpenPGPDistribution
|
|
146
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
147
|
+
:type x_task_diagnostics: List[str]
|
|
141
148
|
:param _request_timeout: timeout setting for this request. If one
|
|
142
149
|
number provided, it will be total request
|
|
143
150
|
timeout. It can also be a pair (tuple) of
|
|
@@ -162,6 +169,7 @@ class DistributionsOpenpgpApi:
|
|
|
162
169
|
|
|
163
170
|
_param = self._create_serialize(
|
|
164
171
|
open_pgp_distribution=open_pgp_distribution,
|
|
172
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
165
173
|
_request_auth=_request_auth,
|
|
166
174
|
_content_type=_content_type,
|
|
167
175
|
_headers=_headers,
|
|
@@ -186,6 +194,7 @@ class DistributionsOpenpgpApi:
|
|
|
186
194
|
def create_without_preload_content(
|
|
187
195
|
self,
|
|
188
196
|
open_pgp_distribution: OpenPGPDistribution,
|
|
197
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
189
198
|
_request_timeout: Union[
|
|
190
199
|
None,
|
|
191
200
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -205,6 +214,8 @@ class DistributionsOpenpgpApi:
|
|
|
205
214
|
|
|
206
215
|
:param open_pgp_distribution: (required)
|
|
207
216
|
:type open_pgp_distribution: OpenPGPDistribution
|
|
217
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
218
|
+
:type x_task_diagnostics: List[str]
|
|
208
219
|
:param _request_timeout: timeout setting for this request. If one
|
|
209
220
|
number provided, it will be total request
|
|
210
221
|
timeout. It can also be a pair (tuple) of
|
|
@@ -229,6 +240,7 @@ class DistributionsOpenpgpApi:
|
|
|
229
240
|
|
|
230
241
|
_param = self._create_serialize(
|
|
231
242
|
open_pgp_distribution=open_pgp_distribution,
|
|
243
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
232
244
|
_request_auth=_request_auth,
|
|
233
245
|
_content_type=_content_type,
|
|
234
246
|
_headers=_headers,
|
|
@@ -248,6 +260,7 @@ class DistributionsOpenpgpApi:
|
|
|
248
260
|
def _create_serialize(
|
|
249
261
|
self,
|
|
250
262
|
open_pgp_distribution,
|
|
263
|
+
x_task_diagnostics,
|
|
251
264
|
_request_auth,
|
|
252
265
|
_content_type,
|
|
253
266
|
_headers,
|
|
@@ -257,6 +270,7 @@ class DistributionsOpenpgpApi:
|
|
|
257
270
|
_host = None
|
|
258
271
|
|
|
259
272
|
_collection_formats: Dict[str, str] = {
|
|
273
|
+
'X-Task-Diagnostics': 'csv',
|
|
260
274
|
}
|
|
261
275
|
|
|
262
276
|
_path_params: Dict[str, str] = {}
|
|
@@ -271,6 +285,8 @@ class DistributionsOpenpgpApi:
|
|
|
271
285
|
# process the path parameters
|
|
272
286
|
# process the query parameters
|
|
273
287
|
# process the header parameters
|
|
288
|
+
if x_task_diagnostics is not None:
|
|
289
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
274
290
|
# process the form parameters
|
|
275
291
|
# process the body parameter
|
|
276
292
|
if open_pgp_distribution is not None:
|
|
@@ -329,6 +345,7 @@ class DistributionsOpenpgpApi:
|
|
|
329
345
|
def delete(
|
|
330
346
|
self,
|
|
331
347
|
open_p_g_p_distribution_href: StrictStr,
|
|
348
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
332
349
|
_request_timeout: Union[
|
|
333
350
|
None,
|
|
334
351
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -348,6 +365,8 @@ class DistributionsOpenpgpApi:
|
|
|
348
365
|
|
|
349
366
|
:param open_p_g_p_distribution_href: (required)
|
|
350
367
|
:type open_p_g_p_distribution_href: str
|
|
368
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
369
|
+
:type x_task_diagnostics: List[str]
|
|
351
370
|
:param _request_timeout: timeout setting for this request. If one
|
|
352
371
|
number provided, it will be total request
|
|
353
372
|
timeout. It can also be a pair (tuple) of
|
|
@@ -372,6 +391,7 @@ class DistributionsOpenpgpApi:
|
|
|
372
391
|
|
|
373
392
|
_param = self._delete_serialize(
|
|
374
393
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
394
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
375
395
|
_request_auth=_request_auth,
|
|
376
396
|
_content_type=_content_type,
|
|
377
397
|
_headers=_headers,
|
|
@@ -396,6 +416,7 @@ class DistributionsOpenpgpApi:
|
|
|
396
416
|
def delete_with_http_info(
|
|
397
417
|
self,
|
|
398
418
|
open_p_g_p_distribution_href: StrictStr,
|
|
419
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
399
420
|
_request_timeout: Union[
|
|
400
421
|
None,
|
|
401
422
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -415,6 +436,8 @@ class DistributionsOpenpgpApi:
|
|
|
415
436
|
|
|
416
437
|
:param open_p_g_p_distribution_href: (required)
|
|
417
438
|
:type open_p_g_p_distribution_href: str
|
|
439
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
440
|
+
:type x_task_diagnostics: List[str]
|
|
418
441
|
:param _request_timeout: timeout setting for this request. If one
|
|
419
442
|
number provided, it will be total request
|
|
420
443
|
timeout. It can also be a pair (tuple) of
|
|
@@ -439,6 +462,7 @@ class DistributionsOpenpgpApi:
|
|
|
439
462
|
|
|
440
463
|
_param = self._delete_serialize(
|
|
441
464
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
465
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
442
466
|
_request_auth=_request_auth,
|
|
443
467
|
_content_type=_content_type,
|
|
444
468
|
_headers=_headers,
|
|
@@ -463,6 +487,7 @@ class DistributionsOpenpgpApi:
|
|
|
463
487
|
def delete_without_preload_content(
|
|
464
488
|
self,
|
|
465
489
|
open_p_g_p_distribution_href: StrictStr,
|
|
490
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
466
491
|
_request_timeout: Union[
|
|
467
492
|
None,
|
|
468
493
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -482,6 +507,8 @@ class DistributionsOpenpgpApi:
|
|
|
482
507
|
|
|
483
508
|
:param open_p_g_p_distribution_href: (required)
|
|
484
509
|
:type open_p_g_p_distribution_href: str
|
|
510
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
511
|
+
:type x_task_diagnostics: List[str]
|
|
485
512
|
:param _request_timeout: timeout setting for this request. If one
|
|
486
513
|
number provided, it will be total request
|
|
487
514
|
timeout. It can also be a pair (tuple) of
|
|
@@ -506,6 +533,7 @@ class DistributionsOpenpgpApi:
|
|
|
506
533
|
|
|
507
534
|
_param = self._delete_serialize(
|
|
508
535
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
536
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
509
537
|
_request_auth=_request_auth,
|
|
510
538
|
_content_type=_content_type,
|
|
511
539
|
_headers=_headers,
|
|
@@ -525,6 +553,7 @@ class DistributionsOpenpgpApi:
|
|
|
525
553
|
def _delete_serialize(
|
|
526
554
|
self,
|
|
527
555
|
open_p_g_p_distribution_href,
|
|
556
|
+
x_task_diagnostics,
|
|
528
557
|
_request_auth,
|
|
529
558
|
_content_type,
|
|
530
559
|
_headers,
|
|
@@ -534,6 +563,7 @@ class DistributionsOpenpgpApi:
|
|
|
534
563
|
_host = None
|
|
535
564
|
|
|
536
565
|
_collection_formats: Dict[str, str] = {
|
|
566
|
+
'X-Task-Diagnostics': 'csv',
|
|
537
567
|
}
|
|
538
568
|
|
|
539
569
|
_path_params: Dict[str, str] = {}
|
|
@@ -550,6 +580,8 @@ class DistributionsOpenpgpApi:
|
|
|
550
580
|
_path_params['open_p_g_p_distribution_href'] = open_p_g_p_distribution_href
|
|
551
581
|
# process the query parameters
|
|
552
582
|
# process the header parameters
|
|
583
|
+
if x_task_diagnostics is not None:
|
|
584
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
553
585
|
# process the form parameters
|
|
554
586
|
# process the body parameter
|
|
555
587
|
|
|
@@ -590,6 +622,7 @@ class DistributionsOpenpgpApi:
|
|
|
590
622
|
@validate_call
|
|
591
623
|
def list(
|
|
592
624
|
self,
|
|
625
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
593
626
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
594
627
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
595
628
|
ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
@@ -619,6 +652,8 @@ class DistributionsOpenpgpApi:
|
|
|
619
652
|
|
|
620
653
|
Provides read and list methods and also provides asynchronous CUD methods to dispatch tasks with reservation that lock all Distributions preventing race conditions during base_path checking.
|
|
621
654
|
|
|
655
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
656
|
+
:type x_task_diagnostics: List[str]
|
|
622
657
|
:param limit: Number of results to return per page.
|
|
623
658
|
:type limit: int
|
|
624
659
|
:param offset: The initial index from which to return the results.
|
|
@@ -666,6 +701,7 @@ class DistributionsOpenpgpApi:
|
|
|
666
701
|
""" # noqa: E501
|
|
667
702
|
|
|
668
703
|
_param = self._list_serialize(
|
|
704
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
669
705
|
limit=limit,
|
|
670
706
|
offset=offset,
|
|
671
707
|
ordering=ordering,
|
|
@@ -701,6 +737,7 @@ class DistributionsOpenpgpApi:
|
|
|
701
737
|
@validate_call
|
|
702
738
|
def list_with_http_info(
|
|
703
739
|
self,
|
|
740
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
704
741
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
705
742
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
706
743
|
ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
@@ -730,6 +767,8 @@ class DistributionsOpenpgpApi:
|
|
|
730
767
|
|
|
731
768
|
Provides read and list methods and also provides asynchronous CUD methods to dispatch tasks with reservation that lock all Distributions preventing race conditions during base_path checking.
|
|
732
769
|
|
|
770
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
771
|
+
:type x_task_diagnostics: List[str]
|
|
733
772
|
:param limit: Number of results to return per page.
|
|
734
773
|
:type limit: int
|
|
735
774
|
:param offset: The initial index from which to return the results.
|
|
@@ -777,6 +816,7 @@ class DistributionsOpenpgpApi:
|
|
|
777
816
|
""" # noqa: E501
|
|
778
817
|
|
|
779
818
|
_param = self._list_serialize(
|
|
819
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
780
820
|
limit=limit,
|
|
781
821
|
offset=offset,
|
|
782
822
|
ordering=ordering,
|
|
@@ -812,6 +852,7 @@ class DistributionsOpenpgpApi:
|
|
|
812
852
|
@validate_call
|
|
813
853
|
def list_without_preload_content(
|
|
814
854
|
self,
|
|
855
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
815
856
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
816
857
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
817
858
|
ordering: Annotated[Optional[List[StrictStr]], Field(description="Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
@@ -841,6 +882,8 @@ class DistributionsOpenpgpApi:
|
|
|
841
882
|
|
|
842
883
|
Provides read and list methods and also provides asynchronous CUD methods to dispatch tasks with reservation that lock all Distributions preventing race conditions during base_path checking.
|
|
843
884
|
|
|
885
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
886
|
+
:type x_task_diagnostics: List[str]
|
|
844
887
|
:param limit: Number of results to return per page.
|
|
845
888
|
:type limit: int
|
|
846
889
|
:param offset: The initial index from which to return the results.
|
|
@@ -888,6 +931,7 @@ class DistributionsOpenpgpApi:
|
|
|
888
931
|
""" # noqa: E501
|
|
889
932
|
|
|
890
933
|
_param = self._list_serialize(
|
|
934
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
891
935
|
limit=limit,
|
|
892
936
|
offset=offset,
|
|
893
937
|
ordering=ordering,
|
|
@@ -918,6 +962,7 @@ class DistributionsOpenpgpApi:
|
|
|
918
962
|
|
|
919
963
|
def _list_serialize(
|
|
920
964
|
self,
|
|
965
|
+
x_task_diagnostics,
|
|
921
966
|
limit,
|
|
922
967
|
offset,
|
|
923
968
|
ordering,
|
|
@@ -939,6 +984,7 @@ class DistributionsOpenpgpApi:
|
|
|
939
984
|
_host = None
|
|
940
985
|
|
|
941
986
|
_collection_formats: Dict[str, str] = {
|
|
987
|
+
'X-Task-Diagnostics': 'csv',
|
|
942
988
|
'ordering': 'csv',
|
|
943
989
|
'prn__in': 'csv',
|
|
944
990
|
'pulp_href__in': 'csv',
|
|
@@ -1007,6 +1053,8 @@ class DistributionsOpenpgpApi:
|
|
|
1007
1053
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1008
1054
|
|
|
1009
1055
|
# process the header parameters
|
|
1056
|
+
if x_task_diagnostics is not None:
|
|
1057
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1010
1058
|
# process the form parameters
|
|
1011
1059
|
# process the body parameter
|
|
1012
1060
|
|
|
@@ -1049,6 +1097,7 @@ class DistributionsOpenpgpApi:
|
|
|
1049
1097
|
self,
|
|
1050
1098
|
open_p_g_p_distribution_href: StrictStr,
|
|
1051
1099
|
patched_open_pgp_distribution: PatchedOpenPGPDistribution,
|
|
1100
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1052
1101
|
_request_timeout: Union[
|
|
1053
1102
|
None,
|
|
1054
1103
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1070,6 +1119,8 @@ class DistributionsOpenpgpApi:
|
|
|
1070
1119
|
:type open_p_g_p_distribution_href: str
|
|
1071
1120
|
:param patched_open_pgp_distribution: (required)
|
|
1072
1121
|
:type patched_open_pgp_distribution: PatchedOpenPGPDistribution
|
|
1122
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1123
|
+
:type x_task_diagnostics: List[str]
|
|
1073
1124
|
:param _request_timeout: timeout setting for this request. If one
|
|
1074
1125
|
number provided, it will be total request
|
|
1075
1126
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1095,6 +1146,7 @@ class DistributionsOpenpgpApi:
|
|
|
1095
1146
|
_param = self._partial_update_serialize(
|
|
1096
1147
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1097
1148
|
patched_open_pgp_distribution=patched_open_pgp_distribution,
|
|
1149
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1098
1150
|
_request_auth=_request_auth,
|
|
1099
1151
|
_content_type=_content_type,
|
|
1100
1152
|
_headers=_headers,
|
|
@@ -1120,6 +1172,7 @@ class DistributionsOpenpgpApi:
|
|
|
1120
1172
|
self,
|
|
1121
1173
|
open_p_g_p_distribution_href: StrictStr,
|
|
1122
1174
|
patched_open_pgp_distribution: PatchedOpenPGPDistribution,
|
|
1175
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1123
1176
|
_request_timeout: Union[
|
|
1124
1177
|
None,
|
|
1125
1178
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1141,6 +1194,8 @@ class DistributionsOpenpgpApi:
|
|
|
1141
1194
|
:type open_p_g_p_distribution_href: str
|
|
1142
1195
|
:param patched_open_pgp_distribution: (required)
|
|
1143
1196
|
:type patched_open_pgp_distribution: PatchedOpenPGPDistribution
|
|
1197
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1198
|
+
:type x_task_diagnostics: List[str]
|
|
1144
1199
|
:param _request_timeout: timeout setting for this request. If one
|
|
1145
1200
|
number provided, it will be total request
|
|
1146
1201
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1166,6 +1221,7 @@ class DistributionsOpenpgpApi:
|
|
|
1166
1221
|
_param = self._partial_update_serialize(
|
|
1167
1222
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1168
1223
|
patched_open_pgp_distribution=patched_open_pgp_distribution,
|
|
1224
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1169
1225
|
_request_auth=_request_auth,
|
|
1170
1226
|
_content_type=_content_type,
|
|
1171
1227
|
_headers=_headers,
|
|
@@ -1191,6 +1247,7 @@ class DistributionsOpenpgpApi:
|
|
|
1191
1247
|
self,
|
|
1192
1248
|
open_p_g_p_distribution_href: StrictStr,
|
|
1193
1249
|
patched_open_pgp_distribution: PatchedOpenPGPDistribution,
|
|
1250
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1194
1251
|
_request_timeout: Union[
|
|
1195
1252
|
None,
|
|
1196
1253
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1212,6 +1269,8 @@ class DistributionsOpenpgpApi:
|
|
|
1212
1269
|
:type open_p_g_p_distribution_href: str
|
|
1213
1270
|
:param patched_open_pgp_distribution: (required)
|
|
1214
1271
|
:type patched_open_pgp_distribution: PatchedOpenPGPDistribution
|
|
1272
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1273
|
+
:type x_task_diagnostics: List[str]
|
|
1215
1274
|
:param _request_timeout: timeout setting for this request. If one
|
|
1216
1275
|
number provided, it will be total request
|
|
1217
1276
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1237,6 +1296,7 @@ class DistributionsOpenpgpApi:
|
|
|
1237
1296
|
_param = self._partial_update_serialize(
|
|
1238
1297
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1239
1298
|
patched_open_pgp_distribution=patched_open_pgp_distribution,
|
|
1299
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1240
1300
|
_request_auth=_request_auth,
|
|
1241
1301
|
_content_type=_content_type,
|
|
1242
1302
|
_headers=_headers,
|
|
@@ -1257,6 +1317,7 @@ class DistributionsOpenpgpApi:
|
|
|
1257
1317
|
self,
|
|
1258
1318
|
open_p_g_p_distribution_href,
|
|
1259
1319
|
patched_open_pgp_distribution,
|
|
1320
|
+
x_task_diagnostics,
|
|
1260
1321
|
_request_auth,
|
|
1261
1322
|
_content_type,
|
|
1262
1323
|
_headers,
|
|
@@ -1266,6 +1327,7 @@ class DistributionsOpenpgpApi:
|
|
|
1266
1327
|
_host = None
|
|
1267
1328
|
|
|
1268
1329
|
_collection_formats: Dict[str, str] = {
|
|
1330
|
+
'X-Task-Diagnostics': 'csv',
|
|
1269
1331
|
}
|
|
1270
1332
|
|
|
1271
1333
|
_path_params: Dict[str, str] = {}
|
|
@@ -1282,6 +1344,8 @@ class DistributionsOpenpgpApi:
|
|
|
1282
1344
|
_path_params['open_p_g_p_distribution_href'] = open_p_g_p_distribution_href
|
|
1283
1345
|
# process the query parameters
|
|
1284
1346
|
# process the header parameters
|
|
1347
|
+
if x_task_diagnostics is not None:
|
|
1348
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1285
1349
|
# process the form parameters
|
|
1286
1350
|
# process the body parameter
|
|
1287
1351
|
if patched_open_pgp_distribution is not None:
|
|
@@ -1340,6 +1404,7 @@ class DistributionsOpenpgpApi:
|
|
|
1340
1404
|
def read(
|
|
1341
1405
|
self,
|
|
1342
1406
|
open_p_g_p_distribution_href: StrictStr,
|
|
1407
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1343
1408
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1344
1409
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1345
1410
|
_request_timeout: Union[
|
|
@@ -1361,6 +1426,8 @@ class DistributionsOpenpgpApi:
|
|
|
1361
1426
|
|
|
1362
1427
|
:param open_p_g_p_distribution_href: (required)
|
|
1363
1428
|
:type open_p_g_p_distribution_href: str
|
|
1429
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1430
|
+
:type x_task_diagnostics: List[str]
|
|
1364
1431
|
:param fields: A list of fields to include in the response.
|
|
1365
1432
|
:type fields: List[str]
|
|
1366
1433
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1389,6 +1456,7 @@ class DistributionsOpenpgpApi:
|
|
|
1389
1456
|
|
|
1390
1457
|
_param = self._read_serialize(
|
|
1391
1458
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1459
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1392
1460
|
fields=fields,
|
|
1393
1461
|
exclude_fields=exclude_fields,
|
|
1394
1462
|
_request_auth=_request_auth,
|
|
@@ -1415,6 +1483,7 @@ class DistributionsOpenpgpApi:
|
|
|
1415
1483
|
def read_with_http_info(
|
|
1416
1484
|
self,
|
|
1417
1485
|
open_p_g_p_distribution_href: StrictStr,
|
|
1486
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1418
1487
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1419
1488
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1420
1489
|
_request_timeout: Union[
|
|
@@ -1436,6 +1505,8 @@ class DistributionsOpenpgpApi:
|
|
|
1436
1505
|
|
|
1437
1506
|
:param open_p_g_p_distribution_href: (required)
|
|
1438
1507
|
:type open_p_g_p_distribution_href: str
|
|
1508
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1509
|
+
:type x_task_diagnostics: List[str]
|
|
1439
1510
|
:param fields: A list of fields to include in the response.
|
|
1440
1511
|
:type fields: List[str]
|
|
1441
1512
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1464,6 +1535,7 @@ class DistributionsOpenpgpApi:
|
|
|
1464
1535
|
|
|
1465
1536
|
_param = self._read_serialize(
|
|
1466
1537
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1538
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1467
1539
|
fields=fields,
|
|
1468
1540
|
exclude_fields=exclude_fields,
|
|
1469
1541
|
_request_auth=_request_auth,
|
|
@@ -1490,6 +1562,7 @@ class DistributionsOpenpgpApi:
|
|
|
1490
1562
|
def read_without_preload_content(
|
|
1491
1563
|
self,
|
|
1492
1564
|
open_p_g_p_distribution_href: StrictStr,
|
|
1565
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1493
1566
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1494
1567
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1495
1568
|
_request_timeout: Union[
|
|
@@ -1511,6 +1584,8 @@ class DistributionsOpenpgpApi:
|
|
|
1511
1584
|
|
|
1512
1585
|
:param open_p_g_p_distribution_href: (required)
|
|
1513
1586
|
:type open_p_g_p_distribution_href: str
|
|
1587
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1588
|
+
:type x_task_diagnostics: List[str]
|
|
1514
1589
|
:param fields: A list of fields to include in the response.
|
|
1515
1590
|
:type fields: List[str]
|
|
1516
1591
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1539,6 +1614,7 @@ class DistributionsOpenpgpApi:
|
|
|
1539
1614
|
|
|
1540
1615
|
_param = self._read_serialize(
|
|
1541
1616
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1617
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1542
1618
|
fields=fields,
|
|
1543
1619
|
exclude_fields=exclude_fields,
|
|
1544
1620
|
_request_auth=_request_auth,
|
|
@@ -1560,6 +1636,7 @@ class DistributionsOpenpgpApi:
|
|
|
1560
1636
|
def _read_serialize(
|
|
1561
1637
|
self,
|
|
1562
1638
|
open_p_g_p_distribution_href,
|
|
1639
|
+
x_task_diagnostics,
|
|
1563
1640
|
fields,
|
|
1564
1641
|
exclude_fields,
|
|
1565
1642
|
_request_auth,
|
|
@@ -1571,6 +1648,7 @@ class DistributionsOpenpgpApi:
|
|
|
1571
1648
|
_host = None
|
|
1572
1649
|
|
|
1573
1650
|
_collection_formats: Dict[str, str] = {
|
|
1651
|
+
'X-Task-Diagnostics': 'csv',
|
|
1574
1652
|
'fields': 'multi',
|
|
1575
1653
|
'exclude_fields': 'multi',
|
|
1576
1654
|
}
|
|
@@ -1597,6 +1675,8 @@ class DistributionsOpenpgpApi:
|
|
|
1597
1675
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1598
1676
|
|
|
1599
1677
|
# process the header parameters
|
|
1678
|
+
if x_task_diagnostics is not None:
|
|
1679
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1600
1680
|
# process the form parameters
|
|
1601
1681
|
# process the body parameter
|
|
1602
1682
|
|
|
@@ -1639,6 +1719,7 @@ class DistributionsOpenpgpApi:
|
|
|
1639
1719
|
self,
|
|
1640
1720
|
open_p_g_p_distribution_href: StrictStr,
|
|
1641
1721
|
set_label: SetLabel,
|
|
1722
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1642
1723
|
_request_timeout: Union[
|
|
1643
1724
|
None,
|
|
1644
1725
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1660,6 +1741,8 @@ class DistributionsOpenpgpApi:
|
|
|
1660
1741
|
:type open_p_g_p_distribution_href: str
|
|
1661
1742
|
:param set_label: (required)
|
|
1662
1743
|
:type set_label: SetLabel
|
|
1744
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1745
|
+
:type x_task_diagnostics: List[str]
|
|
1663
1746
|
:param _request_timeout: timeout setting for this request. If one
|
|
1664
1747
|
number provided, it will be total request
|
|
1665
1748
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1685,6 +1768,7 @@ class DistributionsOpenpgpApi:
|
|
|
1685
1768
|
_param = self._set_label_serialize(
|
|
1686
1769
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1687
1770
|
set_label=set_label,
|
|
1771
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1688
1772
|
_request_auth=_request_auth,
|
|
1689
1773
|
_content_type=_content_type,
|
|
1690
1774
|
_headers=_headers,
|
|
@@ -1710,6 +1794,7 @@ class DistributionsOpenpgpApi:
|
|
|
1710
1794
|
self,
|
|
1711
1795
|
open_p_g_p_distribution_href: StrictStr,
|
|
1712
1796
|
set_label: SetLabel,
|
|
1797
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1713
1798
|
_request_timeout: Union[
|
|
1714
1799
|
None,
|
|
1715
1800
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1731,6 +1816,8 @@ class DistributionsOpenpgpApi:
|
|
|
1731
1816
|
:type open_p_g_p_distribution_href: str
|
|
1732
1817
|
:param set_label: (required)
|
|
1733
1818
|
:type set_label: SetLabel
|
|
1819
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1820
|
+
:type x_task_diagnostics: List[str]
|
|
1734
1821
|
:param _request_timeout: timeout setting for this request. If one
|
|
1735
1822
|
number provided, it will be total request
|
|
1736
1823
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1756,6 +1843,7 @@ class DistributionsOpenpgpApi:
|
|
|
1756
1843
|
_param = self._set_label_serialize(
|
|
1757
1844
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1758
1845
|
set_label=set_label,
|
|
1846
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1759
1847
|
_request_auth=_request_auth,
|
|
1760
1848
|
_content_type=_content_type,
|
|
1761
1849
|
_headers=_headers,
|
|
@@ -1781,6 +1869,7 @@ class DistributionsOpenpgpApi:
|
|
|
1781
1869
|
self,
|
|
1782
1870
|
open_p_g_p_distribution_href: StrictStr,
|
|
1783
1871
|
set_label: SetLabel,
|
|
1872
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1784
1873
|
_request_timeout: Union[
|
|
1785
1874
|
None,
|
|
1786
1875
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1802,6 +1891,8 @@ class DistributionsOpenpgpApi:
|
|
|
1802
1891
|
:type open_p_g_p_distribution_href: str
|
|
1803
1892
|
:param set_label: (required)
|
|
1804
1893
|
:type set_label: SetLabel
|
|
1894
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1895
|
+
:type x_task_diagnostics: List[str]
|
|
1805
1896
|
:param _request_timeout: timeout setting for this request. If one
|
|
1806
1897
|
number provided, it will be total request
|
|
1807
1898
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1827,6 +1918,7 @@ class DistributionsOpenpgpApi:
|
|
|
1827
1918
|
_param = self._set_label_serialize(
|
|
1828
1919
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1829
1920
|
set_label=set_label,
|
|
1921
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1830
1922
|
_request_auth=_request_auth,
|
|
1831
1923
|
_content_type=_content_type,
|
|
1832
1924
|
_headers=_headers,
|
|
@@ -1847,6 +1939,7 @@ class DistributionsOpenpgpApi:
|
|
|
1847
1939
|
self,
|
|
1848
1940
|
open_p_g_p_distribution_href,
|
|
1849
1941
|
set_label,
|
|
1942
|
+
x_task_diagnostics,
|
|
1850
1943
|
_request_auth,
|
|
1851
1944
|
_content_type,
|
|
1852
1945
|
_headers,
|
|
@@ -1856,6 +1949,7 @@ class DistributionsOpenpgpApi:
|
|
|
1856
1949
|
_host = None
|
|
1857
1950
|
|
|
1858
1951
|
_collection_formats: Dict[str, str] = {
|
|
1952
|
+
'X-Task-Diagnostics': 'csv',
|
|
1859
1953
|
}
|
|
1860
1954
|
|
|
1861
1955
|
_path_params: Dict[str, str] = {}
|
|
@@ -1872,6 +1966,8 @@ class DistributionsOpenpgpApi:
|
|
|
1872
1966
|
_path_params['open_p_g_p_distribution_href'] = open_p_g_p_distribution_href
|
|
1873
1967
|
# process the query parameters
|
|
1874
1968
|
# process the header parameters
|
|
1969
|
+
if x_task_diagnostics is not None:
|
|
1970
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1875
1971
|
# process the form parameters
|
|
1876
1972
|
# process the body parameter
|
|
1877
1973
|
if set_label is not None:
|
|
@@ -1931,6 +2027,7 @@ class DistributionsOpenpgpApi:
|
|
|
1931
2027
|
self,
|
|
1932
2028
|
open_p_g_p_distribution_href: StrictStr,
|
|
1933
2029
|
unset_label: UnsetLabel,
|
|
2030
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1934
2031
|
_request_timeout: Union[
|
|
1935
2032
|
None,
|
|
1936
2033
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1952,6 +2049,8 @@ class DistributionsOpenpgpApi:
|
|
|
1952
2049
|
:type open_p_g_p_distribution_href: str
|
|
1953
2050
|
:param unset_label: (required)
|
|
1954
2051
|
:type unset_label: UnsetLabel
|
|
2052
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2053
|
+
:type x_task_diagnostics: List[str]
|
|
1955
2054
|
:param _request_timeout: timeout setting for this request. If one
|
|
1956
2055
|
number provided, it will be total request
|
|
1957
2056
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1977,6 +2076,7 @@ class DistributionsOpenpgpApi:
|
|
|
1977
2076
|
_param = self._unset_label_serialize(
|
|
1978
2077
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
1979
2078
|
unset_label=unset_label,
|
|
2079
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1980
2080
|
_request_auth=_request_auth,
|
|
1981
2081
|
_content_type=_content_type,
|
|
1982
2082
|
_headers=_headers,
|
|
@@ -2002,6 +2102,7 @@ class DistributionsOpenpgpApi:
|
|
|
2002
2102
|
self,
|
|
2003
2103
|
open_p_g_p_distribution_href: StrictStr,
|
|
2004
2104
|
unset_label: UnsetLabel,
|
|
2105
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2005
2106
|
_request_timeout: Union[
|
|
2006
2107
|
None,
|
|
2007
2108
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2023,6 +2124,8 @@ class DistributionsOpenpgpApi:
|
|
|
2023
2124
|
:type open_p_g_p_distribution_href: str
|
|
2024
2125
|
:param unset_label: (required)
|
|
2025
2126
|
:type unset_label: UnsetLabel
|
|
2127
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2128
|
+
:type x_task_diagnostics: List[str]
|
|
2026
2129
|
:param _request_timeout: timeout setting for this request. If one
|
|
2027
2130
|
number provided, it will be total request
|
|
2028
2131
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2048,6 +2151,7 @@ class DistributionsOpenpgpApi:
|
|
|
2048
2151
|
_param = self._unset_label_serialize(
|
|
2049
2152
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
2050
2153
|
unset_label=unset_label,
|
|
2154
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2051
2155
|
_request_auth=_request_auth,
|
|
2052
2156
|
_content_type=_content_type,
|
|
2053
2157
|
_headers=_headers,
|
|
@@ -2073,6 +2177,7 @@ class DistributionsOpenpgpApi:
|
|
|
2073
2177
|
self,
|
|
2074
2178
|
open_p_g_p_distribution_href: StrictStr,
|
|
2075
2179
|
unset_label: UnsetLabel,
|
|
2180
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2076
2181
|
_request_timeout: Union[
|
|
2077
2182
|
None,
|
|
2078
2183
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2094,6 +2199,8 @@ class DistributionsOpenpgpApi:
|
|
|
2094
2199
|
:type open_p_g_p_distribution_href: str
|
|
2095
2200
|
:param unset_label: (required)
|
|
2096
2201
|
:type unset_label: UnsetLabel
|
|
2202
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2203
|
+
:type x_task_diagnostics: List[str]
|
|
2097
2204
|
:param _request_timeout: timeout setting for this request. If one
|
|
2098
2205
|
number provided, it will be total request
|
|
2099
2206
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2119,6 +2226,7 @@ class DistributionsOpenpgpApi:
|
|
|
2119
2226
|
_param = self._unset_label_serialize(
|
|
2120
2227
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
2121
2228
|
unset_label=unset_label,
|
|
2229
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2122
2230
|
_request_auth=_request_auth,
|
|
2123
2231
|
_content_type=_content_type,
|
|
2124
2232
|
_headers=_headers,
|
|
@@ -2139,6 +2247,7 @@ class DistributionsOpenpgpApi:
|
|
|
2139
2247
|
self,
|
|
2140
2248
|
open_p_g_p_distribution_href,
|
|
2141
2249
|
unset_label,
|
|
2250
|
+
x_task_diagnostics,
|
|
2142
2251
|
_request_auth,
|
|
2143
2252
|
_content_type,
|
|
2144
2253
|
_headers,
|
|
@@ -2148,6 +2257,7 @@ class DistributionsOpenpgpApi:
|
|
|
2148
2257
|
_host = None
|
|
2149
2258
|
|
|
2150
2259
|
_collection_formats: Dict[str, str] = {
|
|
2260
|
+
'X-Task-Diagnostics': 'csv',
|
|
2151
2261
|
}
|
|
2152
2262
|
|
|
2153
2263
|
_path_params: Dict[str, str] = {}
|
|
@@ -2164,6 +2274,8 @@ class DistributionsOpenpgpApi:
|
|
|
2164
2274
|
_path_params['open_p_g_p_distribution_href'] = open_p_g_p_distribution_href
|
|
2165
2275
|
# process the query parameters
|
|
2166
2276
|
# process the header parameters
|
|
2277
|
+
if x_task_diagnostics is not None:
|
|
2278
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2167
2279
|
# process the form parameters
|
|
2168
2280
|
# process the body parameter
|
|
2169
2281
|
if unset_label is not None:
|
|
@@ -2223,6 +2335,7 @@ class DistributionsOpenpgpApi:
|
|
|
2223
2335
|
self,
|
|
2224
2336
|
open_p_g_p_distribution_href: StrictStr,
|
|
2225
2337
|
open_pgp_distribution: OpenPGPDistribution,
|
|
2338
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2226
2339
|
_request_timeout: Union[
|
|
2227
2340
|
None,
|
|
2228
2341
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2244,6 +2357,8 @@ class DistributionsOpenpgpApi:
|
|
|
2244
2357
|
:type open_p_g_p_distribution_href: str
|
|
2245
2358
|
:param open_pgp_distribution: (required)
|
|
2246
2359
|
:type open_pgp_distribution: OpenPGPDistribution
|
|
2360
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2361
|
+
:type x_task_diagnostics: List[str]
|
|
2247
2362
|
:param _request_timeout: timeout setting for this request. If one
|
|
2248
2363
|
number provided, it will be total request
|
|
2249
2364
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2269,6 +2384,7 @@ class DistributionsOpenpgpApi:
|
|
|
2269
2384
|
_param = self._update_serialize(
|
|
2270
2385
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
2271
2386
|
open_pgp_distribution=open_pgp_distribution,
|
|
2387
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2272
2388
|
_request_auth=_request_auth,
|
|
2273
2389
|
_content_type=_content_type,
|
|
2274
2390
|
_headers=_headers,
|
|
@@ -2294,6 +2410,7 @@ class DistributionsOpenpgpApi:
|
|
|
2294
2410
|
self,
|
|
2295
2411
|
open_p_g_p_distribution_href: StrictStr,
|
|
2296
2412
|
open_pgp_distribution: OpenPGPDistribution,
|
|
2413
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2297
2414
|
_request_timeout: Union[
|
|
2298
2415
|
None,
|
|
2299
2416
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2315,6 +2432,8 @@ class DistributionsOpenpgpApi:
|
|
|
2315
2432
|
:type open_p_g_p_distribution_href: str
|
|
2316
2433
|
:param open_pgp_distribution: (required)
|
|
2317
2434
|
:type open_pgp_distribution: OpenPGPDistribution
|
|
2435
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2436
|
+
:type x_task_diagnostics: List[str]
|
|
2318
2437
|
:param _request_timeout: timeout setting for this request. If one
|
|
2319
2438
|
number provided, it will be total request
|
|
2320
2439
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2340,6 +2459,7 @@ class DistributionsOpenpgpApi:
|
|
|
2340
2459
|
_param = self._update_serialize(
|
|
2341
2460
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
2342
2461
|
open_pgp_distribution=open_pgp_distribution,
|
|
2462
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2343
2463
|
_request_auth=_request_auth,
|
|
2344
2464
|
_content_type=_content_type,
|
|
2345
2465
|
_headers=_headers,
|
|
@@ -2365,6 +2485,7 @@ class DistributionsOpenpgpApi:
|
|
|
2365
2485
|
self,
|
|
2366
2486
|
open_p_g_p_distribution_href: StrictStr,
|
|
2367
2487
|
open_pgp_distribution: OpenPGPDistribution,
|
|
2488
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
2368
2489
|
_request_timeout: Union[
|
|
2369
2490
|
None,
|
|
2370
2491
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2386,6 +2507,8 @@ class DistributionsOpenpgpApi:
|
|
|
2386
2507
|
:type open_p_g_p_distribution_href: str
|
|
2387
2508
|
:param open_pgp_distribution: (required)
|
|
2388
2509
|
:type open_pgp_distribution: OpenPGPDistribution
|
|
2510
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
2511
|
+
:type x_task_diagnostics: List[str]
|
|
2389
2512
|
:param _request_timeout: timeout setting for this request. If one
|
|
2390
2513
|
number provided, it will be total request
|
|
2391
2514
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2411,6 +2534,7 @@ class DistributionsOpenpgpApi:
|
|
|
2411
2534
|
_param = self._update_serialize(
|
|
2412
2535
|
open_p_g_p_distribution_href=open_p_g_p_distribution_href,
|
|
2413
2536
|
open_pgp_distribution=open_pgp_distribution,
|
|
2537
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
2414
2538
|
_request_auth=_request_auth,
|
|
2415
2539
|
_content_type=_content_type,
|
|
2416
2540
|
_headers=_headers,
|
|
@@ -2431,6 +2555,7 @@ class DistributionsOpenpgpApi:
|
|
|
2431
2555
|
self,
|
|
2432
2556
|
open_p_g_p_distribution_href,
|
|
2433
2557
|
open_pgp_distribution,
|
|
2558
|
+
x_task_diagnostics,
|
|
2434
2559
|
_request_auth,
|
|
2435
2560
|
_content_type,
|
|
2436
2561
|
_headers,
|
|
@@ -2440,6 +2565,7 @@ class DistributionsOpenpgpApi:
|
|
|
2440
2565
|
_host = None
|
|
2441
2566
|
|
|
2442
2567
|
_collection_formats: Dict[str, str] = {
|
|
2568
|
+
'X-Task-Diagnostics': 'csv',
|
|
2443
2569
|
}
|
|
2444
2570
|
|
|
2445
2571
|
_path_params: Dict[str, str] = {}
|
|
@@ -2456,6 +2582,8 @@ class DistributionsOpenpgpApi:
|
|
|
2456
2582
|
_path_params['open_p_g_p_distribution_href'] = open_p_g_p_distribution_href
|
|
2457
2583
|
# process the query parameters
|
|
2458
2584
|
# process the header parameters
|
|
2585
|
+
if x_task_diagnostics is not None:
|
|
2586
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
2459
2587
|
# process the form parameters
|
|
2460
2588
|
# process the body parameter
|
|
2461
2589
|
if open_pgp_distribution is not None:
|