pulp_python_client 3.3.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -4
  3. data/build/lib/pulpcore/__init__.py +2 -0
  4. data/build/lib/pulpcore/client/__init__.py +2 -0
  5. data/build/lib/pulpcore/client/pulp_python/__init__.py +75 -0
  6. data/build/lib/pulpcore/client/pulp_python/api/__init__.py +15 -0
  7. data/build/lib/pulpcore/client/pulp_python/api/content_packages_api.py +626 -0
  8. data/build/lib/pulpcore/client/pulp_python/api/distributions_pypi_api.py +830 -0
  9. data/build/lib/pulpcore/client/pulp_python/api/publications_pypi_api.py +566 -0
  10. data/build/lib/pulpcore/client/pulp_python/api/pypi_api.py +162 -0
  11. data/build/lib/pulpcore/client/pulp_python/api/pypi_legacy_api.py +185 -0
  12. data/build/lib/pulpcore/client/pulp_python/api/pypi_metadata_api.py +171 -0
  13. data/build/lib/pulpcore/client/pulp_python/api/pypi_simple_api.py +434 -0
  14. data/build/lib/pulpcore/client/pulp_python/api/remotes_python_api.py +972 -0
  15. data/build/lib/pulpcore/client/pulp_python/api/repositories_python_api.py +1063 -0
  16. data/build/lib/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +614 -0
  17. data/build/lib/pulpcore/client/pulp_python/api_client.py +667 -0
  18. data/build/lib/pulpcore/client/pulp_python/configuration.py +427 -0
  19. data/build/lib/pulpcore/client/pulp_python/exceptions.py +121 -0
  20. data/build/lib/pulpcore/client/pulp_python/models/__init__.py +51 -0
  21. data/build/lib/pulpcore/client/pulp_python/models/async_operation_response.py +124 -0
  22. data/build/lib/pulpcore/client/pulp_python/models/content_summary.py +176 -0
  23. data/build/lib/pulpcore/client/pulp_python/models/content_summary_response.py +176 -0
  24. data/build/lib/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +103 -0
  25. data/build/lib/pulpcore/client/pulp_python/models/package_metadata_response.py +209 -0
  26. data/build/lib/pulpcore/client/pulp_python/models/package_types_enum.py +107 -0
  27. data/build/lib/pulpcore/client/pulp_python/models/package_upload.py +187 -0
  28. data/build/lib/pulpcore/client/pulp_python/models/package_upload_task_response.py +176 -0
  29. data/build/lib/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +197 -0
  30. data/build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +197 -0
  31. data/build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +197 -0
  32. data/build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +197 -0
  33. data/build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +197 -0
  34. data/build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +197 -0
  35. data/build/lib/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +286 -0
  36. data/build/lib/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +823 -0
  37. data/build/lib/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +259 -0
  38. data/build/lib/pulpcore/client/pulp_python/models/policy_enum.py +102 -0
  39. data/build/lib/pulpcore/client/pulp_python/models/python_bander_remote.py +181 -0
  40. data/build/lib/pulpcore/client/pulp_python/models/python_python_distribution.py +288 -0
  41. data/build/lib/pulpcore/client/pulp_python/models/python_python_distribution_response.py +368 -0
  42. data/build/lib/pulpcore/client/pulp_python/models/python_python_package_content.py +824 -0
  43. data/build/lib/pulpcore/client/pulp_python/models/python_python_package_content_response.py +933 -0
  44. data/build/lib/pulpcore/client/pulp_python/models/python_python_publication.py +149 -0
  45. data/build/lib/pulpcore/client/pulp_python/models/python_python_publication_response.py +231 -0
  46. data/build/lib/pulpcore/client/pulp_python/models/python_python_remote.py +825 -0
  47. data/build/lib/pulpcore/client/pulp_python/models/python_python_remote_response.py +772 -0
  48. data/build/lib/pulpcore/client/pulp_python/models/python_python_repository.py +260 -0
  49. data/build/lib/pulpcore/client/pulp_python/models/python_python_repository_response.py +366 -0
  50. data/build/lib/pulpcore/client/pulp_python/models/repository_add_remove_content.py +179 -0
  51. data/build/lib/pulpcore/client/pulp_python/models/repository_sync_url.py +151 -0
  52. data/build/lib/pulpcore/client/pulp_python/models/repository_version.py +123 -0
  53. data/build/lib/pulpcore/client/pulp_python/models/repository_version_response.py +257 -0
  54. data/build/lib/pulpcore/client/pulp_python/models/summary_response.py +182 -0
  55. data/build/lib/pulpcore/client/pulp_python/rest.py +292 -0
  56. data/dist/pulp_python-client-3.4.0.tar.gz +0 -0
  57. data/dist/pulp_python_client-3.4.0-py3-none-any.whl +0 -0
  58. data/docs/ContentPackagesApi.md +6 -0
  59. data/docs/DistributionsPypiApi.md +2 -2
  60. data/docs/PackageMetadataResponse.md +23 -0
  61. data/docs/PackageUpload.md +21 -0
  62. data/docs/PackageUploadTaskResponse.md +21 -0
  63. data/docs/PatchedpythonPythonDistribution.md +3 -1
  64. data/docs/PatchedpythonPythonRemote.md +1 -1
  65. data/docs/PublicationsPypiApi.md +1 -1
  66. data/docs/PypiApi.md +62 -0
  67. data/docs/PypiLegacyApi.md +70 -0
  68. data/docs/PypiMetadataApi.md +64 -0
  69. data/docs/PypiSimpleApi.md +190 -0
  70. data/docs/PythonBanderRemote.md +1 -1
  71. data/docs/PythonPythonDistribution.md +3 -1
  72. data/docs/PythonPythonDistributionResponse.md +4 -2
  73. data/docs/PythonPythonPackageContent.md +6 -0
  74. data/docs/PythonPythonPackageContentResponse.md +5 -1
  75. data/docs/PythonPythonRemote.md +1 -1
  76. data/docs/PythonPythonRemoteResponse.md +1 -1
  77. data/docs/RemotesPythonApi.md +3 -3
  78. data/docs/RepositoriesPythonApi.md +4 -4
  79. data/docs/SummaryResponse.md +21 -0
  80. data/lib/pulp_python_client/api/content_packages_api.rb +9 -0
  81. data/lib/pulp_python_client/api/distributions_pypi_api.rb +4 -4
  82. data/lib/pulp_python_client/api/publications_pypi_api.rb +2 -2
  83. data/lib/pulp_python_client/api/pypi_api.rb +90 -0
  84. data/lib/pulp_python_client/api/pypi_legacy_api.rb +111 -0
  85. data/lib/pulp_python_client/api/pypi_metadata_api.rb +96 -0
  86. data/lib/pulp_python_client/api/pypi_simple_api.rb +249 -0
  87. data/lib/pulp_python_client/api/remotes_python_api.rb +4 -4
  88. data/lib/pulp_python_client/api/repositories_python_api.rb +8 -8
  89. data/lib/pulp_python_client/models/package_metadata_response.rb +257 -0
  90. data/lib/pulp_python_client/models/package_upload.rb +268 -0
  91. data/lib/pulp_python_client/models/package_upload_task_response.rb +240 -0
  92. data/lib/pulp_python_client/models/patchedpython_python_distribution.rb +17 -5
  93. data/lib/pulp_python_client/models/patchedpython_python_remote.rb +1 -1
  94. data/lib/pulp_python_client/models/python_bander_remote.rb +1 -1
  95. data/lib/pulp_python_client/models/python_python_distribution.rb +17 -5
  96. data/lib/pulp_python_client/models/python_python_distribution_response.rb +17 -6
  97. data/lib/pulp_python_client/models/python_python_package_content.rb +33 -1
  98. data/lib/pulp_python_client/models/python_python_package_content_response.rb +23 -1
  99. data/lib/pulp_python_client/models/python_python_remote.rb +1 -1
  100. data/lib/pulp_python_client/models/python_python_remote_response.rb +1 -1
  101. data/lib/pulp_python_client/models/summary_response.rb +243 -0
  102. data/lib/pulp_python_client/version.rb +1 -1
  103. data/lib/pulp_python_client.rb +8 -0
  104. data/pulp_python_client.egg-info/PKG-INFO +15 -0
  105. data/pulp_python_client.egg-info/SOURCES.txt +105 -0
  106. data/pulp_python_client.egg-info/dependency_links.txt +1 -0
  107. data/pulp_python_client.egg-info/requires.txt +4 -0
  108. data/pulp_python_client.egg-info/top_level.txt +1 -0
  109. data/pulpcore/__init__.py +2 -0
  110. data/pulpcore/client/__init__.py +2 -0
  111. data/pulpcore/client/pulp_python/__init__.py +75 -0
  112. data/pulpcore/client/pulp_python/api/__init__.py +15 -0
  113. data/pulpcore/client/pulp_python/api/content_packages_api.py +626 -0
  114. data/pulpcore/client/pulp_python/api/distributions_pypi_api.py +830 -0
  115. data/pulpcore/client/pulp_python/api/publications_pypi_api.py +566 -0
  116. data/pulpcore/client/pulp_python/api/pypi_api.py +162 -0
  117. data/pulpcore/client/pulp_python/api/pypi_legacy_api.py +185 -0
  118. data/pulpcore/client/pulp_python/api/pypi_metadata_api.py +171 -0
  119. data/pulpcore/client/pulp_python/api/pypi_simple_api.py +434 -0
  120. data/pulpcore/client/pulp_python/api/remotes_python_api.py +972 -0
  121. data/pulpcore/client/pulp_python/api/repositories_python_api.py +1063 -0
  122. data/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +614 -0
  123. data/pulpcore/client/pulp_python/api_client.py +667 -0
  124. data/pulpcore/client/pulp_python/configuration.py +427 -0
  125. data/pulpcore/client/pulp_python/exceptions.py +121 -0
  126. data/pulpcore/client/pulp_python/models/__init__.py +51 -0
  127. data/pulpcore/client/pulp_python/models/async_operation_response.py +124 -0
  128. data/pulpcore/client/pulp_python/models/content_summary.py +176 -0
  129. data/pulpcore/client/pulp_python/models/content_summary_response.py +176 -0
  130. data/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +103 -0
  131. data/pulpcore/client/pulp_python/models/package_metadata_response.py +209 -0
  132. data/pulpcore/client/pulp_python/models/package_types_enum.py +107 -0
  133. data/pulpcore/client/pulp_python/models/package_upload.py +187 -0
  134. data/pulpcore/client/pulp_python/models/package_upload_task_response.py +176 -0
  135. data/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +197 -0
  136. data/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +197 -0
  137. data/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +197 -0
  138. data/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +197 -0
  139. data/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +197 -0
  140. data/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +197 -0
  141. data/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +286 -0
  142. data/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +823 -0
  143. data/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +259 -0
  144. data/pulpcore/client/pulp_python/models/policy_enum.py +102 -0
  145. data/pulpcore/client/pulp_python/models/python_bander_remote.py +181 -0
  146. data/pulpcore/client/pulp_python/models/python_python_distribution.py +288 -0
  147. data/pulpcore/client/pulp_python/models/python_python_distribution_response.py +368 -0
  148. data/pulpcore/client/pulp_python/models/python_python_package_content.py +824 -0
  149. data/pulpcore/client/pulp_python/models/python_python_package_content_response.py +933 -0
  150. data/pulpcore/client/pulp_python/models/python_python_publication.py +149 -0
  151. data/pulpcore/client/pulp_python/models/python_python_publication_response.py +231 -0
  152. data/pulpcore/client/pulp_python/models/python_python_remote.py +825 -0
  153. data/pulpcore/client/pulp_python/models/python_python_remote_response.py +772 -0
  154. data/pulpcore/client/pulp_python/models/python_python_repository.py +260 -0
  155. data/pulpcore/client/pulp_python/models/python_python_repository_response.py +366 -0
  156. data/pulpcore/client/pulp_python/models/repository_add_remove_content.py +179 -0
  157. data/pulpcore/client/pulp_python/models/repository_sync_url.py +151 -0
  158. data/pulpcore/client/pulp_python/models/repository_version.py +123 -0
  159. data/pulpcore/client/pulp_python/models/repository_version_response.py +257 -0
  160. data/pulpcore/client/pulp_python/models/summary_response.py +182 -0
  161. data/pulpcore/client/pulp_python/rest.py +292 -0
  162. data/requirements.txt +6 -0
  163. data/setup.cfg +2 -0
  164. data/setup.py +42 -0
  165. data/spec/api/content_packages_api_spec.rb +3 -0
  166. data/spec/api/distributions_pypi_api_spec.rb +2 -2
  167. data/spec/api/publications_pypi_api_spec.rb +1 -1
  168. data/spec/api/pypi_api_spec.rb +49 -0
  169. data/spec/api/pypi_legacy_api_spec.rb +50 -0
  170. data/spec/api/pypi_metadata_api_spec.rb +50 -0
  171. data/spec/api/pypi_simple_api_spec.rb +79 -0
  172. data/spec/api/remotes_python_api_spec.rb +2 -2
  173. data/spec/api/repositories_python_api_spec.rb +4 -4
  174. data/spec/models/package_metadata_response_spec.rb +59 -0
  175. data/spec/models/package_upload_spec.rb +53 -0
  176. data/spec/models/package_upload_task_response_spec.rb +53 -0
  177. data/spec/models/patchedpython_python_distribution_spec.rb +6 -0
  178. data/spec/models/python_python_distribution_response_spec.rb +6 -0
  179. data/spec/models/python_python_distribution_spec.rb +6 -0
  180. data/spec/models/python_python_package_content_response_spec.rb +12 -0
  181. data/spec/models/python_python_package_content_spec.rb +18 -0
  182. data/spec/models/summary_response_spec.rb +53 -0
  183. data/test/__init__.py +0 -0
  184. data/test/test_async_operation_response.py +54 -0
  185. data/test/test_content_packages_api.py +55 -0
  186. data/test/test_content_summary.py +70 -0
  187. data/test/test_content_summary_response.py +70 -0
  188. data/test/test_distributions_pypi_api.py +76 -0
  189. data/test/test_exclude_platforms_enum.py +52 -0
  190. data/test/test_package_metadata_response.py +60 -0
  191. data/test/test_package_types_enum.py +52 -0
  192. data/test/test_package_upload.py +57 -0
  193. data/test/test_package_upload_task_response.py +58 -0
  194. data/test/test_paginated_repository_version_response_list.py +64 -0
  195. data/test/test_paginatedpython_python_distribution_response_list.py +68 -0
  196. data/test/test_paginatedpython_python_package_content_response_list.py +88 -0
  197. data/test/test_paginatedpython_python_publication_response_list.py +65 -0
  198. data/test/test_paginatedpython_python_remote_response_list.py +88 -0
  199. data/test/test_paginatedpython_python_repository_response_list.py +68 -0
  200. data/test/test_patchedpython_python_distribution.py +59 -0
  201. data/test/test_patchedpython_python_remote.py +84 -0
  202. data/test/test_patchedpython_python_repository.py +58 -0
  203. data/test/test_policy_enum.py +52 -0
  204. data/test/test_publications_pypi_api.py +62 -0
  205. data/test/test_pypi_api.py +41 -0
  206. data/test/test_pypi_legacy_api.py +41 -0
  207. data/test/test_pypi_metadata_api.py +41 -0
  208. data/test/test_pypi_simple_api.py +55 -0
  209. data/test/test_python_bander_remote.py +57 -0
  210. data/test/test_python_python_distribution.py +61 -0
  211. data/test/test_python_python_distribution_response.py +64 -0
  212. data/test/test_python_python_package_content.py +79 -0
  213. data/test/test_python_python_package_content_response.py +82 -0
  214. data/test/test_python_python_publication.py +54 -0
  215. data/test/test_python_python_publication_response.py +59 -0
  216. data/test/test_python_python_remote.py +86 -0
  217. data/test/test_python_python_remote_response.py +84 -0
  218. data/test/test_python_python_repository.py +59 -0
  219. data/test/test_python_python_repository_response.py +63 -0
  220. data/test/test_remotes_python_api.py +83 -0
  221. data/test/test_repositories_python_api.py +90 -0
  222. data/test/test_repositories_python_versions_api.py +61 -0
  223. data/test/test_repository_add_remove_content.py +59 -0
  224. data/test/test_repository_sync_url.py +54 -0
  225. data/test/test_repository_version.py +53 -0
  226. data/test/test_repository_version_response.py +58 -0
  227. data/test/test_summary_response.py +58 -0
  228. data/test-requirements.txt +3 -0
  229. data/tox.ini +9 -0
  230. metadata +221 -26
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_python_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-27 00:00:00.000000000 Z
11
+ date: 2021-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -74,13 +74,71 @@ files:
74
74
  - Gemfile
75
75
  - README.md
76
76
  - Rakefile
77
+ - build/lib/pulpcore/__init__.py
78
+ - build/lib/pulpcore/client/__init__.py
79
+ - build/lib/pulpcore/client/pulp_python/__init__.py
80
+ - build/lib/pulpcore/client/pulp_python/api/__init__.py
81
+ - build/lib/pulpcore/client/pulp_python/api/content_packages_api.py
82
+ - build/lib/pulpcore/client/pulp_python/api/distributions_pypi_api.py
83
+ - build/lib/pulpcore/client/pulp_python/api/publications_pypi_api.py
84
+ - build/lib/pulpcore/client/pulp_python/api/pypi_api.py
85
+ - build/lib/pulpcore/client/pulp_python/api/pypi_legacy_api.py
86
+ - build/lib/pulpcore/client/pulp_python/api/pypi_metadata_api.py
87
+ - build/lib/pulpcore/client/pulp_python/api/pypi_simple_api.py
88
+ - build/lib/pulpcore/client/pulp_python/api/remotes_python_api.py
89
+ - build/lib/pulpcore/client/pulp_python/api/repositories_python_api.py
90
+ - build/lib/pulpcore/client/pulp_python/api/repositories_python_versions_api.py
91
+ - build/lib/pulpcore/client/pulp_python/api_client.py
92
+ - build/lib/pulpcore/client/pulp_python/configuration.py
93
+ - build/lib/pulpcore/client/pulp_python/exceptions.py
94
+ - build/lib/pulpcore/client/pulp_python/models/__init__.py
95
+ - build/lib/pulpcore/client/pulp_python/models/async_operation_response.py
96
+ - build/lib/pulpcore/client/pulp_python/models/content_summary.py
97
+ - build/lib/pulpcore/client/pulp_python/models/content_summary_response.py
98
+ - build/lib/pulpcore/client/pulp_python/models/exclude_platforms_enum.py
99
+ - build/lib/pulpcore/client/pulp_python/models/package_metadata_response.py
100
+ - build/lib/pulpcore/client/pulp_python/models/package_types_enum.py
101
+ - build/lib/pulpcore/client/pulp_python/models/package_upload.py
102
+ - build/lib/pulpcore/client/pulp_python/models/package_upload_task_response.py
103
+ - build/lib/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py
104
+ - build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py
105
+ - build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py
106
+ - build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py
107
+ - build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py
108
+ - build/lib/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py
109
+ - build/lib/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py
110
+ - build/lib/pulpcore/client/pulp_python/models/patchedpython_python_remote.py
111
+ - build/lib/pulpcore/client/pulp_python/models/patchedpython_python_repository.py
112
+ - build/lib/pulpcore/client/pulp_python/models/policy_enum.py
113
+ - build/lib/pulpcore/client/pulp_python/models/python_bander_remote.py
114
+ - build/lib/pulpcore/client/pulp_python/models/python_python_distribution.py
115
+ - build/lib/pulpcore/client/pulp_python/models/python_python_distribution_response.py
116
+ - build/lib/pulpcore/client/pulp_python/models/python_python_package_content.py
117
+ - build/lib/pulpcore/client/pulp_python/models/python_python_package_content_response.py
118
+ - build/lib/pulpcore/client/pulp_python/models/python_python_publication.py
119
+ - build/lib/pulpcore/client/pulp_python/models/python_python_publication_response.py
120
+ - build/lib/pulpcore/client/pulp_python/models/python_python_remote.py
121
+ - build/lib/pulpcore/client/pulp_python/models/python_python_remote_response.py
122
+ - build/lib/pulpcore/client/pulp_python/models/python_python_repository.py
123
+ - build/lib/pulpcore/client/pulp_python/models/python_python_repository_response.py
124
+ - build/lib/pulpcore/client/pulp_python/models/repository_add_remove_content.py
125
+ - build/lib/pulpcore/client/pulp_python/models/repository_sync_url.py
126
+ - build/lib/pulpcore/client/pulp_python/models/repository_version.py
127
+ - build/lib/pulpcore/client/pulp_python/models/repository_version_response.py
128
+ - build/lib/pulpcore/client/pulp_python/models/summary_response.py
129
+ - build/lib/pulpcore/client/pulp_python/rest.py
130
+ - dist/pulp_python-client-3.4.0.tar.gz
131
+ - dist/pulp_python_client-3.4.0-py3-none-any.whl
77
132
  - docs/AsyncOperationResponse.md
78
133
  - docs/ContentPackagesApi.md
79
134
  - docs/ContentSummary.md
80
135
  - docs/ContentSummaryResponse.md
81
136
  - docs/DistributionsPypiApi.md
82
137
  - docs/ExcludePlatformsEnum.md
138
+ - docs/PackageMetadataResponse.md
83
139
  - docs/PackageTypesEnum.md
140
+ - docs/PackageUpload.md
141
+ - docs/PackageUploadTaskResponse.md
84
142
  - docs/PaginatedRepositoryVersionResponseList.md
85
143
  - docs/PaginatedpythonPythonDistributionResponseList.md
86
144
  - docs/PaginatedpythonPythonPackageContentResponseList.md
@@ -92,6 +150,10 @@ files:
92
150
  - docs/PatchedpythonPythonRepository.md
93
151
  - docs/PolicyEnum.md
94
152
  - docs/PublicationsPypiApi.md
153
+ - docs/PypiApi.md
154
+ - docs/PypiLegacyApi.md
155
+ - docs/PypiMetadataApi.md
156
+ - docs/PypiSimpleApi.md
95
157
  - docs/PythonBanderRemote.md
96
158
  - docs/PythonPythonDistribution.md
97
159
  - docs/PythonPythonDistributionResponse.md
@@ -110,11 +172,16 @@ files:
110
172
  - docs/RepositorySyncURL.md
111
173
  - docs/RepositoryVersion.md
112
174
  - docs/RepositoryVersionResponse.md
175
+ - docs/SummaryResponse.md
113
176
  - git_push.sh
114
177
  - lib/pulp_python_client.rb
115
178
  - lib/pulp_python_client/api/content_packages_api.rb
116
179
  - lib/pulp_python_client/api/distributions_pypi_api.rb
117
180
  - lib/pulp_python_client/api/publications_pypi_api.rb
181
+ - lib/pulp_python_client/api/pypi_api.rb
182
+ - lib/pulp_python_client/api/pypi_legacy_api.rb
183
+ - lib/pulp_python_client/api/pypi_metadata_api.rb
184
+ - lib/pulp_python_client/api/pypi_simple_api.rb
118
185
  - lib/pulp_python_client/api/remotes_python_api.rb
119
186
  - lib/pulp_python_client/api/repositories_python_api.rb
120
187
  - lib/pulp_python_client/api/repositories_python_versions_api.rb
@@ -125,7 +192,10 @@ files:
125
192
  - lib/pulp_python_client/models/content_summary.rb
126
193
  - lib/pulp_python_client/models/content_summary_response.rb
127
194
  - lib/pulp_python_client/models/exclude_platforms_enum.rb
195
+ - lib/pulp_python_client/models/package_metadata_response.rb
128
196
  - lib/pulp_python_client/models/package_types_enum.rb
197
+ - lib/pulp_python_client/models/package_upload.rb
198
+ - lib/pulp_python_client/models/package_upload_task_response.rb
129
199
  - lib/pulp_python_client/models/paginated_repository_version_response_list.rb
130
200
  - lib/pulp_python_client/models/paginatedpython_python_distribution_response_list.rb
131
201
  - lib/pulp_python_client/models/paginatedpython_python_package_content_response_list.rb
@@ -151,11 +221,77 @@ files:
151
221
  - lib/pulp_python_client/models/repository_sync_url.rb
152
222
  - lib/pulp_python_client/models/repository_version.rb
153
223
  - lib/pulp_python_client/models/repository_version_response.rb
224
+ - lib/pulp_python_client/models/summary_response.rb
154
225
  - lib/pulp_python_client/version.rb
226
+ - pulp_python_client.egg-info/PKG-INFO
227
+ - pulp_python_client.egg-info/SOURCES.txt
228
+ - pulp_python_client.egg-info/dependency_links.txt
229
+ - pulp_python_client.egg-info/requires.txt
230
+ - pulp_python_client.egg-info/top_level.txt
155
231
  - pulp_python_client.gemspec
232
+ - pulpcore/__init__.py
233
+ - pulpcore/client/__init__.py
234
+ - pulpcore/client/pulp_python/__init__.py
235
+ - pulpcore/client/pulp_python/api/__init__.py
236
+ - pulpcore/client/pulp_python/api/content_packages_api.py
237
+ - pulpcore/client/pulp_python/api/distributions_pypi_api.py
238
+ - pulpcore/client/pulp_python/api/publications_pypi_api.py
239
+ - pulpcore/client/pulp_python/api/pypi_api.py
240
+ - pulpcore/client/pulp_python/api/pypi_legacy_api.py
241
+ - pulpcore/client/pulp_python/api/pypi_metadata_api.py
242
+ - pulpcore/client/pulp_python/api/pypi_simple_api.py
243
+ - pulpcore/client/pulp_python/api/remotes_python_api.py
244
+ - pulpcore/client/pulp_python/api/repositories_python_api.py
245
+ - pulpcore/client/pulp_python/api/repositories_python_versions_api.py
246
+ - pulpcore/client/pulp_python/api_client.py
247
+ - pulpcore/client/pulp_python/configuration.py
248
+ - pulpcore/client/pulp_python/exceptions.py
249
+ - pulpcore/client/pulp_python/models/__init__.py
250
+ - pulpcore/client/pulp_python/models/async_operation_response.py
251
+ - pulpcore/client/pulp_python/models/content_summary.py
252
+ - pulpcore/client/pulp_python/models/content_summary_response.py
253
+ - pulpcore/client/pulp_python/models/exclude_platforms_enum.py
254
+ - pulpcore/client/pulp_python/models/package_metadata_response.py
255
+ - pulpcore/client/pulp_python/models/package_types_enum.py
256
+ - pulpcore/client/pulp_python/models/package_upload.py
257
+ - pulpcore/client/pulp_python/models/package_upload_task_response.py
258
+ - pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py
259
+ - pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py
260
+ - pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py
261
+ - pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py
262
+ - pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py
263
+ - pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py
264
+ - pulpcore/client/pulp_python/models/patchedpython_python_distribution.py
265
+ - pulpcore/client/pulp_python/models/patchedpython_python_remote.py
266
+ - pulpcore/client/pulp_python/models/patchedpython_python_repository.py
267
+ - pulpcore/client/pulp_python/models/policy_enum.py
268
+ - pulpcore/client/pulp_python/models/python_bander_remote.py
269
+ - pulpcore/client/pulp_python/models/python_python_distribution.py
270
+ - pulpcore/client/pulp_python/models/python_python_distribution_response.py
271
+ - pulpcore/client/pulp_python/models/python_python_package_content.py
272
+ - pulpcore/client/pulp_python/models/python_python_package_content_response.py
273
+ - pulpcore/client/pulp_python/models/python_python_publication.py
274
+ - pulpcore/client/pulp_python/models/python_python_publication_response.py
275
+ - pulpcore/client/pulp_python/models/python_python_remote.py
276
+ - pulpcore/client/pulp_python/models/python_python_remote_response.py
277
+ - pulpcore/client/pulp_python/models/python_python_repository.py
278
+ - pulpcore/client/pulp_python/models/python_python_repository_response.py
279
+ - pulpcore/client/pulp_python/models/repository_add_remove_content.py
280
+ - pulpcore/client/pulp_python/models/repository_sync_url.py
281
+ - pulpcore/client/pulp_python/models/repository_version.py
282
+ - pulpcore/client/pulp_python/models/repository_version_response.py
283
+ - pulpcore/client/pulp_python/models/summary_response.py
284
+ - pulpcore/client/pulp_python/rest.py
285
+ - requirements.txt
286
+ - setup.cfg
287
+ - setup.py
156
288
  - spec/api/content_packages_api_spec.rb
157
289
  - spec/api/distributions_pypi_api_spec.rb
158
290
  - spec/api/publications_pypi_api_spec.rb
291
+ - spec/api/pypi_api_spec.rb
292
+ - spec/api/pypi_legacy_api_spec.rb
293
+ - spec/api/pypi_metadata_api_spec.rb
294
+ - spec/api/pypi_simple_api_spec.rb
159
295
  - spec/api/remotes_python_api_spec.rb
160
296
  - spec/api/repositories_python_api_spec.rb
161
297
  - spec/api/repositories_python_versions_api_spec.rb
@@ -165,7 +301,10 @@ files:
165
301
  - spec/models/content_summary_response_spec.rb
166
302
  - spec/models/content_summary_spec.rb
167
303
  - spec/models/exclude_platforms_enum_spec.rb
304
+ - spec/models/package_metadata_response_spec.rb
168
305
  - spec/models/package_types_enum_spec.rb
306
+ - spec/models/package_upload_spec.rb
307
+ - spec/models/package_upload_task_response_spec.rb
169
308
  - spec/models/paginated_repository_version_response_list_spec.rb
170
309
  - spec/models/paginatedpython_python_distribution_response_list_spec.rb
171
310
  - spec/models/paginatedpython_python_package_content_response_list_spec.rb
@@ -191,7 +330,55 @@ files:
191
330
  - spec/models/repository_sync_url_spec.rb
192
331
  - spec/models/repository_version_response_spec.rb
193
332
  - spec/models/repository_version_spec.rb
333
+ - spec/models/summary_response_spec.rb
194
334
  - spec/spec_helper.rb
335
+ - test-requirements.txt
336
+ - test/__init__.py
337
+ - test/test_async_operation_response.py
338
+ - test/test_content_packages_api.py
339
+ - test/test_content_summary.py
340
+ - test/test_content_summary_response.py
341
+ - test/test_distributions_pypi_api.py
342
+ - test/test_exclude_platforms_enum.py
343
+ - test/test_package_metadata_response.py
344
+ - test/test_package_types_enum.py
345
+ - test/test_package_upload.py
346
+ - test/test_package_upload_task_response.py
347
+ - test/test_paginated_repository_version_response_list.py
348
+ - test/test_paginatedpython_python_distribution_response_list.py
349
+ - test/test_paginatedpython_python_package_content_response_list.py
350
+ - test/test_paginatedpython_python_publication_response_list.py
351
+ - test/test_paginatedpython_python_remote_response_list.py
352
+ - test/test_paginatedpython_python_repository_response_list.py
353
+ - test/test_patchedpython_python_distribution.py
354
+ - test/test_patchedpython_python_remote.py
355
+ - test/test_patchedpython_python_repository.py
356
+ - test/test_policy_enum.py
357
+ - test/test_publications_pypi_api.py
358
+ - test/test_pypi_api.py
359
+ - test/test_pypi_legacy_api.py
360
+ - test/test_pypi_metadata_api.py
361
+ - test/test_pypi_simple_api.py
362
+ - test/test_python_bander_remote.py
363
+ - test/test_python_python_distribution.py
364
+ - test/test_python_python_distribution_response.py
365
+ - test/test_python_python_package_content.py
366
+ - test/test_python_python_package_content_response.py
367
+ - test/test_python_python_publication.py
368
+ - test/test_python_python_publication_response.py
369
+ - test/test_python_python_remote.py
370
+ - test/test_python_python_remote_response.py
371
+ - test/test_python_python_repository.py
372
+ - test/test_python_python_repository_response.py
373
+ - test/test_remotes_python_api.py
374
+ - test/test_repositories_python_api.py
375
+ - test/test_repositories_python_versions_api.py
376
+ - test/test_repository_add_remove_content.py
377
+ - test/test_repository_sync_url.py
378
+ - test/test_repository_version.py
379
+ - test/test_repository_version_response.py
380
+ - test/test_summary_response.py
381
+ - tox.ini
195
382
  homepage: https://openapi-generator.tech
196
383
  licenses:
197
384
  - GPL-2.0+
@@ -216,42 +403,50 @@ signing_key:
216
403
  specification_version: 4
217
404
  summary: Pulp 3 API Ruby Gem
218
405
  test_files:
219
- - spec/api/repositories_python_api_spec.rb
220
406
  - spec/api/distributions_pypi_api_spec.rb
221
- - spec/api/content_packages_api_spec.rb
407
+ - spec/api/repositories_python_api_spec.rb
222
408
  - spec/api/publications_pypi_api_spec.rb
409
+ - spec/api/pypi_api_spec.rb
410
+ - spec/api/pypi_metadata_api_spec.rb
223
411
  - spec/api/repositories_python_versions_api_spec.rb
224
412
  - spec/api/remotes_python_api_spec.rb
413
+ - spec/api/content_packages_api_spec.rb
414
+ - spec/api/pypi_simple_api_spec.rb
415
+ - spec/api/pypi_legacy_api_spec.rb
225
416
  - spec/api_client_spec.rb
226
417
  - spec/configuration_spec.rb
227
418
  - spec/models/python_python_distribution_spec.rb
228
- - spec/models/package_types_enum_spec.rb
229
- - spec/models/python_python_package_content_response_spec.rb
230
- - spec/models/paginatedpython_python_package_content_response_list_spec.rb
419
+ - spec/models/patchedpython_python_remote_spec.rb
420
+ - spec/models/content_summary_response_spec.rb
421
+ - spec/models/async_operation_response_spec.rb
422
+ - spec/models/python_python_remote_spec.rb
231
423
  - spec/models/paginatedpython_python_remote_response_list_spec.rb
232
- - spec/models/repository_version_response_spec.rb
233
- - spec/models/python_python_repository_spec.rb
234
- - spec/models/exclude_platforms_enum_spec.rb
424
+ - spec/models/repository_sync_url_spec.rb
425
+ - spec/models/patchedpython_python_distribution_spec.rb
426
+ - spec/models/summary_response_spec.rb
427
+ - spec/models/python_python_package_content_response_spec.rb
428
+ - spec/models/paginated_repository_version_response_list_spec.rb
429
+ - spec/models/paginatedpython_python_publication_response_list_spec.rb
430
+ - spec/models/python_python_publication_response_spec.rb
431
+ - spec/models/package_upload_task_response_spec.rb
432
+ - spec/models/repository_version_spec.rb
235
433
  - spec/models/policy_enum_spec.rb
236
- - spec/models/python_python_package_content_spec.rb
434
+ - spec/models/paginatedpython_python_distribution_response_list_spec.rb
237
435
  - spec/models/python_python_distribution_response_spec.rb
238
- - spec/models/patchedpython_python_remote_spec.rb
436
+ - spec/models/python_python_package_content_spec.rb
437
+ - spec/models/paginatedpython_python_repository_response_list_spec.rb
438
+ - spec/models/package_upload_spec.rb
239
439
  - spec/models/python_python_repository_response_spec.rb
240
- - spec/models/paginatedpython_python_publication_response_list_spec.rb
241
- - spec/models/python_python_publication_response_spec.rb
242
- - spec/models/paginated_repository_version_response_list_spec.rb
243
- - spec/models/repository_add_remove_content_spec.rb
244
- - spec/models/python_python_remote_spec.rb
245
- - spec/models/patchedpython_python_distribution_spec.rb
246
- - spec/models/content_summary_response_spec.rb
440
+ - spec/models/package_types_enum_spec.rb
441
+ - spec/models/exclude_platforms_enum_spec.rb
442
+ - spec/models/repository_version_response_spec.rb
247
443
  - spec/models/python_bander_remote_spec.rb
248
- - spec/models/paginatedpython_python_distribution_response_list_spec.rb
249
- - spec/models/repository_version_spec.rb
250
- - spec/models/repository_sync_url_spec.rb
251
444
  - spec/models/content_summary_spec.rb
252
- - spec/models/python_python_remote_response_spec.rb
253
- - spec/models/paginatedpython_python_repository_response_list_spec.rb
254
- - spec/models/patchedpython_python_repository_spec.rb
255
- - spec/models/async_operation_response_spec.rb
256
445
  - spec/models/python_python_publication_spec.rb
446
+ - spec/models/paginatedpython_python_package_content_response_list_spec.rb
447
+ - spec/models/python_python_repository_spec.rb
448
+ - spec/models/package_metadata_response_spec.rb
449
+ - spec/models/patchedpython_python_repository_spec.rb
450
+ - spec/models/repository_add_remove_content_spec.rb
451
+ - spec/models/python_python_remote_response_spec.rb
257
452
  - spec/spec_helper.rb