pulp_python_client 3.7.0.dev1651380255 → 3.7.0.dev1651724977
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: 17e23862fe9eeb7717031769d062b2ad05cc7c96e781c8a44b3a20e77f42761e
|
4
|
+
data.tar.gz: 911f5d21218c558643015b7a14ad6d5bc7febe1d29d3eff4ca0d8cc21ca107af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3aca8b436337dd9d60d76f3035b626bbbc313220bdee2fbc21c941097c1eb22cc6dd00fe4c1e7a4e1a61a15b411532f0870752e8831685014ba21fcac2fa8d4
|
7
|
+
data.tar.gz: d04e0e36d16b41c14dca09c456b2c0d440c8476561caa415b1257c91753fe2dc25755ec0de981982a46e1b0c1192c7118a84c03583920a2a15c48ad37ccbe98a
|
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.7.0.
|
10
|
+
- Package version: 3.7.0.dev1651724977
|
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.7.0.
|
27
|
+
gem install ./pulp_python_client-3.7.0.dev1651724977.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.7.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.7.0.dev1651724977.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.7.0.
|
36
|
+
gem 'pulp_python_client', '~> 3.7.0.dev1651724977'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/PublicationsPypiApi.md
CHANGED
@@ -149,6 +149,7 @@ opts = {
|
|
149
149
|
pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
|
150
150
|
pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
|
151
151
|
pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
|
152
|
+
repository: 'repository_example', # String | Repository referenced by HREF
|
152
153
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
153
154
|
fields: 'fields_example', # String | A list of fields to include in the response.
|
154
155
|
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
@@ -179,6 +180,7 @@ Name | Type | Description | Notes
|
|
179
180
|
**pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
|
180
181
|
**pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
|
181
182
|
**pulp_created__range** | [**Array<DateTime>**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
|
183
|
+
**repository** | **String**| Repository referenced by HREF | [optional]
|
182
184
|
**repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
|
183
185
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
184
186
|
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
@@ -157,6 +157,7 @@ module PulpPythonClient
|
|
157
157
|
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
158
158
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
159
159
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
160
|
+
# @option opts [String] :repository Repository referenced by HREF
|
160
161
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
161
162
|
# @option opts [String] :fields A list of fields to include in the response.
|
162
163
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
@@ -180,6 +181,7 @@ module PulpPythonClient
|
|
180
181
|
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
181
182
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
182
183
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
184
|
+
# @option opts [String] :repository Repository referenced by HREF
|
183
185
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
184
186
|
# @option opts [String] :fields A list of fields to include in the response.
|
185
187
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
@@ -204,6 +206,7 @@ module PulpPythonClient
|
|
204
206
|
query_params[:'pulp_created__lt'] = opts[:'pulp_created__lt'] if !opts[:'pulp_created__lt'].nil?
|
205
207
|
query_params[:'pulp_created__lte'] = opts[:'pulp_created__lte'] if !opts[:'pulp_created__lte'].nil?
|
206
208
|
query_params[:'pulp_created__range'] = @api_client.build_collection_param(opts[:'pulp_created__range'], :csv) if !opts[:'pulp_created__range'].nil?
|
209
|
+
query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
|
207
210
|
query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
|
208
211
|
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
209
212
|
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
@@ -71,6 +71,7 @@ describe 'PublicationsPypiApi' do
|
|
71
71
|
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
72
72
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
73
73
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
74
|
+
# @option opts [String] :repository Repository referenced by HREF
|
74
75
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
75
76
|
# @option opts [String] :fields A list of fields to include in the response.
|
76
77
|
# @option opts [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.7.0.
|
4
|
+
version: 3.7.0.dev1651724977
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|