pulp-python-client 3.16.0__py3-none-any.whl → 3.17.1__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 pulp-python-client might be problematic. Click here for more details.
- {pulp_python_client-3.16.0.dist-info → pulp_python_client-3.17.1.dist-info}/METADATA +1 -1
- {pulp_python_client-3.16.0.dist-info → pulp_python_client-3.17.1.dist-info}/RECORD +18 -18
- pulpcore/client/pulp_python/__init__.py +1 -1
- pulpcore/client/pulp_python/api/content_packages_api.py +341 -201
- pulpcore/client/pulp_python/api/distributions_pypi_api.py +192 -0
- pulpcore/client/pulp_python/api/publications_pypi_api.py +128 -0
- pulpcore/client/pulp_python/api/pypi_api.py +16 -0
- pulpcore/client/pulp_python/api/pypi_legacy_api.py +17 -1
- pulpcore/client/pulp_python/api/pypi_metadata_api.py +16 -0
- pulpcore/client/pulp_python/api/pypi_simple_api.py +48 -0
- pulpcore/client/pulp_python/api/remotes_python_api.py +208 -0
- pulpcore/client/pulp_python/api/repositories_python_api.py +240 -0
- pulpcore/client/pulp_python/api/repositories_python_versions_api.py +70 -6
- pulpcore/client/pulp_python/api_client.py +1 -1
- pulpcore/client/pulp_python/configuration.py +1 -1
- pulpcore/client/pulp_python/models/python_python_package_content_response.py +80 -53
- {pulp_python_client-3.16.0.dist-info → pulp_python_client-3.17.1.dist-info}/WHEEL +0 -0
- {pulp_python_client-3.16.0.dist-info → pulp_python_client-3.17.1.dist-info}/top_level.txt +0 -0
|
@@ -48,6 +48,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
48
48
|
def delete(
|
|
49
49
|
self,
|
|
50
50
|
python_python_repository_version_href: StrictStr,
|
|
51
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
51
52
|
_request_timeout: Union[
|
|
52
53
|
None,
|
|
53
54
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -67,6 +68,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
67
68
|
|
|
68
69
|
:param python_python_repository_version_href: (required)
|
|
69
70
|
:type python_python_repository_version_href: str
|
|
71
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
72
|
+
:type x_task_diagnostics: List[str]
|
|
70
73
|
:param _request_timeout: timeout setting for this request. If one
|
|
71
74
|
number provided, it will be total request
|
|
72
75
|
timeout. It can also be a pair (tuple) of
|
|
@@ -91,6 +94,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
91
94
|
|
|
92
95
|
_param = self._delete_serialize(
|
|
93
96
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
97
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
94
98
|
_request_auth=_request_auth,
|
|
95
99
|
_content_type=_content_type,
|
|
96
100
|
_headers=_headers,
|
|
@@ -115,6 +119,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
115
119
|
def delete_with_http_info(
|
|
116
120
|
self,
|
|
117
121
|
python_python_repository_version_href: StrictStr,
|
|
122
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
118
123
|
_request_timeout: Union[
|
|
119
124
|
None,
|
|
120
125
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -134,6 +139,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
134
139
|
|
|
135
140
|
:param python_python_repository_version_href: (required)
|
|
136
141
|
:type python_python_repository_version_href: str
|
|
142
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
143
|
+
:type x_task_diagnostics: List[str]
|
|
137
144
|
:param _request_timeout: timeout setting for this request. If one
|
|
138
145
|
number provided, it will be total request
|
|
139
146
|
timeout. It can also be a pair (tuple) of
|
|
@@ -158,6 +165,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
158
165
|
|
|
159
166
|
_param = self._delete_serialize(
|
|
160
167
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
168
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
161
169
|
_request_auth=_request_auth,
|
|
162
170
|
_content_type=_content_type,
|
|
163
171
|
_headers=_headers,
|
|
@@ -182,6 +190,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
182
190
|
def delete_without_preload_content(
|
|
183
191
|
self,
|
|
184
192
|
python_python_repository_version_href: StrictStr,
|
|
193
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
185
194
|
_request_timeout: Union[
|
|
186
195
|
None,
|
|
187
196
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -201,6 +210,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
201
210
|
|
|
202
211
|
:param python_python_repository_version_href: (required)
|
|
203
212
|
:type python_python_repository_version_href: str
|
|
213
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
214
|
+
:type x_task_diagnostics: List[str]
|
|
204
215
|
:param _request_timeout: timeout setting for this request. If one
|
|
205
216
|
number provided, it will be total request
|
|
206
217
|
timeout. It can also be a pair (tuple) of
|
|
@@ -225,6 +236,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
225
236
|
|
|
226
237
|
_param = self._delete_serialize(
|
|
227
238
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
239
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
228
240
|
_request_auth=_request_auth,
|
|
229
241
|
_content_type=_content_type,
|
|
230
242
|
_headers=_headers,
|
|
@@ -244,6 +256,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
244
256
|
def _delete_serialize(
|
|
245
257
|
self,
|
|
246
258
|
python_python_repository_version_href,
|
|
259
|
+
x_task_diagnostics,
|
|
247
260
|
_request_auth,
|
|
248
261
|
_content_type,
|
|
249
262
|
_headers,
|
|
@@ -253,6 +266,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
253
266
|
_host = None
|
|
254
267
|
|
|
255
268
|
_collection_formats: Dict[str, str] = {
|
|
269
|
+
'X-Task-Diagnostics': 'csv',
|
|
256
270
|
}
|
|
257
271
|
|
|
258
272
|
_path_params: Dict[str, str] = {}
|
|
@@ -269,6 +283,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
269
283
|
_path_params['python_python_repository_version_href'] = python_python_repository_version_href
|
|
270
284
|
# process the query parameters
|
|
271
285
|
# process the header parameters
|
|
286
|
+
if x_task_diagnostics is not None:
|
|
287
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
272
288
|
# process the form parameters
|
|
273
289
|
# process the body parameter
|
|
274
290
|
|
|
@@ -310,6 +326,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
310
326
|
def list(
|
|
311
327
|
self,
|
|
312
328
|
python_python_repository_href: StrictStr,
|
|
329
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
313
330
|
content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
314
331
|
content__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
315
332
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -320,7 +337,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
320
337
|
number__lte: Annotated[Optional[StrictInt], Field(description="Filter results where number is less than or equal to value")] = None,
|
|
321
338
|
number__range: Annotated[Optional[List[StrictInt]], Field(description="Filter results where number is between two comma separated values")] = None,
|
|
322
339
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
323
|
-
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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
340
|
+
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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
324
341
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
325
342
|
pulp_created: Annotated[Optional[datetime], Field(description="Filter results where pulp_created matches value")] = None,
|
|
326
343
|
pulp_created__gt: Annotated[Optional[datetime], Field(description="Filter results where pulp_created is greater than value")] = None,
|
|
@@ -352,6 +369,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
352
369
|
|
|
353
370
|
:param python_python_repository_href: (required)
|
|
354
371
|
:type python_python_repository_href: str
|
|
372
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
373
|
+
:type x_task_diagnostics: List[str]
|
|
355
374
|
:param content: Content Unit referenced by HREF/PRN
|
|
356
375
|
:type content: str
|
|
357
376
|
:param content__in: Multiple values may be separated by commas.
|
|
@@ -372,7 +391,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
372
391
|
:type number__range: List[int]
|
|
373
392
|
:param offset: The initial index from which to return the results.
|
|
374
393
|
:type offset: int
|
|
375
|
-
:param ordering: 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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
394
|
+
:param ordering: 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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
376
395
|
:type ordering: List[str]
|
|
377
396
|
:param prn__in: Multiple values may be separated by commas.
|
|
378
397
|
:type prn__in: List[str]
|
|
@@ -422,6 +441,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
422
441
|
|
|
423
442
|
_param = self._list_serialize(
|
|
424
443
|
python_python_repository_href=python_python_repository_href,
|
|
444
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
425
445
|
content=content,
|
|
426
446
|
content__in=content__in,
|
|
427
447
|
limit=limit,
|
|
@@ -469,6 +489,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
469
489
|
def list_with_http_info(
|
|
470
490
|
self,
|
|
471
491
|
python_python_repository_href: StrictStr,
|
|
492
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
472
493
|
content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
473
494
|
content__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
474
495
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -479,7 +500,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
479
500
|
number__lte: Annotated[Optional[StrictInt], Field(description="Filter results where number is less than or equal to value")] = None,
|
|
480
501
|
number__range: Annotated[Optional[List[StrictInt]], Field(description="Filter results where number is between two comma separated values")] = None,
|
|
481
502
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
482
|
-
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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
503
|
+
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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
483
504
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
484
505
|
pulp_created: Annotated[Optional[datetime], Field(description="Filter results where pulp_created matches value")] = None,
|
|
485
506
|
pulp_created__gt: Annotated[Optional[datetime], Field(description="Filter results where pulp_created is greater than value")] = None,
|
|
@@ -511,6 +532,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
511
532
|
|
|
512
533
|
:param python_python_repository_href: (required)
|
|
513
534
|
:type python_python_repository_href: str
|
|
535
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
536
|
+
:type x_task_diagnostics: List[str]
|
|
514
537
|
:param content: Content Unit referenced by HREF/PRN
|
|
515
538
|
:type content: str
|
|
516
539
|
:param content__in: Multiple values may be separated by commas.
|
|
@@ -531,7 +554,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
531
554
|
:type number__range: List[int]
|
|
532
555
|
:param offset: The initial index from which to return the results.
|
|
533
556
|
:type offset: int
|
|
534
|
-
:param ordering: 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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
557
|
+
:param ordering: 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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
535
558
|
:type ordering: List[str]
|
|
536
559
|
:param prn__in: Multiple values may be separated by commas.
|
|
537
560
|
:type prn__in: List[str]
|
|
@@ -581,6 +604,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
581
604
|
|
|
582
605
|
_param = self._list_serialize(
|
|
583
606
|
python_python_repository_href=python_python_repository_href,
|
|
607
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
584
608
|
content=content,
|
|
585
609
|
content__in=content__in,
|
|
586
610
|
limit=limit,
|
|
@@ -628,6 +652,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
628
652
|
def list_without_preload_content(
|
|
629
653
|
self,
|
|
630
654
|
python_python_repository_href: StrictStr,
|
|
655
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
631
656
|
content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
632
657
|
content__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
633
658
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
@@ -638,7 +663,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
638
663
|
number__lte: Annotated[Optional[StrictInt], Field(description="Filter results where number is less than or equal to value")] = None,
|
|
639
664
|
number__range: Annotated[Optional[List[StrictInt]], Field(description="Filter results where number is between two comma separated values")] = None,
|
|
640
665
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
641
|
-
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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
666
|
+
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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
642
667
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
643
668
|
pulp_created: Annotated[Optional[datetime], Field(description="Filter results where pulp_created matches value")] = None,
|
|
644
669
|
pulp_created__gt: Annotated[Optional[datetime], Field(description="Filter results where pulp_created is greater than value")] = None,
|
|
@@ -670,6 +695,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
670
695
|
|
|
671
696
|
:param python_python_repository_href: (required)
|
|
672
697
|
:type python_python_repository_href: str
|
|
698
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
699
|
+
:type x_task_diagnostics: List[str]
|
|
673
700
|
:param content: Content Unit referenced by HREF/PRN
|
|
674
701
|
:type content: str
|
|
675
702
|
:param content__in: Multiple values may be separated by commas.
|
|
@@ -690,7 +717,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
690
717
|
:type number__range: List[int]
|
|
691
718
|
:param offset: The initial index from which to return the results.
|
|
692
719
|
:type offset: int
|
|
693
|
-
:param ordering: 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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
720
|
+
:param ordering: 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) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
694
721
|
:type ordering: List[str]
|
|
695
722
|
:param prn__in: Multiple values may be separated by commas.
|
|
696
723
|
:type prn__in: List[str]
|
|
@@ -740,6 +767,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
740
767
|
|
|
741
768
|
_param = self._list_serialize(
|
|
742
769
|
python_python_repository_href=python_python_repository_href,
|
|
770
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
743
771
|
content=content,
|
|
744
772
|
content__in=content__in,
|
|
745
773
|
limit=limit,
|
|
@@ -782,6 +810,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
782
810
|
def _list_serialize(
|
|
783
811
|
self,
|
|
784
812
|
python_python_repository_href,
|
|
813
|
+
x_task_diagnostics,
|
|
785
814
|
content,
|
|
786
815
|
content__in,
|
|
787
816
|
limit,
|
|
@@ -814,6 +843,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
814
843
|
_host = None
|
|
815
844
|
|
|
816
845
|
_collection_formats: Dict[str, str] = {
|
|
846
|
+
'X-Task-Diagnostics': 'csv',
|
|
817
847
|
'content__in': 'csv',
|
|
818
848
|
'number__range': 'csv',
|
|
819
849
|
'ordering': 'csv',
|
|
@@ -975,6 +1005,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
975
1005
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
976
1006
|
|
|
977
1007
|
# process the header parameters
|
|
1008
|
+
if x_task_diagnostics is not None:
|
|
1009
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
978
1010
|
# process the form parameters
|
|
979
1011
|
# process the body parameter
|
|
980
1012
|
|
|
@@ -1016,6 +1048,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1016
1048
|
def read(
|
|
1017
1049
|
self,
|
|
1018
1050
|
python_python_repository_version_href: StrictStr,
|
|
1051
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1019
1052
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1020
1053
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1021
1054
|
_request_timeout: Union[
|
|
@@ -1037,6 +1070,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1037
1070
|
|
|
1038
1071
|
:param python_python_repository_version_href: (required)
|
|
1039
1072
|
:type python_python_repository_version_href: str
|
|
1073
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1074
|
+
:type x_task_diagnostics: List[str]
|
|
1040
1075
|
:param fields: A list of fields to include in the response.
|
|
1041
1076
|
:type fields: List[str]
|
|
1042
1077
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1065,6 +1100,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1065
1100
|
|
|
1066
1101
|
_param = self._read_serialize(
|
|
1067
1102
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
1103
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1068
1104
|
fields=fields,
|
|
1069
1105
|
exclude_fields=exclude_fields,
|
|
1070
1106
|
_request_auth=_request_auth,
|
|
@@ -1091,6 +1127,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1091
1127
|
def read_with_http_info(
|
|
1092
1128
|
self,
|
|
1093
1129
|
python_python_repository_version_href: StrictStr,
|
|
1130
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1094
1131
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1095
1132
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1096
1133
|
_request_timeout: Union[
|
|
@@ -1112,6 +1149,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1112
1149
|
|
|
1113
1150
|
:param python_python_repository_version_href: (required)
|
|
1114
1151
|
:type python_python_repository_version_href: str
|
|
1152
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1153
|
+
:type x_task_diagnostics: List[str]
|
|
1115
1154
|
:param fields: A list of fields to include in the response.
|
|
1116
1155
|
:type fields: List[str]
|
|
1117
1156
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1140,6 +1179,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1140
1179
|
|
|
1141
1180
|
_param = self._read_serialize(
|
|
1142
1181
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
1182
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1143
1183
|
fields=fields,
|
|
1144
1184
|
exclude_fields=exclude_fields,
|
|
1145
1185
|
_request_auth=_request_auth,
|
|
@@ -1166,6 +1206,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1166
1206
|
def read_without_preload_content(
|
|
1167
1207
|
self,
|
|
1168
1208
|
python_python_repository_version_href: StrictStr,
|
|
1209
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1169
1210
|
fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to include in the response.")] = None,
|
|
1170
1211
|
exclude_fields: Annotated[Optional[List[StrictStr]], Field(description="A list of fields to exclude from the response.")] = None,
|
|
1171
1212
|
_request_timeout: Union[
|
|
@@ -1187,6 +1228,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1187
1228
|
|
|
1188
1229
|
:param python_python_repository_version_href: (required)
|
|
1189
1230
|
:type python_python_repository_version_href: str
|
|
1231
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1232
|
+
:type x_task_diagnostics: List[str]
|
|
1190
1233
|
:param fields: A list of fields to include in the response.
|
|
1191
1234
|
:type fields: List[str]
|
|
1192
1235
|
:param exclude_fields: A list of fields to exclude from the response.
|
|
@@ -1215,6 +1258,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1215
1258
|
|
|
1216
1259
|
_param = self._read_serialize(
|
|
1217
1260
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
1261
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1218
1262
|
fields=fields,
|
|
1219
1263
|
exclude_fields=exclude_fields,
|
|
1220
1264
|
_request_auth=_request_auth,
|
|
@@ -1236,6 +1280,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1236
1280
|
def _read_serialize(
|
|
1237
1281
|
self,
|
|
1238
1282
|
python_python_repository_version_href,
|
|
1283
|
+
x_task_diagnostics,
|
|
1239
1284
|
fields,
|
|
1240
1285
|
exclude_fields,
|
|
1241
1286
|
_request_auth,
|
|
@@ -1247,6 +1292,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1247
1292
|
_host = None
|
|
1248
1293
|
|
|
1249
1294
|
_collection_formats: Dict[str, str] = {
|
|
1295
|
+
'X-Task-Diagnostics': 'csv',
|
|
1250
1296
|
'fields': 'multi',
|
|
1251
1297
|
'exclude_fields': 'multi',
|
|
1252
1298
|
}
|
|
@@ -1273,6 +1319,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1273
1319
|
_query_params.append(('exclude_fields', exclude_fields))
|
|
1274
1320
|
|
|
1275
1321
|
# process the header parameters
|
|
1322
|
+
if x_task_diagnostics is not None:
|
|
1323
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1276
1324
|
# process the form parameters
|
|
1277
1325
|
# process the body parameter
|
|
1278
1326
|
|
|
@@ -1315,6 +1363,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1315
1363
|
self,
|
|
1316
1364
|
python_python_repository_version_href: StrictStr,
|
|
1317
1365
|
repair: Repair,
|
|
1366
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1318
1367
|
_request_timeout: Union[
|
|
1319
1368
|
None,
|
|
1320
1369
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1336,6 +1385,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1336
1385
|
:type python_python_repository_version_href: str
|
|
1337
1386
|
:param repair: (required)
|
|
1338
1387
|
:type repair: Repair
|
|
1388
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1389
|
+
:type x_task_diagnostics: List[str]
|
|
1339
1390
|
:param _request_timeout: timeout setting for this request. If one
|
|
1340
1391
|
number provided, it will be total request
|
|
1341
1392
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1361,6 +1412,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1361
1412
|
_param = self._repair_serialize(
|
|
1362
1413
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
1363
1414
|
repair=repair,
|
|
1415
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1364
1416
|
_request_auth=_request_auth,
|
|
1365
1417
|
_content_type=_content_type,
|
|
1366
1418
|
_headers=_headers,
|
|
@@ -1386,6 +1438,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1386
1438
|
self,
|
|
1387
1439
|
python_python_repository_version_href: StrictStr,
|
|
1388
1440
|
repair: Repair,
|
|
1441
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1389
1442
|
_request_timeout: Union[
|
|
1390
1443
|
None,
|
|
1391
1444
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1407,6 +1460,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1407
1460
|
:type python_python_repository_version_href: str
|
|
1408
1461
|
:param repair: (required)
|
|
1409
1462
|
:type repair: Repair
|
|
1463
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1464
|
+
:type x_task_diagnostics: List[str]
|
|
1410
1465
|
:param _request_timeout: timeout setting for this request. If one
|
|
1411
1466
|
number provided, it will be total request
|
|
1412
1467
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1432,6 +1487,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1432
1487
|
_param = self._repair_serialize(
|
|
1433
1488
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
1434
1489
|
repair=repair,
|
|
1490
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1435
1491
|
_request_auth=_request_auth,
|
|
1436
1492
|
_content_type=_content_type,
|
|
1437
1493
|
_headers=_headers,
|
|
@@ -1457,6 +1513,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1457
1513
|
self,
|
|
1458
1514
|
python_python_repository_version_href: StrictStr,
|
|
1459
1515
|
repair: Repair,
|
|
1516
|
+
x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
|
|
1460
1517
|
_request_timeout: Union[
|
|
1461
1518
|
None,
|
|
1462
1519
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1478,6 +1535,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1478
1535
|
:type python_python_repository_version_href: str
|
|
1479
1536
|
:param repair: (required)
|
|
1480
1537
|
:type repair: Repair
|
|
1538
|
+
:param x_task_diagnostics: List of profilers to use on tasks.
|
|
1539
|
+
:type x_task_diagnostics: List[str]
|
|
1481
1540
|
:param _request_timeout: timeout setting for this request. If one
|
|
1482
1541
|
number provided, it will be total request
|
|
1483
1542
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1503,6 +1562,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1503
1562
|
_param = self._repair_serialize(
|
|
1504
1563
|
python_python_repository_version_href=python_python_repository_version_href,
|
|
1505
1564
|
repair=repair,
|
|
1565
|
+
x_task_diagnostics=x_task_diagnostics,
|
|
1506
1566
|
_request_auth=_request_auth,
|
|
1507
1567
|
_content_type=_content_type,
|
|
1508
1568
|
_headers=_headers,
|
|
@@ -1523,6 +1583,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1523
1583
|
self,
|
|
1524
1584
|
python_python_repository_version_href,
|
|
1525
1585
|
repair,
|
|
1586
|
+
x_task_diagnostics,
|
|
1526
1587
|
_request_auth,
|
|
1527
1588
|
_content_type,
|
|
1528
1589
|
_headers,
|
|
@@ -1532,6 +1593,7 @@ class RepositoriesPythonVersionsApi:
|
|
|
1532
1593
|
_host = None
|
|
1533
1594
|
|
|
1534
1595
|
_collection_formats: Dict[str, str] = {
|
|
1596
|
+
'X-Task-Diagnostics': 'csv',
|
|
1535
1597
|
}
|
|
1536
1598
|
|
|
1537
1599
|
_path_params: Dict[str, str] = {}
|
|
@@ -1548,6 +1610,8 @@ class RepositoriesPythonVersionsApi:
|
|
|
1548
1610
|
_path_params['python_python_repository_version_href'] = python_python_repository_version_href
|
|
1549
1611
|
# process the query parameters
|
|
1550
1612
|
# process the header parameters
|
|
1613
|
+
if x_task_diagnostics is not None:
|
|
1614
|
+
_header_params['X-Task-Diagnostics'] = x_task_diagnostics
|
|
1551
1615
|
# process the form parameters
|
|
1552
1616
|
# process the body parameter
|
|
1553
1617
|
if repair is not None:
|
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'OpenAPI-Generator/3.
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/3.17.1/python'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
def __enter__(self):
|
|
@@ -549,7 +549,7 @@ conf = pulpcore.client.pulp_python.Configuration(
|
|
|
549
549
|
"OS: {env}\n"\
|
|
550
550
|
"Python Version: {pyversion}\n"\
|
|
551
551
|
"Version of the API: v3\n"\
|
|
552
|
-
"SDK Package Version: 3.
|
|
552
|
+
"SDK Package Version: 3.17.1".\
|
|
553
553
|
format(env=sys.platform, pyversion=sys.version)
|
|
554
554
|
|
|
555
555
|
def get_host_settings(self) -> List[HostSetting]:
|