pulp_python_client 3.3.0.dev1619495506 → 3.3.0.dev1619581911
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: 6462641a07d6ab27f41b8924af8b20c311933528e546fa4aca8b4974c5856f13
|
4
|
+
data.tar.gz: b69b282c6aaa2c9fa7910690b708ab569fdd6daaa321f4cf250beb0a1a3558fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4a1afecf9af372af2cc30410e372ad6c9fc4517d807370ed8ea95fb17f337330541f01c6302d9a91c42fe8141df95ee2d696f8ac4762414e8fbf3e2ab9093e6
|
7
|
+
data.tar.gz: f74f5ffda778b312fe3fc8090aeec37134cddf2a2760f465bf26d3a4690ac1a59d0dea0ee28039bb13cddda891ad973d7bf0f3fb8c66fc8ee8e1a6e3db06f21f
|
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.3.0.
|
10
|
+
- Package version: 3.3.0.dev1619581911
|
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.3.0.
|
27
|
+
gem install ./pulp_python_client-3.3.0.dev1619581911.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.3.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.3.0.dev1619581911.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.3.0.
|
36
|
+
gem 'pulp_python_client', '~> 3.3.0.dev1619581911'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
9
|
**number** | **Integer** | | [optional] [readonly]
|
10
|
+
**repository** | **String** | | [optional] [readonly]
|
10
11
|
**base_version** | **String** | A repository version whose content was used as the initial set of content for this repository version | [optional]
|
11
12
|
**content_summary** | [**ContentSummaryResponse**](ContentSummaryResponse.md) | Various count summaries of the content in the version and the HREF to view them. | [optional] [readonly]
|
12
13
|
|
@@ -18,6 +19,7 @@ require 'PulpPythonClient'
|
|
18
19
|
instance = PulpPythonClient::RepositoryVersionResponse.new(pulp_href: null,
|
19
20
|
pulp_created: null,
|
20
21
|
number: null,
|
22
|
+
repository: null,
|
21
23
|
base_version: null,
|
22
24
|
content_summary: null)
|
23
25
|
```
|
@@ -22,6 +22,8 @@ module PulpPythonClient
|
|
22
22
|
|
23
23
|
attr_accessor :number
|
24
24
|
|
25
|
+
attr_accessor :repository
|
26
|
+
|
25
27
|
# A repository version whose content was used as the initial set of content for this repository version
|
26
28
|
attr_accessor :base_version
|
27
29
|
|
@@ -34,6 +36,7 @@ module PulpPythonClient
|
|
34
36
|
:'pulp_href' => :'pulp_href',
|
35
37
|
:'pulp_created' => :'pulp_created',
|
36
38
|
:'number' => :'number',
|
39
|
+
:'repository' => :'repository',
|
37
40
|
:'base_version' => :'base_version',
|
38
41
|
:'content_summary' => :'content_summary'
|
39
42
|
}
|
@@ -45,6 +48,7 @@ module PulpPythonClient
|
|
45
48
|
:'pulp_href' => :'String',
|
46
49
|
:'pulp_created' => :'DateTime',
|
47
50
|
:'number' => :'Integer',
|
51
|
+
:'repository' => :'String',
|
48
52
|
:'base_version' => :'String',
|
49
53
|
:'content_summary' => :'ContentSummaryResponse'
|
50
54
|
}
|
@@ -83,6 +87,10 @@ module PulpPythonClient
|
|
83
87
|
self.number = attributes[:'number']
|
84
88
|
end
|
85
89
|
|
90
|
+
if attributes.key?(:'repository')
|
91
|
+
self.repository = attributes[:'repository']
|
92
|
+
end
|
93
|
+
|
86
94
|
if attributes.key?(:'base_version')
|
87
95
|
self.base_version = attributes[:'base_version']
|
88
96
|
end
|
@@ -113,6 +121,7 @@ module PulpPythonClient
|
|
113
121
|
pulp_href == o.pulp_href &&
|
114
122
|
pulp_created == o.pulp_created &&
|
115
123
|
number == o.number &&
|
124
|
+
repository == o.repository &&
|
116
125
|
base_version == o.base_version &&
|
117
126
|
content_summary == o.content_summary
|
118
127
|
end
|
@@ -126,7 +135,7 @@ module PulpPythonClient
|
|
126
135
|
# Calculates hash code according to all attributes.
|
127
136
|
# @return [Integer] Hash code
|
128
137
|
def hash
|
129
|
-
[pulp_href, pulp_created, number, base_version, content_summary].hash
|
138
|
+
[pulp_href, pulp_created, number, repository, base_version, content_summary].hash
|
130
139
|
end
|
131
140
|
|
132
141
|
# Builds the object from hash
|
@@ -50,6 +50,12 @@ describe 'RepositoryVersionResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "repository"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
53
59
|
describe 'test attribute "base_version"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
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.3.0.
|
4
|
+
version: 3.3.0.dev1619581911
|
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-04-
|
11
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|