pulp_python_client 3.1.0.dev01613100914 → 3.1.0.dev01613532830
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: 005f523a6e5ee5cded248cad258de4bc4c71aa3aa0e4fbec91bbab61d4df5660
|
4
|
+
data.tar.gz: f43ca2fe7ade116e3f99745c0744c68d7cb32a6f0bdbcd22a2ba859b28920f12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dc118529e6dfcf89dc61334f4afea824fb51f991942c7dea693865ddb653e1f6824309c2fc3c22404eee560138a2c5c39e4a952dcad4bcedf0382a7ad0de569
|
7
|
+
data.tar.gz: '084a96cf0fa75ba0db0658c71669fd14cd3bb1c8dcc29a40ed6d18a8eaa98d9e719d750afae78b81627e251938657f4768108810d1a61b4926ea2edb06228b0f'
|
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.1.0.
|
10
|
+
- Package version: 3.1.0.dev01613532830
|
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.1.0.
|
27
|
+
gem install ./pulp_python_client-3.1.0.dev01613532830.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.1.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.1.0.dev01613532830.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.1.0.
|
36
|
+
gem 'pulp_python_client', '~> 3.1.0.dev01613532830'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/ContentPackagesApi.md
CHANGED
@@ -148,6 +148,9 @@ opts = {
|
|
148
148
|
repository_version: 'repository_version_example', # String | repository_version
|
149
149
|
repository_version_added: 'repository_version_added_example', # String | repository_version_added
|
150
150
|
repository_version_removed: 'repository_version_removed_example', # String | repository_version_removed
|
151
|
+
requires_python: 'requires_python_example', # String | requires_python
|
152
|
+
requires_python__contains: 'requires_python__contains_example', # String | requires_python__contains
|
153
|
+
requires_python__in: 'requires_python__in_example', # String | requires_python__in
|
151
154
|
fields: 'fields_example', # String | A list of fields to include in the response.
|
152
155
|
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
153
156
|
}
|
@@ -183,6 +186,9 @@ Name | Type | Description | Notes
|
|
183
186
|
**repository_version** | **String**| repository_version | [optional]
|
184
187
|
**repository_version_added** | **String**| repository_version_added | [optional]
|
185
188
|
**repository_version_removed** | **String**| repository_version_removed | [optional]
|
189
|
+
**requires_python** | **String**| requires_python | [optional]
|
190
|
+
**requires_python__contains** | **String**| requires_python__contains | [optional]
|
191
|
+
**requires_python__in** | **String**| requires_python__in | [optional]
|
186
192
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
187
193
|
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
188
194
|
|
@@ -170,6 +170,9 @@ module PulpPythonClient
|
|
170
170
|
# @option opts [String] :repository_version repository_version
|
171
171
|
# @option opts [String] :repository_version_added repository_version_added
|
172
172
|
# @option opts [String] :repository_version_removed repository_version_removed
|
173
|
+
# @option opts [String] :requires_python requires_python
|
174
|
+
# @option opts [String] :requires_python__contains requires_python__contains
|
175
|
+
# @option opts [String] :requires_python__in requires_python__in
|
173
176
|
# @option opts [String] :fields A list of fields to include in the response.
|
174
177
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
175
178
|
# @return [PaginatedpythonPythonPackageContentResponseList]
|
@@ -198,6 +201,9 @@ module PulpPythonClient
|
|
198
201
|
# @option opts [String] :repository_version repository_version
|
199
202
|
# @option opts [String] :repository_version_added repository_version_added
|
200
203
|
# @option opts [String] :repository_version_removed repository_version_removed
|
204
|
+
# @option opts [String] :requires_python requires_python
|
205
|
+
# @option opts [String] :requires_python__contains requires_python__contains
|
206
|
+
# @option opts [String] :requires_python__in requires_python__in
|
201
207
|
# @option opts [String] :fields A list of fields to include in the response.
|
202
208
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
203
209
|
# @return [Array<(PaginatedpythonPythonPackageContentResponseList, Integer, Hash)>] PaginatedpythonPythonPackageContentResponseList data, response status code and response headers
|
@@ -231,6 +237,9 @@ module PulpPythonClient
|
|
231
237
|
query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
|
232
238
|
query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
|
233
239
|
query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
|
240
|
+
query_params[:'requires_python'] = opts[:'requires_python'] if !opts[:'requires_python'].nil?
|
241
|
+
query_params[:'requires_python__contains'] = opts[:'requires_python__contains'] if !opts[:'requires_python__contains'].nil?
|
242
|
+
query_params[:'requires_python__in'] = opts[:'requires_python__in'] if !opts[:'requires_python__in'].nil?
|
234
243
|
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
235
244
|
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
236
245
|
|
@@ -87,6 +87,9 @@ describe 'ContentPackagesApi' do
|
|
87
87
|
# @option opts [String] :repository_version repository_version
|
88
88
|
# @option opts [String] :repository_version_added repository_version_added
|
89
89
|
# @option opts [String] :repository_version_removed repository_version_removed
|
90
|
+
# @option opts [String] :requires_python requires_python
|
91
|
+
# @option opts [String] :requires_python__contains requires_python__contains
|
92
|
+
# @option opts [String] :requires_python__in requires_python__in
|
90
93
|
# @option opts [String] :fields A list of fields to include in the response.
|
91
94
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
92
95
|
# @return [PaginatedpythonPythonPackageContentResponseList]
|
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.1.0.
|
4
|
+
version: 3.1.0.dev01613532830
|
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-02-
|
11
|
+
date: 2021-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|