pulp_python_client 3.6.1 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/docs/ContentPackagesApi.md +4 -2
- data/docs/DistributionsPypiApi.md +2 -2
- data/docs/PatchedpythonPythonRemote.md +2 -2
- data/docs/PublicationsPypiApi.md +4 -2
- data/docs/PythonPythonPackageContent.md +2 -0
- data/docs/PythonPythonRemote.md +2 -2
- data/docs/RemotesPythonApi.md +2 -2
- data/docs/Repair.md +17 -0
- data/docs/RepositoriesPythonApi.md +2 -2
- data/docs/RepositoriesPythonVersionsApi.md +6 -6
- data/git_push.sh +58 -0
- data/lib/pulp_python_client/api/content_packages_api.rb +10 -3
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +7 -3
- data/lib/pulp_python_client/api/publications_pypi_api.rb +10 -3
- data/lib/pulp_python_client/api/remotes_python_api.rb +7 -3
- data/lib/pulp_python_client/api/repositories_python_api.rb +7 -3
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +16 -12
- data/lib/pulp_python_client/api_client.rb +1 -1
- data/lib/pulp_python_client/models/patchedpython_python_remote.rb +2 -2
- data/lib/pulp_python_client/models/python_python_package_content.rb +11 -1
- data/lib/pulp_python_client/models/python_python_remote.rb +2 -2
- data/lib/pulp_python_client/models/{repository_version.rb → repair.rb} +13 -12
- data/lib/pulp_python_client/version.rb +1 -1
- data/lib/pulp_python_client.rb +1 -2
- data/pulp_python_client.gemspec +3 -3
- data/spec/api/content_packages_api_spec.rb +2 -1
- data/spec/api/distributions_pypi_api_spec.rb +1 -1
- data/spec/api/publications_pypi_api_spec.rb +2 -1
- data/spec/api/remotes_python_api_spec.rb +1 -1
- data/spec/api/repositories_python_api_spec.rb +1 -1
- data/spec/api/repositories_python_versions_api_spec.rb +2 -2
- data/spec/models/python_python_package_content_spec.rb +6 -0
- data/spec/models/{repository_version_spec.rb → repair_spec.rb} +7 -7
- metadata +46 -49
- data/docs/ContentSummary.md +0 -21
- data/docs/RepositoryVersion.md +0 -17
- data/lib/pulp_python_client/models/content_summary.rb +0 -246
- data/spec/models/content_summary_spec.rb +0 -53
data/docs/ContentSummary.md
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# PulpPythonClient::ContentSummary
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
Name | Type | Description | Notes
|
6
|
-
------------ | ------------- | ------------- | -------------
|
7
|
-
**added** | **Hash<String, Object>** | |
|
8
|
-
**removed** | **Hash<String, Object>** | |
|
9
|
-
**present** | **Hash<String, Object>** | |
|
10
|
-
|
11
|
-
## Code Sample
|
12
|
-
|
13
|
-
```ruby
|
14
|
-
require 'PulpPythonClient'
|
15
|
-
|
16
|
-
instance = PulpPythonClient::ContentSummary.new(added: null,
|
17
|
-
removed: null,
|
18
|
-
present: null)
|
19
|
-
```
|
20
|
-
|
21
|
-
|
data/docs/RepositoryVersion.md
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# PulpPythonClient::RepositoryVersion
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
Name | Type | Description | Notes
|
6
|
-
------------ | ------------- | ------------- | -------------
|
7
|
-
**base_version** | **String** | A repository version whose content was used as the initial set of content for this repository version | [optional]
|
8
|
-
|
9
|
-
## Code Sample
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
require 'PulpPythonClient'
|
13
|
-
|
14
|
-
instance = PulpPythonClient::RepositoryVersion.new(base_version: null)
|
15
|
-
```
|
16
|
-
|
17
|
-
|
@@ -1,246 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#Pulp 3 API
|
3
|
-
|
4
|
-
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
-
|
6
|
-
The version of the OpenAPI document: v3
|
7
|
-
Contact: pulp-list@redhat.com
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'date'
|
14
|
-
|
15
|
-
module PulpPythonClient
|
16
|
-
# Serializer for the RepositoryVersion content summary
|
17
|
-
class ContentSummary
|
18
|
-
attr_accessor :added
|
19
|
-
|
20
|
-
attr_accessor :removed
|
21
|
-
|
22
|
-
attr_accessor :present
|
23
|
-
|
24
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
25
|
-
def self.attribute_map
|
26
|
-
{
|
27
|
-
:'added' => :'added',
|
28
|
-
:'removed' => :'removed',
|
29
|
-
:'present' => :'present'
|
30
|
-
}
|
31
|
-
end
|
32
|
-
|
33
|
-
# Attribute type mapping.
|
34
|
-
def self.openapi_types
|
35
|
-
{
|
36
|
-
:'added' => :'Hash<String, Object>',
|
37
|
-
:'removed' => :'Hash<String, Object>',
|
38
|
-
:'present' => :'Hash<String, Object>'
|
39
|
-
}
|
40
|
-
end
|
41
|
-
|
42
|
-
# List of attributes with nullable: true
|
43
|
-
def self.openapi_nullable
|
44
|
-
Set.new([
|
45
|
-
])
|
46
|
-
end
|
47
|
-
|
48
|
-
# Initializes the object
|
49
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
50
|
-
def initialize(attributes = {})
|
51
|
-
if (!attributes.is_a?(Hash))
|
52
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpPythonClient::ContentSummary` initialize method"
|
53
|
-
end
|
54
|
-
|
55
|
-
# check to see if the attribute exists and convert string to symbol for hash key
|
56
|
-
attributes = attributes.each_with_object({}) { |(k, v), h|
|
57
|
-
if (!self.class.attribute_map.key?(k.to_sym))
|
58
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpPythonClient::ContentSummary`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
59
|
-
end
|
60
|
-
h[k.to_sym] = v
|
61
|
-
}
|
62
|
-
|
63
|
-
if attributes.key?(:'added')
|
64
|
-
if (value = attributes[:'added']).is_a?(Hash)
|
65
|
-
self.added = value
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
if attributes.key?(:'removed')
|
70
|
-
if (value = attributes[:'removed']).is_a?(Hash)
|
71
|
-
self.removed = value
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
if attributes.key?(:'present')
|
76
|
-
if (value = attributes[:'present']).is_a?(Hash)
|
77
|
-
self.present = value
|
78
|
-
end
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
# Show invalid properties with the reasons. Usually used together with valid?
|
83
|
-
# @return Array for valid properties with the reasons
|
84
|
-
def list_invalid_properties
|
85
|
-
invalid_properties = Array.new
|
86
|
-
if @added.nil?
|
87
|
-
invalid_properties.push('invalid value for "added", added cannot be nil.')
|
88
|
-
end
|
89
|
-
|
90
|
-
if @removed.nil?
|
91
|
-
invalid_properties.push('invalid value for "removed", removed cannot be nil.')
|
92
|
-
end
|
93
|
-
|
94
|
-
if @present.nil?
|
95
|
-
invalid_properties.push('invalid value for "present", present cannot be nil.')
|
96
|
-
end
|
97
|
-
|
98
|
-
invalid_properties
|
99
|
-
end
|
100
|
-
|
101
|
-
# Check to see if the all the properties in the model are valid
|
102
|
-
# @return true if the model is valid
|
103
|
-
def valid?
|
104
|
-
return false if @added.nil?
|
105
|
-
return false if @removed.nil?
|
106
|
-
return false if @present.nil?
|
107
|
-
true
|
108
|
-
end
|
109
|
-
|
110
|
-
# Checks equality by comparing each attribute.
|
111
|
-
# @param [Object] Object to be compared
|
112
|
-
def ==(o)
|
113
|
-
return true if self.equal?(o)
|
114
|
-
self.class == o.class &&
|
115
|
-
added == o.added &&
|
116
|
-
removed == o.removed &&
|
117
|
-
present == o.present
|
118
|
-
end
|
119
|
-
|
120
|
-
# @see the `==` method
|
121
|
-
# @param [Object] Object to be compared
|
122
|
-
def eql?(o)
|
123
|
-
self == o
|
124
|
-
end
|
125
|
-
|
126
|
-
# Calculates hash code according to all attributes.
|
127
|
-
# @return [Integer] Hash code
|
128
|
-
def hash
|
129
|
-
[added, removed, present].hash
|
130
|
-
end
|
131
|
-
|
132
|
-
# Builds the object from hash
|
133
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
134
|
-
# @return [Object] Returns the model itself
|
135
|
-
def self.build_from_hash(attributes)
|
136
|
-
new.build_from_hash(attributes)
|
137
|
-
end
|
138
|
-
|
139
|
-
# Builds the object from hash
|
140
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
141
|
-
# @return [Object] Returns the model itself
|
142
|
-
def build_from_hash(attributes)
|
143
|
-
return nil unless attributes.is_a?(Hash)
|
144
|
-
self.class.openapi_types.each_pair do |key, type|
|
145
|
-
if type =~ /\AArray<(.*)>/i
|
146
|
-
# check to ensure the input is an array given that the attribute
|
147
|
-
# is documented as an array but the input is not
|
148
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
149
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
150
|
-
end
|
151
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
152
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
153
|
-
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
154
|
-
end
|
155
|
-
|
156
|
-
self
|
157
|
-
end
|
158
|
-
|
159
|
-
# Deserializes the data based on type
|
160
|
-
# @param string type Data type
|
161
|
-
# @param string value Value to be deserialized
|
162
|
-
# @return [Object] Deserialized data
|
163
|
-
def _deserialize(type, value)
|
164
|
-
case type.to_sym
|
165
|
-
when :DateTime
|
166
|
-
DateTime.parse(value)
|
167
|
-
when :Date
|
168
|
-
Date.parse(value)
|
169
|
-
when :String
|
170
|
-
value.to_s
|
171
|
-
when :Integer
|
172
|
-
value.to_i
|
173
|
-
when :Float
|
174
|
-
value.to_f
|
175
|
-
when :Boolean
|
176
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
177
|
-
true
|
178
|
-
else
|
179
|
-
false
|
180
|
-
end
|
181
|
-
when :Object
|
182
|
-
# generic object (usually a Hash), return directly
|
183
|
-
value
|
184
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
185
|
-
inner_type = Regexp.last_match[:inner_type]
|
186
|
-
value.map { |v| _deserialize(inner_type, v) }
|
187
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
188
|
-
k_type = Regexp.last_match[:k_type]
|
189
|
-
v_type = Regexp.last_match[:v_type]
|
190
|
-
{}.tap do |hash|
|
191
|
-
value.each do |k, v|
|
192
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
193
|
-
end
|
194
|
-
end
|
195
|
-
else # model
|
196
|
-
PulpPythonClient.const_get(type).build_from_hash(value)
|
197
|
-
end
|
198
|
-
end
|
199
|
-
|
200
|
-
# Returns the string representation of the object
|
201
|
-
# @return [String] String presentation of the object
|
202
|
-
def to_s
|
203
|
-
to_hash.to_s
|
204
|
-
end
|
205
|
-
|
206
|
-
# to_body is an alias to to_hash (backward compatibility)
|
207
|
-
# @return [Hash] Returns the object in the form of hash
|
208
|
-
def to_body
|
209
|
-
to_hash
|
210
|
-
end
|
211
|
-
|
212
|
-
# Returns the object in the form of hash
|
213
|
-
# @return [Hash] Returns the object in the form of hash
|
214
|
-
def to_hash
|
215
|
-
hash = {}
|
216
|
-
self.class.attribute_map.each_pair do |attr, param|
|
217
|
-
value = self.send(attr)
|
218
|
-
if value.nil?
|
219
|
-
is_nullable = self.class.openapi_nullable.include?(attr)
|
220
|
-
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
221
|
-
end
|
222
|
-
|
223
|
-
hash[param] = _to_hash(value)
|
224
|
-
end
|
225
|
-
hash
|
226
|
-
end
|
227
|
-
|
228
|
-
# Outputs non-array value in the form of hash
|
229
|
-
# For object, use to_hash. Otherwise, just return the value
|
230
|
-
# @param [Object] value Any valid value
|
231
|
-
# @return [Hash] Returns the value in the form of hash
|
232
|
-
def _to_hash(value)
|
233
|
-
if value.is_a?(Array)
|
234
|
-
value.compact.map { |v| _to_hash(v) }
|
235
|
-
elsif value.is_a?(Hash)
|
236
|
-
{}.tap do |hash|
|
237
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
238
|
-
end
|
239
|
-
elsif value.respond_to? :to_hash
|
240
|
-
value.to_hash
|
241
|
-
else
|
242
|
-
value
|
243
|
-
end
|
244
|
-
end
|
245
|
-
end
|
246
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#Pulp 3 API
|
3
|
-
|
4
|
-
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
-
|
6
|
-
The version of the OpenAPI document: v3
|
7
|
-
Contact: pulp-list@redhat.com
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for PulpPythonClient::ContentSummary
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'ContentSummary' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = PulpPythonClient::ContentSummary.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of ContentSummary' do
|
31
|
-
it 'should create an instance of ContentSummary' do
|
32
|
-
expect(@instance).to be_instance_of(PulpPythonClient::ContentSummary)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
describe 'test attribute "added"' do
|
36
|
-
it 'should work' do
|
37
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
describe 'test attribute "removed"' do
|
42
|
-
it 'should work' do
|
43
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
describe 'test attribute "present"' do
|
48
|
-
it 'should work' do
|
49
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
end
|