pulp_python_client 3.30.1 → 3.30.2
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/RepositoriesPythonBlocklistEntriesApi.md +2 -0
- data/lib/pulp_python_client/api/repositories_python_blocklist_entries_api.rb +3 -0
- data/lib/pulp_python_client/version.rb +1 -1
- data/spec/api/repositories_python_blocklist_entries_api_spec.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9b6e75e4271c9788e9b7deb0ec81c26f9304b393d44965d1c4ddfd4460cce86
|
|
4
|
+
data.tar.gz: 3f4d5bcb5d9c5ae4da288bcf9d27b32b175d1715f87dbe77f808c85aad812689
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c15de4d9d7984ef67624930c4d7945271c856464cb65c0f1be3b4488d5166a436489f1447b58be3be7256d1a82ac11a5a44b584c27e2524895214c34e2786aa2
|
|
7
|
+
data.tar.gz: 5060874b9a086deb4030cccafbbbae43cdcaa29306dbc6db73a60cd7168c1a4438f926461f5a22dc262f3095afabaf5c23a07acd0abb767b7842b48c60484936
|
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.30.
|
|
10
|
+
- Package version: 3.30.2
|
|
11
11
|
- Generator version: 7.10.0
|
|
12
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
13
13
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
@@ -25,16 +25,16 @@ gem build pulp_python_client.gemspec
|
|
|
25
25
|
Then either install the gem locally:
|
|
26
26
|
|
|
27
27
|
```shell
|
|
28
|
-
gem install ./pulp_python_client-3.30.
|
|
28
|
+
gem install ./pulp_python_client-3.30.2.gem
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
(for development, run `gem install --dev ./pulp_python_client-3.30.
|
|
31
|
+
(for development, run `gem install --dev ./pulp_python_client-3.30.2.gem` to install the development dependencies)
|
|
32
32
|
|
|
33
33
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
34
34
|
|
|
35
35
|
Finally add this to the Gemfile:
|
|
36
36
|
|
|
37
|
-
gem 'pulp_python_client', '~> 3.30.
|
|
37
|
+
gem 'pulp_python_client', '~> 3.30.2'
|
|
38
38
|
|
|
39
39
|
### Install from Git
|
|
40
40
|
|
|
@@ -193,6 +193,7 @@ opts = {
|
|
|
193
193
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
194
194
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
195
195
|
version: 'version_example', # String | Filter results where version matches value
|
|
196
|
+
version__isnull: true, # Boolean | Filter results where version has a null value
|
|
196
197
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
197
198
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
198
199
|
}
|
|
@@ -240,6 +241,7 @@ end
|
|
|
240
241
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
241
242
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
242
243
|
| **version** | **String** | Filter results where version matches value | [optional] |
|
|
244
|
+
| **version__isnull** | **Boolean** | Filter results where version has a null value | [optional] |
|
|
243
245
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
244
246
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
245
247
|
|
|
@@ -175,6 +175,7 @@ module PulpPythonClient
|
|
|
175
175
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
176
176
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
177
177
|
# @option opts [String] :version Filter results where version matches value
|
|
178
|
+
# @option opts [Boolean] :version__isnull Filter results where version has a null value
|
|
178
179
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
179
180
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
180
181
|
# @return [PaginatedpythonPythonBlocklistEntryResponseList]
|
|
@@ -198,6 +199,7 @@ module PulpPythonClient
|
|
|
198
199
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
199
200
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
200
201
|
# @option opts [String] :version Filter results where version matches value
|
|
202
|
+
# @option opts [Boolean] :version__isnull Filter results where version has a null value
|
|
201
203
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
202
204
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
203
205
|
# @return [Array<(PaginatedpythonPythonBlocklistEntryResponseList, Integer, Hash)>] PaginatedpythonPythonBlocklistEntryResponseList data, response status code and response headers
|
|
@@ -228,6 +230,7 @@ module PulpPythonClient
|
|
|
228
230
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
229
231
|
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
230
232
|
query_params[:'version'] = opts[:'version'] if !opts[:'version'].nil?
|
|
233
|
+
query_params[:'version__isnull'] = opts[:'version__isnull'] if !opts[:'version__isnull'].nil?
|
|
231
234
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
232
235
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
233
236
|
|
|
@@ -75,6 +75,7 @@ describe 'RepositoriesPythonBlocklistEntriesApi' do
|
|
|
75
75
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
76
76
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
77
77
|
# @option opts [String] :version Filter results where version matches value
|
|
78
|
+
# @option opts [Boolean] :version__isnull Filter results where version has a null value
|
|
78
79
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
79
80
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
80
81
|
# @return [PaginatedpythonPythonBlocklistEntryResponseList]
|