pulp_maven_client 0.1.0 → 0.2.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.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -31
  3. data/docs/ContentArtifactApi.md +37 -35
  4. data/docs/ContentSummary.md +3 -3
  5. data/docs/ContentSummaryResponse.md +21 -0
  6. data/docs/DistributionsMavenApi.md +63 -61
  7. data/docs/MavenMavenArtifact.md +3 -13
  8. data/docs/MavenMavenArtifactResponse.md +29 -0
  9. data/docs/MavenMavenDistribution.md +1 -7
  10. data/docs/MavenMavenDistributionResponse.md +29 -0
  11. data/docs/MavenMavenRemote.md +18 -12
  12. data/docs/MavenMavenRemoteResponse.md +51 -0
  13. data/docs/MavenMavenRepository.md +4 -10
  14. data/docs/MavenMavenRepositoryResponse.md +29 -0
  15. data/docs/PaginatedRepositoryVersionResponseList.md +23 -0
  16. data/docs/PaginatedmavenMavenArtifactResponseList.md +23 -0
  17. data/docs/PaginatedmavenMavenDistributionResponseList.md +23 -0
  18. data/docs/PaginatedmavenMavenRemoteResponseList.md +23 -0
  19. data/docs/PaginatedmavenMavenRepositoryResponseList.md +23 -0
  20. data/docs/PatchedmavenMavenDistribution.md +23 -0
  21. data/docs/PatchedmavenMavenRemote.md +45 -0
  22. data/docs/PatchedmavenMavenRepository.md +21 -0
  23. data/docs/PolicyEnum.md +16 -0
  24. data/docs/RemotesMavenApi.md +68 -66
  25. data/docs/RepositoriesMavenApi.md +60 -58
  26. data/docs/RepositoriesMavenVersionsApi.md +110 -53
  27. data/docs/RepositoryVersion.md +1 -9
  28. data/docs/RepositoryVersionResponse.md +25 -0
  29. data/lib/pulp_maven_client/api/content_artifact_api.rb +55 -52
  30. data/lib/pulp_maven_client/api/distributions_maven_api.rb +94 -91
  31. data/lib/pulp_maven_client/api/remotes_maven_api.rb +104 -101
  32. data/lib/pulp_maven_client/api/repositories_maven_api.rb +97 -94
  33. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +149 -78
  34. data/lib/pulp_maven_client/api_client.rb +3 -3
  35. data/lib/pulp_maven_client/api_error.rb +3 -3
  36. data/lib/pulp_maven_client/configuration.rb +6 -6
  37. data/lib/pulp_maven_client/models/async_operation_response.rb +4 -3
  38. data/lib/pulp_maven_client/models/content_summary.rb +10 -16
  39. data/lib/pulp_maven_client/models/content_summary_response.rb +240 -0
  40. data/lib/pulp_maven_client/models/maven_maven_artifact.rb +15 -118
  41. data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +272 -0
  42. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +5 -86
  43. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +279 -0
  44. data/lib/pulp_maven_client/models/maven_maven_remote.rb +111 -147
  45. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +472 -0
  46. data/lib/pulp_maven_client/models/maven_maven_repository.rb +19 -79
  47. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +271 -0
  48. data/lib/pulp_maven_client/models/{inline_response200.rb → paginated_repository_version_response_list.rb} +7 -17
  49. data/lib/pulp_maven_client/models/{inline_response2002.rb → paginatedmaven_maven_artifact_response_list.rb} +7 -17
  50. data/lib/pulp_maven_client/models/{inline_response2004.rb → paginatedmaven_maven_distribution_response_list.rb} +7 -17
  51. data/lib/pulp_maven_client/models/{inline_response2003.rb → paginatedmaven_maven_remote_response_list.rb} +7 -17
  52. data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +237 -0
  53. data/lib/pulp_maven_client/models/{inline_response2001.rb → patchedmaven_maven_distribution.rb} +38 -45
  54. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +433 -0
  55. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +229 -0
  56. data/lib/pulp_maven_client/models/policy_enum.rb +36 -0
  57. data/lib/pulp_maven_client/models/repository_version.rb +8 -44
  58. data/lib/pulp_maven_client/models/repository_version_response.rb +246 -0
  59. data/lib/pulp_maven_client/version.rb +4 -4
  60. data/lib/pulp_maven_client.rb +18 -8
  61. data/pulp_maven_client.gemspec +5 -5
  62. data/spec/api/content_artifact_api_spec.rb +16 -15
  63. data/spec/api/distributions_maven_api_spec.rb +20 -19
  64. data/spec/api/remotes_maven_api_spec.rb +23 -22
  65. data/spec/api/repositories_maven_api_spec.rb +21 -20
  66. data/spec/api/repositories_maven_versions_api_spec.rb +36 -23
  67. data/spec/api_client_spec.rb +3 -3
  68. data/spec/configuration_spec.rb +6 -6
  69. data/spec/models/async_operation_response_spec.rb +3 -3
  70. data/spec/models/content_summary_response_spec.rb +53 -0
  71. data/spec/models/content_summary_spec.rb +3 -3
  72. data/spec/models/maven_maven_artifact_response_spec.rb +77 -0
  73. data/spec/models/maven_maven_artifact_spec.rb +4 -34
  74. data/spec/models/maven_maven_distribution_response_spec.rb +77 -0
  75. data/spec/models/maven_maven_distribution_spec.rb +3 -21
  76. data/spec/models/maven_maven_remote_response_spec.rb +143 -0
  77. data/spec/models/maven_maven_remote_spec.rb +33 -19
  78. data/spec/models/maven_maven_repository_response_spec.rb +77 -0
  79. data/spec/models/maven_maven_repository_spec.rb +6 -24
  80. data/spec/models/{inline_response2002_spec.rb → paginated_repository_version_response_list_spec.rb} +9 -9
  81. data/spec/models/{inline_response2003_spec.rb → paginatedmaven_maven_artifact_response_list_spec.rb} +9 -9
  82. data/spec/models/paginatedmaven_maven_distribution_response_list_spec.rb +59 -0
  83. data/spec/models/{inline_response2001_spec.rb → paginatedmaven_maven_remote_response_list_spec.rb} +9 -9
  84. data/spec/models/{inline_response2004_spec.rb → paginatedmaven_maven_repository_response_list_spec.rb} +9 -9
  85. data/spec/models/patchedmaven_maven_distribution_spec.rb +59 -0
  86. data/spec/models/patchedmaven_maven_remote_spec.rb +125 -0
  87. data/spec/models/{inline_response200_spec.rb → patchedmaven_maven_repository_spec.rb} +12 -18
  88. data/spec/models/policy_enum_spec.rb +35 -0
  89. data/spec/models/repository_version_response_spec.rb +65 -0
  90. data/spec/models/repository_version_spec.rb +3 -27
  91. data/spec/spec_helper.rb +3 -3
  92. metadata +70 -30
  93. data/docs/InlineResponse200.md +0 -23
  94. data/docs/InlineResponse2001.md +0 -23
  95. data/docs/InlineResponse2002.md +0 -23
  96. data/docs/InlineResponse2003.md +0 -23
  97. data/docs/InlineResponse2004.md +0 -23
@@ -0,0 +1,472 @@
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.2.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module PulpMavenClient
16
+ # 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]
17
+ class MavenMavenRemoteResponse
18
+ attr_accessor :pulp_href
19
+
20
+ # Timestamp of creation.
21
+ attr_accessor :pulp_created
22
+
23
+ # A unique name for this remote.
24
+ attr_accessor :name
25
+
26
+ # The URL of an external content source.
27
+ attr_accessor :url
28
+
29
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
30
+ attr_accessor :ca_cert
31
+
32
+ # A PEM encoded client certificate used for authentication.
33
+ attr_accessor :client_cert
34
+
35
+ # A PEM encoded private key used for authentication.
36
+ attr_accessor :client_key
37
+
38
+ # If True, TLS peer validation must be performed.
39
+ attr_accessor :tls_validation
40
+
41
+ # The proxy URL. Format: scheme://user:password@host:port
42
+ attr_accessor :proxy_url
43
+
44
+ # The username to be used for authentication when syncing.
45
+ attr_accessor :username
46
+
47
+ # The password to be used for authentication when syncing.
48
+ attr_accessor :password
49
+
50
+ # Timestamp of the most recent update of the remote.
51
+ attr_accessor :pulp_last_updated
52
+
53
+ # Total number of simultaneous connections.
54
+ attr_accessor :download_concurrency
55
+
56
+ # The policy to use when downloading content.
57
+ attr_accessor :policy
58
+
59
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections.
60
+ attr_accessor :total_timeout
61
+
62
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections.
63
+ attr_accessor :connect_timeout
64
+
65
+ # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections.
66
+ attr_accessor :sock_connect_timeout
67
+
68
+ # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections.
69
+ attr_accessor :sock_read_timeout
70
+
71
+ # Attribute mapping from ruby-style variable name to JSON key.
72
+ def self.attribute_map
73
+ {
74
+ :'pulp_href' => :'pulp_href',
75
+ :'pulp_created' => :'pulp_created',
76
+ :'name' => :'name',
77
+ :'url' => :'url',
78
+ :'ca_cert' => :'ca_cert',
79
+ :'client_cert' => :'client_cert',
80
+ :'client_key' => :'client_key',
81
+ :'tls_validation' => :'tls_validation',
82
+ :'proxy_url' => :'proxy_url',
83
+ :'username' => :'username',
84
+ :'password' => :'password',
85
+ :'pulp_last_updated' => :'pulp_last_updated',
86
+ :'download_concurrency' => :'download_concurrency',
87
+ :'policy' => :'policy',
88
+ :'total_timeout' => :'total_timeout',
89
+ :'connect_timeout' => :'connect_timeout',
90
+ :'sock_connect_timeout' => :'sock_connect_timeout',
91
+ :'sock_read_timeout' => :'sock_read_timeout'
92
+ }
93
+ end
94
+
95
+ # Attribute type mapping.
96
+ def self.openapi_types
97
+ {
98
+ :'pulp_href' => :'String',
99
+ :'pulp_created' => :'DateTime',
100
+ :'name' => :'String',
101
+ :'url' => :'String',
102
+ :'ca_cert' => :'String',
103
+ :'client_cert' => :'String',
104
+ :'client_key' => :'String',
105
+ :'tls_validation' => :'Boolean',
106
+ :'proxy_url' => :'String',
107
+ :'username' => :'String',
108
+ :'password' => :'String',
109
+ :'pulp_last_updated' => :'DateTime',
110
+ :'download_concurrency' => :'Integer',
111
+ :'policy' => :'PolicyEnum',
112
+ :'total_timeout' => :'Float',
113
+ :'connect_timeout' => :'Float',
114
+ :'sock_connect_timeout' => :'Float',
115
+ :'sock_read_timeout' => :'Float'
116
+ }
117
+ end
118
+
119
+ # List of attributes with nullable: true
120
+ def self.openapi_nullable
121
+ Set.new([
122
+ :'ca_cert',
123
+ :'client_cert',
124
+ :'client_key',
125
+ :'proxy_url',
126
+ :'username',
127
+ :'password',
128
+ :'total_timeout',
129
+ :'connect_timeout',
130
+ :'sock_connect_timeout',
131
+ :'sock_read_timeout'
132
+ ])
133
+ end
134
+
135
+ # Initializes the object
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ def initialize(attributes = {})
138
+ if (!attributes.is_a?(Hash))
139
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpMavenClient::MavenMavenRemoteResponse` initialize method"
140
+ end
141
+
142
+ # check to see if the attribute exists and convert string to symbol for hash key
143
+ attributes = attributes.each_with_object({}) { |(k, v), h|
144
+ if (!self.class.attribute_map.key?(k.to_sym))
145
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpMavenClient::MavenMavenRemoteResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
146
+ end
147
+ h[k.to_sym] = v
148
+ }
149
+
150
+ if attributes.key?(:'pulp_href')
151
+ self.pulp_href = attributes[:'pulp_href']
152
+ end
153
+
154
+ if attributes.key?(:'pulp_created')
155
+ self.pulp_created = attributes[:'pulp_created']
156
+ end
157
+
158
+ if attributes.key?(:'name')
159
+ self.name = attributes[:'name']
160
+ end
161
+
162
+ if attributes.key?(:'url')
163
+ self.url = attributes[:'url']
164
+ end
165
+
166
+ if attributes.key?(:'ca_cert')
167
+ self.ca_cert = attributes[:'ca_cert']
168
+ end
169
+
170
+ if attributes.key?(:'client_cert')
171
+ self.client_cert = attributes[:'client_cert']
172
+ end
173
+
174
+ if attributes.key?(:'client_key')
175
+ self.client_key = attributes[:'client_key']
176
+ end
177
+
178
+ if attributes.key?(:'tls_validation')
179
+ self.tls_validation = attributes[:'tls_validation']
180
+ end
181
+
182
+ if attributes.key?(:'proxy_url')
183
+ self.proxy_url = attributes[:'proxy_url']
184
+ end
185
+
186
+ if attributes.key?(:'username')
187
+ self.username = attributes[:'username']
188
+ end
189
+
190
+ if attributes.key?(:'password')
191
+ self.password = attributes[:'password']
192
+ end
193
+
194
+ if attributes.key?(:'pulp_last_updated')
195
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
196
+ end
197
+
198
+ if attributes.key?(:'download_concurrency')
199
+ self.download_concurrency = attributes[:'download_concurrency']
200
+ end
201
+
202
+ if attributes.key?(:'policy')
203
+ self.policy = attributes[:'policy']
204
+ end
205
+
206
+ if attributes.key?(:'total_timeout')
207
+ self.total_timeout = attributes[:'total_timeout']
208
+ end
209
+
210
+ if attributes.key?(:'connect_timeout')
211
+ self.connect_timeout = attributes[:'connect_timeout']
212
+ end
213
+
214
+ if attributes.key?(:'sock_connect_timeout')
215
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
216
+ end
217
+
218
+ if attributes.key?(:'sock_read_timeout')
219
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
220
+ end
221
+ end
222
+
223
+ # Show invalid properties with the reasons. Usually used together with valid?
224
+ # @return Array for valid properties with the reasons
225
+ def list_invalid_properties
226
+ invalid_properties = Array.new
227
+ if @name.nil?
228
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
229
+ end
230
+
231
+ if @url.nil?
232
+ invalid_properties.push('invalid value for "url", url cannot be nil.')
233
+ end
234
+
235
+ if !@download_concurrency.nil? && @download_concurrency < 1
236
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
237
+ end
238
+
239
+ if !@total_timeout.nil? && @total_timeout < 0.0
240
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
241
+ end
242
+
243
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
244
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
245
+ end
246
+
247
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
248
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
249
+ end
250
+
251
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
252
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
253
+ end
254
+
255
+ invalid_properties
256
+ end
257
+
258
+ # Check to see if the all the properties in the model are valid
259
+ # @return true if the model is valid
260
+ def valid?
261
+ return false if @name.nil?
262
+ return false if @url.nil?
263
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
264
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
265
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
266
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
267
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
268
+ true
269
+ end
270
+
271
+ # Custom attribute writer method with validation
272
+ # @param [Object] download_concurrency Value to be assigned
273
+ def download_concurrency=(download_concurrency)
274
+ if !download_concurrency.nil? && download_concurrency < 1
275
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
276
+ end
277
+
278
+ @download_concurrency = download_concurrency
279
+ end
280
+
281
+ # Custom attribute writer method with validation
282
+ # @param [Object] total_timeout Value to be assigned
283
+ def total_timeout=(total_timeout)
284
+ if !total_timeout.nil? && total_timeout < 0.0
285
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
286
+ end
287
+
288
+ @total_timeout = total_timeout
289
+ end
290
+
291
+ # Custom attribute writer method with validation
292
+ # @param [Object] connect_timeout Value to be assigned
293
+ def connect_timeout=(connect_timeout)
294
+ if !connect_timeout.nil? && connect_timeout < 0.0
295
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
296
+ end
297
+
298
+ @connect_timeout = connect_timeout
299
+ end
300
+
301
+ # Custom attribute writer method with validation
302
+ # @param [Object] sock_connect_timeout Value to be assigned
303
+ def sock_connect_timeout=(sock_connect_timeout)
304
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
305
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
306
+ end
307
+
308
+ @sock_connect_timeout = sock_connect_timeout
309
+ end
310
+
311
+ # Custom attribute writer method with validation
312
+ # @param [Object] sock_read_timeout Value to be assigned
313
+ def sock_read_timeout=(sock_read_timeout)
314
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
315
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
316
+ end
317
+
318
+ @sock_read_timeout = sock_read_timeout
319
+ end
320
+
321
+ # Checks equality by comparing each attribute.
322
+ # @param [Object] Object to be compared
323
+ def ==(o)
324
+ return true if self.equal?(o)
325
+ self.class == o.class &&
326
+ pulp_href == o.pulp_href &&
327
+ pulp_created == o.pulp_created &&
328
+ name == o.name &&
329
+ url == o.url &&
330
+ ca_cert == o.ca_cert &&
331
+ client_cert == o.client_cert &&
332
+ client_key == o.client_key &&
333
+ tls_validation == o.tls_validation &&
334
+ proxy_url == o.proxy_url &&
335
+ username == o.username &&
336
+ password == o.password &&
337
+ pulp_last_updated == o.pulp_last_updated &&
338
+ download_concurrency == o.download_concurrency &&
339
+ policy == o.policy &&
340
+ total_timeout == o.total_timeout &&
341
+ connect_timeout == o.connect_timeout &&
342
+ sock_connect_timeout == o.sock_connect_timeout &&
343
+ sock_read_timeout == o.sock_read_timeout
344
+ end
345
+
346
+ # @see the `==` method
347
+ # @param [Object] Object to be compared
348
+ def eql?(o)
349
+ self == o
350
+ end
351
+
352
+ # Calculates hash code according to all attributes.
353
+ # @return [Integer] Hash code
354
+ def hash
355
+ [pulp_href, pulp_created, name, url, ca_cert, client_cert, client_key, tls_validation, proxy_url, username, password, pulp_last_updated, download_concurrency, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout].hash
356
+ end
357
+
358
+ # Builds the object from hash
359
+ # @param [Hash] attributes Model attributes in the form of hash
360
+ # @return [Object] Returns the model itself
361
+ def self.build_from_hash(attributes)
362
+ new.build_from_hash(attributes)
363
+ end
364
+
365
+ # Builds the object from hash
366
+ # @param [Hash] attributes Model attributes in the form of hash
367
+ # @return [Object] Returns the model itself
368
+ def build_from_hash(attributes)
369
+ return nil unless attributes.is_a?(Hash)
370
+ self.class.openapi_types.each_pair do |key, type|
371
+ if type =~ /\AArray<(.*)>/i
372
+ # check to ensure the input is an array given that the attribute
373
+ # is documented as an array but the input is not
374
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
375
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
376
+ end
377
+ elsif !attributes[self.class.attribute_map[key]].nil?
378
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
379
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
380
+ end
381
+
382
+ self
383
+ end
384
+
385
+ # Deserializes the data based on type
386
+ # @param string type Data type
387
+ # @param string value Value to be deserialized
388
+ # @return [Object] Deserialized data
389
+ def _deserialize(type, value)
390
+ case type.to_sym
391
+ when :DateTime
392
+ DateTime.parse(value)
393
+ when :Date
394
+ Date.parse(value)
395
+ when :String
396
+ value.to_s
397
+ when :Integer
398
+ value.to_i
399
+ when :Float
400
+ value.to_f
401
+ when :Boolean
402
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
403
+ true
404
+ else
405
+ false
406
+ end
407
+ when :Object
408
+ # generic object (usually a Hash), return directly
409
+ value
410
+ when /\AArray<(?<inner_type>.+)>\z/
411
+ inner_type = Regexp.last_match[:inner_type]
412
+ value.map { |v| _deserialize(inner_type, v) }
413
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
414
+ k_type = Regexp.last_match[:k_type]
415
+ v_type = Regexp.last_match[:v_type]
416
+ {}.tap do |hash|
417
+ value.each do |k, v|
418
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
419
+ end
420
+ end
421
+ else # model
422
+ PulpMavenClient.const_get(type).build_from_hash(value)
423
+ end
424
+ end
425
+
426
+ # Returns the string representation of the object
427
+ # @return [String] String presentation of the object
428
+ def to_s
429
+ to_hash.to_s
430
+ end
431
+
432
+ # to_body is an alias to to_hash (backward compatibility)
433
+ # @return [Hash] Returns the object in the form of hash
434
+ def to_body
435
+ to_hash
436
+ end
437
+
438
+ # Returns the object in the form of hash
439
+ # @return [Hash] Returns the object in the form of hash
440
+ def to_hash
441
+ hash = {}
442
+ self.class.attribute_map.each_pair do |attr, param|
443
+ value = self.send(attr)
444
+ if value.nil?
445
+ is_nullable = self.class.openapi_nullable.include?(attr)
446
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
447
+ end
448
+
449
+ hash[param] = _to_hash(value)
450
+ end
451
+ hash
452
+ end
453
+
454
+ # Outputs non-array value in the form of hash
455
+ # For object, use to_hash. Otherwise, just return the value
456
+ # @param [Object] value Any valid value
457
+ # @return [Hash] Returns the value in the form of hash
458
+ def _to_hash(value)
459
+ if value.is_a?(Array)
460
+ value.compact.map { |v| _to_hash(v) }
461
+ elsif value.is_a?(Hash)
462
+ {}.tap do |hash|
463
+ value.each { |k, v| hash[k] = _to_hash(v) }
464
+ end
465
+ elsif value.respond_to? :to_hash
466
+ value.to_hash
467
+ else
468
+ value
469
+ end
470
+ end
471
+ end
472
+ end
@@ -1,62 +1,51 @@
1
1
  =begin
2
2
  #Pulp 3 API
3
3
 
4
- #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
5
 
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
- OpenAPI Generator version: 4.2.2
9
+ OpenAPI Generator version: 4.2.3
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module PulpMavenClient
16
+ # Serializer for Maven Repositories.
16
17
  class MavenMavenRepository
17
- attr_accessor :pulp_href
18
-
19
- # Timestamp of creation.
20
- attr_accessor :pulp_created
21
-
22
- attr_accessor :versions_href
23
-
24
- attr_accessor :latest_version_href
25
-
26
18
  # A unique name for this repository.
27
19
  attr_accessor :name
28
20
 
29
21
  # An optional description.
30
22
  attr_accessor :description
31
23
 
24
+ attr_accessor :remote
25
+
32
26
  # Attribute mapping from ruby-style variable name to JSON key.
33
27
  def self.attribute_map
34
28
  {
35
- :'pulp_href' => :'pulp_href',
36
- :'pulp_created' => :'pulp_created',
37
- :'versions_href' => :'versions_href',
38
- :'latest_version_href' => :'latest_version_href',
39
29
  :'name' => :'name',
40
- :'description' => :'description'
30
+ :'description' => :'description',
31
+ :'remote' => :'remote'
41
32
  }
42
33
  end
43
34
 
44
35
  # Attribute type mapping.
45
36
  def self.openapi_types
46
37
  {
47
- :'pulp_href' => :'String',
48
- :'pulp_created' => :'DateTime',
49
- :'versions_href' => :'String',
50
- :'latest_version_href' => :'String',
51
38
  :'name' => :'String',
52
- :'description' => :'String'
39
+ :'description' => :'String',
40
+ :'remote' => :'String'
53
41
  }
54
42
  end
55
43
 
56
44
  # List of attributes with nullable: true
57
45
  def self.openapi_nullable
58
46
  Set.new([
59
- :'description'
47
+ :'description',
48
+ :'remote'
60
49
  ])
61
50
  end
62
51
 
@@ -75,22 +64,6 @@ module PulpMavenClient
75
64
  h[k.to_sym] = v
76
65
  }
77
66
 
78
- if attributes.key?(:'pulp_href')
79
- self.pulp_href = attributes[:'pulp_href']
80
- end
81
-
82
- if attributes.key?(:'pulp_created')
83
- self.pulp_created = attributes[:'pulp_created']
84
- end
85
-
86
- if attributes.key?(:'versions_href')
87
- self.versions_href = attributes[:'versions_href']
88
- end
89
-
90
- if attributes.key?(:'latest_version_href')
91
- self.latest_version_href = attributes[:'latest_version_href']
92
- end
93
-
94
67
  if attributes.key?(:'name')
95
68
  self.name = attributes[:'name']
96
69
  end
@@ -98,6 +71,10 @@ module PulpMavenClient
98
71
  if attributes.key?(:'description')
99
72
  self.description = attributes[:'description']
100
73
  end
74
+
75
+ if attributes.key?(:'remote')
76
+ self.remote = attributes[:'remote']
77
+ end
101
78
  end
102
79
 
103
80
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -108,14 +85,6 @@ module PulpMavenClient
108
85
  invalid_properties.push('invalid value for "name", name cannot be nil.')
109
86
  end
110
87
 
111
- if @name.to_s.length < 1
112
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
113
- end
114
-
115
- if !@description.nil? && @description.to_s.length < 1
116
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
117
- end
118
-
119
88
  invalid_properties
120
89
  end
121
90
 
@@ -123,46 +92,17 @@ module PulpMavenClient
123
92
  # @return true if the model is valid
124
93
  def valid?
125
94
  return false if @name.nil?
126
- return false if @name.to_s.length < 1
127
- return false if !@description.nil? && @description.to_s.length < 1
128
95
  true
129
96
  end
130
97
 
131
- # Custom attribute writer method with validation
132
- # @param [Object] name Value to be assigned
133
- def name=(name)
134
- if name.nil?
135
- fail ArgumentError, 'name cannot be nil'
136
- end
137
-
138
- if name.to_s.length < 1
139
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
140
- end
141
-
142
- @name = name
143
- end
144
-
145
- # Custom attribute writer method with validation
146
- # @param [Object] description Value to be assigned
147
- def description=(description)
148
- if !description.nil? && description.to_s.length < 1
149
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
150
- end
151
-
152
- @description = description
153
- end
154
-
155
98
  # Checks equality by comparing each attribute.
156
99
  # @param [Object] Object to be compared
157
100
  def ==(o)
158
101
  return true if self.equal?(o)
159
102
  self.class == o.class &&
160
- pulp_href == o.pulp_href &&
161
- pulp_created == o.pulp_created &&
162
- versions_href == o.versions_href &&
163
- latest_version_href == o.latest_version_href &&
164
103
  name == o.name &&
165
- description == o.description
104
+ description == o.description &&
105
+ remote == o.remote
166
106
  end
167
107
 
168
108
  # @see the `==` method
@@ -174,7 +114,7 @@ module PulpMavenClient
174
114
  # Calculates hash code according to all attributes.
175
115
  # @return [Integer] Hash code
176
116
  def hash
177
- [pulp_href, pulp_created, versions_href, latest_version_href, name, description].hash
117
+ [name, description, remote].hash
178
118
  end
179
119
 
180
120
  # Builds the object from hash