pulp_python_client 3.9.0.dev1673406961 → 3.9.0.dev1673579826
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.
Potentially problematic release.
This version of pulp_python_client might be problematic. Click here for more details.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a8a89d28f70e9cddb5bf5b56c504588c964fffa31eb48e065c35741cf08461d
|
4
|
+
data.tar.gz: 9e88327f4d153b640255782fda003333688d892ba3f24a56bc5a151c975aed43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 461655de2e7688abe3062e2a2d3de275055bd4598a164c983e9e91802a6f733fb1413566f2690cb442f6dace32144b51b2f3d6c492de239b4d273ee0673515db
|
7
|
+
data.tar.gz: 35158b6ba7891f13a3d4469bd3f86b415c74e7fd167aa8c99da624930f7f40fe03bc2a4ade204240fe8babadf049118cdd07410e3d8fa41f1f653f4e68786f05
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 3.9.0.
|
10
|
+
- Package version: 3.9.0.dev1673579826
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_python_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_python_client-3.9.0.
|
27
|
+
gem install ./pulp_python_client-3.9.0.dev1673579826.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.9.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.9.0.dev1673579826.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_python_client', '~> 3.9.0.
|
36
|
+
gem 'pulp_python_client', '~> 3.9.0.dev1673579826'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -154,6 +154,8 @@ opts = {
|
|
154
154
|
offset: 56, # Integer | The initial index from which to return the results.
|
155
155
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
156
156
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
157
|
+
repository: 'repository_example', # String | Filter results where repository matches value
|
158
|
+
repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
|
157
159
|
with_content: 'with_content_example', # String | Filter distributions based on the content served by them
|
158
160
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
159
161
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
@@ -186,6 +188,8 @@ Name | Type | Description | Notes
|
|
186
188
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
187
189
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
188
190
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
191
|
+
**repository** | **String**| Filter results where repository matches value | [optional]
|
192
|
+
**repository__in** | [**Array<String>**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
|
189
193
|
**with_content** | **String**| Filter distributions based on the content served by them | [optional]
|
190
194
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
191
195
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
@@ -161,6 +161,8 @@ module PulpPythonClient
|
|
161
161
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
162
162
|
# @option opts [Array<String>] :ordering Ordering
|
163
163
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
164
|
+
# @option opts [String] :repository Filter results where repository matches value
|
165
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
164
166
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
165
167
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
166
168
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
@@ -186,6 +188,8 @@ module PulpPythonClient
|
|
186
188
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
187
189
|
# @option opts [Array<String>] :ordering Ordering
|
188
190
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
191
|
+
# @option opts [String] :repository Filter results where repository matches value
|
192
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
189
193
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
190
194
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
191
195
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
@@ -216,6 +220,8 @@ module PulpPythonClient
|
|
216
220
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
217
221
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
218
222
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
223
|
+
query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
|
224
|
+
query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?
|
219
225
|
query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
|
220
226
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
221
227
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
@@ -73,6 +73,8 @@ describe 'DistributionsPypiApi' do
|
|
73
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
74
74
|
# @option opts [Array<String>] :ordering Ordering
|
75
75
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
76
|
+
# @option opts [String] :repository Filter results where repository matches value
|
77
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
76
78
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
77
79
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
78
80
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
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.9.0.
|
4
|
+
version: 3.9.0.dev1673579826
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -245,50 +245,50 @@ signing_key:
|
|
245
245
|
specification_version: 4
|
246
246
|
summary: Pulp 3 API Ruby Gem
|
247
247
|
test_files:
|
248
|
-
- spec/api/
|
248
|
+
- spec/api/pypi_legacy_api_spec.rb
|
249
249
|
- spec/api/publications_pypi_api_spec.rb
|
250
|
-
- spec/api/
|
250
|
+
- spec/api/distributions_pypi_api_spec.rb
|
251
|
+
- spec/api/remotes_python_api_spec.rb
|
251
252
|
- spec/api/content_packages_api_spec.rb
|
253
|
+
- spec/api/pypi_simple_api_spec.rb
|
254
|
+
- spec/api/pypi_metadata_api_spec.rb
|
252
255
|
- spec/api/pypi_api_spec.rb
|
253
256
|
- spec/api/repositories_python_versions_api_spec.rb
|
254
257
|
- spec/api/repositories_python_api_spec.rb
|
255
|
-
- spec/api/remotes_python_api_spec.rb
|
256
|
-
- spec/api/pypi_legacy_api_spec.rb
|
257
|
-
- spec/api/distributions_pypi_api_spec.rb
|
258
258
|
- spec/api_client_spec.rb
|
259
259
|
- spec/configuration_spec.rb
|
260
|
-
- spec/models/
|
261
|
-
- spec/models/
|
262
|
-
- spec/models/python_python_package_content_spec.rb
|
263
|
-
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
264
|
-
- spec/models/exclude_platforms_enum_spec.rb
|
265
|
-
- spec/models/python_python_package_content_response_spec.rb
|
266
|
-
- spec/models/async_operation_response_spec.rb
|
267
|
-
- spec/models/patchedpython_python_remote_spec.rb
|
268
|
-
- spec/models/python_python_publication_spec.rb
|
260
|
+
- spec/models/package_upload_spec.rb
|
261
|
+
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
269
262
|
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
270
|
-
- spec/models/
|
263
|
+
- spec/models/python_python_remote_response_spec.rb
|
264
|
+
- spec/models/python_python_remote_spec.rb
|
265
|
+
- spec/models/content_summary_response_spec.rb
|
266
|
+
- spec/models/python_python_package_content_response_spec.rb
|
271
267
|
- spec/models/package_metadata_response_spec.rb
|
268
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
269
|
+
- spec/models/python_python_package_content_spec.rb
|
270
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
272
271
|
- spec/models/package_types_enum_spec.rb
|
273
|
-
- spec/models/
|
272
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
273
|
+
- spec/models/package_upload_task_response_spec.rb
|
274
274
|
- spec/models/repair_spec.rb
|
275
|
-
- spec/models/
|
276
|
-
- spec/models/
|
277
|
-
- spec/models/repository_version_response_spec.rb
|
275
|
+
- spec/models/repository_sync_url_spec.rb
|
276
|
+
- spec/models/python_python_distribution_spec.rb
|
278
277
|
- spec/models/python_bander_remote_spec.rb
|
279
278
|
- spec/models/summary_response_spec.rb
|
279
|
+
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
280
|
+
- spec/models/repository_version_response_spec.rb
|
280
281
|
- spec/models/repository_add_remove_content_spec.rb
|
281
|
-
- spec/models/
|
282
|
-
- spec/models/
|
283
|
-
- spec/models/python_python_remote_response_spec.rb
|
284
|
-
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
285
|
-
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
286
|
-
- spec/models/python_python_distribution_spec.rb
|
282
|
+
- spec/models/policy_enum_spec.rb
|
283
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
287
284
|
- spec/models/python_python_distribution_response_spec.rb
|
288
|
-
- spec/models/
|
289
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
285
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
290
286
|
- spec/models/python_python_repository_response_spec.rb
|
291
287
|
- spec/models/python_python_repository_spec.rb
|
292
|
-
- spec/models/
|
288
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
289
|
+
- spec/models/python_python_publication_spec.rb
|
290
|
+
- spec/models/python_python_remote_response_hidden_fields_spec.rb
|
291
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
292
|
+
- spec/models/async_operation_response_spec.rb
|
293
293
|
- spec/models/python_python_publication_response_spec.rb
|
294
294
|
- spec/spec_helper.rb
|