pulp-python-client 3.28.2__py3-none-any.whl → 3.30.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.
- {pulp_python_client-3.28.2.dist-info → pulp_python_client-3.30.0.dist-info}/METADATA +9 -2
- {pulp_python_client-3.28.2.dist-info → pulp_python_client-3.30.0.dist-info}/RECORD +14 -10
- pulpcore/client/pulp_python/__init__.py +9 -1
- pulpcore/client/pulp_python/api/__init__.py +1 -0
- pulpcore/client/pulp_python/api/repositories_python_blocklist_entries_api.py +1423 -0
- pulpcore/client/pulp_python/api_client.py +1 -1
- pulpcore/client/pulp_python/configuration.py +1 -1
- pulpcore/client/pulp_python/models/__init__.py +3 -0
- pulpcore/client/pulp_python/models/paginatedpython_python_blocklist_entry_response_list.py +97 -0
- pulpcore/client/pulp_python/models/python_python_blocklist_entry.py +104 -0
- pulpcore/client/pulp_python/models/python_python_blocklist_entry_response.py +122 -0
- pulpcore/client/pulp_python/models/python_python_repository_response.py +4 -1
- {pulp_python_client-3.28.2.dist-info → pulp_python_client-3.30.0.dist-info}/WHEEL +0 -0
- {pulp_python_client-3.28.2.dist-info → pulp_python_client-3.30.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulp_python-client
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.30.0
|
|
4
4
|
Summary: Pulp 3 API
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: Pulp Team
|
|
@@ -24,7 +24,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
24
24
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
25
25
|
|
|
26
26
|
- API version: v3
|
|
27
|
-
- Package version: 3.
|
|
27
|
+
- Package version: 3.30.0
|
|
28
28
|
- Generator version: 7.14.0
|
|
29
29
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
30
30
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
@@ -224,6 +224,10 @@ Class | Method | HTTP request | Description
|
|
|
224
224
|
*RepositoriesPythonApi* | [**sync**](docs/RepositoriesPythonApi.md#sync) | **POST** {python_python_repository_href}sync/ | Sync from remote
|
|
225
225
|
*RepositoriesPythonApi* | [**unset_label**](docs/RepositoriesPythonApi.md#unset_label) | **POST** {python_python_repository_href}unset_label/ | Unset a label
|
|
226
226
|
*RepositoriesPythonApi* | [**update**](docs/RepositoriesPythonApi.md#update) | **PUT** {python_python_repository_href} | Update a python repository
|
|
227
|
+
*RepositoriesPythonBlocklistEntriesApi* | [**create**](docs/RepositoriesPythonBlocklistEntriesApi.md#create) | **POST** {python_python_repository_href}blocklist_entries/ | Create a python blocklist entry
|
|
228
|
+
*RepositoriesPythonBlocklistEntriesApi* | [**delete**](docs/RepositoriesPythonBlocklistEntriesApi.md#delete) | **DELETE** {python_python_python_blocklist_entry_href} | Delete a python blocklist entry
|
|
229
|
+
*RepositoriesPythonBlocklistEntriesApi* | [**list**](docs/RepositoriesPythonBlocklistEntriesApi.md#list) | **GET** {python_python_repository_href}blocklist_entries/ | List python blocklist entrys
|
|
230
|
+
*RepositoriesPythonBlocklistEntriesApi* | [**read**](docs/RepositoriesPythonBlocklistEntriesApi.md#read) | **GET** {python_python_python_blocklist_entry_href} | Inspect a python blocklist entry
|
|
227
231
|
*RepositoriesPythonVersionsApi* | [**delete**](docs/RepositoriesPythonVersionsApi.md#delete) | **DELETE** {python_python_repository_version_href} | Delete a repository version
|
|
228
232
|
*RepositoriesPythonVersionsApi* | [**list**](docs/RepositoriesPythonVersionsApi.md#list) | **GET** {python_python_repository_href}versions/ | List repository versions
|
|
229
233
|
*RepositoriesPythonVersionsApi* | [**read**](docs/RepositoriesPythonVersionsApi.md#read) | **GET** {python_python_repository_version_href} | Inspect a repository version
|
|
@@ -247,6 +251,7 @@ Class | Method | HTTP request | Description
|
|
|
247
251
|
- [PackageUploadTaskResponse](docs/PackageUploadTaskResponse.md)
|
|
248
252
|
- [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
|
|
249
253
|
- [PaginatedpythonPackageProvenanceResponseList](docs/PaginatedpythonPackageProvenanceResponseList.md)
|
|
254
|
+
- [PaginatedpythonPythonBlocklistEntryResponseList](docs/PaginatedpythonPythonBlocklistEntryResponseList.md)
|
|
250
255
|
- [PaginatedpythonPythonDistributionResponseList](docs/PaginatedpythonPythonDistributionResponseList.md)
|
|
251
256
|
- [PaginatedpythonPythonPackageContentResponseList](docs/PaginatedpythonPythonPackageContentResponseList.md)
|
|
252
257
|
- [PaginatedpythonPythonPublicationResponseList](docs/PaginatedpythonPythonPublicationResponseList.md)
|
|
@@ -258,6 +263,8 @@ Class | Method | HTTP request | Description
|
|
|
258
263
|
- [PolicyEnum](docs/PolicyEnum.md)
|
|
259
264
|
- [ProtocolVersionEnum](docs/ProtocolVersionEnum.md)
|
|
260
265
|
- [PythonPackageProvenanceResponse](docs/PythonPackageProvenanceResponse.md)
|
|
266
|
+
- [PythonPythonBlocklistEntry](docs/PythonPythonBlocklistEntry.md)
|
|
267
|
+
- [PythonPythonBlocklistEntryResponse](docs/PythonPythonBlocklistEntryResponse.md)
|
|
261
268
|
- [PythonPythonDistribution](docs/PythonPythonDistribution.md)
|
|
262
269
|
- [PythonPythonDistributionResponse](docs/PythonPythonDistributionResponse.md)
|
|
263
270
|
- [PythonPythonPackageContentResponse](docs/PythonPythonPackageContentResponse.md)
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
pulpcore/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
|
|
2
2
|
pulpcore/client/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
|
|
3
|
-
pulpcore/client/pulp_python/__init__.py,sha256=
|
|
4
|
-
pulpcore/client/pulp_python/api_client.py,sha256=
|
|
3
|
+
pulpcore/client/pulp_python/__init__.py,sha256=NTReGfP-D7y2XiEY3Z4HI98X5_wQ-v6trcyg5ThW-zQ,11263
|
|
4
|
+
pulpcore/client/pulp_python/api_client.py,sha256=3XY3rBXqTuizs4HgsWhVFvTXgEnsfVe2UMkusw2poL0,27772
|
|
5
5
|
pulpcore/client/pulp_python/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
6
|
-
pulpcore/client/pulp_python/configuration.py,sha256=
|
|
6
|
+
pulpcore/client/pulp_python/configuration.py,sha256=q6S_A8n1iKMKu3zHmyK33RNO5SCw44PXAbHW7fYOZ0M,19588
|
|
7
7
|
pulpcore/client/pulp_python/exceptions.py,sha256=UUQyfmHrA0wKpyniO8D6jgIOSee4k0dBIImRgs74ERw,6456
|
|
8
8
|
pulpcore/client/pulp_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
pulpcore/client/pulp_python/rest.py,sha256=6sLIAY0kZZoh8inygjKObUkLhf-icE4ljhyb00i8nZ0,9466
|
|
10
|
-
pulpcore/client/pulp_python/api/__init__.py,sha256=
|
|
10
|
+
pulpcore/client/pulp_python/api/__init__.py,sha256=yIPWFggYJmHQoOs9omjN4bgWPJ2sB1KcctZiLqnURzc,1164
|
|
11
11
|
pulpcore/client/pulp_python/api/content_packages_api.py,sha256=MJYx3UKdxn13XNyziEM52qdnzje9z-z-fZ6Yq2LuaS8,198835
|
|
12
12
|
pulpcore/client/pulp_python/api/content_provenance_api.py,sha256=Nu62jAuUbiuECw_-ytnaMvHIx8U9y64Fuc3wwmwf1aI,91347
|
|
13
13
|
pulpcore/client/pulp_python/api/distributions_pypi_api.py,sha256=IExUvZCAgvQD4kagmIi897M-T_uHXuMQaZgqsQDATWg,183639
|
|
@@ -19,8 +19,9 @@ pulpcore/client/pulp_python/api/pypi_provenance_api.py,sha256=E9-vmrOejeeYrsPtzM
|
|
|
19
19
|
pulpcore/client/pulp_python/api/pypi_simple_api.py,sha256=YHYcYwVgwsPn5a1u6vbYmrs2MztY319kWOisgnrKbYk,47579
|
|
20
20
|
pulpcore/client/pulp_python/api/remotes_python_api.py,sha256=4miaULBiTHnGwHHk9Vr3OlJZW2azQCq7D3HHbbkJPy4,210230
|
|
21
21
|
pulpcore/client/pulp_python/api/repositories_python_api.py,sha256=kykIzHIdypYCc9MvyujaDgIK_FJD6qBq9WRbu5J7wOI,237464
|
|
22
|
+
pulpcore/client/pulp_python/api/repositories_python_blocklist_entries_api.py,sha256=rqjOq3u2cJPZn78QC5wbM3XBCkbUhpw5BqZ9WoAyb5s,67587
|
|
22
23
|
pulpcore/client/pulp_python/api/repositories_python_versions_api.py,sha256=D_5kQzCVMrIcpXQFB0lbDfRoUmV9URH93vbmOHzza30,90236
|
|
23
|
-
pulpcore/client/pulp_python/models/__init__.py,sha256=
|
|
24
|
+
pulpcore/client/pulp_python/models/__init__.py,sha256=Bfbo9JD3H08nrTSKq8qOnAUwB7Ihp3h-3wIBORY1M6c,5377
|
|
24
25
|
pulpcore/client/pulp_python/models/async_operation_response.py,sha256=tu8pF5qBaB8ekyXKMWKGHxOGr27EmRLLKSSnaOCuPSw,2514
|
|
25
26
|
pulpcore/client/pulp_python/models/content_summary_response.py,sha256=-mwyWLfj6eKjVbzcS5T6Vz01YqsV_5gcBpU2hQezGnI,2582
|
|
26
27
|
pulpcore/client/pulp_python/models/exclude_platforms_enum.py,sha256=04Ppg5ulYtQgbaOloDE-P8pyUDGjzpCoRWkk5DViO1g,861
|
|
@@ -35,6 +36,7 @@ pulpcore/client/pulp_python/models/package_types_enum.py,sha256=IxfhKcGOGO-63Uew
|
|
|
35
36
|
pulpcore/client/pulp_python/models/package_upload_task_response.py,sha256=ZYQftU0lUWixmSugCTaXiqrRJyWqLK5Dj8_P321FeZQ,3082
|
|
36
37
|
pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py,sha256=L9vz682UTtptrST_fehu7SRMT9n-8GFUyo1J3nwNS90,3116
|
|
37
38
|
pulpcore/client/pulp_python/models/paginatedpython_package_provenance_response_list.py,sha256=sKyDF_sl_mTwffC5_xqUG0LZwU3m4C_9eBml_tbvHaQ,3159
|
|
39
|
+
pulpcore/client/pulp_python/models/paginatedpython_python_blocklist_entry_response_list.py,sha256=l_ZnPwxxkn988nF0VT-IkQkO6iz_gkyCSs-jDnuF62w,3181
|
|
38
40
|
pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py,sha256=qrCCaHgMmXXTtHT9qClB8eSvqb_qc1o4Sy91PH1eqHo,3166
|
|
39
41
|
pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py,sha256=T0jND1SPST0RC5Vw5eMq3M45OLp7OCSP91ItKnn_Apg,3181
|
|
40
42
|
pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py,sha256=kVvPvG2_nYM0OAOCQBd5hb1jxi16tbQ7AIcvoJwms0A,3159
|
|
@@ -46,6 +48,8 @@ pulpcore/client/pulp_python/models/patchedpython_python_repository.py,sha256=CC_
|
|
|
46
48
|
pulpcore/client/pulp_python/models/policy_enum.py,sha256=alBNbWymx71uIJJLX3vvtlW-2wIql23bfXHM-DtgCww,1254
|
|
47
49
|
pulpcore/client/pulp_python/models/protocol_version_enum.py,sha256=1q2qEVmae6pmjjhhNO9-H6gOEo8ZssDV_yjbWxEpciE,718
|
|
48
50
|
pulpcore/client/pulp_python/models/python_package_provenance_response.py,sha256=Sh_65uoWHat7eJrHwZM4iV2ipuvEJbvz_Og8-74gjqw,4204
|
|
51
|
+
pulpcore/client/pulp_python/models/python_python_blocklist_entry.py,sha256=QS1EghP2I99_SHsMPs8RSjU5zUUHf741LVPJIMWs4po,3839
|
|
52
|
+
pulpcore/client/pulp_python/models/python_python_blocklist_entry_response.py,sha256=oYQRLhO3cLbt0d4sA4nFd_qnhPMRmaeMngiLnhVeNUw,5096
|
|
49
53
|
pulpcore/client/pulp_python/models/python_python_distribution.py,sha256=8sCCh-ONO9DjGr57tjMmurk8oHqIs-G-SruVPCM90BA,5122
|
|
50
54
|
pulpcore/client/pulp_python/models/python_python_distribution_response.py,sha256=xWjwWoMauXbgJz-AU-JgiDXum6WuPCiuxWzfDmYVFBs,6675
|
|
51
55
|
pulpcore/client/pulp_python/models/python_python_package_content_response.py,sha256=jHzrp84zDmugZ7K8kUXFJ02TdMyXmznZZgndpfZZ-NA,11349
|
|
@@ -55,7 +59,7 @@ pulpcore/client/pulp_python/models/python_python_remote.py,sha256=EFYcrL5y7lH8-F
|
|
|
55
59
|
pulpcore/client/pulp_python/models/python_python_remote_response.py,sha256=LDLLJGIrczdA_s_uXXCqbYhHBjZvlnXxIgSmosDjKM8,11444
|
|
56
60
|
pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py,sha256=sZSm0FCX3tMFo7Yjt7jOUzI0OGmgrwrdNtBknQVBKmQ,2574
|
|
57
61
|
pulpcore/client/pulp_python/models/python_python_repository.py,sha256=aHhBdQ_CJJ5lCVMa1Ivq4gtXA7yIOIUVzmEwhpJxFN8,5127
|
|
58
|
-
pulpcore/client/pulp_python/models/python_python_repository_response.py,sha256=
|
|
62
|
+
pulpcore/client/pulp_python/models/python_python_repository_response.py,sha256=z9OvU-V86XWhCqwgMgWXiO1gTwp2Rt7AgLLH8SsHmSo,6528
|
|
59
63
|
pulpcore/client/pulp_python/models/remote_network_config.py,sha256=wy727M9zoBT8_NeuNgWJMsDlxgrZKa1w9_mDKbHkQ-s,9849
|
|
60
64
|
pulpcore/client/pulp_python/models/remote_network_config_response.py,sha256=C7jw8k2mhKtgaIjdEgSzfMERl-sZsxKhQn0lpgYRhMI,7616
|
|
61
65
|
pulpcore/client/pulp_python/models/repair.py,sha256=-jAKvUUzykn-n5O5jYGJy40JF0PRI32rJA8lojwQV-o,2635
|
|
@@ -67,7 +71,7 @@ pulpcore/client/pulp_python/models/set_label_response.py,sha256=AJKyRWVTgpODnchr
|
|
|
67
71
|
pulpcore/client/pulp_python/models/summary_response.py,sha256=UW-FGA9ffCbn7a6czqjddy0FziM5DQYqIP6nmqQb_bY,2731
|
|
68
72
|
pulpcore/client/pulp_python/models/unset_label.py,sha256=bioUtBJUl9y7hpLJ4iYYhcQ4sXj-FRUZq0In2gEGbxU,2507
|
|
69
73
|
pulpcore/client/pulp_python/models/unset_label_response.py,sha256=iaHiYMGW-vu1fIHnzasVzMhY_0AHiYzvy48mfQOuw5M,2584
|
|
70
|
-
pulp_python_client-3.
|
|
71
|
-
pulp_python_client-3.
|
|
72
|
-
pulp_python_client-3.
|
|
73
|
-
pulp_python_client-3.
|
|
74
|
+
pulp_python_client-3.30.0.dist-info/METADATA,sha256=XdsRGktTB5iM_H8DdIbQWvFKe6xhYQiyn9wI7_by14o,23669
|
|
75
|
+
pulp_python_client-3.30.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
76
|
+
pulp_python_client-3.30.0.dist-info/top_level.txt,sha256=v1J0AeNxNhm8YE5-xQe1G1YbfoMRZ_u9DAg_Gi7omeY,9
|
|
77
|
+
pulp_python_client-3.30.0.dist-info/RECORD,,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
""" # noqa: E501
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
__version__ = "3.
|
|
18
|
+
__version__ = "3.30.0"
|
|
19
19
|
|
|
20
20
|
# Define package exports
|
|
21
21
|
__all__ = [
|
|
@@ -30,6 +30,7 @@ __all__ = [
|
|
|
30
30
|
"PypiSimpleApi",
|
|
31
31
|
"RemotesPythonApi",
|
|
32
32
|
"RepositoriesPythonApi",
|
|
33
|
+
"RepositoriesPythonBlocklistEntriesApi",
|
|
33
34
|
"RepositoriesPythonVersionsApi",
|
|
34
35
|
"ApiResponse",
|
|
35
36
|
"ApiClient",
|
|
@@ -54,6 +55,7 @@ __all__ = [
|
|
|
54
55
|
"PackageUploadTaskResponse",
|
|
55
56
|
"PaginatedRepositoryVersionResponseList",
|
|
56
57
|
"PaginatedpythonPackageProvenanceResponseList",
|
|
58
|
+
"PaginatedpythonPythonBlocklistEntryResponseList",
|
|
57
59
|
"PaginatedpythonPythonDistributionResponseList",
|
|
58
60
|
"PaginatedpythonPythonPackageContentResponseList",
|
|
59
61
|
"PaginatedpythonPythonPublicationResponseList",
|
|
@@ -65,6 +67,8 @@ __all__ = [
|
|
|
65
67
|
"PolicyEnum",
|
|
66
68
|
"ProtocolVersionEnum",
|
|
67
69
|
"PythonPackageProvenanceResponse",
|
|
70
|
+
"PythonPythonBlocklistEntry",
|
|
71
|
+
"PythonPythonBlocklistEntryResponse",
|
|
68
72
|
"PythonPythonDistribution",
|
|
69
73
|
"PythonPythonDistributionResponse",
|
|
70
74
|
"PythonPythonPackageContentResponse",
|
|
@@ -100,6 +104,7 @@ from pulpcore.client.pulp_python.api.pypi_provenance_api import PypiProvenanceAp
|
|
|
100
104
|
from pulpcore.client.pulp_python.api.pypi_simple_api import PypiSimpleApi as PypiSimpleApi
|
|
101
105
|
from pulpcore.client.pulp_python.api.remotes_python_api import RemotesPythonApi as RemotesPythonApi
|
|
102
106
|
from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi as RepositoriesPythonApi
|
|
107
|
+
from pulpcore.client.pulp_python.api.repositories_python_blocklist_entries_api import RepositoriesPythonBlocklistEntriesApi as RepositoriesPythonBlocklistEntriesApi
|
|
103
108
|
from pulpcore.client.pulp_python.api.repositories_python_versions_api import RepositoriesPythonVersionsApi as RepositoriesPythonVersionsApi
|
|
104
109
|
|
|
105
110
|
# import ApiClient
|
|
@@ -128,6 +133,7 @@ from pulpcore.client.pulp_python.models.package_types_enum import PackageTypesEn
|
|
|
128
133
|
from pulpcore.client.pulp_python.models.package_upload_task_response import PackageUploadTaskResponse as PackageUploadTaskResponse
|
|
129
134
|
from pulpcore.client.pulp_python.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList as PaginatedRepositoryVersionResponseList
|
|
130
135
|
from pulpcore.client.pulp_python.models.paginatedpython_package_provenance_response_list import PaginatedpythonPackageProvenanceResponseList as PaginatedpythonPackageProvenanceResponseList
|
|
136
|
+
from pulpcore.client.pulp_python.models.paginatedpython_python_blocklist_entry_response_list import PaginatedpythonPythonBlocklistEntryResponseList as PaginatedpythonPythonBlocklistEntryResponseList
|
|
131
137
|
from pulpcore.client.pulp_python.models.paginatedpython_python_distribution_response_list import PaginatedpythonPythonDistributionResponseList as PaginatedpythonPythonDistributionResponseList
|
|
132
138
|
from pulpcore.client.pulp_python.models.paginatedpython_python_package_content_response_list import PaginatedpythonPythonPackageContentResponseList as PaginatedpythonPythonPackageContentResponseList
|
|
133
139
|
from pulpcore.client.pulp_python.models.paginatedpython_python_publication_response_list import PaginatedpythonPythonPublicationResponseList as PaginatedpythonPythonPublicationResponseList
|
|
@@ -139,6 +145,8 @@ from pulpcore.client.pulp_python.models.patchedpython_python_repository import P
|
|
|
139
145
|
from pulpcore.client.pulp_python.models.policy_enum import PolicyEnum as PolicyEnum
|
|
140
146
|
from pulpcore.client.pulp_python.models.protocol_version_enum import ProtocolVersionEnum as ProtocolVersionEnum
|
|
141
147
|
from pulpcore.client.pulp_python.models.python_package_provenance_response import PythonPackageProvenanceResponse as PythonPackageProvenanceResponse
|
|
148
|
+
from pulpcore.client.pulp_python.models.python_python_blocklist_entry import PythonPythonBlocklistEntry as PythonPythonBlocklistEntry
|
|
149
|
+
from pulpcore.client.pulp_python.models.python_python_blocklist_entry_response import PythonPythonBlocklistEntryResponse as PythonPythonBlocklistEntryResponse
|
|
142
150
|
from pulpcore.client.pulp_python.models.python_python_distribution import PythonPythonDistribution as PythonPythonDistribution
|
|
143
151
|
from pulpcore.client.pulp_python.models.python_python_distribution_response import PythonPythonDistributionResponse as PythonPythonDistributionResponse
|
|
144
152
|
from pulpcore.client.pulp_python.models.python_python_package_content_response import PythonPythonPackageContentResponse as PythonPythonPackageContentResponse
|
|
@@ -12,5 +12,6 @@ from pulpcore.client.pulp_python.api.pypi_provenance_api import PypiProvenanceAp
|
|
|
12
12
|
from pulpcore.client.pulp_python.api.pypi_simple_api import PypiSimpleApi
|
|
13
13
|
from pulpcore.client.pulp_python.api.remotes_python_api import RemotesPythonApi
|
|
14
14
|
from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi
|
|
15
|
+
from pulpcore.client.pulp_python.api.repositories_python_blocklist_entries_api import RepositoriesPythonBlocklistEntriesApi
|
|
15
16
|
from pulpcore.client.pulp_python.api.repositories_python_versions_api import RepositoriesPythonVersionsApi
|
|
16
17
|
|