pulp_python_client 3.15.1 → 3.17.0

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -17
  3. data/docs/ContentPackagesApi.md +58 -36
  4. data/docs/DistributionsPypiApi.md +72 -32
  5. data/docs/PublicationsPypiApi.md +40 -16
  6. data/docs/PypiApi.md +2 -0
  7. data/docs/PypiLegacyApi.md +2 -0
  8. data/docs/PypiMetadataApi.md +2 -0
  9. data/docs/PypiSimpleApi.md +6 -0
  10. data/docs/PythonPythonPackageContentResponse.md +46 -36
  11. data/docs/RemotesPythonApi.md +74 -32
  12. data/docs/RepositoriesPythonApi.md +96 -44
  13. data/docs/RepositoriesPythonVersionsApi.md +22 -10
  14. data/lib/pulp_python_client/api/content_packages_api.rb +69 -42
  15. data/lib/pulp_python_client/api/distributions_pypi_api.rb +36 -0
  16. data/lib/pulp_python_client/api/publications_pypi_api.rb +24 -0
  17. data/lib/pulp_python_client/api/pypi_api.rb +3 -0
  18. data/lib/pulp_python_client/api/pypi_legacy_api.rb +3 -0
  19. data/lib/pulp_python_client/api/pypi_metadata_api.rb +3 -0
  20. data/lib/pulp_python_client/api/pypi_simple_api.rb +9 -0
  21. data/lib/pulp_python_client/api/remotes_python_api.rb +39 -0
  22. data/lib/pulp_python_client/api/repositories_python_api.rb +45 -0
  23. data/lib/pulp_python_client/api/repositories_python_versions_api.rb +15 -3
  24. data/lib/pulp_python_client/models/python_python_package_content_response.rb +199 -146
  25. data/lib/pulp_python_client/version.rb +1 -1
  26. data/spec/api/content_packages_api_spec.rb +23 -14
  27. data/spec/api/distributions_pypi_api_spec.rb +12 -0
  28. data/spec/api/publications_pypi_api_spec.rb +8 -0
  29. data/spec/api/pypi_api_spec.rb +1 -0
  30. data/spec/api/pypi_legacy_api_spec.rb +1 -0
  31. data/spec/api/pypi_metadata_api_spec.rb +1 -0
  32. data/spec/api/pypi_simple_api_spec.rb +3 -0
  33. data/spec/api/remotes_python_api_spec.rb +13 -0
  34. data/spec/api/repositories_python_api_spec.rb +15 -0
  35. data/spec/api/repositories_python_versions_api_spec.rb +5 -1
  36. data/spec/models/python_python_package_content_response_spec.rb +54 -24
  37. metadata +39 -39
@@ -63,85 +63,85 @@ describe PulpPythonClient::PythonPythonPackageContentResponse do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "filename"' do
66
+ describe 'test attribute "author"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "packagetype"' do
72
+ describe 'test attribute "author_email"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "name"' do
78
+ describe 'test attribute "description"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "version"' do
84
+ describe 'test attribute "home_page"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "sha256"' do
90
+ describe 'test attribute "keywords"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "metadata_version"' do
96
+ describe 'test attribute "license"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "summary"' do
102
+ describe 'test attribute "metadata_version"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
106
106
  end
107
107
 
108
- describe 'test attribute "description"' do
108
+ describe 'test attribute "name"' do
109
109
  it 'should work' do
110
110
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
111
  end
112
112
  end
113
113
 
114
- describe 'test attribute "description_content_type"' do
114
+ describe 'test attribute "platform"' do
115
115
  it 'should work' do
116
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
117
  end
118
118
  end
119
119
 
120
- describe 'test attribute "keywords"' do
120
+ describe 'test attribute "summary"' do
121
121
  it 'should work' do
122
122
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
123
  end
124
124
  end
125
125
 
126
- describe 'test attribute "home_page"' do
126
+ describe 'test attribute "version"' do
127
127
  it 'should work' do
128
128
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
129
  end
130
130
  end
131
131
 
132
- describe 'test attribute "download_url"' do
132
+ describe 'test attribute "classifiers"' do
133
133
  it 'should work' do
134
134
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
135
  end
136
136
  end
137
137
 
138
- describe 'test attribute "author"' do
138
+ describe 'test attribute "download_url"' do
139
139
  it 'should work' do
140
140
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
141
  end
142
142
  end
143
143
 
144
- describe 'test attribute "author_email"' do
144
+ describe 'test attribute "supported_platform"' do
145
145
  it 'should work' do
146
146
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
147
  end
@@ -159,7 +159,37 @@ describe PulpPythonClient::PythonPythonPackageContentResponse do
159
159
  end
160
160
  end
161
161
 
162
- describe 'test attribute "license"' do
162
+ describe 'test attribute "obsoletes_dist"' do
163
+ it 'should work' do
164
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
165
+ end
166
+ end
167
+
168
+ describe 'test attribute "project_url"' do
169
+ it 'should work' do
170
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
171
+ end
172
+ end
173
+
174
+ describe 'test attribute "project_urls"' do
175
+ it 'should work' do
176
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
177
+ end
178
+ end
179
+
180
+ describe 'test attribute "provides_dist"' do
181
+ it 'should work' do
182
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
183
+ end
184
+ end
185
+
186
+ describe 'test attribute "requires_external"' do
187
+ it 'should work' do
188
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
189
+ end
190
+ end
191
+
192
+ describe 'test attribute "requires_dist"' do
163
193
  it 'should work' do
164
194
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
165
195
  end
@@ -171,55 +201,55 @@ describe PulpPythonClient::PythonPythonPackageContentResponse do
171
201
  end
172
202
  end
173
203
 
174
- describe 'test attribute "project_url"' do
204
+ describe 'test attribute "description_content_type"' do
175
205
  it 'should work' do
176
206
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
177
207
  end
178
208
  end
179
209
 
180
- describe 'test attribute "project_urls"' do
210
+ describe 'test attribute "provides_extras"' do
181
211
  it 'should work' do
182
212
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
183
213
  end
184
214
  end
185
215
 
186
- describe 'test attribute "platform"' do
216
+ describe 'test attribute "dynamic"' do
187
217
  it 'should work' do
188
218
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
189
219
  end
190
220
  end
191
221
 
192
- describe 'test attribute "supported_platform"' do
222
+ describe 'test attribute "license_expression"' do
193
223
  it 'should work' do
194
224
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
195
225
  end
196
226
  end
197
227
 
198
- describe 'test attribute "requires_dist"' do
228
+ describe 'test attribute "license_file"' do
199
229
  it 'should work' do
200
230
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
201
231
  end
202
232
  end
203
233
 
204
- describe 'test attribute "provides_dist"' do
234
+ describe 'test attribute "filename"' do
205
235
  it 'should work' do
206
236
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
207
237
  end
208
238
  end
209
239
 
210
- describe 'test attribute "obsoletes_dist"' do
240
+ describe 'test attribute "packagetype"' do
211
241
  it 'should work' do
212
242
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
213
243
  end
214
244
  end
215
245
 
216
- describe 'test attribute "requires_external"' do
246
+ describe 'test attribute "python_version"' do
217
247
  it 'should work' do
218
248
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
219
249
  end
220
250
  end
221
251
 
222
- describe 'test attribute "classifiers"' do
252
+ describe 'test attribute "sha256"' do
223
253
  it 'should work' do
224
254
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
225
255
  end
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.15.1
4
+ version: 3.17.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: 2025-06-10 00:00:00.000000000 Z
11
+ date: 2025-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -266,53 +266,53 @@ signing_key:
266
266
  specification_version: 4
267
267
  summary: Pulp 3 API Ruby Gem
268
268
  test_files:
269
- - spec/api/remotes_python_api_spec.rb
270
- - spec/api/publications_pypi_api_spec.rb
271
- - spec/api/repositories_python_versions_api_spec.rb
272
- - spec/api/pypi_simple_api_spec.rb
273
- - spec/api/content_packages_api_spec.rb
274
- - spec/api/distributions_pypi_api_spec.rb
275
- - spec/api/pypi_legacy_api_spec.rb
276
269
  - spec/api/repositories_python_api_spec.rb
270
+ - spec/api/pypi_legacy_api_spec.rb
271
+ - spec/api/pypi_simple_api_spec.rb
277
272
  - spec/api/pypi_metadata_api_spec.rb
273
+ - spec/api/remotes_python_api_spec.rb
274
+ - spec/api/publications_pypi_api_spec.rb
278
275
  - spec/api/pypi_api_spec.rb
279
- - spec/models/python_python_package_content_response_spec.rb
280
- - spec/models/package_metadata_response_spec.rb
276
+ - spec/api/distributions_pypi_api_spec.rb
277
+ - spec/api/content_packages_api_spec.rb
278
+ - spec/api/repositories_python_versions_api_spec.rb
281
279
  - spec/models/patchedpython_python_repository_spec.rb
280
+ - spec/models/unset_label_spec.rb
281
+ - spec/models/python_python_remote_response_spec.rb
282
+ - spec/models/repair_spec.rb
283
+ - spec/models/python_python_repository_response_spec.rb
284
+ - spec/models/paginatedpython_python_distribution_response_list_spec.rb
282
285
  - spec/models/repository_version_response_spec.rb
283
- - spec/models/paginatedpython_python_remote_response_list_spec.rb
284
- - spec/models/python_python_publication_spec.rb
285
- - spec/models/patchedpython_python_remote_spec.rb
286
+ - spec/models/policy_enum_spec.rb
287
+ - spec/models/paginatedpython_python_package_content_response_list_spec.rb
286
288
  - spec/models/paginated_repository_version_response_list_spec.rb
287
- - spec/models/nested_role_spec.rb
288
- - spec/models/python_python_remote_spec.rb
289
- - spec/models/unset_label_response_spec.rb
290
- - spec/models/python_python_repository_response_spec.rb
291
- - spec/models/python_python_distribution_response_spec.rb
289
+ - spec/models/python_python_distribution_spec.rb
290
+ - spec/models/paginatedpython_python_publication_response_list_spec.rb
292
291
  - spec/models/nested_role_response_spec.rb
293
- - spec/models/set_label_spec.rb
294
- - spec/models/content_summary_response_spec.rb
295
- - spec/models/package_types_enum_spec.rb
296
- - spec/models/repair_spec.rb
297
- - spec/models/repository_sync_url_spec.rb
298
- - spec/models/summary_response_spec.rb
299
- - spec/models/object_roles_response_spec.rb
300
- - spec/models/python_python_remote_response_spec.rb
292
+ - spec/models/unset_label_response_spec.rb
301
293
  - spec/models/set_label_response_spec.rb
302
- - spec/models/python_python_repository_spec.rb
303
- - spec/models/paginatedpython_python_package_content_response_list_spec.rb
304
- - spec/models/async_operation_response_spec.rb
305
- - spec/models/policy_enum_spec.rb
306
- - spec/models/python_python_distribution_spec.rb
307
- - spec/models/patchedpython_python_distribution_spec.rb
308
- - spec/models/paginatedpython_python_repository_response_list_spec.rb
294
+ - spec/models/python_python_remote_spec.rb
295
+ - spec/models/python_python_package_content_response_spec.rb
309
296
  - spec/models/exclude_platforms_enum_spec.rb
310
- - spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
297
+ - spec/models/python_python_publication_spec.rb
298
+ - spec/models/content_summary_response_spec.rb
299
+ - spec/models/patchedpython_python_distribution_spec.rb
311
300
  - spec/models/python_python_publication_response_spec.rb
301
+ - spec/models/paginatedpython_python_remote_response_list_spec.rb
302
+ - spec/models/package_metadata_response_spec.rb
303
+ - spec/models/object_roles_response_spec.rb
312
304
  - spec/models/my_permissions_response_spec.rb
313
- - spec/models/paginatedpython_python_distribution_response_list_spec.rb
314
- - spec/models/repository_add_remove_content_spec.rb
315
- - spec/models/paginatedpython_python_publication_response_list_spec.rb
316
- - spec/models/unset_label_spec.rb
305
+ - spec/models/async_operation_response_spec.rb
306
+ - spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
307
+ - spec/models/summary_response_spec.rb
308
+ - spec/models/repository_sync_url_spec.rb
309
+ - spec/models/set_label_spec.rb
317
310
  - spec/models/package_upload_task_response_spec.rb
311
+ - spec/models/python_python_repository_spec.rb
312
+ - spec/models/repository_add_remove_content_spec.rb
313
+ - spec/models/patchedpython_python_remote_spec.rb
314
+ - spec/models/package_types_enum_spec.rb
315
+ - spec/models/paginatedpython_python_repository_response_list_spec.rb
316
+ - spec/models/python_python_distribution_response_spec.rb
317
+ - spec/models/nested_role_spec.rb
318
318
  - spec/spec_helper.rb