pulp-python-client 3.20.1__tar.gz → 3.22.0__tar.gz

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.
Files changed (133) hide show
  1. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/PKG-INFO +16 -3
  2. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/README.md +15 -2
  3. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulp_python_client.egg-info/PKG-INFO +16 -3
  4. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulp_python_client.egg-info/SOURCES.txt +14 -0
  5. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/__init__.py +15 -1
  6. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/__init__.py +2 -0
  7. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/content_packages_api.py +36 -6
  8. pulp_python_client-3.22.0/pulpcore/client/pulp_python/api/content_provenance_api.py +1865 -0
  9. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/pypi_legacy_api.py +61 -1
  10. pulp_python_client-3.22.0/pulpcore/client/pulp_python/api/pypi_provenance_api.py +391 -0
  11. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/pypi_simple_api.py +61 -1
  12. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +278 -0
  13. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api_client.py +1 -1
  14. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/configuration.py +1 -1
  15. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/__init__.py +5 -0
  16. pulp_python_client-3.22.0/pulpcore/client/pulp_python/models/filetype_enum.py +38 -0
  17. pulp_python_client-3.22.0/pulpcore/client/pulp_python/models/metadata_version_enum.py +44 -0
  18. pulp_python_client-3.22.0/pulpcore/client/pulp_python/models/paginatedpython_package_provenance_response_list.py +97 -0
  19. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +7 -1
  20. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +2 -1
  21. pulp_python_client-3.22.0/pulpcore/client/pulp_python/models/protocol_version_enum.py +37 -0
  22. pulp_python_client-3.22.0/pulpcore/client/pulp_python/models/python_package_provenance_response.py +112 -0
  23. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_distribution.py +7 -1
  24. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_distribution_response.py +7 -1
  25. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_package_content_response.py +8 -2
  26. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_remote.py +2 -1
  27. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_remote_response.py +2 -1
  28. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pyproject.toml +1 -1
  29. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/setup.py +2 -2
  30. pulp_python_client-3.22.0/test/test_content_provenance_api.py +67 -0
  31. pulp_python_client-3.22.0/test/test_filetype_enum.py +34 -0
  32. pulp_python_client-3.22.0/test/test_metadata_version_enum.py +34 -0
  33. pulp_python_client-3.22.0/test/test_paginatedpython_package_provenance_response_list.py +83 -0
  34. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_paginatedpython_python_distribution_response_list.py +2 -0
  35. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_paginatedpython_python_package_content_response_list.py +6 -2
  36. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_paginatedpython_python_remote_response_list.py +4 -2
  37. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_patchedpython_python_distribution.py +1 -0
  38. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_patchedpython_python_remote.py +2 -1
  39. pulp_python_client-3.22.0/test/test_protocol_version_enum.py +34 -0
  40. pulp_python_client-3.22.0/test/test_pypi_provenance_api.py +39 -0
  41. pulp_python_client-3.22.0/test/test_python_package_provenance_response.py +63 -0
  42. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_distribution.py +1 -0
  43. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_distribution_response.py +1 -0
  44. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_package_content_response.py +3 -1
  45. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_remote.py +2 -1
  46. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_remote_response.py +2 -1
  47. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_repositories_python_versions_api.py +7 -0
  48. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulp_python_client.egg-info/dependency_links.txt +0 -0
  49. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulp_python_client.egg-info/requires.txt +0 -0
  50. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulp_python_client.egg-info/top_level.txt +0 -0
  51. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/__init__.py +0 -0
  52. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/__init__.py +0 -0
  53. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/distributions_pypi_api.py +0 -0
  54. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/publications_pypi_api.py +0 -0
  55. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/pypi_api.py +0 -0
  56. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/pypi_metadata_api.py +0 -0
  57. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/remotes_python_api.py +0 -0
  58. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api/repositories_python_api.py +0 -0
  59. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/api_response.py +0 -0
  60. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/exceptions.py +0 -0
  61. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/async_operation_response.py +0 -0
  62. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/content_summary_response.py +0 -0
  63. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +0 -0
  64. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/my_permissions_response.py +0 -0
  65. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/nested_role.py +0 -0
  66. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/nested_role_response.py +0 -0
  67. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/object_roles_response.py +0 -0
  68. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/package_metadata_response.py +0 -0
  69. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/package_types_enum.py +0 -0
  70. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -0
  71. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +0 -0
  72. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +0 -0
  73. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +0 -0
  74. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +0 -0
  75. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +0 -0
  76. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +0 -0
  77. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +0 -0
  78. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/policy_enum.py +0 -0
  79. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_publication.py +0 -0
  80. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_publication_response.py +0 -0
  81. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py +0 -0
  82. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_repository.py +0 -0
  83. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/python_python_repository_response.py +0 -0
  84. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/repair.py +0 -0
  85. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/repository_add_remove_content.py +0 -0
  86. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/repository_sync_url.py +0 -0
  87. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/repository_version_response.py +0 -0
  88. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/set_label.py +0 -0
  89. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/set_label_response.py +0 -0
  90. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/summary_response.py +0 -0
  91. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/unset_label.py +0 -0
  92. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/models/unset_label_response.py +0 -0
  93. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/py.typed +0 -0
  94. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/pulpcore/client/pulp_python/rest.py +0 -0
  95. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/setup.cfg +0 -0
  96. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_async_operation_response.py +0 -0
  97. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_content_packages_api.py +0 -0
  98. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_content_summary_response.py +0 -0
  99. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_distributions_pypi_api.py +0 -0
  100. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_exclude_platforms_enum.py +0 -0
  101. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_my_permissions_response.py +0 -0
  102. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_nested_role.py +0 -0
  103. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_nested_role_response.py +0 -0
  104. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_object_roles_response.py +0 -0
  105. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_package_metadata_response.py +0 -0
  106. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_package_types_enum.py +0 -0
  107. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_package_upload_task_response.py +0 -0
  108. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_paginated_repository_version_response_list.py +0 -0
  109. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_paginatedpython_python_publication_response_list.py +0 -0
  110. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_paginatedpython_python_repository_response_list.py +0 -0
  111. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_patchedpython_python_repository.py +0 -0
  112. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_policy_enum.py +0 -0
  113. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_publications_pypi_api.py +0 -0
  114. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_pypi_api.py +0 -0
  115. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_pypi_legacy_api.py +0 -0
  116. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_pypi_metadata_api.py +0 -0
  117. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_pypi_simple_api.py +0 -0
  118. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_publication.py +0 -0
  119. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_publication_response.py +0 -0
  120. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_remote_response_hidden_fields_inner.py +0 -0
  121. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_repository.py +0 -0
  122. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_python_python_repository_response.py +0 -0
  123. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_remotes_python_api.py +0 -0
  124. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_repair.py +0 -0
  125. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_repositories_python_api.py +0 -0
  126. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_repository_add_remove_content.py +0 -0
  127. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_repository_sync_url.py +0 -0
  128. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_repository_version_response.py +0 -0
  129. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_set_label.py +0 -0
  130. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_set_label_response.py +0 -0
  131. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_summary_response.py +0 -0
  132. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_unset_label.py +0 -0
  133. {pulp_python_client-3.20.1 → pulp_python_client-3.22.0}/test/test_unset_label_response.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulp_python-client
3
- Version: 3.20.1
3
+ Version: 3.22.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.20.1
27
+ - Package version: 3.22.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)
@@ -139,10 +139,11 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
139
139
  license_file = None # object | (optional)
140
140
  sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
141
141
  metadata_sha256 = 'metadata_sha256_example' # str | The SHA256 digest of the package's METADATA file. (optional)
142
+ attestations = None # object | (optional)
142
143
 
143
144
  try:
144
145
  # Create a python package content
145
- api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, author=author, author_email=author_email, description=description, home_page=home_page, keywords=keywords, license=license, platform=platform, summary=summary, classifiers=classifiers, download_url=download_url, supported_platform=supported_platform, maintainer=maintainer, maintainer_email=maintainer_email, obsoletes_dist=obsoletes_dist, project_url=project_url, project_urls=project_urls, provides_dist=provides_dist, requires_external=requires_external, requires_dist=requires_dist, requires_python=requires_python, description_content_type=description_content_type, provides_extras=provides_extras, dynamic=dynamic, license_expression=license_expression, license_file=license_file, sha256=sha256, metadata_sha256=metadata_sha256)
146
+ api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, author=author, author_email=author_email, description=description, home_page=home_page, keywords=keywords, license=license, platform=platform, summary=summary, classifiers=classifiers, download_url=download_url, supported_platform=supported_platform, maintainer=maintainer, maintainer_email=maintainer_email, obsoletes_dist=obsoletes_dist, project_url=project_url, project_urls=project_urls, provides_dist=provides_dist, requires_external=requires_external, requires_dist=requires_dist, requires_python=requires_python, description_content_type=description_content_type, provides_extras=provides_extras, dynamic=dynamic, license_expression=license_expression, license_file=license_file, sha256=sha256, metadata_sha256=metadata_sha256, attestations=attestations)
146
147
  print("The response of ContentPackagesApi->create:\n")
147
148
  pprint(api_response)
148
149
  except ApiException as e:
@@ -162,6 +163,11 @@ Class | Method | HTTP request | Description
162
163
  *ContentPackagesApi* | [**set_label**](docs/ContentPackagesApi.md#set_label) | **POST** {python_python_package_content_href}set_label/ | Set a label
163
164
  *ContentPackagesApi* | [**unset_label**](docs/ContentPackagesApi.md#unset_label) | **POST** {python_python_package_content_href}unset_label/ | Unset a label
164
165
  *ContentPackagesApi* | [**upload**](docs/ContentPackagesApi.md#upload) | **POST** /pulp/api/v3/content/python/packages/upload/ | Synchronous Python package upload
166
+ *ContentProvenanceApi* | [**create**](docs/ContentProvenanceApi.md#create) | **POST** /pulp/api/v3/content/python/provenance/ | Create a package provenance
167
+ *ContentProvenanceApi* | [**list**](docs/ContentProvenanceApi.md#list) | **GET** /pulp/api/v3/content/python/provenance/ | List package provenances
168
+ *ContentProvenanceApi* | [**read**](docs/ContentProvenanceApi.md#read) | **GET** {python_package_provenance_href} | Inspect a package provenance
169
+ *ContentProvenanceApi* | [**set_label**](docs/ContentProvenanceApi.md#set_label) | **POST** {python_package_provenance_href}set_label/ | Set a label
170
+ *ContentProvenanceApi* | [**unset_label**](docs/ContentProvenanceApi.md#unset_label) | **POST** {python_package_provenance_href}unset_label/ | Unset a label
165
171
  *DistributionsPypiApi* | [**add_role**](docs/DistributionsPypiApi.md#add_role) | **POST** {python_python_distribution_href}add_role/ | Add a role
166
172
  *DistributionsPypiApi* | [**create**](docs/DistributionsPypiApi.md#create) | **POST** /pulp/api/v3/distributions/python/pypi/ | Create a python distribution
167
173
  *DistributionsPypiApi* | [**delete**](docs/DistributionsPypiApi.md#delete) | **DELETE** {python_python_distribution_href} | Delete a python distribution
@@ -185,6 +191,7 @@ Class | Method | HTTP request | Description
185
191
  *PypiApi* | [**read**](docs/PypiApi.md#read) | **GET** /pypi/{path}/ | Get index summary
186
192
  *PypiLegacyApi* | [**create**](docs/PypiLegacyApi.md#create) | **POST** /pypi/{path}/legacy/ | Upload a package
187
193
  *PypiMetadataApi* | [**read**](docs/PypiMetadataApi.md#read) | **GET** /pypi/{path}/pypi/{meta}/ | Get package metadata
194
+ *PypiProvenanceApi* | [**read**](docs/PypiProvenanceApi.md#read) | **GET** /pypi/{path}/integrity/{package}/{version}/{filename}/provenance/ | Get package provenance
188
195
  *PypiSimpleApi* | [**create**](docs/PypiSimpleApi.md#create) | **POST** /pypi/{path}/simple/ | Upload a package
189
196
  *PypiSimpleApi* | [**pypi_simple_package_read**](docs/PypiSimpleApi.md#pypi_simple_package_read) | **GET** /pypi/{path}/simple/{package}/ | Get package simple page
190
197
  *PypiSimpleApi* | [**read**](docs/PypiSimpleApi.md#read) | **GET** /pypi/{path}/simple/ | Get index simple page
@@ -220,6 +227,7 @@ Class | Method | HTTP request | Description
220
227
  *RepositoriesPythonVersionsApi* | [**list**](docs/RepositoriesPythonVersionsApi.md#list) | **GET** {python_python_repository_href}versions/ | List repository versions
221
228
  *RepositoriesPythonVersionsApi* | [**read**](docs/RepositoriesPythonVersionsApi.md#read) | **GET** {python_python_repository_version_href} | Inspect a repository version
222
229
  *RepositoriesPythonVersionsApi* | [**repair**](docs/RepositoriesPythonVersionsApi.md#repair) | **POST** {python_python_repository_version_href}repair/ |
230
+ *RepositoriesPythonVersionsApi* | [**scan**](docs/RepositoriesPythonVersionsApi.md#scan) | **POST** {python_python_repository_version_href}scan/ | Generate vulnerability report
223
231
 
224
232
 
225
233
  ## Documentation For Models
@@ -227,6 +235,8 @@ Class | Method | HTTP request | Description
227
235
  - [AsyncOperationResponse](docs/AsyncOperationResponse.md)
228
236
  - [ContentSummaryResponse](docs/ContentSummaryResponse.md)
229
237
  - [ExcludePlatformsEnum](docs/ExcludePlatformsEnum.md)
238
+ - [FiletypeEnum](docs/FiletypeEnum.md)
239
+ - [MetadataVersionEnum](docs/MetadataVersionEnum.md)
230
240
  - [MyPermissionsResponse](docs/MyPermissionsResponse.md)
231
241
  - [NestedRole](docs/NestedRole.md)
232
242
  - [NestedRoleResponse](docs/NestedRoleResponse.md)
@@ -235,6 +245,7 @@ Class | Method | HTTP request | Description
235
245
  - [PackageTypesEnum](docs/PackageTypesEnum.md)
236
246
  - [PackageUploadTaskResponse](docs/PackageUploadTaskResponse.md)
237
247
  - [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
248
+ - [PaginatedpythonPackageProvenanceResponseList](docs/PaginatedpythonPackageProvenanceResponseList.md)
238
249
  - [PaginatedpythonPythonDistributionResponseList](docs/PaginatedpythonPythonDistributionResponseList.md)
239
250
  - [PaginatedpythonPythonPackageContentResponseList](docs/PaginatedpythonPythonPackageContentResponseList.md)
240
251
  - [PaginatedpythonPythonPublicationResponseList](docs/PaginatedpythonPythonPublicationResponseList.md)
@@ -244,6 +255,8 @@ Class | Method | HTTP request | Description
244
255
  - [PatchedpythonPythonRemote](docs/PatchedpythonPythonRemote.md)
245
256
  - [PatchedpythonPythonRepository](docs/PatchedpythonPythonRepository.md)
246
257
  - [PolicyEnum](docs/PolicyEnum.md)
258
+ - [ProtocolVersionEnum](docs/ProtocolVersionEnum.md)
259
+ - [PythonPackageProvenanceResponse](docs/PythonPackageProvenanceResponse.md)
247
260
  - [PythonPythonDistribution](docs/PythonPythonDistribution.md)
248
261
  - [PythonPythonDistributionResponse](docs/PythonPythonDistributionResponse.md)
249
262
  - [PythonPythonPackageContentResponse](docs/PythonPythonPackageContentResponse.md)
@@ -4,7 +4,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
6
  - API version: v3
7
- - Package version: 3.20.1
7
+ - Package version: 3.22.0
8
8
  - Generator version: 7.14.0
9
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
10
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -119,10 +119,11 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
119
119
  license_file = None # object | (optional)
120
120
  sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
121
121
  metadata_sha256 = 'metadata_sha256_example' # str | The SHA256 digest of the package's METADATA file. (optional)
122
+ attestations = None # object | (optional)
122
123
 
123
124
  try:
124
125
  # Create a python package content
125
- api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, author=author, author_email=author_email, description=description, home_page=home_page, keywords=keywords, license=license, platform=platform, summary=summary, classifiers=classifiers, download_url=download_url, supported_platform=supported_platform, maintainer=maintainer, maintainer_email=maintainer_email, obsoletes_dist=obsoletes_dist, project_url=project_url, project_urls=project_urls, provides_dist=provides_dist, requires_external=requires_external, requires_dist=requires_dist, requires_python=requires_python, description_content_type=description_content_type, provides_extras=provides_extras, dynamic=dynamic, license_expression=license_expression, license_file=license_file, sha256=sha256, metadata_sha256=metadata_sha256)
126
+ api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, author=author, author_email=author_email, description=description, home_page=home_page, keywords=keywords, license=license, platform=platform, summary=summary, classifiers=classifiers, download_url=download_url, supported_platform=supported_platform, maintainer=maintainer, maintainer_email=maintainer_email, obsoletes_dist=obsoletes_dist, project_url=project_url, project_urls=project_urls, provides_dist=provides_dist, requires_external=requires_external, requires_dist=requires_dist, requires_python=requires_python, description_content_type=description_content_type, provides_extras=provides_extras, dynamic=dynamic, license_expression=license_expression, license_file=license_file, sha256=sha256, metadata_sha256=metadata_sha256, attestations=attestations)
126
127
  print("The response of ContentPackagesApi->create:\n")
127
128
  pprint(api_response)
128
129
  except ApiException as e:
@@ -142,6 +143,11 @@ Class | Method | HTTP request | Description
142
143
  *ContentPackagesApi* | [**set_label**](docs/ContentPackagesApi.md#set_label) | **POST** {python_python_package_content_href}set_label/ | Set a label
143
144
  *ContentPackagesApi* | [**unset_label**](docs/ContentPackagesApi.md#unset_label) | **POST** {python_python_package_content_href}unset_label/ | Unset a label
144
145
  *ContentPackagesApi* | [**upload**](docs/ContentPackagesApi.md#upload) | **POST** /pulp/api/v3/content/python/packages/upload/ | Synchronous Python package upload
146
+ *ContentProvenanceApi* | [**create**](docs/ContentProvenanceApi.md#create) | **POST** /pulp/api/v3/content/python/provenance/ | Create a package provenance
147
+ *ContentProvenanceApi* | [**list**](docs/ContentProvenanceApi.md#list) | **GET** /pulp/api/v3/content/python/provenance/ | List package provenances
148
+ *ContentProvenanceApi* | [**read**](docs/ContentProvenanceApi.md#read) | **GET** {python_package_provenance_href} | Inspect a package provenance
149
+ *ContentProvenanceApi* | [**set_label**](docs/ContentProvenanceApi.md#set_label) | **POST** {python_package_provenance_href}set_label/ | Set a label
150
+ *ContentProvenanceApi* | [**unset_label**](docs/ContentProvenanceApi.md#unset_label) | **POST** {python_package_provenance_href}unset_label/ | Unset a label
145
151
  *DistributionsPypiApi* | [**add_role**](docs/DistributionsPypiApi.md#add_role) | **POST** {python_python_distribution_href}add_role/ | Add a role
146
152
  *DistributionsPypiApi* | [**create**](docs/DistributionsPypiApi.md#create) | **POST** /pulp/api/v3/distributions/python/pypi/ | Create a python distribution
147
153
  *DistributionsPypiApi* | [**delete**](docs/DistributionsPypiApi.md#delete) | **DELETE** {python_python_distribution_href} | Delete a python distribution
@@ -165,6 +171,7 @@ Class | Method | HTTP request | Description
165
171
  *PypiApi* | [**read**](docs/PypiApi.md#read) | **GET** /pypi/{path}/ | Get index summary
166
172
  *PypiLegacyApi* | [**create**](docs/PypiLegacyApi.md#create) | **POST** /pypi/{path}/legacy/ | Upload a package
167
173
  *PypiMetadataApi* | [**read**](docs/PypiMetadataApi.md#read) | **GET** /pypi/{path}/pypi/{meta}/ | Get package metadata
174
+ *PypiProvenanceApi* | [**read**](docs/PypiProvenanceApi.md#read) | **GET** /pypi/{path}/integrity/{package}/{version}/{filename}/provenance/ | Get package provenance
168
175
  *PypiSimpleApi* | [**create**](docs/PypiSimpleApi.md#create) | **POST** /pypi/{path}/simple/ | Upload a package
169
176
  *PypiSimpleApi* | [**pypi_simple_package_read**](docs/PypiSimpleApi.md#pypi_simple_package_read) | **GET** /pypi/{path}/simple/{package}/ | Get package simple page
170
177
  *PypiSimpleApi* | [**read**](docs/PypiSimpleApi.md#read) | **GET** /pypi/{path}/simple/ | Get index simple page
@@ -200,6 +207,7 @@ Class | Method | HTTP request | Description
200
207
  *RepositoriesPythonVersionsApi* | [**list**](docs/RepositoriesPythonVersionsApi.md#list) | **GET** {python_python_repository_href}versions/ | List repository versions
201
208
  *RepositoriesPythonVersionsApi* | [**read**](docs/RepositoriesPythonVersionsApi.md#read) | **GET** {python_python_repository_version_href} | Inspect a repository version
202
209
  *RepositoriesPythonVersionsApi* | [**repair**](docs/RepositoriesPythonVersionsApi.md#repair) | **POST** {python_python_repository_version_href}repair/ |
210
+ *RepositoriesPythonVersionsApi* | [**scan**](docs/RepositoriesPythonVersionsApi.md#scan) | **POST** {python_python_repository_version_href}scan/ | Generate vulnerability report
203
211
 
204
212
 
205
213
  ## Documentation For Models
@@ -207,6 +215,8 @@ Class | Method | HTTP request | Description
207
215
  - [AsyncOperationResponse](docs/AsyncOperationResponse.md)
208
216
  - [ContentSummaryResponse](docs/ContentSummaryResponse.md)
209
217
  - [ExcludePlatformsEnum](docs/ExcludePlatformsEnum.md)
218
+ - [FiletypeEnum](docs/FiletypeEnum.md)
219
+ - [MetadataVersionEnum](docs/MetadataVersionEnum.md)
210
220
  - [MyPermissionsResponse](docs/MyPermissionsResponse.md)
211
221
  - [NestedRole](docs/NestedRole.md)
212
222
  - [NestedRoleResponse](docs/NestedRoleResponse.md)
@@ -215,6 +225,7 @@ Class | Method | HTTP request | Description
215
225
  - [PackageTypesEnum](docs/PackageTypesEnum.md)
216
226
  - [PackageUploadTaskResponse](docs/PackageUploadTaskResponse.md)
217
227
  - [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
228
+ - [PaginatedpythonPackageProvenanceResponseList](docs/PaginatedpythonPackageProvenanceResponseList.md)
218
229
  - [PaginatedpythonPythonDistributionResponseList](docs/PaginatedpythonPythonDistributionResponseList.md)
219
230
  - [PaginatedpythonPythonPackageContentResponseList](docs/PaginatedpythonPythonPackageContentResponseList.md)
220
231
  - [PaginatedpythonPythonPublicationResponseList](docs/PaginatedpythonPythonPublicationResponseList.md)
@@ -224,6 +235,8 @@ Class | Method | HTTP request | Description
224
235
  - [PatchedpythonPythonRemote](docs/PatchedpythonPythonRemote.md)
225
236
  - [PatchedpythonPythonRepository](docs/PatchedpythonPythonRepository.md)
226
237
  - [PolicyEnum](docs/PolicyEnum.md)
238
+ - [ProtocolVersionEnum](docs/ProtocolVersionEnum.md)
239
+ - [PythonPackageProvenanceResponse](docs/PythonPackageProvenanceResponse.md)
227
240
  - [PythonPythonDistribution](docs/PythonPythonDistribution.md)
228
241
  - [PythonPythonDistributionResponse](docs/PythonPythonDistributionResponse.md)
229
242
  - [PythonPythonPackageContentResponse](docs/PythonPythonPackageContentResponse.md)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulp_python-client
3
- Version: 3.20.1
3
+ Version: 3.22.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.20.1
27
+ - Package version: 3.22.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)
@@ -139,10 +139,11 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
139
139
  license_file = None # object | (optional)
140
140
  sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
141
141
  metadata_sha256 = 'metadata_sha256_example' # str | The SHA256 digest of the package's METADATA file. (optional)
142
+ attestations = None # object | (optional)
142
143
 
143
144
  try:
144
145
  # Create a python package content
145
- api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, author=author, author_email=author_email, description=description, home_page=home_page, keywords=keywords, license=license, platform=platform, summary=summary, classifiers=classifiers, download_url=download_url, supported_platform=supported_platform, maintainer=maintainer, maintainer_email=maintainer_email, obsoletes_dist=obsoletes_dist, project_url=project_url, project_urls=project_urls, provides_dist=provides_dist, requires_external=requires_external, requires_dist=requires_dist, requires_python=requires_python, description_content_type=description_content_type, provides_extras=provides_extras, dynamic=dynamic, license_expression=license_expression, license_file=license_file, sha256=sha256, metadata_sha256=metadata_sha256)
146
+ api_response = api_instance.create(relative_path, x_task_diagnostics=x_task_diagnostics, repository=repository, pulp_labels=pulp_labels, artifact=artifact, file=file, upload=upload, file_url=file_url, author=author, author_email=author_email, description=description, home_page=home_page, keywords=keywords, license=license, platform=platform, summary=summary, classifiers=classifiers, download_url=download_url, supported_platform=supported_platform, maintainer=maintainer, maintainer_email=maintainer_email, obsoletes_dist=obsoletes_dist, project_url=project_url, project_urls=project_urls, provides_dist=provides_dist, requires_external=requires_external, requires_dist=requires_dist, requires_python=requires_python, description_content_type=description_content_type, provides_extras=provides_extras, dynamic=dynamic, license_expression=license_expression, license_file=license_file, sha256=sha256, metadata_sha256=metadata_sha256, attestations=attestations)
146
147
  print("The response of ContentPackagesApi->create:\n")
147
148
  pprint(api_response)
148
149
  except ApiException as e:
@@ -162,6 +163,11 @@ Class | Method | HTTP request | Description
162
163
  *ContentPackagesApi* | [**set_label**](docs/ContentPackagesApi.md#set_label) | **POST** {python_python_package_content_href}set_label/ | Set a label
163
164
  *ContentPackagesApi* | [**unset_label**](docs/ContentPackagesApi.md#unset_label) | **POST** {python_python_package_content_href}unset_label/ | Unset a label
164
165
  *ContentPackagesApi* | [**upload**](docs/ContentPackagesApi.md#upload) | **POST** /pulp/api/v3/content/python/packages/upload/ | Synchronous Python package upload
166
+ *ContentProvenanceApi* | [**create**](docs/ContentProvenanceApi.md#create) | **POST** /pulp/api/v3/content/python/provenance/ | Create a package provenance
167
+ *ContentProvenanceApi* | [**list**](docs/ContentProvenanceApi.md#list) | **GET** /pulp/api/v3/content/python/provenance/ | List package provenances
168
+ *ContentProvenanceApi* | [**read**](docs/ContentProvenanceApi.md#read) | **GET** {python_package_provenance_href} | Inspect a package provenance
169
+ *ContentProvenanceApi* | [**set_label**](docs/ContentProvenanceApi.md#set_label) | **POST** {python_package_provenance_href}set_label/ | Set a label
170
+ *ContentProvenanceApi* | [**unset_label**](docs/ContentProvenanceApi.md#unset_label) | **POST** {python_package_provenance_href}unset_label/ | Unset a label
165
171
  *DistributionsPypiApi* | [**add_role**](docs/DistributionsPypiApi.md#add_role) | **POST** {python_python_distribution_href}add_role/ | Add a role
166
172
  *DistributionsPypiApi* | [**create**](docs/DistributionsPypiApi.md#create) | **POST** /pulp/api/v3/distributions/python/pypi/ | Create a python distribution
167
173
  *DistributionsPypiApi* | [**delete**](docs/DistributionsPypiApi.md#delete) | **DELETE** {python_python_distribution_href} | Delete a python distribution
@@ -185,6 +191,7 @@ Class | Method | HTTP request | Description
185
191
  *PypiApi* | [**read**](docs/PypiApi.md#read) | **GET** /pypi/{path}/ | Get index summary
186
192
  *PypiLegacyApi* | [**create**](docs/PypiLegacyApi.md#create) | **POST** /pypi/{path}/legacy/ | Upload a package
187
193
  *PypiMetadataApi* | [**read**](docs/PypiMetadataApi.md#read) | **GET** /pypi/{path}/pypi/{meta}/ | Get package metadata
194
+ *PypiProvenanceApi* | [**read**](docs/PypiProvenanceApi.md#read) | **GET** /pypi/{path}/integrity/{package}/{version}/{filename}/provenance/ | Get package provenance
188
195
  *PypiSimpleApi* | [**create**](docs/PypiSimpleApi.md#create) | **POST** /pypi/{path}/simple/ | Upload a package
189
196
  *PypiSimpleApi* | [**pypi_simple_package_read**](docs/PypiSimpleApi.md#pypi_simple_package_read) | **GET** /pypi/{path}/simple/{package}/ | Get package simple page
190
197
  *PypiSimpleApi* | [**read**](docs/PypiSimpleApi.md#read) | **GET** /pypi/{path}/simple/ | Get index simple page
@@ -220,6 +227,7 @@ Class | Method | HTTP request | Description
220
227
  *RepositoriesPythonVersionsApi* | [**list**](docs/RepositoriesPythonVersionsApi.md#list) | **GET** {python_python_repository_href}versions/ | List repository versions
221
228
  *RepositoriesPythonVersionsApi* | [**read**](docs/RepositoriesPythonVersionsApi.md#read) | **GET** {python_python_repository_version_href} | Inspect a repository version
222
229
  *RepositoriesPythonVersionsApi* | [**repair**](docs/RepositoriesPythonVersionsApi.md#repair) | **POST** {python_python_repository_version_href}repair/ |
230
+ *RepositoriesPythonVersionsApi* | [**scan**](docs/RepositoriesPythonVersionsApi.md#scan) | **POST** {python_python_repository_version_href}scan/ | Generate vulnerability report
223
231
 
224
232
 
225
233
  ## Documentation For Models
@@ -227,6 +235,8 @@ Class | Method | HTTP request | Description
227
235
  - [AsyncOperationResponse](docs/AsyncOperationResponse.md)
228
236
  - [ContentSummaryResponse](docs/ContentSummaryResponse.md)
229
237
  - [ExcludePlatformsEnum](docs/ExcludePlatformsEnum.md)
238
+ - [FiletypeEnum](docs/FiletypeEnum.md)
239
+ - [MetadataVersionEnum](docs/MetadataVersionEnum.md)
230
240
  - [MyPermissionsResponse](docs/MyPermissionsResponse.md)
231
241
  - [NestedRole](docs/NestedRole.md)
232
242
  - [NestedRoleResponse](docs/NestedRoleResponse.md)
@@ -235,6 +245,7 @@ Class | Method | HTTP request | Description
235
245
  - [PackageTypesEnum](docs/PackageTypesEnum.md)
236
246
  - [PackageUploadTaskResponse](docs/PackageUploadTaskResponse.md)
237
247
  - [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
248
+ - [PaginatedpythonPackageProvenanceResponseList](docs/PaginatedpythonPackageProvenanceResponseList.md)
238
249
  - [PaginatedpythonPythonDistributionResponseList](docs/PaginatedpythonPythonDistributionResponseList.md)
239
250
  - [PaginatedpythonPythonPackageContentResponseList](docs/PaginatedpythonPythonPackageContentResponseList.md)
240
251
  - [PaginatedpythonPythonPublicationResponseList](docs/PaginatedpythonPythonPublicationResponseList.md)
@@ -244,6 +255,8 @@ Class | Method | HTTP request | Description
244
255
  - [PatchedpythonPythonRemote](docs/PatchedpythonPythonRemote.md)
245
256
  - [PatchedpythonPythonRepository](docs/PatchedpythonPythonRepository.md)
246
257
  - [PolicyEnum](docs/PolicyEnum.md)
258
+ - [ProtocolVersionEnum](docs/ProtocolVersionEnum.md)
259
+ - [PythonPackageProvenanceResponse](docs/PythonPackageProvenanceResponse.md)
247
260
  - [PythonPythonDistribution](docs/PythonPythonDistribution.md)
248
261
  - [PythonPythonDistributionResponse](docs/PythonPythonDistributionResponse.md)
249
262
  - [PythonPythonPackageContentResponse](docs/PythonPythonPackageContentResponse.md)
@@ -18,11 +18,13 @@ pulpcore/client/pulp_python/py.typed
18
18
  pulpcore/client/pulp_python/rest.py
19
19
  pulpcore/client/pulp_python/api/__init__.py
20
20
  pulpcore/client/pulp_python/api/content_packages_api.py
21
+ pulpcore/client/pulp_python/api/content_provenance_api.py
21
22
  pulpcore/client/pulp_python/api/distributions_pypi_api.py
22
23
  pulpcore/client/pulp_python/api/publications_pypi_api.py
23
24
  pulpcore/client/pulp_python/api/pypi_api.py
24
25
  pulpcore/client/pulp_python/api/pypi_legacy_api.py
25
26
  pulpcore/client/pulp_python/api/pypi_metadata_api.py
27
+ pulpcore/client/pulp_python/api/pypi_provenance_api.py
26
28
  pulpcore/client/pulp_python/api/pypi_simple_api.py
27
29
  pulpcore/client/pulp_python/api/remotes_python_api.py
28
30
  pulpcore/client/pulp_python/api/repositories_python_api.py
@@ -31,6 +33,8 @@ pulpcore/client/pulp_python/models/__init__.py
31
33
  pulpcore/client/pulp_python/models/async_operation_response.py
32
34
  pulpcore/client/pulp_python/models/content_summary_response.py
33
35
  pulpcore/client/pulp_python/models/exclude_platforms_enum.py
36
+ pulpcore/client/pulp_python/models/filetype_enum.py
37
+ pulpcore/client/pulp_python/models/metadata_version_enum.py
34
38
  pulpcore/client/pulp_python/models/my_permissions_response.py
35
39
  pulpcore/client/pulp_python/models/nested_role.py
36
40
  pulpcore/client/pulp_python/models/nested_role_response.py
@@ -39,6 +43,7 @@ pulpcore/client/pulp_python/models/package_metadata_response.py
39
43
  pulpcore/client/pulp_python/models/package_types_enum.py
40
44
  pulpcore/client/pulp_python/models/package_upload_task_response.py
41
45
  pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py
46
+ pulpcore/client/pulp_python/models/paginatedpython_package_provenance_response_list.py
42
47
  pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py
43
48
  pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py
44
49
  pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py
@@ -48,6 +53,8 @@ pulpcore/client/pulp_python/models/patchedpython_python_distribution.py
48
53
  pulpcore/client/pulp_python/models/patchedpython_python_remote.py
49
54
  pulpcore/client/pulp_python/models/patchedpython_python_repository.py
50
55
  pulpcore/client/pulp_python/models/policy_enum.py
56
+ pulpcore/client/pulp_python/models/protocol_version_enum.py
57
+ pulpcore/client/pulp_python/models/python_package_provenance_response.py
51
58
  pulpcore/client/pulp_python/models/python_python_distribution.py
52
59
  pulpcore/client/pulp_python/models/python_python_distribution_response.py
53
60
  pulpcore/client/pulp_python/models/python_python_package_content_response.py
@@ -69,9 +76,12 @@ pulpcore/client/pulp_python/models/unset_label.py
69
76
  pulpcore/client/pulp_python/models/unset_label_response.py
70
77
  test/test_async_operation_response.py
71
78
  test/test_content_packages_api.py
79
+ test/test_content_provenance_api.py
72
80
  test/test_content_summary_response.py
73
81
  test/test_distributions_pypi_api.py
74
82
  test/test_exclude_platforms_enum.py
83
+ test/test_filetype_enum.py
84
+ test/test_metadata_version_enum.py
75
85
  test/test_my_permissions_response.py
76
86
  test/test_nested_role.py
77
87
  test/test_nested_role_response.py
@@ -80,6 +90,7 @@ test/test_package_metadata_response.py
80
90
  test/test_package_types_enum.py
81
91
  test/test_package_upload_task_response.py
82
92
  test/test_paginated_repository_version_response_list.py
93
+ test/test_paginatedpython_package_provenance_response_list.py
83
94
  test/test_paginatedpython_python_distribution_response_list.py
84
95
  test/test_paginatedpython_python_package_content_response_list.py
85
96
  test/test_paginatedpython_python_publication_response_list.py
@@ -89,11 +100,14 @@ test/test_patchedpython_python_distribution.py
89
100
  test/test_patchedpython_python_remote.py
90
101
  test/test_patchedpython_python_repository.py
91
102
  test/test_policy_enum.py
103
+ test/test_protocol_version_enum.py
92
104
  test/test_publications_pypi_api.py
93
105
  test/test_pypi_api.py
94
106
  test/test_pypi_legacy_api.py
95
107
  test/test_pypi_metadata_api.py
108
+ test/test_pypi_provenance_api.py
96
109
  test/test_pypi_simple_api.py
110
+ test/test_python_package_provenance_response.py
97
111
  test/test_python_python_distribution.py
98
112
  test/test_python_python_distribution_response.py
99
113
  test/test_python_python_package_content_response.py
@@ -15,16 +15,18 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "3.20.1"
18
+ __version__ = "3.22.0"
19
19
 
20
20
  # Define package exports
21
21
  __all__ = [
22
22
  "ContentPackagesApi",
23
+ "ContentProvenanceApi",
23
24
  "DistributionsPypiApi",
24
25
  "PublicationsPypiApi",
25
26
  "PypiApi",
26
27
  "PypiLegacyApi",
27
28
  "PypiMetadataApi",
29
+ "PypiProvenanceApi",
28
30
  "PypiSimpleApi",
29
31
  "RemotesPythonApi",
30
32
  "RepositoriesPythonApi",
@@ -41,6 +43,8 @@ __all__ = [
41
43
  "AsyncOperationResponse",
42
44
  "ContentSummaryResponse",
43
45
  "ExcludePlatformsEnum",
46
+ "FiletypeEnum",
47
+ "MetadataVersionEnum",
44
48
  "MyPermissionsResponse",
45
49
  "NestedRole",
46
50
  "NestedRoleResponse",
@@ -49,6 +53,7 @@ __all__ = [
49
53
  "PackageTypesEnum",
50
54
  "PackageUploadTaskResponse",
51
55
  "PaginatedRepositoryVersionResponseList",
56
+ "PaginatedpythonPackageProvenanceResponseList",
52
57
  "PaginatedpythonPythonDistributionResponseList",
53
58
  "PaginatedpythonPythonPackageContentResponseList",
54
59
  "PaginatedpythonPythonPublicationResponseList",
@@ -58,6 +63,8 @@ __all__ = [
58
63
  "PatchedpythonPythonRemote",
59
64
  "PatchedpythonPythonRepository",
60
65
  "PolicyEnum",
66
+ "ProtocolVersionEnum",
67
+ "PythonPackageProvenanceResponse",
61
68
  "PythonPythonDistribution",
62
69
  "PythonPythonDistributionResponse",
63
70
  "PythonPythonPackageContentResponse",
@@ -81,11 +88,13 @@ __all__ = [
81
88
 
82
89
  # import apis into sdk package
83
90
  from pulpcore.client.pulp_python.api.content_packages_api import ContentPackagesApi as ContentPackagesApi
91
+ from pulpcore.client.pulp_python.api.content_provenance_api import ContentProvenanceApi as ContentProvenanceApi
84
92
  from pulpcore.client.pulp_python.api.distributions_pypi_api import DistributionsPypiApi as DistributionsPypiApi
85
93
  from pulpcore.client.pulp_python.api.publications_pypi_api import PublicationsPypiApi as PublicationsPypiApi
86
94
  from pulpcore.client.pulp_python.api.pypi_api import PypiApi as PypiApi
87
95
  from pulpcore.client.pulp_python.api.pypi_legacy_api import PypiLegacyApi as PypiLegacyApi
88
96
  from pulpcore.client.pulp_python.api.pypi_metadata_api import PypiMetadataApi as PypiMetadataApi
97
+ from pulpcore.client.pulp_python.api.pypi_provenance_api import PypiProvenanceApi as PypiProvenanceApi
89
98
  from pulpcore.client.pulp_python.api.pypi_simple_api import PypiSimpleApi as PypiSimpleApi
90
99
  from pulpcore.client.pulp_python.api.remotes_python_api import RemotesPythonApi as RemotesPythonApi
91
100
  from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi as RepositoriesPythonApi
@@ -106,6 +115,8 @@ from pulpcore.client.pulp_python.exceptions import ApiException as ApiException
106
115
  from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse as AsyncOperationResponse
107
116
  from pulpcore.client.pulp_python.models.content_summary_response import ContentSummaryResponse as ContentSummaryResponse
108
117
  from pulpcore.client.pulp_python.models.exclude_platforms_enum import ExcludePlatformsEnum as ExcludePlatformsEnum
118
+ from pulpcore.client.pulp_python.models.filetype_enum import FiletypeEnum as FiletypeEnum
119
+ from pulpcore.client.pulp_python.models.metadata_version_enum import MetadataVersionEnum as MetadataVersionEnum
109
120
  from pulpcore.client.pulp_python.models.my_permissions_response import MyPermissionsResponse as MyPermissionsResponse
110
121
  from pulpcore.client.pulp_python.models.nested_role import NestedRole as NestedRole
111
122
  from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleResponse as NestedRoleResponse
@@ -114,6 +125,7 @@ from pulpcore.client.pulp_python.models.package_metadata_response import Package
114
125
  from pulpcore.client.pulp_python.models.package_types_enum import PackageTypesEnum as PackageTypesEnum
115
126
  from pulpcore.client.pulp_python.models.package_upload_task_response import PackageUploadTaskResponse as PackageUploadTaskResponse
116
127
  from pulpcore.client.pulp_python.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList as PaginatedRepositoryVersionResponseList
128
+ from pulpcore.client.pulp_python.models.paginatedpython_package_provenance_response_list import PaginatedpythonPackageProvenanceResponseList as PaginatedpythonPackageProvenanceResponseList
117
129
  from pulpcore.client.pulp_python.models.paginatedpython_python_distribution_response_list import PaginatedpythonPythonDistributionResponseList as PaginatedpythonPythonDistributionResponseList
118
130
  from pulpcore.client.pulp_python.models.paginatedpython_python_package_content_response_list import PaginatedpythonPythonPackageContentResponseList as PaginatedpythonPythonPackageContentResponseList
119
131
  from pulpcore.client.pulp_python.models.paginatedpython_python_publication_response_list import PaginatedpythonPythonPublicationResponseList as PaginatedpythonPythonPublicationResponseList
@@ -123,6 +135,8 @@ from pulpcore.client.pulp_python.models.patchedpython_python_distribution import
123
135
  from pulpcore.client.pulp_python.models.patchedpython_python_remote import PatchedpythonPythonRemote as PatchedpythonPythonRemote
124
136
  from pulpcore.client.pulp_python.models.patchedpython_python_repository import PatchedpythonPythonRepository as PatchedpythonPythonRepository
125
137
  from pulpcore.client.pulp_python.models.policy_enum import PolicyEnum as PolicyEnum
138
+ from pulpcore.client.pulp_python.models.protocol_version_enum import ProtocolVersionEnum as ProtocolVersionEnum
139
+ from pulpcore.client.pulp_python.models.python_package_provenance_response import PythonPackageProvenanceResponse as PythonPackageProvenanceResponse
126
140
  from pulpcore.client.pulp_python.models.python_python_distribution import PythonPythonDistribution as PythonPythonDistribution
127
141
  from pulpcore.client.pulp_python.models.python_python_distribution_response import PythonPythonDistributionResponse as PythonPythonDistributionResponse
128
142
  from pulpcore.client.pulp_python.models.python_python_package_content_response import PythonPythonPackageContentResponse as PythonPythonPackageContentResponse
@@ -2,11 +2,13 @@
2
2
 
3
3
  # import apis into api package
4
4
  from pulpcore.client.pulp_python.api.content_packages_api import ContentPackagesApi
5
+ from pulpcore.client.pulp_python.api.content_provenance_api import ContentProvenanceApi
5
6
  from pulpcore.client.pulp_python.api.distributions_pypi_api import DistributionsPypiApi
6
7
  from pulpcore.client.pulp_python.api.publications_pypi_api import PublicationsPypiApi
7
8
  from pulpcore.client.pulp_python.api.pypi_api import PypiApi
8
9
  from pulpcore.client.pulp_python.api.pypi_legacy_api import PypiLegacyApi
9
10
  from pulpcore.client.pulp_python.api.pypi_metadata_api import PypiMetadataApi
11
+ from pulpcore.client.pulp_python.api.pypi_provenance_api import PypiProvenanceApi
10
12
  from pulpcore.client.pulp_python.api.pypi_simple_api import PypiSimpleApi
11
13
  from pulpcore.client.pulp_python.api.remotes_python_api import RemotesPythonApi
12
14
  from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi