pulp-python-client 3.13.1__py3-none-any.whl → 3.13.3__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.13.1.dist-info → pulp_python_client-3.13.3.dist-info}/METADATA +1 -1
- {pulp_python_client-3.13.1.dist-info → pulp_python_client-3.13.3.dist-info}/RECORD +13 -13
- pulpcore/client/pulp_python/__init__.py +1 -1
- pulpcore/client/pulp_python/api/content_packages_api.py +627 -7
- pulpcore/client/pulp_python/api/distributions_pypi_api.py +24 -7
- pulpcore/client/pulp_python/api/publications_pypi_api.py +23 -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 +3 -1
- pulpcore/client/pulp_python/models/unset_label.py +1 -1
- pulpcore/client/pulp_python/models/unset_label_response.py +1 -1
- {pulp_python_client-3.13.1.dist-info → pulp_python_client-3.13.3.dist-info}/WHEEL +0 -0
- {pulp_python_client-3.13.1.dist-info → pulp_python_client-3.13.3.dist-info}/top_level.txt +0 -0
|
@@ -17,7 +17,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
|
17
17
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
18
18
|
from typing_extensions import Annotated
|
|
19
19
|
|
|
20
|
-
from pydantic import Field, StrictInt, StrictStr, field_validator
|
|
20
|
+
from pydantic import Field, StrictBool, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
|
|
@@ -890,6 +890,7 @@ class DistributionsPypiApi:
|
|
|
890
890
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
891
891
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
892
892
|
base_path__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where base_path is in a comma-separated list of values")] = None,
|
|
893
|
+
checkpoint: Annotated[Optional[StrictBool], Field(description="Filter results where checkpoint matches value")] = None,
|
|
893
894
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
894
895
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
895
896
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -901,7 +902,7 @@ class DistributionsPypiApi:
|
|
|
901
902
|
name__regex: Annotated[Optional[StrictStr], Field(description="Filter results where name matches regex value")] = None,
|
|
902
903
|
name__startswith: Annotated[Optional[StrictStr], Field(description="Filter results where name starts with value")] = None,
|
|
903
904
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
904
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
905
|
+
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,
|
|
905
906
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
906
907
|
pulp_href__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
907
908
|
pulp_id__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
@@ -937,6 +938,8 @@ class DistributionsPypiApi:
|
|
|
937
938
|
:type base_path__icontains: str
|
|
938
939
|
:param base_path__in: Filter results where base_path is in a comma-separated list of values
|
|
939
940
|
:type base_path__in: List[str]
|
|
941
|
+
:param checkpoint: Filter results where checkpoint matches value
|
|
942
|
+
:type checkpoint: bool
|
|
940
943
|
:param limit: Number of results to return per page.
|
|
941
944
|
:type limit: int
|
|
942
945
|
:param name: Filter results where name matches value
|
|
@@ -959,7 +962,7 @@ class DistributionsPypiApi:
|
|
|
959
962
|
:type name__startswith: str
|
|
960
963
|
:param offset: The initial index from which to return the results.
|
|
961
964
|
:type offset: int
|
|
962
|
-
: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) * `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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
965
|
+
: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) * `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)
|
|
963
966
|
:type ordering: List[str]
|
|
964
967
|
:param prn__in: Multiple values may be separated by commas.
|
|
965
968
|
:type prn__in: List[str]
|
|
@@ -1008,6 +1011,7 @@ class DistributionsPypiApi:
|
|
|
1008
1011
|
base_path__contains=base_path__contains,
|
|
1009
1012
|
base_path__icontains=base_path__icontains,
|
|
1010
1013
|
base_path__in=base_path__in,
|
|
1014
|
+
checkpoint=checkpoint,
|
|
1011
1015
|
limit=limit,
|
|
1012
1016
|
name=name,
|
|
1013
1017
|
name__contains=name__contains,
|
|
@@ -1057,6 +1061,7 @@ class DistributionsPypiApi:
|
|
|
1057
1061
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
1058
1062
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
1059
1063
|
base_path__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where base_path is in a comma-separated list of values")] = None,
|
|
1064
|
+
checkpoint: Annotated[Optional[StrictBool], Field(description="Filter results where checkpoint matches value")] = None,
|
|
1060
1065
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1061
1066
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
1062
1067
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -1068,7 +1073,7 @@ class DistributionsPypiApi:
|
|
|
1068
1073
|
name__regex: Annotated[Optional[StrictStr], Field(description="Filter results where name matches regex value")] = None,
|
|
1069
1074
|
name__startswith: Annotated[Optional[StrictStr], Field(description="Filter results where name starts with value")] = None,
|
|
1070
1075
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
1071
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
1076
|
+
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,
|
|
1072
1077
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1073
1078
|
pulp_href__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1074
1079
|
pulp_id__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
@@ -1104,6 +1109,8 @@ class DistributionsPypiApi:
|
|
|
1104
1109
|
:type base_path__icontains: str
|
|
1105
1110
|
:param base_path__in: Filter results where base_path is in a comma-separated list of values
|
|
1106
1111
|
:type base_path__in: List[str]
|
|
1112
|
+
:param checkpoint: Filter results where checkpoint matches value
|
|
1113
|
+
:type checkpoint: bool
|
|
1107
1114
|
:param limit: Number of results to return per page.
|
|
1108
1115
|
:type limit: int
|
|
1109
1116
|
:param name: Filter results where name matches value
|
|
@@ -1126,7 +1133,7 @@ class DistributionsPypiApi:
|
|
|
1126
1133
|
:type name__startswith: str
|
|
1127
1134
|
:param offset: The initial index from which to return the results.
|
|
1128
1135
|
:type offset: int
|
|
1129
|
-
: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) * `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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
1136
|
+
: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) * `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)
|
|
1130
1137
|
:type ordering: List[str]
|
|
1131
1138
|
:param prn__in: Multiple values may be separated by commas.
|
|
1132
1139
|
:type prn__in: List[str]
|
|
@@ -1175,6 +1182,7 @@ class DistributionsPypiApi:
|
|
|
1175
1182
|
base_path__contains=base_path__contains,
|
|
1176
1183
|
base_path__icontains=base_path__icontains,
|
|
1177
1184
|
base_path__in=base_path__in,
|
|
1185
|
+
checkpoint=checkpoint,
|
|
1178
1186
|
limit=limit,
|
|
1179
1187
|
name=name,
|
|
1180
1188
|
name__contains=name__contains,
|
|
@@ -1224,6 +1232,7 @@ class DistributionsPypiApi:
|
|
|
1224
1232
|
base_path__contains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
1225
1233
|
base_path__icontains: Annotated[Optional[StrictStr], Field(description="Filter results where base_path contains value")] = None,
|
|
1226
1234
|
base_path__in: Annotated[Optional[List[StrictStr]], Field(description="Filter results where base_path is in a comma-separated list of values")] = None,
|
|
1235
|
+
checkpoint: Annotated[Optional[StrictBool], Field(description="Filter results where checkpoint matches value")] = None,
|
|
1227
1236
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1228
1237
|
name: Annotated[Optional[StrictStr], Field(description="Filter results where name matches value")] = None,
|
|
1229
1238
|
name__contains: Annotated[Optional[StrictStr], Field(description="Filter results where name contains value")] = None,
|
|
@@ -1235,7 +1244,7 @@ class DistributionsPypiApi:
|
|
|
1235
1244
|
name__regex: Annotated[Optional[StrictStr], Field(description="Filter results where name matches regex value")] = None,
|
|
1236
1245
|
name__startswith: Annotated[Optional[StrictStr], Field(description="Filter results where name starts with value")] = None,
|
|
1237
1246
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
1238
|
-
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) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
1247
|
+
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,
|
|
1239
1248
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1240
1249
|
pulp_href__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1241
1250
|
pulp_id__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
@@ -1271,6 +1280,8 @@ class DistributionsPypiApi:
|
|
|
1271
1280
|
:type base_path__icontains: str
|
|
1272
1281
|
:param base_path__in: Filter results where base_path is in a comma-separated list of values
|
|
1273
1282
|
:type base_path__in: List[str]
|
|
1283
|
+
:param checkpoint: Filter results where checkpoint matches value
|
|
1284
|
+
:type checkpoint: bool
|
|
1274
1285
|
:param limit: Number of results to return per page.
|
|
1275
1286
|
:type limit: int
|
|
1276
1287
|
:param name: Filter results where name matches value
|
|
@@ -1293,7 +1304,7 @@ class DistributionsPypiApi:
|
|
|
1293
1304
|
:type name__startswith: str
|
|
1294
1305
|
:param offset: The initial index from which to return the results.
|
|
1295
1306
|
:type offset: int
|
|
1296
|
-
: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) * `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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
1307
|
+
: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) * `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)
|
|
1297
1308
|
:type ordering: List[str]
|
|
1298
1309
|
:param prn__in: Multiple values may be separated by commas.
|
|
1299
1310
|
:type prn__in: List[str]
|
|
@@ -1342,6 +1353,7 @@ class DistributionsPypiApi:
|
|
|
1342
1353
|
base_path__contains=base_path__contains,
|
|
1343
1354
|
base_path__icontains=base_path__icontains,
|
|
1344
1355
|
base_path__in=base_path__in,
|
|
1356
|
+
checkpoint=checkpoint,
|
|
1345
1357
|
limit=limit,
|
|
1346
1358
|
name=name,
|
|
1347
1359
|
name__contains=name__contains,
|
|
@@ -1386,6 +1398,7 @@ class DistributionsPypiApi:
|
|
|
1386
1398
|
base_path__contains,
|
|
1387
1399
|
base_path__icontains,
|
|
1388
1400
|
base_path__in,
|
|
1401
|
+
checkpoint,
|
|
1389
1402
|
limit,
|
|
1390
1403
|
name,
|
|
1391
1404
|
name__contains,
|
|
@@ -1455,6 +1468,10 @@ class DistributionsPypiApi:
|
|
|
1455
1468
|
|
|
1456
1469
|
_query_params.append(('base_path__in', base_path__in))
|
|
1457
1470
|
|
|
1471
|
+
if checkpoint is not None:
|
|
1472
|
+
|
|
1473
|
+
_query_params.append(('checkpoint', checkpoint))
|
|
1474
|
+
|
|
1458
1475
|
if limit is not None:
|
|
1459
1476
|
|
|
1460
1477
|
_query_params.append(('limit', limit))
|
|
@@ -875,11 +875,12 @@ class PublicationsPypiApi:
|
|
|
875
875
|
@validate_call
|
|
876
876
|
def list(
|
|
877
877
|
self,
|
|
878
|
+
checkpoint: Annotated[Optional[StrictBool], Field(description="Filter results where checkpoint matches value")] = None,
|
|
878
879
|
content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
879
880
|
content__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
880
881
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
881
882
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
882
|
-
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) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
883
|
+
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) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
883
884
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
884
885
|
pulp_created: Annotated[Optional[datetime], Field(description="Filter results where pulp_created matches value")] = None,
|
|
885
886
|
pulp_created__gt: Annotated[Optional[datetime], Field(description="Filter results where pulp_created is greater than value")] = None,
|
|
@@ -912,6 +913,8 @@ class PublicationsPypiApi:
|
|
|
912
913
|
|
|
913
914
|
Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
|
914
915
|
|
|
916
|
+
:param checkpoint: Filter results where checkpoint matches value
|
|
917
|
+
:type checkpoint: bool
|
|
915
918
|
:param content: Content Unit referenced by HREF/PRN
|
|
916
919
|
:type content: str
|
|
917
920
|
:param content__in: Multiple values may be separated by commas.
|
|
@@ -920,7 +923,7 @@ class PublicationsPypiApi:
|
|
|
920
923
|
:type limit: int
|
|
921
924
|
:param offset: The initial index from which to return the results.
|
|
922
925
|
:type offset: int
|
|
923
|
-
: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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
926
|
+
: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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
924
927
|
:type ordering: List[str]
|
|
925
928
|
:param prn__in: Multiple values may be separated by commas.
|
|
926
929
|
:type prn__in: List[str]
|
|
@@ -975,6 +978,7 @@ class PublicationsPypiApi:
|
|
|
975
978
|
""" # noqa: E501
|
|
976
979
|
|
|
977
980
|
_param = self._list_serialize(
|
|
981
|
+
checkpoint=checkpoint,
|
|
978
982
|
content=content,
|
|
979
983
|
content__in=content__in,
|
|
980
984
|
limit=limit,
|
|
@@ -1018,11 +1022,12 @@ class PublicationsPypiApi:
|
|
|
1018
1022
|
@validate_call
|
|
1019
1023
|
def list_with_http_info(
|
|
1020
1024
|
self,
|
|
1025
|
+
checkpoint: Annotated[Optional[StrictBool], Field(description="Filter results where checkpoint matches value")] = None,
|
|
1021
1026
|
content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
1022
1027
|
content__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1023
1028
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1024
1029
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
1025
|
-
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) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
1030
|
+
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) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
1026
1031
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1027
1032
|
pulp_created: Annotated[Optional[datetime], Field(description="Filter results where pulp_created matches value")] = None,
|
|
1028
1033
|
pulp_created__gt: Annotated[Optional[datetime], Field(description="Filter results where pulp_created is greater than value")] = None,
|
|
@@ -1055,6 +1060,8 @@ class PublicationsPypiApi:
|
|
|
1055
1060
|
|
|
1056
1061
|
Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
|
1057
1062
|
|
|
1063
|
+
:param checkpoint: Filter results where checkpoint matches value
|
|
1064
|
+
:type checkpoint: bool
|
|
1058
1065
|
:param content: Content Unit referenced by HREF/PRN
|
|
1059
1066
|
:type content: str
|
|
1060
1067
|
:param content__in: Multiple values may be separated by commas.
|
|
@@ -1063,7 +1070,7 @@ class PublicationsPypiApi:
|
|
|
1063
1070
|
:type limit: int
|
|
1064
1071
|
:param offset: The initial index from which to return the results.
|
|
1065
1072
|
:type offset: int
|
|
1066
|
-
: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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
1073
|
+
: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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
1067
1074
|
:type ordering: List[str]
|
|
1068
1075
|
:param prn__in: Multiple values may be separated by commas.
|
|
1069
1076
|
:type prn__in: List[str]
|
|
@@ -1118,6 +1125,7 @@ class PublicationsPypiApi:
|
|
|
1118
1125
|
""" # noqa: E501
|
|
1119
1126
|
|
|
1120
1127
|
_param = self._list_serialize(
|
|
1128
|
+
checkpoint=checkpoint,
|
|
1121
1129
|
content=content,
|
|
1122
1130
|
content__in=content__in,
|
|
1123
1131
|
limit=limit,
|
|
@@ -1161,11 +1169,12 @@ class PublicationsPypiApi:
|
|
|
1161
1169
|
@validate_call
|
|
1162
1170
|
def list_without_preload_content(
|
|
1163
1171
|
self,
|
|
1172
|
+
checkpoint: Annotated[Optional[StrictBool], Field(description="Filter results where checkpoint matches value")] = None,
|
|
1164
1173
|
content: Annotated[Optional[StrictStr], Field(description="Content Unit referenced by HREF/PRN")] = None,
|
|
1165
1174
|
content__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1166
1175
|
limit: Annotated[Optional[StrictInt], Field(description="Number of results to return per page.")] = None,
|
|
1167
1176
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
1168
|
-
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) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
1177
|
+
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) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
1169
1178
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
1170
1179
|
pulp_created: Annotated[Optional[datetime], Field(description="Filter results where pulp_created matches value")] = None,
|
|
1171
1180
|
pulp_created__gt: Annotated[Optional[datetime], Field(description="Filter results where pulp_created is greater than value")] = None,
|
|
@@ -1198,6 +1207,8 @@ class PublicationsPypiApi:
|
|
|
1198
1207
|
|
|
1199
1208
|
Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
|
1200
1209
|
|
|
1210
|
+
:param checkpoint: Filter results where checkpoint matches value
|
|
1211
|
+
:type checkpoint: bool
|
|
1201
1212
|
:param content: Content Unit referenced by HREF/PRN
|
|
1202
1213
|
:type content: str
|
|
1203
1214
|
:param content__in: Multiple values may be separated by commas.
|
|
@@ -1206,7 +1217,7 @@ class PublicationsPypiApi:
|
|
|
1206
1217
|
:type limit: int
|
|
1207
1218
|
:param offset: The initial index from which to return the results.
|
|
1208
1219
|
:type offset: int
|
|
1209
|
-
: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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
1220
|
+
: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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `checkpoint` - Checkpoint * `-checkpoint` - Checkpoint (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
1210
1221
|
:type ordering: List[str]
|
|
1211
1222
|
:param prn__in: Multiple values may be separated by commas.
|
|
1212
1223
|
:type prn__in: List[str]
|
|
@@ -1261,6 +1272,7 @@ class PublicationsPypiApi:
|
|
|
1261
1272
|
""" # noqa: E501
|
|
1262
1273
|
|
|
1263
1274
|
_param = self._list_serialize(
|
|
1275
|
+
checkpoint=checkpoint,
|
|
1264
1276
|
content=content,
|
|
1265
1277
|
content__in=content__in,
|
|
1266
1278
|
limit=limit,
|
|
@@ -1299,6 +1311,7 @@ class PublicationsPypiApi:
|
|
|
1299
1311
|
|
|
1300
1312
|
def _list_serialize(
|
|
1301
1313
|
self,
|
|
1314
|
+
checkpoint,
|
|
1302
1315
|
content,
|
|
1303
1316
|
content__in,
|
|
1304
1317
|
limit,
|
|
@@ -1349,6 +1362,10 @@ class PublicationsPypiApi:
|
|
|
1349
1362
|
|
|
1350
1363
|
# process the path parameters
|
|
1351
1364
|
# process the query parameters
|
|
1365
|
+
if checkpoint is not None:
|
|
1366
|
+
|
|
1367
|
+
_query_params.append(('checkpoint', checkpoint))
|
|
1368
|
+
|
|
1352
1369
|
if content is not None:
|
|
1353
1370
|
|
|
1354
1371
|
_query_params.append(('content', content))
|
|
@@ -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.13.
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/3.13.3/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.13.
|
|
552
|
+
"SDK Package Version: 3.13.3".\
|
|
553
553
|
format(env=sys.platform, pyversion=sys.version)
|
|
554
554
|
|
|
555
555
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -32,6 +32,7 @@ class PythonPythonPackageContentResponse(BaseModel):
|
|
|
32
32
|
prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
|
|
33
33
|
pulp_created: Optional[datetime] = Field(default=None, description="Timestamp of creation.")
|
|
34
34
|
pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.")
|
|
35
|
+
pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = Field(default=None, description="A dictionary of arbitrary key/value pairs used to describe a specific Content instance.")
|
|
35
36
|
artifact: Optional[StrictStr] = Field(default=None, description="Artifact file representing the physical content")
|
|
36
37
|
filename: Optional[StrictStr] = Field(default=None, description="The name of the distribution package, usually of the format: {distribution}-{version}(-{build tag})?-{python tag}-{abi tag}-{platform tag}.{packagetype}")
|
|
37
38
|
packagetype: Optional[StrictStr] = Field(default=None, description="The type of the distribution package (e.g. sdist, bdist_wheel, bdist_egg, etc)")
|
|
@@ -60,7 +61,7 @@ class PythonPythonPackageContentResponse(BaseModel):
|
|
|
60
61
|
obsoletes_dist: Optional[Any] = Field(default=None, description="A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.")
|
|
61
62
|
requires_external: Optional[Any] = Field(default=None, description="A JSON list containing some dependency in the system that the distribution is to be used.")
|
|
62
63
|
classifiers: Optional[Any] = Field(default=None, description="A JSON list containing classification values for a Python package.")
|
|
63
|
-
__properties: ClassVar[List[str]] = ["pulp_href", "prn", "pulp_created", "pulp_last_updated", "artifact", "filename", "packagetype", "name", "version", "sha256", "metadata_version", "summary", "description", "description_content_type", "keywords", "home_page", "download_url", "author", "author_email", "maintainer", "maintainer_email", "license", "requires_python", "project_url", "project_urls", "platform", "supported_platform", "requires_dist", "provides_dist", "obsoletes_dist", "requires_external", "classifiers"]
|
|
64
|
+
__properties: ClassVar[List[str]] = ["pulp_href", "prn", "pulp_created", "pulp_last_updated", "pulp_labels", "artifact", "filename", "packagetype", "name", "version", "sha256", "metadata_version", "summary", "description", "description_content_type", "keywords", "home_page", "download_url", "author", "author_email", "maintainer", "maintainer_email", "license", "requires_python", "project_url", "project_urls", "platform", "supported_platform", "requires_dist", "provides_dist", "obsoletes_dist", "requires_external", "classifiers"]
|
|
64
65
|
|
|
65
66
|
model_config = ConfigDict(
|
|
66
67
|
populate_by_name=True,
|
|
@@ -165,6 +166,7 @@ class PythonPythonPackageContentResponse(BaseModel):
|
|
|
165
166
|
"prn": obj.get("prn"),
|
|
166
167
|
"pulp_created": obj.get("pulp_created"),
|
|
167
168
|
"pulp_last_updated": obj.get("pulp_last_updated"),
|
|
169
|
+
"pulp_labels": obj.get("pulp_labels"),
|
|
168
170
|
"artifact": obj.get("artifact"),
|
|
169
171
|
"filename": obj.get("filename"),
|
|
170
172
|
"packagetype": obj.get("packagetype"),
|
|
@@ -26,7 +26,7 @@ from typing_extensions import Self
|
|
|
26
26
|
|
|
27
27
|
class UnsetLabel(BaseModel):
|
|
28
28
|
"""
|
|
29
|
-
Serializer for synchronously
|
|
29
|
+
Serializer for synchronously UNsetting a label.
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
key: Annotated[str, Field(min_length=1, strict=True)]
|
|
32
32
|
__properties: ClassVar[List[str]] = ["key"]
|
|
@@ -26,7 +26,7 @@ from typing_extensions import Self
|
|
|
26
26
|
|
|
27
27
|
class UnsetLabelResponse(BaseModel):
|
|
28
28
|
"""
|
|
29
|
-
Serializer for synchronously
|
|
29
|
+
Serializer for synchronously UNsetting a label.
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
key: Annotated[str, Field(strict=True)]
|
|
32
32
|
value: Optional[StrictStr] = None
|
|
File without changes
|
|
File without changes
|