pulp_maven_client 0.8.2 → 0.9.0
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 +10 -6
- data/docs/AsyncOperationResponse.md +8 -7
- data/docs/ContentArtifactApi.md +111 -61
- data/docs/ContentSummaryResponse.md +12 -11
- data/docs/DistributionsMavenApi.md +265 -130
- data/docs/MavenMavenArtifact.md +12 -11
- data/docs/MavenMavenArtifactResponse.md +24 -23
- data/docs/MavenMavenDistribution.md +20 -19
- data/docs/MavenMavenDistributionResponse.md +32 -31
- data/docs/MavenMavenRemote.md +48 -47
- data/docs/MavenMavenRemoteResponse.md +48 -47
- data/docs/MavenMavenRemoteResponseHiddenFieldsInner.md +20 -0
- data/docs/MavenMavenRepository.md +16 -15
- data/docs/MavenMavenRepositoryResponse.md +28 -27
- data/docs/PaginatedRepositoryVersionResponseList.md +14 -13
- data/docs/PaginatedmavenMavenArtifactResponseList.md +14 -13
- data/docs/PaginatedmavenMavenDistributionResponseList.md +14 -13
- data/docs/PaginatedmavenMavenRemoteResponseList.md +14 -13
- data/docs/PaginatedmavenMavenRepositoryResponseList.md +14 -13
- data/docs/PatchedmavenMavenDistribution.md +20 -19
- data/docs/PatchedmavenMavenRemote.md +48 -47
- data/docs/PatchedmavenMavenRepository.md +16 -15
- data/docs/PolicyEnum.md +4 -5
- data/docs/PulpMavenApi.md +60 -25
- data/docs/RemotesMavenApi.md +269 -132
- data/docs/Repair.md +8 -7
- data/docs/RepositoriesMavenApi.md +296 -144
- data/docs/RepositoriesMavenVersionsApi.md +152 -82
- data/docs/RepositoryAddCachedContent.md +8 -7
- data/docs/RepositoryVersionResponse.md +22 -21
- data/docs/SetLabel.md +10 -9
- data/docs/SetLabelResponse.md +10 -9
- data/docs/UnsetLabel.md +8 -7
- data/docs/UnsetLabelResponse.md +10 -9
- data/lib/pulp_maven_client/api/content_artifact_api.rb +20 -14
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +61 -38
- data/lib/pulp_maven_client/api/pulp_maven_api.rb +9 -7
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +76 -50
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +70 -43
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +40 -30
- data/lib/pulp_maven_client/api_client.rb +137 -102
- data/lib/pulp_maven_client/api_error.rb +2 -1
- data/lib/pulp_maven_client/configuration.rb +162 -21
- data/lib/pulp_maven_client/models/async_operation_response.rb +32 -22
- data/lib/pulp_maven_client/models/content_summary_response.rb +36 -22
- data/lib/pulp_maven_client/models/maven_maven_artifact.rb +34 -22
- data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +34 -24
- data/lib/pulp_maven_client/models/maven_maven_distribution.rb +34 -22
- data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +36 -24
- data/lib/pulp_maven_client/models/maven_maven_remote.rb +57 -23
- data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +60 -26
- data/lib/pulp_maven_client/models/{maven_maven_remote_response_hidden_fields.rb → maven_maven_remote_response_hidden_fields_inner.rb} +37 -25
- data/lib/pulp_maven_client/models/maven_maven_repository.rb +32 -22
- data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +34 -24
- data/lib/pulp_maven_client/models/paginated_repository_version_response_list.rb +34 -22
- data/lib/pulp_maven_client/models/paginatedmaven_maven_artifact_response_list.rb +34 -22
- data/lib/pulp_maven_client/models/paginatedmaven_maven_distribution_response_list.rb +34 -22
- data/lib/pulp_maven_client/models/paginatedmaven_maven_remote_response_list.rb +34 -22
- data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +34 -22
- data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +40 -24
- data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +63 -25
- data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +35 -23
- data/lib/pulp_maven_client/models/policy_enum.rb +8 -5
- data/lib/pulp_maven_client/models/repair.rb +30 -22
- data/lib/pulp_maven_client/models/repository_add_cached_content.rb +30 -22
- data/lib/pulp_maven_client/models/repository_version_response.rb +32 -24
- data/lib/pulp_maven_client/models/set_label.rb +34 -22
- data/lib/pulp_maven_client/models/set_label_response.rb +34 -22
- data/lib/pulp_maven_client/models/unset_label.rb +32 -22
- data/lib/pulp_maven_client/models/unset_label_response.rb +32 -22
- data/lib/pulp_maven_client/version.rb +2 -2
- data/lib/pulp_maven_client.rb +2 -2
- data/pulp_maven_client.gemspec +9 -6
- data/spec/api/content_artifact_api_spec.rb +4 -4
- data/spec/api/distributions_maven_api_spec.rb +9 -9
- data/spec/api/pulp_maven_api_spec.rb +3 -3
- data/spec/api/remotes_maven_api_spec.rb +16 -15
- data/spec/api/repositories_maven_api_spec.rb +10 -10
- data/spec/api/repositories_maven_versions_api_spec.rb +12 -11
- data/spec/models/async_operation_response_spec.rb +7 -12
- data/spec/models/content_summary_response_spec.rb +9 -14
- data/spec/models/maven_maven_artifact_response_spec.rb +15 -20
- data/spec/models/maven_maven_artifact_spec.rb +9 -14
- data/spec/models/maven_maven_distribution_response_spec.rb +19 -24
- data/spec/models/maven_maven_distribution_spec.rb +13 -18
- data/spec/models/{maven_maven_remote_response_hidden_fields_spec.rb → maven_maven_remote_response_hidden_fields_inner_spec.rb} +11 -16
- data/spec/models/maven_maven_remote_response_spec.rb +27 -32
- data/spec/models/maven_maven_remote_spec.rb +27 -32
- data/spec/models/maven_maven_repository_response_spec.rb +17 -22
- data/spec/models/maven_maven_repository_spec.rb +11 -16
- data/spec/models/paginated_repository_version_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_artifact_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_distribution_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_remote_response_list_spec.rb +10 -15
- data/spec/models/paginatedmaven_maven_repository_response_list_spec.rb +10 -15
- data/spec/models/patchedmaven_maven_distribution_spec.rb +13 -18
- data/spec/models/patchedmaven_maven_remote_spec.rb +27 -32
- data/spec/models/patchedmaven_maven_repository_spec.rb +11 -16
- data/spec/models/policy_enum_spec.rb +6 -11
- data/spec/models/repair_spec.rb +7 -12
- data/spec/models/repository_add_cached_content_spec.rb +7 -12
- data/spec/models/repository_version_response_spec.rb +14 -19
- data/spec/models/set_label_response_spec.rb +8 -13
- data/spec/models/set_label_spec.rb +8 -13
- data/spec/models/unset_label_response_spec.rb +8 -13
- data/spec/models/unset_label_spec.rb +7 -12
- data/spec/spec_helper.rb +1 -1
- metadata +67 -43
- data/docs/MavenMavenRemoteResponseHiddenFields.md +0 -19
- data/spec/api_client_spec.rb +0 -188
- data/spec/configuration_spec.rb +0 -42
@@ -6,11 +6,12 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'date'
|
14
|
+
require 'time'
|
14
15
|
|
15
16
|
module PulpMavenClient
|
16
17
|
class PaginatedmavenMavenRepositoryResponseList
|
@@ -32,6 +33,11 @@ module PulpMavenClient
|
|
32
33
|
}
|
33
34
|
end
|
34
35
|
|
36
|
+
# Returns all the JSON keys this model knows about
|
37
|
+
def self.acceptable_attributes
|
38
|
+
attribute_map.values
|
39
|
+
end
|
40
|
+
|
35
41
|
# Attribute type mapping.
|
36
42
|
def self.openapi_types
|
37
43
|
{
|
@@ -67,6 +73,8 @@ module PulpMavenClient
|
|
67
73
|
|
68
74
|
if attributes.key?(:'count')
|
69
75
|
self.count = attributes[:'count']
|
76
|
+
else
|
77
|
+
self.count = nil
|
70
78
|
end
|
71
79
|
|
72
80
|
if attributes.key?(:'_next')
|
@@ -81,12 +89,15 @@ module PulpMavenClient
|
|
81
89
|
if (value = attributes[:'results']).is_a?(Array)
|
82
90
|
self.results = value
|
83
91
|
end
|
92
|
+
else
|
93
|
+
self.results = nil
|
84
94
|
end
|
85
95
|
end
|
86
96
|
|
87
97
|
# Show invalid properties with the reasons. Usually used together with valid?
|
88
98
|
# @return Array for valid properties with the reasons
|
89
99
|
def list_invalid_properties
|
100
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
90
101
|
invalid_properties = Array.new
|
91
102
|
if @count.nil?
|
92
103
|
invalid_properties.push('invalid value for "count", count cannot be nil.')
|
@@ -102,6 +113,7 @@ module PulpMavenClient
|
|
102
113
|
# Check to see if the all the properties in the model are valid
|
103
114
|
# @return true if the model is valid
|
104
115
|
def valid?
|
116
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
105
117
|
return false if @count.nil?
|
106
118
|
return false if @results.nil?
|
107
119
|
true
|
@@ -134,37 +146,33 @@ module PulpMavenClient
|
|
134
146
|
# @param [Hash] attributes Model attributes in the form of hash
|
135
147
|
# @return [Object] Returns the model itself
|
136
148
|
def self.build_from_hash(attributes)
|
137
|
-
new.build_from_hash(attributes)
|
138
|
-
end
|
139
|
-
|
140
|
-
# Builds the object from hash
|
141
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
142
|
-
# @return [Object] Returns the model itself
|
143
|
-
def build_from_hash(attributes)
|
144
149
|
return nil unless attributes.is_a?(Hash)
|
145
|
-
|
146
|
-
|
150
|
+
attributes = attributes.transform_keys(&:to_sym)
|
151
|
+
transformed_hash = {}
|
152
|
+
openapi_types.each_pair do |key, type|
|
153
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
154
|
+
transformed_hash["#{key}"] = nil
|
155
|
+
elsif type =~ /\AArray<(.*)>/i
|
147
156
|
# check to ensure the input is an array given that the attribute
|
148
157
|
# is documented as an array but the input is not
|
149
|
-
if attributes[
|
150
|
-
|
158
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
159
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
151
160
|
end
|
152
|
-
elsif !attributes[
|
153
|
-
|
154
|
-
end
|
161
|
+
elsif !attributes[attribute_map[key]].nil?
|
162
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
163
|
+
end
|
155
164
|
end
|
156
|
-
|
157
|
-
self
|
165
|
+
new(transformed_hash)
|
158
166
|
end
|
159
167
|
|
160
168
|
# Deserializes the data based on type
|
161
169
|
# @param string type Data type
|
162
170
|
# @param string value Value to be deserialized
|
163
171
|
# @return [Object] Deserialized data
|
164
|
-
def _deserialize(type, value)
|
172
|
+
def self._deserialize(type, value)
|
165
173
|
case type.to_sym
|
166
|
-
when :
|
167
|
-
|
174
|
+
when :Time
|
175
|
+
Time.parse(value)
|
168
176
|
when :Date
|
169
177
|
Date.parse(value)
|
170
178
|
when :String
|
@@ -194,7 +202,9 @@ module PulpMavenClient
|
|
194
202
|
end
|
195
203
|
end
|
196
204
|
else # model
|
197
|
-
|
205
|
+
# models (e.g. Pet) or oneOf
|
206
|
+
klass = PulpMavenClient.const_get(type)
|
207
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
198
208
|
end
|
199
209
|
end
|
200
210
|
|
@@ -220,7 +230,7 @@ module PulpMavenClient
|
|
220
230
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
221
231
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
222
232
|
end
|
223
|
-
|
233
|
+
|
224
234
|
hash[param] = _to_hash(value)
|
225
235
|
end
|
226
236
|
hash
|
@@ -243,5 +253,7 @@ module PulpMavenClient
|
|
243
253
|
value
|
244
254
|
end
|
245
255
|
end
|
256
|
+
|
246
257
|
end
|
258
|
+
|
247
259
|
end
|
@@ -6,11 +6,12 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'date'
|
14
|
+
require 'time'
|
14
15
|
|
15
16
|
module PulpMavenClient
|
16
17
|
# Serializer for Maven Distributions.
|
@@ -48,6 +49,11 @@ module PulpMavenClient
|
|
48
49
|
}
|
49
50
|
end
|
50
51
|
|
52
|
+
# Returns all the JSON keys this model knows about
|
53
|
+
def self.acceptable_attributes
|
54
|
+
attribute_map.values
|
55
|
+
end
|
56
|
+
|
51
57
|
# Attribute type mapping.
|
52
58
|
def self.openapi_types
|
53
59
|
{
|
@@ -121,6 +127,7 @@ module PulpMavenClient
|
|
121
127
|
# Show invalid properties with the reasons. Usually used together with valid?
|
122
128
|
# @return Array for valid properties with the reasons
|
123
129
|
def list_invalid_properties
|
130
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
124
131
|
invalid_properties = Array.new
|
125
132
|
if !@base_path.nil? && @base_path.to_s.length < 1
|
126
133
|
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
@@ -136,6 +143,7 @@ module PulpMavenClient
|
|
136
143
|
# Check to see if the all the properties in the model are valid
|
137
144
|
# @return true if the model is valid
|
138
145
|
def valid?
|
146
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
139
147
|
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
140
148
|
return false if !@name.nil? && @name.to_s.length < 1
|
141
149
|
true
|
@@ -144,7 +152,11 @@ module PulpMavenClient
|
|
144
152
|
# Custom attribute writer method with validation
|
145
153
|
# @param [Object] base_path Value to be assigned
|
146
154
|
def base_path=(base_path)
|
147
|
-
if
|
155
|
+
if base_path.nil?
|
156
|
+
fail ArgumentError, 'base_path cannot be nil'
|
157
|
+
end
|
158
|
+
|
159
|
+
if base_path.to_s.length < 1
|
148
160
|
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
149
161
|
end
|
150
162
|
|
@@ -154,7 +166,11 @@ module PulpMavenClient
|
|
154
166
|
# Custom attribute writer method with validation
|
155
167
|
# @param [Object] name Value to be assigned
|
156
168
|
def name=(name)
|
157
|
-
if
|
169
|
+
if name.nil?
|
170
|
+
fail ArgumentError, 'name cannot be nil'
|
171
|
+
end
|
172
|
+
|
173
|
+
if name.to_s.length < 1
|
158
174
|
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
159
175
|
end
|
160
176
|
|
@@ -191,37 +207,33 @@ module PulpMavenClient
|
|
191
207
|
# @param [Hash] attributes Model attributes in the form of hash
|
192
208
|
# @return [Object] Returns the model itself
|
193
209
|
def self.build_from_hash(attributes)
|
194
|
-
new.build_from_hash(attributes)
|
195
|
-
end
|
196
|
-
|
197
|
-
# Builds the object from hash
|
198
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
199
|
-
# @return [Object] Returns the model itself
|
200
|
-
def build_from_hash(attributes)
|
201
210
|
return nil unless attributes.is_a?(Hash)
|
202
|
-
|
203
|
-
|
211
|
+
attributes = attributes.transform_keys(&:to_sym)
|
212
|
+
transformed_hash = {}
|
213
|
+
openapi_types.each_pair do |key, type|
|
214
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
215
|
+
transformed_hash["#{key}"] = nil
|
216
|
+
elsif type =~ /\AArray<(.*)>/i
|
204
217
|
# check to ensure the input is an array given that the attribute
|
205
218
|
# is documented as an array but the input is not
|
206
|
-
if attributes[
|
207
|
-
|
219
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
220
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
208
221
|
end
|
209
|
-
elsif !attributes[
|
210
|
-
|
211
|
-
end
|
222
|
+
elsif !attributes[attribute_map[key]].nil?
|
223
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
224
|
+
end
|
212
225
|
end
|
213
|
-
|
214
|
-
self
|
226
|
+
new(transformed_hash)
|
215
227
|
end
|
216
228
|
|
217
229
|
# Deserializes the data based on type
|
218
230
|
# @param string type Data type
|
219
231
|
# @param string value Value to be deserialized
|
220
232
|
# @return [Object] Deserialized data
|
221
|
-
def _deserialize(type, value)
|
233
|
+
def self._deserialize(type, value)
|
222
234
|
case type.to_sym
|
223
|
-
when :
|
224
|
-
|
235
|
+
when :Time
|
236
|
+
Time.parse(value)
|
225
237
|
when :Date
|
226
238
|
Date.parse(value)
|
227
239
|
when :String
|
@@ -251,7 +263,9 @@ module PulpMavenClient
|
|
251
263
|
end
|
252
264
|
end
|
253
265
|
else # model
|
254
|
-
|
266
|
+
# models (e.g. Pet) or oneOf
|
267
|
+
klass = PulpMavenClient.const_get(type)
|
268
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
255
269
|
end
|
256
270
|
end
|
257
271
|
|
@@ -277,7 +291,7 @@ module PulpMavenClient
|
|
277
291
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
278
292
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
279
293
|
end
|
280
|
-
|
294
|
+
|
281
295
|
hash[param] = _to_hash(value)
|
282
296
|
end
|
283
297
|
hash
|
@@ -300,5 +314,7 @@ module PulpMavenClient
|
|
300
314
|
value
|
301
315
|
end
|
302
316
|
end
|
317
|
+
|
303
318
|
end
|
319
|
+
|
304
320
|
end
|
@@ -6,11 +6,12 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'date'
|
14
|
+
require 'time'
|
14
15
|
|
15
16
|
module PulpMavenClient
|
16
17
|
# A Serializer for MavenRemote. Add any new fields if defined on MavenRemote. Similar to the example above, in MavenArtifactSerializer. Additional validators can be added to the parent validators list For example:: class Meta: validators = platform.RemoteSerializer.Meta.validators + [myValidator1, myValidator2]
|
@@ -56,7 +57,7 @@ module PulpMavenClient
|
|
56
57
|
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
57
58
|
attr_accessor :max_retries
|
58
59
|
|
59
|
-
# The policy to use when downloading content. * `immediate` -
|
60
|
+
# The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now.
|
60
61
|
attr_accessor :policy
|
61
62
|
|
62
63
|
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
@@ -77,6 +78,28 @@ module PulpMavenClient
|
|
77
78
|
# Limits requests per second for each concurrent downloader
|
78
79
|
attr_accessor :rate_limit
|
79
80
|
|
81
|
+
class EnumAttributeValidator
|
82
|
+
attr_reader :datatype
|
83
|
+
attr_reader :allowable_values
|
84
|
+
|
85
|
+
def initialize(datatype, allowable_values)
|
86
|
+
@allowable_values = allowable_values.map do |value|
|
87
|
+
case datatype.to_s
|
88
|
+
when /Integer/i
|
89
|
+
value.to_i
|
90
|
+
when /Float/i
|
91
|
+
value.to_f
|
92
|
+
else
|
93
|
+
value
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def valid?(value)
|
99
|
+
!value || allowable_values.include?(value)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
80
103
|
# Attribute mapping from ruby-style variable name to JSON key.
|
81
104
|
def self.attribute_map
|
82
105
|
{
|
@@ -104,6 +127,11 @@ module PulpMavenClient
|
|
104
127
|
}
|
105
128
|
end
|
106
129
|
|
130
|
+
# Returns all the JSON keys this model knows about
|
131
|
+
def self.acceptable_attributes
|
132
|
+
attribute_map.values
|
133
|
+
end
|
134
|
+
|
107
135
|
# Attribute type mapping.
|
108
136
|
def self.openapi_types
|
109
137
|
{
|
@@ -259,6 +287,7 @@ module PulpMavenClient
|
|
259
287
|
# Show invalid properties with the reasons. Usually used together with valid?
|
260
288
|
# @return Array for valid properties with the reasons
|
261
289
|
def list_invalid_properties
|
290
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
262
291
|
invalid_properties = Array.new
|
263
292
|
if !@name.nil? && @name.to_s.length < 1
|
264
293
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
@@ -326,6 +355,7 @@ module PulpMavenClient
|
|
326
355
|
# Check to see if the all the properties in the model are valid
|
327
356
|
# @return true if the model is valid
|
328
357
|
def valid?
|
358
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
329
359
|
return false if !@name.nil? && @name.to_s.length < 1
|
330
360
|
return false if !@url.nil? && @url.to_s.length < 1
|
331
361
|
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
@@ -347,7 +377,11 @@ module PulpMavenClient
|
|
347
377
|
# Custom attribute writer method with validation
|
348
378
|
# @param [Object] name Value to be assigned
|
349
379
|
def name=(name)
|
350
|
-
if
|
380
|
+
if name.nil?
|
381
|
+
fail ArgumentError, 'name cannot be nil'
|
382
|
+
end
|
383
|
+
|
384
|
+
if name.to_s.length < 1
|
351
385
|
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
352
386
|
end
|
353
387
|
|
@@ -357,7 +391,11 @@ module PulpMavenClient
|
|
357
391
|
# Custom attribute writer method with validation
|
358
392
|
# @param [Object] url Value to be assigned
|
359
393
|
def url=(url)
|
360
|
-
if
|
394
|
+
if url.nil?
|
395
|
+
fail ArgumentError, 'url cannot be nil'
|
396
|
+
end
|
397
|
+
|
398
|
+
if url.to_s.length < 1
|
361
399
|
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
362
400
|
end
|
363
401
|
|
@@ -538,37 +576,33 @@ module PulpMavenClient
|
|
538
576
|
# @param [Hash] attributes Model attributes in the form of hash
|
539
577
|
# @return [Object] Returns the model itself
|
540
578
|
def self.build_from_hash(attributes)
|
541
|
-
new.build_from_hash(attributes)
|
542
|
-
end
|
543
|
-
|
544
|
-
# Builds the object from hash
|
545
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
546
|
-
# @return [Object] Returns the model itself
|
547
|
-
def build_from_hash(attributes)
|
548
579
|
return nil unless attributes.is_a?(Hash)
|
549
|
-
|
550
|
-
|
580
|
+
attributes = attributes.transform_keys(&:to_sym)
|
581
|
+
transformed_hash = {}
|
582
|
+
openapi_types.each_pair do |key, type|
|
583
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
584
|
+
transformed_hash["#{key}"] = nil
|
585
|
+
elsif type =~ /\AArray<(.*)>/i
|
551
586
|
# check to ensure the input is an array given that the attribute
|
552
587
|
# is documented as an array but the input is not
|
553
|
-
if attributes[
|
554
|
-
|
588
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
589
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
555
590
|
end
|
556
|
-
elsif !attributes[
|
557
|
-
|
558
|
-
end
|
591
|
+
elsif !attributes[attribute_map[key]].nil?
|
592
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
593
|
+
end
|
559
594
|
end
|
560
|
-
|
561
|
-
self
|
595
|
+
new(transformed_hash)
|
562
596
|
end
|
563
597
|
|
564
598
|
# Deserializes the data based on type
|
565
599
|
# @param string type Data type
|
566
600
|
# @param string value Value to be deserialized
|
567
601
|
# @return [Object] Deserialized data
|
568
|
-
def _deserialize(type, value)
|
602
|
+
def self._deserialize(type, value)
|
569
603
|
case type.to_sym
|
570
|
-
when :
|
571
|
-
|
604
|
+
when :Time
|
605
|
+
Time.parse(value)
|
572
606
|
when :Date
|
573
607
|
Date.parse(value)
|
574
608
|
when :String
|
@@ -598,7 +632,9 @@ module PulpMavenClient
|
|
598
632
|
end
|
599
633
|
end
|
600
634
|
else # model
|
601
|
-
|
635
|
+
# models (e.g. Pet) or oneOf
|
636
|
+
klass = PulpMavenClient.const_get(type)
|
637
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
602
638
|
end
|
603
639
|
end
|
604
640
|
|
@@ -624,7 +660,7 @@ module PulpMavenClient
|
|
624
660
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
625
661
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
626
662
|
end
|
627
|
-
|
663
|
+
|
628
664
|
hash[param] = _to_hash(value)
|
629
665
|
end
|
630
666
|
hash
|
@@ -647,5 +683,7 @@ module PulpMavenClient
|
|
647
683
|
value
|
648
684
|
end
|
649
685
|
end
|
686
|
+
|
650
687
|
end
|
688
|
+
|
651
689
|
end
|
@@ -6,11 +6,12 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'date'
|
14
|
+
require 'time'
|
14
15
|
|
15
16
|
module PulpMavenClient
|
16
17
|
# Serializer for Maven Repositories.
|
@@ -40,6 +41,11 @@ module PulpMavenClient
|
|
40
41
|
}
|
41
42
|
end
|
42
43
|
|
44
|
+
# Returns all the JSON keys this model knows about
|
45
|
+
def self.acceptable_attributes
|
46
|
+
attribute_map.values
|
47
|
+
end
|
48
|
+
|
43
49
|
# Attribute type mapping.
|
44
50
|
def self.openapi_types
|
45
51
|
{
|
@@ -101,6 +107,7 @@ module PulpMavenClient
|
|
101
107
|
# Show invalid properties with the reasons. Usually used together with valid?
|
102
108
|
# @return Array for valid properties with the reasons
|
103
109
|
def list_invalid_properties
|
110
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
104
111
|
invalid_properties = Array.new
|
105
112
|
if !@name.nil? && @name.to_s.length < 1
|
106
113
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
@@ -120,6 +127,7 @@ module PulpMavenClient
|
|
120
127
|
# Check to see if the all the properties in the model are valid
|
121
128
|
# @return true if the model is valid
|
122
129
|
def valid?
|
130
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
123
131
|
return false if !@name.nil? && @name.to_s.length < 1
|
124
132
|
return false if !@description.nil? && @description.to_s.length < 1
|
125
133
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
@@ -129,7 +137,11 @@ module PulpMavenClient
|
|
129
137
|
# Custom attribute writer method with validation
|
130
138
|
# @param [Object] name Value to be assigned
|
131
139
|
def name=(name)
|
132
|
-
if
|
140
|
+
if name.nil?
|
141
|
+
fail ArgumentError, 'name cannot be nil'
|
142
|
+
end
|
143
|
+
|
144
|
+
if name.to_s.length < 1
|
133
145
|
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
134
146
|
end
|
135
147
|
|
@@ -184,37 +196,33 @@ module PulpMavenClient
|
|
184
196
|
# @param [Hash] attributes Model attributes in the form of hash
|
185
197
|
# @return [Object] Returns the model itself
|
186
198
|
def self.build_from_hash(attributes)
|
187
|
-
new.build_from_hash(attributes)
|
188
|
-
end
|
189
|
-
|
190
|
-
# Builds the object from hash
|
191
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
192
|
-
# @return [Object] Returns the model itself
|
193
|
-
def build_from_hash(attributes)
|
194
199
|
return nil unless attributes.is_a?(Hash)
|
195
|
-
|
196
|
-
|
200
|
+
attributes = attributes.transform_keys(&:to_sym)
|
201
|
+
transformed_hash = {}
|
202
|
+
openapi_types.each_pair do |key, type|
|
203
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
204
|
+
transformed_hash["#{key}"] = nil
|
205
|
+
elsif type =~ /\AArray<(.*)>/i
|
197
206
|
# check to ensure the input is an array given that the attribute
|
198
207
|
# is documented as an array but the input is not
|
199
|
-
if attributes[
|
200
|
-
|
208
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
209
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
201
210
|
end
|
202
|
-
elsif !attributes[
|
203
|
-
|
204
|
-
end
|
211
|
+
elsif !attributes[attribute_map[key]].nil?
|
212
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
213
|
+
end
|
205
214
|
end
|
206
|
-
|
207
|
-
self
|
215
|
+
new(transformed_hash)
|
208
216
|
end
|
209
217
|
|
210
218
|
# Deserializes the data based on type
|
211
219
|
# @param string type Data type
|
212
220
|
# @param string value Value to be deserialized
|
213
221
|
# @return [Object] Deserialized data
|
214
|
-
def _deserialize(type, value)
|
222
|
+
def self._deserialize(type, value)
|
215
223
|
case type.to_sym
|
216
|
-
when :
|
217
|
-
|
224
|
+
when :Time
|
225
|
+
Time.parse(value)
|
218
226
|
when :Date
|
219
227
|
Date.parse(value)
|
220
228
|
when :String
|
@@ -244,7 +252,9 @@ module PulpMavenClient
|
|
244
252
|
end
|
245
253
|
end
|
246
254
|
else # model
|
247
|
-
|
255
|
+
# models (e.g. Pet) or oneOf
|
256
|
+
klass = PulpMavenClient.const_get(type)
|
257
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
248
258
|
end
|
249
259
|
end
|
250
260
|
|
@@ -270,7 +280,7 @@ module PulpMavenClient
|
|
270
280
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
271
281
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
272
282
|
end
|
273
|
-
|
283
|
+
|
274
284
|
hash[param] = _to_hash(value)
|
275
285
|
end
|
276
286
|
hash
|
@@ -293,5 +303,7 @@ module PulpMavenClient
|
|
293
303
|
value
|
294
304
|
end
|
295
305
|
end
|
306
|
+
|
296
307
|
end
|
308
|
+
|
297
309
|
end
|
@@ -6,16 +6,20 @@
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
7
|
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.10.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'date'
|
14
|
+
require 'time'
|
14
15
|
|
15
16
|
module PulpMavenClient
|
16
17
|
class PolicyEnum
|
17
18
|
IMMEDIATE = "immediate".freeze
|
18
|
-
|
19
|
+
|
20
|
+
def self.all_vars
|
21
|
+
@all_vars ||= [IMMEDIATE].freeze
|
22
|
+
end
|
19
23
|
|
20
24
|
# Builds the enum from string
|
21
25
|
# @param [String] The enum value in the form of the string
|
@@ -28,9 +32,8 @@ module PulpMavenClient
|
|
28
32
|
# @param [String] The enum value in the form of the string
|
29
33
|
# @return [String] The enum value
|
30
34
|
def build_from_hash(value)
|
31
|
-
|
32
|
-
raise "Invalid ENUM value #{value} for class #PolicyEnum"
|
33
|
-
value
|
35
|
+
return value if PolicyEnum.all_vars.include?(value)
|
36
|
+
raise "Invalid ENUM value #{value} for class #PolicyEnum"
|
34
37
|
end
|
35
38
|
end
|
36
39
|
end
|