pulp-python-client 3.12.5__tar.gz → 3.13.1__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 (212) hide show
  1. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/PKG-INFO +3 -3
  2. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/README.md +48 -48
  3. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulp_python_client.egg-info/PKG-INFO +3 -3
  4. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulp_python_client.egg-info/SOURCES.txt +5 -8
  5. pulp_python-client-3.13.1/pulp_python_client.egg-info/requires.txt +4 -0
  6. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/client/pulp_python/__init__.py +9 -10
  7. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/client/pulp_python/api/__init__.py +1 -2
  8. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/content_packages_api.py +1859 -0
  9. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/distributions_pypi_api.py +3935 -0
  10. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/publications_pypi_api.py +2698 -0
  11. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/pypi_api.py +338 -0
  12. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/pypi_legacy_api.py +361 -0
  13. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/pypi_metadata_api.py +353 -0
  14. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/pypi_simple_api.py +958 -0
  15. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/remotes_python_api.py +4286 -0
  16. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/repositories_python_api.py +4588 -0
  17. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +1602 -0
  18. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api_client.py +798 -0
  19. pulp_python-client-3.13.1/pulpcore/client/pulp_python/api_response.py +21 -0
  20. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/client/pulp_python/configuration.py +266 -73
  21. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/client/pulp_python/exceptions.py +99 -20
  22. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/client/pulp_python/models/__init__.py +5 -8
  23. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/async_operation_response.py +88 -0
  24. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/content_summary_response.py +92 -0
  25. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +40 -0
  26. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/my_permissions_response.py +88 -0
  27. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/nested_role.py +93 -0
  28. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/nested_role_response.py +92 -0
  29. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/object_roles_response.py +96 -0
  30. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/package_metadata_response.py +109 -0
  31. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/package_types_enum.py +44 -0
  32. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/package_upload_task_response.py +103 -0
  33. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +112 -0
  34. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +112 -0
  35. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +112 -0
  36. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +112 -0
  37. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +112 -0
  38. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +112 -0
  39. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +125 -0
  40. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +219 -0
  41. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +114 -0
  42. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/policy_enum.py +39 -0
  43. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_distribution.py +125 -0
  44. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_distribution_response.py +149 -0
  45. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_package_content_response.py +199 -0
  46. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_publication.py +90 -0
  47. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_publication_response.py +111 -0
  48. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_remote.py +219 -0
  49. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_remote_response.py +213 -0
  50. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py +90 -0
  51. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_repository.py +114 -0
  52. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/python_python_repository_response.py +139 -0
  53. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/repair.py +88 -0
  54. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/repository_add_remove_content.py +93 -0
  55. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/repository_sync_url.py +90 -0
  56. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/repository_version_response.py +121 -0
  57. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/set_label.py +103 -0
  58. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/set_label_response.py +103 -0
  59. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/summary_response.py +92 -0
  60. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/unset_label.py +96 -0
  61. pulp_python-client-3.13.1/pulpcore/client/pulp_python/models/unset_label_response.py +100 -0
  62. pulp_python-client-3.13.1/pulpcore/client/pulp_python/py.typed +0 -0
  63. pulp_python-client-3.13.1/pulpcore/client/pulp_python/rest.py +258 -0
  64. pulp_python-client-3.13.1/pyproject.toml +89 -0
  65. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/setup.py +19 -9
  66. pulp_python-client-3.13.1/test/test_async_operation_response.py +53 -0
  67. pulp_python-client-3.13.1/test/test_content_packages_api.py +53 -0
  68. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_content_summary_response.py +17 -18
  69. pulp_python-client-3.13.1/test/test_distributions_pypi_api.py +116 -0
  70. pulp_python-client-3.13.1/test/test_exclude_platforms_enum.py +34 -0
  71. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_my_permissions_response.py +17 -18
  72. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_nested_role.py +17 -18
  73. pulp_python-client-3.13.1/test/test_nested_role_response.py +59 -0
  74. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_object_roles_response.py +21 -22
  75. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_package_metadata_response.py +18 -19
  76. pulp_python-client-3.13.1/test/test_package_types_enum.py +34 -0
  77. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_package_upload_task_response.py +19 -20
  78. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_paginated_repository_version_response_list.py +26 -27
  79. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_paginatedpython_python_distribution_response_list.py +40 -41
  80. pulp_python-client-3.13.1/test/test_paginatedpython_python_package_content_response_list.py +125 -0
  81. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_paginatedpython_python_publication_response_list.py +28 -29
  82. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_paginatedpython_python_remote_response_list.py +50 -51
  83. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_paginatedpython_python_repository_response_list.py +34 -35
  84. pulp_python-client-3.13.1/test/test_patchedpython_python_distribution.py +62 -0
  85. pulp_python-client-3.13.1/test/test_patchedpython_python_remote.py +90 -0
  86. pulp_python-client-3.13.1/test/test_patchedpython_python_repository.py +59 -0
  87. pulp_python-client-3.13.1/test/test_policy_enum.py +34 -0
  88. pulp_python-client-3.13.1/test/test_publications_pypi_api.py +88 -0
  89. pulp_python-client-3.13.1/test/test_pypi_api.py +39 -0
  90. pulp_python-client-3.13.1/test/test_pypi_legacy_api.py +39 -0
  91. pulp_python-client-3.13.1/test/test_pypi_metadata_api.py +39 -0
  92. pulp_python-client-3.13.1/test/test_pypi_simple_api.py +53 -0
  93. pulp_python-client-3.13.1/test/test_python_python_distribution.py +64 -0
  94. pulp_python-client-3.13.1/test/test_python_python_distribution_response.py +70 -0
  95. pulp_python-client-3.13.1/test/test_python_python_package_content_response.py +83 -0
  96. pulp_python-client-3.13.1/test/test_python_python_publication.py +53 -0
  97. pulp_python-client-3.13.1/test/test_python_python_publication_response.py +60 -0
  98. pulp_python-client-3.13.1/test/test_python_python_remote.py +92 -0
  99. pulp_python-client-3.13.1/test/test_python_python_remote_response.py +96 -0
  100. pulp_python-client-3.13.1/test/test_python_python_remote_response_hidden_fields_inner.py +55 -0
  101. pulp_python-client-3.13.1/test/test_python_python_repository.py +60 -0
  102. pulp_python-client-3.13.1/test/test_python_python_repository_response.py +66 -0
  103. pulp_python-client-3.13.1/test/test_remotes_python_api.py +123 -0
  104. pulp_python-client-3.13.1/test/test_repair.py +52 -0
  105. pulp_python-client-3.13.1/test/test_repositories_python_api.py +130 -0
  106. pulp_python-client-3.13.1/test/test_repositories_python_versions_api.py +59 -0
  107. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_repository_add_remove_content.py +18 -19
  108. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_repository_sync_url.py +16 -17
  109. pulp_python-client-3.13.1/test/test_repository_version_response.py +68 -0
  110. pulp_python-client-3.13.1/test/test_set_label.py +55 -0
  111. pulp_python-client-3.13.1/test/test_set_label_response.py +55 -0
  112. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/test/test_summary_response.py +17 -18
  113. pulp_python-client-3.13.1/test/test_unset_label.py +53 -0
  114. pulp_python-client-3.13.1/test/test_unset_label_response.py +54 -0
  115. pulp_python-client-3.12.5/pulp_python_client.egg-info/requires.txt +0 -4
  116. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/content_packages_api.py +0 -714
  117. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/distributions_pypi_api.py +0 -1654
  118. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/publications_pypi_api.py +0 -1106
  119. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_api.py +0 -164
  120. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_legacy_api.py +0 -188
  121. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_metadata_api.py +0 -173
  122. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_simple_api.py +0 -441
  123. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/remotes_python_api.py +0 -1783
  124. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/repositories_python_api.py +0 -1927
  125. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +0 -637
  126. pulp_python-client-3.12.5/pulpcore/client/pulp_python/api_client.py +0 -667
  127. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/async_operation_response.py +0 -124
  128. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/content_summary_response.py +0 -176
  129. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +0 -103
  130. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/my_permissions_response.py +0 -122
  131. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/nested_role.py +0 -177
  132. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/nested_role_response.py +0 -174
  133. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/object_roles_response.py +0 -122
  134. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_metadata_response.py +0 -209
  135. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_types_enum.py +0 -107
  136. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_upload.py +0 -190
  137. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -172
  138. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +0 -199
  139. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +0 -199
  140. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +0 -199
  141. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +0 -199
  142. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +0 -199
  143. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +0 -199
  144. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +0 -347
  145. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +0 -879
  146. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +0 -267
  147. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/policy_enum.py +0 -102
  148. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_bander_remote.py +0 -184
  149. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_distribution.py +0 -349
  150. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_distribution_response.py +0 -507
  151. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_package_content.py +0 -889
  152. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_package_content_response.py +0 -989
  153. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_publication.py +0 -149
  154. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_publication_response.py +0 -287
  155. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_remote.py +0 -881
  156. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_remote_response.py +0 -854
  157. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields.py +0 -149
  158. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_repository.py +0 -268
  159. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_repository_response.py +0 -424
  160. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repair.py +0 -123
  161. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repository_add_remove_content.py +0 -179
  162. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repository_sync_url.py +0 -151
  163. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repository_version_response.py +0 -313
  164. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/set_label.py +0 -153
  165. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/set_label_response.py +0 -150
  166. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/summary_response.py +0 -182
  167. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/unset_label.py +0 -128
  168. pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/unset_label_response.py +0 -151
  169. pulp_python-client-3.12.5/pulpcore/client/pulp_python/rest.py +0 -292
  170. pulp_python-client-3.12.5/test/test_async_operation_response.py +0 -54
  171. pulp_python-client-3.12.5/test/test_content_packages_api.py +0 -55
  172. pulp_python-client-3.12.5/test/test_distributions_pypi_api.py +0 -118
  173. pulp_python-client-3.12.5/test/test_exclude_platforms_enum.py +0 -52
  174. pulp_python-client-3.12.5/test/test_nested_role_response.py +0 -60
  175. pulp_python-client-3.12.5/test/test_package_types_enum.py +0 -52
  176. pulp_python-client-3.12.5/test/test_package_upload.py +0 -57
  177. pulp_python-client-3.12.5/test/test_paginatedpython_python_package_content_response_list.py +0 -126
  178. pulp_python-client-3.12.5/test/test_patchedpython_python_distribution.py +0 -63
  179. pulp_python-client-3.12.5/test/test_patchedpython_python_remote.py +0 -91
  180. pulp_python-client-3.12.5/test/test_patchedpython_python_repository.py +0 -60
  181. pulp_python-client-3.12.5/test/test_policy_enum.py +0 -52
  182. pulp_python-client-3.12.5/test/test_publications_pypi_api.py +0 -90
  183. pulp_python-client-3.12.5/test/test_pypi_api.py +0 -41
  184. pulp_python-client-3.12.5/test/test_pypi_legacy_api.py +0 -41
  185. pulp_python-client-3.12.5/test/test_pypi_metadata_api.py +0 -41
  186. pulp_python-client-3.12.5/test/test_pypi_simple_api.py +0 -55
  187. pulp_python-client-3.12.5/test/test_python_bander_remote.py +0 -57
  188. pulp_python-client-3.12.5/test/test_python_python_distribution.py +0 -65
  189. pulp_python-client-3.12.5/test/test_python_python_distribution_response.py +0 -71
  190. pulp_python-client-3.12.5/test/test_python_python_package_content.py +0 -81
  191. pulp_python-client-3.12.5/test/test_python_python_package_content_response.py +0 -84
  192. pulp_python-client-3.12.5/test/test_python_python_publication.py +0 -54
  193. pulp_python-client-3.12.5/test/test_python_python_publication_response.py +0 -61
  194. pulp_python-client-3.12.5/test/test_python_python_remote.py +0 -93
  195. pulp_python-client-3.12.5/test/test_python_python_remote_response.py +0 -97
  196. pulp_python-client-3.12.5/test/test_python_python_remote_response_hidden_fields.py +0 -56
  197. pulp_python-client-3.12.5/test/test_python_python_repository.py +0 -61
  198. pulp_python-client-3.12.5/test/test_python_python_repository_response.py +0 -67
  199. pulp_python-client-3.12.5/test/test_remotes_python_api.py +0 -125
  200. pulp_python-client-3.12.5/test/test_repair.py +0 -53
  201. pulp_python-client-3.12.5/test/test_repositories_python_api.py +0 -132
  202. pulp_python-client-3.12.5/test/test_repositories_python_versions_api.py +0 -61
  203. pulp_python-client-3.12.5/test/test_repository_version_response.py +0 -60
  204. pulp_python-client-3.12.5/test/test_set_label.py +0 -56
  205. pulp_python-client-3.12.5/test/test_set_label_response.py +0 -56
  206. pulp_python-client-3.12.5/test/test_unset_label.py +0 -54
  207. pulp_python-client-3.12.5/test/test_unset_label_response.py +0 -55
  208. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulp_python_client.egg-info/dependency_links.txt +0 -0
  209. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulp_python_client.egg-info/top_level.txt +0 -0
  210. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/__init__.py +0 -0
  211. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/pulpcore/client/__init__.py +0 -0
  212. {pulp_python-client-3.12.5 → pulp_python-client-3.13.1}/setup.cfg +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp_python-client
3
- Version: 3.12.5
3
+ Version: 3.13.1
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
7
7
  Author-email: pulp-list@redhat.com
8
8
  License: GPLv2+
9
9
  Keywords: pulp,pulpcore,client,Pulp 3 API
10
- Requires-Python: >=3.4
10
+ Description-Content-Type: text/markdown
11
11
 
12
- Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
12
+ Fetch, Upload, Organize, and Distribute Software Packages
13
13
 
@@ -4,13 +4,14 @@ 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.12.5
7
+ - Package version: 3.13.1
8
+ - Generator version: 7.10.0
8
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
10
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
10
11
 
11
12
  ## Requirements.
12
13
 
13
- Python 2.7 and 3.4+
14
+ Python 3.8+
14
15
 
15
16
  ## Installation & Usage
16
17
  ### pip install
@@ -41,14 +42,16 @@ Then import the package:
41
42
  import pulpcore.client.pulp_python
42
43
  ```
43
44
 
45
+ ### Tests
46
+
47
+ Execute `pytest` to run the tests.
48
+
44
49
  ## Getting Started
45
50
 
46
51
  Please follow the [installation procedure](#installation--usage) and then run the following:
47
52
 
48
53
  ```python
49
- from __future__ import print_function
50
54
 
51
- import time
52
55
  import pulpcore.client.pulp_python
53
56
  from pulpcore.client.pulp_python.rest import ApiException
54
57
  from pprint import pprint
@@ -66,19 +69,15 @@ configuration = pulpcore.client.pulp_python.Configuration(
66
69
 
67
70
  # Configure HTTP basic authorization: basicAuth
68
71
  configuration = pulpcore.client.pulp_python.Configuration(
69
- username = 'YOUR_USERNAME',
70
- password = 'YOUR_PASSWORD'
72
+ username = os.environ["USERNAME"],
73
+ password = os.environ["PASSWORD"]
71
74
  )
72
75
 
73
76
  # Configure API key authorization: cookieAuth
74
- configuration = pulpcore.client.pulp_python.Configuration(
75
- host = "http://localhost:24817",
76
- api_key = {
77
- 'sessionid': 'YOUR_API_KEY'
78
- }
79
- )
77
+ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
78
+
80
79
  # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
81
- # configuration.api_key_prefix['sessionid'] = 'Bearer'
80
+ # configuration.api_key_prefix['cookieAuth'] = 'Bearer'
82
81
 
83
82
 
84
83
  # Enter a context with an instance of the API client
@@ -86,41 +85,42 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
86
85
  # Create an instance of the API class
87
86
  api_instance = pulpcore.client.pulp_python.ContentPackagesApi(api_client)
88
87
  relative_path = 'relative_path_example' # str | Path where the artifact is located relative to distributions base_path
89
- repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
90
- artifact = 'artifact_example' # str | Artifact file representing the physical content (optional)
91
- file = '/path/to/file' # file | An uploaded file that may be turned into the content unit. (optional)
92
- upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
93
- file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
94
- sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
95
- summary = 'summary_example' # str | A one-line summary of what the package does. (optional)
96
- description = 'description_example' # str | A longer description of the package that can run to several paragraphs. (optional)
97
- description_content_type = 'description_content_type_example' # str | A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description. (optional)
98
- keywords = 'keywords_example' # str | Additional keywords to be used to assist searching for the package in a larger catalog. (optional)
99
- home_page = 'home_page_example' # str | The URL for the package's home page. (optional)
100
- download_url = 'download_url_example' # str | Legacy field denoting the URL from which this package can be downloaded. (optional)
101
- author = 'author_example' # str | Text containing the author's name. Contact information can also be added, separated with newlines. (optional)
102
- author_email = 'author_email_example' # str | The author's e-mail address. (optional)
103
- maintainer = 'maintainer_example' # str | The maintainer's name at a minimum; additional contact information may be provided. (optional)
104
- maintainer_email = 'maintainer_email_example' # str | The maintainer's e-mail address. (optional)
105
- license = 'license_example' # str | Text indicating the license covering the distribution (optional)
106
- requires_python = 'requires_python_example' # str | The Python version(s) that the distribution is guaranteed to be compatible with. (optional)
107
- project_url = 'project_url_example' # str | A browsable URL for the project and a label for it, separated by a comma. (optional)
108
- project_urls = None # object | A dictionary of labels and URLs for the project. (optional)
109
- platform = 'platform_example' # str | A comma-separated list of platform specifications, summarizing the operating systems supported by the package. (optional)
110
- supported_platform = 'supported_platform_example' # str | Field to specify the OS and CPU for which the binary package was compiled. (optional)
111
- requires_dist = None # object | A JSON list containing names of some other distutils project required by this distribution. (optional)
112
- provides_dist = None # object | A JSON list containing names of a Distutils project which is contained within this distribution. (optional)
113
- obsoletes_dist = None # object | 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. (optional)
114
- requires_external = None # object | A JSON list containing some dependency in the system that the distribution is to be used. (optional)
115
- classifiers = None # object | A JSON list containing classification values for a Python package. (optional)
88
+ repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
89
+ artifact = 'artifact_example' # str | Artifact file representing the physical content (optional)
90
+ file = None # bytearray | An uploaded file that may be turned into the content unit. (optional)
91
+ upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
92
+ file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
93
+ sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
94
+ summary = 'summary_example' # str | A one-line summary of what the package does. (optional)
95
+ description = 'description_example' # str | A longer description of the package that can run to several paragraphs. (optional)
96
+ description_content_type = 'description_content_type_example' # str | A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description. (optional)
97
+ keywords = 'keywords_example' # str | Additional keywords to be used to assist searching for the package in a larger catalog. (optional)
98
+ home_page = 'home_page_example' # str | The URL for the package's home page. (optional)
99
+ download_url = 'download_url_example' # str | Legacy field denoting the URL from which this package can be downloaded. (optional)
100
+ author = 'author_example' # str | Text containing the author's name. Contact information can also be added, separated with newlines. (optional)
101
+ author_email = 'author_email_example' # str | The author's e-mail address. (optional)
102
+ maintainer = 'maintainer_example' # str | The maintainer's name at a minimum; additional contact information may be provided. (optional)
103
+ maintainer_email = 'maintainer_email_example' # str | The maintainer's e-mail address. (optional)
104
+ license = 'license_example' # str | Text indicating the license covering the distribution (optional)
105
+ requires_python = 'requires_python_example' # str | The Python version(s) that the distribution is guaranteed to be compatible with. (optional)
106
+ project_url = 'project_url_example' # str | A browsable URL for the project and a label for it, separated by a comma. (optional)
107
+ project_urls = None # object | A dictionary of labels and URLs for the project. (optional)
108
+ platform = 'platform_example' # str | A comma-separated list of platform specifications, summarizing the operating systems supported by the package. (optional)
109
+ supported_platform = 'supported_platform_example' # str | Field to specify the OS and CPU for which the binary package was compiled. (optional)
110
+ requires_dist = None # object | A JSON list containing names of some other distutils project required by this distribution. (optional)
111
+ provides_dist = None # object | A JSON list containing names of a Distutils project which is contained within this distribution. (optional)
112
+ obsoletes_dist = None # object | 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. (optional)
113
+ requires_external = None # object | A JSON list containing some dependency in the system that the distribution is to be used. (optional)
114
+ classifiers = None # object | A JSON list containing classification values for a Python package. (optional)
116
115
 
117
116
  try:
118
117
  # Create a python package content
119
118
  api_response = api_instance.create(relative_path, repository=repository, artifact=artifact, file=file, upload=upload, file_url=file_url, sha256=sha256, summary=summary, description=description, description_content_type=description_content_type, keywords=keywords, home_page=home_page, download_url=download_url, author=author, author_email=author_email, maintainer=maintainer, maintainer_email=maintainer_email, license=license, requires_python=requires_python, project_url=project_url, project_urls=project_urls, platform=platform, supported_platform=supported_platform, requires_dist=requires_dist, provides_dist=provides_dist, obsoletes_dist=obsoletes_dist, requires_external=requires_external, classifiers=classifiers)
119
+ print("The response of ContentPackagesApi->create:\n")
120
120
  pprint(api_response)
121
121
  except ApiException as e:
122
122
  print("Exception when calling ContentPackagesApi->create: %s\n" % e)
123
-
123
+
124
124
  ```
125
125
 
126
126
  ## Documentation for API Endpoints
@@ -202,7 +202,6 @@ Class | Method | HTTP request | Description
202
202
  - [ObjectRolesResponse](docs/ObjectRolesResponse.md)
203
203
  - [PackageMetadataResponse](docs/PackageMetadataResponse.md)
204
204
  - [PackageTypesEnum](docs/PackageTypesEnum.md)
205
- - [PackageUpload](docs/PackageUpload.md)
206
205
  - [PackageUploadTaskResponse](docs/PackageUploadTaskResponse.md)
207
206
  - [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
208
207
  - [PaginatedpythonPythonDistributionResponseList](docs/PaginatedpythonPythonDistributionResponseList.md)
@@ -214,16 +213,14 @@ Class | Method | HTTP request | Description
214
213
  - [PatchedpythonPythonRemote](docs/PatchedpythonPythonRemote.md)
215
214
  - [PatchedpythonPythonRepository](docs/PatchedpythonPythonRepository.md)
216
215
  - [PolicyEnum](docs/PolicyEnum.md)
217
- - [PythonBanderRemote](docs/PythonBanderRemote.md)
218
216
  - [PythonPythonDistribution](docs/PythonPythonDistribution.md)
219
217
  - [PythonPythonDistributionResponse](docs/PythonPythonDistributionResponse.md)
220
- - [PythonPythonPackageContent](docs/PythonPythonPackageContent.md)
221
218
  - [PythonPythonPackageContentResponse](docs/PythonPythonPackageContentResponse.md)
222
219
  - [PythonPythonPublication](docs/PythonPythonPublication.md)
223
220
  - [PythonPythonPublicationResponse](docs/PythonPythonPublicationResponse.md)
224
221
  - [PythonPythonRemote](docs/PythonPythonRemote.md)
225
222
  - [PythonPythonRemoteResponse](docs/PythonPythonRemoteResponse.md)
226
- - [PythonPythonRemoteResponseHiddenFields](docs/PythonPythonRemoteResponseHiddenFields.md)
223
+ - [PythonPythonRemoteResponseHiddenFieldsInner](docs/PythonPythonRemoteResponseHiddenFieldsInner.md)
227
224
  - [PythonPythonRepository](docs/PythonPythonRepository.md)
228
225
  - [PythonPythonRepositoryResponse](docs/PythonPythonRepositoryResponse.md)
229
226
  - [Repair](docs/Repair.md)
@@ -237,15 +234,18 @@ Class | Method | HTTP request | Description
237
234
  - [UnsetLabelResponse](docs/UnsetLabelResponse.md)
238
235
 
239
236
 
237
+ <a id="documentation-for-authorization"></a>
240
238
  ## Documentation For Authorization
241
239
 
242
240
 
243
- ## basicAuth
241
+ Authentication schemes defined for the API:
242
+ <a id="basicAuth"></a>
243
+ ### basicAuth
244
244
 
245
245
  - **Type**: HTTP basic authentication
246
246
 
247
-
248
- ## cookieAuth
247
+ <a id="cookieAuth"></a>
248
+ ### cookieAuth
249
249
 
250
250
  - **Type**: API key
251
251
  - **API key parameter name**: sessionid
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp-python-client
3
- Version: 3.12.5
3
+ Version: 3.13.1
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
7
7
  Author-email: pulp-list@redhat.com
8
8
  License: GPLv2+
9
9
  Keywords: pulp,pulpcore,client,Pulp 3 API
10
- Requires-Python: >=3.4
10
+ Description-Content-Type: text/markdown
11
11
 
12
- Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
12
+ Fetch, Upload, Organize, and Distribute Software Packages
13
13
 
@@ -1,4 +1,5 @@
1
1
  README.md
2
+ pyproject.toml
2
3
  setup.cfg
3
4
  setup.py
4
5
  pulp_python_client.egg-info/PKG-INFO
@@ -10,8 +11,10 @@ pulpcore/__init__.py
10
11
  pulpcore/client/__init__.py
11
12
  pulpcore/client/pulp_python/__init__.py
12
13
  pulpcore/client/pulp_python/api_client.py
14
+ pulpcore/client/pulp_python/api_response.py
13
15
  pulpcore/client/pulp_python/configuration.py
14
16
  pulpcore/client/pulp_python/exceptions.py
17
+ pulpcore/client/pulp_python/py.typed
15
18
  pulpcore/client/pulp_python/rest.py
16
19
  pulpcore/client/pulp_python/api/__init__.py
17
20
  pulpcore/client/pulp_python/api/content_packages_api.py
@@ -34,7 +37,6 @@ pulpcore/client/pulp_python/models/nested_role_response.py
34
37
  pulpcore/client/pulp_python/models/object_roles_response.py
35
38
  pulpcore/client/pulp_python/models/package_metadata_response.py
36
39
  pulpcore/client/pulp_python/models/package_types_enum.py
37
- pulpcore/client/pulp_python/models/package_upload.py
38
40
  pulpcore/client/pulp_python/models/package_upload_task_response.py
39
41
  pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py
40
42
  pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py
@@ -46,16 +48,14 @@ pulpcore/client/pulp_python/models/patchedpython_python_distribution.py
46
48
  pulpcore/client/pulp_python/models/patchedpython_python_remote.py
47
49
  pulpcore/client/pulp_python/models/patchedpython_python_repository.py
48
50
  pulpcore/client/pulp_python/models/policy_enum.py
49
- pulpcore/client/pulp_python/models/python_bander_remote.py
50
51
  pulpcore/client/pulp_python/models/python_python_distribution.py
51
52
  pulpcore/client/pulp_python/models/python_python_distribution_response.py
52
- pulpcore/client/pulp_python/models/python_python_package_content.py
53
53
  pulpcore/client/pulp_python/models/python_python_package_content_response.py
54
54
  pulpcore/client/pulp_python/models/python_python_publication.py
55
55
  pulpcore/client/pulp_python/models/python_python_publication_response.py
56
56
  pulpcore/client/pulp_python/models/python_python_remote.py
57
57
  pulpcore/client/pulp_python/models/python_python_remote_response.py
58
- pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields.py
58
+ pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py
59
59
  pulpcore/client/pulp_python/models/python_python_repository.py
60
60
  pulpcore/client/pulp_python/models/python_python_repository_response.py
61
61
  pulpcore/client/pulp_python/models/repair.py
@@ -78,7 +78,6 @@ test/test_nested_role_response.py
78
78
  test/test_object_roles_response.py
79
79
  test/test_package_metadata_response.py
80
80
  test/test_package_types_enum.py
81
- test/test_package_upload.py
82
81
  test/test_package_upload_task_response.py
83
82
  test/test_paginated_repository_version_response_list.py
84
83
  test/test_paginatedpython_python_distribution_response_list.py
@@ -95,16 +94,14 @@ test/test_pypi_api.py
95
94
  test/test_pypi_legacy_api.py
96
95
  test/test_pypi_metadata_api.py
97
96
  test/test_pypi_simple_api.py
98
- test/test_python_bander_remote.py
99
97
  test/test_python_python_distribution.py
100
98
  test/test_python_python_distribution_response.py
101
- test/test_python_python_package_content.py
102
99
  test/test_python_python_package_content_response.py
103
100
  test/test_python_python_publication.py
104
101
  test/test_python_python_publication_response.py
105
102
  test/test_python_python_remote.py
106
103
  test/test_python_python_remote_response.py
107
- test/test_python_python_remote_response_hidden_fields.py
104
+ test/test_python_python_remote_response_hidden_fields_inner.py
108
105
  test/test_python_python_repository.py
109
106
  test/test_python_python_repository_response.py
110
107
  test/test_remotes_python_api.py
@@ -0,0 +1,4 @@
1
+ urllib3<3.0.0,>=1.25.3
2
+ python-dateutil<2.10.0,>=2.8.1
3
+ pydantic>=2
4
+ typing-extensions>=4.7.1
@@ -5,17 +5,17 @@
5
5
  """
6
6
  Pulp 3 API
7
7
 
8
- Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
8
+ Fetch, Upload, Organize, and Distribute Software Packages
9
9
 
10
10
  The version of the OpenAPI document: v3
11
11
  Contact: pulp-list@redhat.com
12
- Generated by: https://openapi-generator.tech
13
- """
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
14
13
 
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
15
16
 
16
- from __future__ import absolute_import
17
17
 
18
- __version__ = "3.12.5"
18
+ __version__ = "3.13.1"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pulpcore.client.pulp_python.api.content_packages_api import ContentPackagesApi
@@ -30,13 +30,16 @@ from pulpcore.client.pulp_python.api.repositories_python_api import Repositories
30
30
  from pulpcore.client.pulp_python.api.repositories_python_versions_api import RepositoriesPythonVersionsApi
31
31
 
32
32
  # import ApiClient
33
+ from pulpcore.client.pulp_python.api_response import ApiResponse
33
34
  from pulpcore.client.pulp_python.api_client import ApiClient
34
35
  from pulpcore.client.pulp_python.configuration import Configuration
35
36
  from pulpcore.client.pulp_python.exceptions import OpenApiException
36
37
  from pulpcore.client.pulp_python.exceptions import ApiTypeError
37
38
  from pulpcore.client.pulp_python.exceptions import ApiValueError
38
39
  from pulpcore.client.pulp_python.exceptions import ApiKeyError
40
+ from pulpcore.client.pulp_python.exceptions import ApiAttributeError
39
41
  from pulpcore.client.pulp_python.exceptions import ApiException
42
+
40
43
  # import models into sdk package
41
44
  from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
42
45
  from pulpcore.client.pulp_python.models.content_summary_response import ContentSummaryResponse
@@ -47,7 +50,6 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
47
50
  from pulpcore.client.pulp_python.models.object_roles_response import ObjectRolesResponse
48
51
  from pulpcore.client.pulp_python.models.package_metadata_response import PackageMetadataResponse
49
52
  from pulpcore.client.pulp_python.models.package_types_enum import PackageTypesEnum
50
- from pulpcore.client.pulp_python.models.package_upload import PackageUpload
51
53
  from pulpcore.client.pulp_python.models.package_upload_task_response import PackageUploadTaskResponse
52
54
  from pulpcore.client.pulp_python.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
53
55
  from pulpcore.client.pulp_python.models.paginatedpython_python_distribution_response_list import PaginatedpythonPythonDistributionResponseList
@@ -59,16 +61,14 @@ from pulpcore.client.pulp_python.models.patchedpython_python_distribution import
59
61
  from pulpcore.client.pulp_python.models.patchedpython_python_remote import PatchedpythonPythonRemote
60
62
  from pulpcore.client.pulp_python.models.patchedpython_python_repository import PatchedpythonPythonRepository
61
63
  from pulpcore.client.pulp_python.models.policy_enum import PolicyEnum
62
- from pulpcore.client.pulp_python.models.python_bander_remote import PythonBanderRemote
63
64
  from pulpcore.client.pulp_python.models.python_python_distribution import PythonPythonDistribution
64
65
  from pulpcore.client.pulp_python.models.python_python_distribution_response import PythonPythonDistributionResponse
65
- from pulpcore.client.pulp_python.models.python_python_package_content import PythonPythonPackageContent
66
66
  from pulpcore.client.pulp_python.models.python_python_package_content_response import PythonPythonPackageContentResponse
67
67
  from pulpcore.client.pulp_python.models.python_python_publication import PythonPythonPublication
68
68
  from pulpcore.client.pulp_python.models.python_python_publication_response import PythonPythonPublicationResponse
69
69
  from pulpcore.client.pulp_python.models.python_python_remote import PythonPythonRemote
70
70
  from pulpcore.client.pulp_python.models.python_python_remote_response import PythonPythonRemoteResponse
71
- from pulpcore.client.pulp_python.models.python_python_remote_response_hidden_fields import PythonPythonRemoteResponseHiddenFields
71
+ from pulpcore.client.pulp_python.models.python_python_remote_response_hidden_fields_inner import PythonPythonRemoteResponseHiddenFieldsInner
72
72
  from pulpcore.client.pulp_python.models.python_python_repository import PythonPythonRepository
73
73
  from pulpcore.client.pulp_python.models.python_python_repository_response import PythonPythonRepositoryResponse
74
74
  from pulpcore.client.pulp_python.models.repair import Repair
@@ -80,4 +80,3 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
80
80
  from pulpcore.client.pulp_python.models.summary_response import SummaryResponse
81
81
  from pulpcore.client.pulp_python.models.unset_label import UnsetLabel
82
82
  from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelResponse
83
-
@@ -1,5 +1,3 @@
1
- from __future__ import absolute_import
2
-
3
1
  # flake8: noqa
4
2
 
5
3
  # import apis into api package
@@ -13,3 +11,4 @@ from pulpcore.client.pulp_python.api.pypi_simple_api import PypiSimpleApi
13
11
  from pulpcore.client.pulp_python.api.remotes_python_api import RemotesPythonApi
14
12
  from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi
15
13
  from pulpcore.client.pulp_python.api.repositories_python_versions_api import RepositoriesPythonVersionsApi
14
+