pulp_maven_client 0.8.2 → 0.8.3
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 -38
- data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +60 -41
- 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 -37
- data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +34 -39
- data/lib/pulp_maven_client/models/paginated_repository_version_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_artifact_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_distribution_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_remote_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +34 -24
- data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +40 -24
- data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +63 -40
- data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +35 -38
- 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 PaginatedmavenMavenDistributionResponseList
|
@@ -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
|
{
|
@@ -45,8 +51,6 @@ module PulpMavenClient
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
48
|
-
:'_next',
|
49
|
-
:'previous',
|
50
54
|
])
|
51
55
|
end
|
52
56
|
|
@@ -67,6 +71,8 @@ module PulpMavenClient
|
|
67
71
|
|
68
72
|
if attributes.key?(:'count')
|
69
73
|
self.count = attributes[:'count']
|
74
|
+
else
|
75
|
+
self.count = nil
|
70
76
|
end
|
71
77
|
|
72
78
|
if attributes.key?(:'_next')
|
@@ -81,12 +87,15 @@ module PulpMavenClient
|
|
81
87
|
if (value = attributes[:'results']).is_a?(Array)
|
82
88
|
self.results = value
|
83
89
|
end
|
90
|
+
else
|
91
|
+
self.results = nil
|
84
92
|
end
|
85
93
|
end
|
86
94
|
|
87
95
|
# Show invalid properties with the reasons. Usually used together with valid?
|
88
96
|
# @return Array for valid properties with the reasons
|
89
97
|
def list_invalid_properties
|
98
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
90
99
|
invalid_properties = Array.new
|
91
100
|
if @count.nil?
|
92
101
|
invalid_properties.push('invalid value for "count", count cannot be nil.')
|
@@ -102,6 +111,7 @@ module PulpMavenClient
|
|
102
111
|
# Check to see if the all the properties in the model are valid
|
103
112
|
# @return true if the model is valid
|
104
113
|
def valid?
|
114
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
105
115
|
return false if @count.nil?
|
106
116
|
return false if @results.nil?
|
107
117
|
true
|
@@ -134,37 +144,33 @@ module PulpMavenClient
|
|
134
144
|
# @param [Hash] attributes Model attributes in the form of hash
|
135
145
|
# @return [Object] Returns the model itself
|
136
146
|
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
147
|
return nil unless attributes.is_a?(Hash)
|
145
|
-
|
146
|
-
|
148
|
+
attributes = attributes.transform_keys(&:to_sym)
|
149
|
+
transformed_hash = {}
|
150
|
+
openapi_types.each_pair do |key, type|
|
151
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
152
|
+
transformed_hash["#{key}"] = nil
|
153
|
+
elsif type =~ /\AArray<(.*)>/i
|
147
154
|
# check to ensure the input is an array given that the attribute
|
148
155
|
# is documented as an array but the input is not
|
149
|
-
if attributes[
|
150
|
-
|
156
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
157
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
151
158
|
end
|
152
|
-
elsif !attributes[
|
153
|
-
|
154
|
-
end
|
159
|
+
elsif !attributes[attribute_map[key]].nil?
|
160
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
161
|
+
end
|
155
162
|
end
|
156
|
-
|
157
|
-
self
|
163
|
+
new(transformed_hash)
|
158
164
|
end
|
159
165
|
|
160
166
|
# Deserializes the data based on type
|
161
167
|
# @param string type Data type
|
162
168
|
# @param string value Value to be deserialized
|
163
169
|
# @return [Object] Deserialized data
|
164
|
-
def _deserialize(type, value)
|
170
|
+
def self._deserialize(type, value)
|
165
171
|
case type.to_sym
|
166
|
-
when :
|
167
|
-
|
172
|
+
when :Time
|
173
|
+
Time.parse(value)
|
168
174
|
when :Date
|
169
175
|
Date.parse(value)
|
170
176
|
when :String
|
@@ -194,7 +200,9 @@ module PulpMavenClient
|
|
194
200
|
end
|
195
201
|
end
|
196
202
|
else # model
|
197
|
-
|
203
|
+
# models (e.g. Pet) or oneOf
|
204
|
+
klass = PulpMavenClient.const_get(type)
|
205
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
198
206
|
end
|
199
207
|
end
|
200
208
|
|
@@ -220,7 +228,7 @@ module PulpMavenClient
|
|
220
228
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
221
229
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
222
230
|
end
|
223
|
-
|
231
|
+
|
224
232
|
hash[param] = _to_hash(value)
|
225
233
|
end
|
226
234
|
hash
|
@@ -243,5 +251,7 @@ module PulpMavenClient
|
|
243
251
|
value
|
244
252
|
end
|
245
253
|
end
|
254
|
+
|
246
255
|
end
|
256
|
+
|
247
257
|
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
|
class PaginatedmavenMavenRemoteResponseList
|
@@ -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
|
{
|
@@ -45,8 +51,6 @@ module PulpMavenClient
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
48
|
-
:'_next',
|
49
|
-
:'previous',
|
50
54
|
])
|
51
55
|
end
|
52
56
|
|
@@ -67,6 +71,8 @@ module PulpMavenClient
|
|
67
71
|
|
68
72
|
if attributes.key?(:'count')
|
69
73
|
self.count = attributes[:'count']
|
74
|
+
else
|
75
|
+
self.count = nil
|
70
76
|
end
|
71
77
|
|
72
78
|
if attributes.key?(:'_next')
|
@@ -81,12 +87,15 @@ module PulpMavenClient
|
|
81
87
|
if (value = attributes[:'results']).is_a?(Array)
|
82
88
|
self.results = value
|
83
89
|
end
|
90
|
+
else
|
91
|
+
self.results = nil
|
84
92
|
end
|
85
93
|
end
|
86
94
|
|
87
95
|
# Show invalid properties with the reasons. Usually used together with valid?
|
88
96
|
# @return Array for valid properties with the reasons
|
89
97
|
def list_invalid_properties
|
98
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
90
99
|
invalid_properties = Array.new
|
91
100
|
if @count.nil?
|
92
101
|
invalid_properties.push('invalid value for "count", count cannot be nil.')
|
@@ -102,6 +111,7 @@ module PulpMavenClient
|
|
102
111
|
# Check to see if the all the properties in the model are valid
|
103
112
|
# @return true if the model is valid
|
104
113
|
def valid?
|
114
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
105
115
|
return false if @count.nil?
|
106
116
|
return false if @results.nil?
|
107
117
|
true
|
@@ -134,37 +144,33 @@ module PulpMavenClient
|
|
134
144
|
# @param [Hash] attributes Model attributes in the form of hash
|
135
145
|
# @return [Object] Returns the model itself
|
136
146
|
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
147
|
return nil unless attributes.is_a?(Hash)
|
145
|
-
|
146
|
-
|
148
|
+
attributes = attributes.transform_keys(&:to_sym)
|
149
|
+
transformed_hash = {}
|
150
|
+
openapi_types.each_pair do |key, type|
|
151
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
152
|
+
transformed_hash["#{key}"] = nil
|
153
|
+
elsif type =~ /\AArray<(.*)>/i
|
147
154
|
# check to ensure the input is an array given that the attribute
|
148
155
|
# is documented as an array but the input is not
|
149
|
-
if attributes[
|
150
|
-
|
156
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
157
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
151
158
|
end
|
152
|
-
elsif !attributes[
|
153
|
-
|
154
|
-
end
|
159
|
+
elsif !attributes[attribute_map[key]].nil?
|
160
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
161
|
+
end
|
155
162
|
end
|
156
|
-
|
157
|
-
self
|
163
|
+
new(transformed_hash)
|
158
164
|
end
|
159
165
|
|
160
166
|
# Deserializes the data based on type
|
161
167
|
# @param string type Data type
|
162
168
|
# @param string value Value to be deserialized
|
163
169
|
# @return [Object] Deserialized data
|
164
|
-
def _deserialize(type, value)
|
170
|
+
def self._deserialize(type, value)
|
165
171
|
case type.to_sym
|
166
|
-
when :
|
167
|
-
|
172
|
+
when :Time
|
173
|
+
Time.parse(value)
|
168
174
|
when :Date
|
169
175
|
Date.parse(value)
|
170
176
|
when :String
|
@@ -194,7 +200,9 @@ module PulpMavenClient
|
|
194
200
|
end
|
195
201
|
end
|
196
202
|
else # model
|
197
|
-
|
203
|
+
# models (e.g. Pet) or oneOf
|
204
|
+
klass = PulpMavenClient.const_get(type)
|
205
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
198
206
|
end
|
199
207
|
end
|
200
208
|
|
@@ -220,7 +228,7 @@ module PulpMavenClient
|
|
220
228
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
221
229
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
222
230
|
end
|
223
|
-
|
231
|
+
|
224
232
|
hash[param] = _to_hash(value)
|
225
233
|
end
|
226
234
|
hash
|
@@ -243,5 +251,7 @@ module PulpMavenClient
|
|
243
251
|
value
|
244
252
|
end
|
245
253
|
end
|
254
|
+
|
246
255
|
end
|
256
|
+
|
247
257
|
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
|
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
|
{
|
@@ -45,8 +51,6 @@ module PulpMavenClient
|
|
45
51
|
# List of attributes with nullable: true
|
46
52
|
def self.openapi_nullable
|
47
53
|
Set.new([
|
48
|
-
:'_next',
|
49
|
-
:'previous',
|
50
54
|
])
|
51
55
|
end
|
52
56
|
|
@@ -67,6 +71,8 @@ module PulpMavenClient
|
|
67
71
|
|
68
72
|
if attributes.key?(:'count')
|
69
73
|
self.count = attributes[:'count']
|
74
|
+
else
|
75
|
+
self.count = nil
|
70
76
|
end
|
71
77
|
|
72
78
|
if attributes.key?(:'_next')
|
@@ -81,12 +87,15 @@ module PulpMavenClient
|
|
81
87
|
if (value = attributes[:'results']).is_a?(Array)
|
82
88
|
self.results = value
|
83
89
|
end
|
90
|
+
else
|
91
|
+
self.results = nil
|
84
92
|
end
|
85
93
|
end
|
86
94
|
|
87
95
|
# Show invalid properties with the reasons. Usually used together with valid?
|
88
96
|
# @return Array for valid properties with the reasons
|
89
97
|
def list_invalid_properties
|
98
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
90
99
|
invalid_properties = Array.new
|
91
100
|
if @count.nil?
|
92
101
|
invalid_properties.push('invalid value for "count", count cannot be nil.')
|
@@ -102,6 +111,7 @@ module PulpMavenClient
|
|
102
111
|
# Check to see if the all the properties in the model are valid
|
103
112
|
# @return true if the model is valid
|
104
113
|
def valid?
|
114
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
105
115
|
return false if @count.nil?
|
106
116
|
return false if @results.nil?
|
107
117
|
true
|
@@ -134,37 +144,33 @@ module PulpMavenClient
|
|
134
144
|
# @param [Hash] attributes Model attributes in the form of hash
|
135
145
|
# @return [Object] Returns the model itself
|
136
146
|
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
147
|
return nil unless attributes.is_a?(Hash)
|
145
|
-
|
146
|
-
|
148
|
+
attributes = attributes.transform_keys(&:to_sym)
|
149
|
+
transformed_hash = {}
|
150
|
+
openapi_types.each_pair do |key, type|
|
151
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
152
|
+
transformed_hash["#{key}"] = nil
|
153
|
+
elsif type =~ /\AArray<(.*)>/i
|
147
154
|
# check to ensure the input is an array given that the attribute
|
148
155
|
# is documented as an array but the input is not
|
149
|
-
if attributes[
|
150
|
-
|
156
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
157
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
151
158
|
end
|
152
|
-
elsif !attributes[
|
153
|
-
|
154
|
-
end
|
159
|
+
elsif !attributes[attribute_map[key]].nil?
|
160
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
161
|
+
end
|
155
162
|
end
|
156
|
-
|
157
|
-
self
|
163
|
+
new(transformed_hash)
|
158
164
|
end
|
159
165
|
|
160
166
|
# Deserializes the data based on type
|
161
167
|
# @param string type Data type
|
162
168
|
# @param string value Value to be deserialized
|
163
169
|
# @return [Object] Deserialized data
|
164
|
-
def _deserialize(type, value)
|
170
|
+
def self._deserialize(type, value)
|
165
171
|
case type.to_sym
|
166
|
-
when :
|
167
|
-
|
172
|
+
when :Time
|
173
|
+
Time.parse(value)
|
168
174
|
when :Date
|
169
175
|
Date.parse(value)
|
170
176
|
when :String
|
@@ -194,7 +200,9 @@ module PulpMavenClient
|
|
194
200
|
end
|
195
201
|
end
|
196
202
|
else # model
|
197
|
-
|
203
|
+
# models (e.g. Pet) or oneOf
|
204
|
+
klass = PulpMavenClient.const_get(type)
|
205
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
198
206
|
end
|
199
207
|
end
|
200
208
|
|
@@ -220,7 +228,7 @@ module PulpMavenClient
|
|
220
228
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
221
229
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
222
230
|
end
|
223
|
-
|
231
|
+
|
224
232
|
hash[param] = _to_hash(value)
|
225
233
|
end
|
226
234
|
hash
|
@@ -243,5 +251,7 @@ module PulpMavenClient
|
|
243
251
|
value
|
244
252
|
end
|
245
253
|
end
|
254
|
+
|
246
255
|
end
|
256
|
+
|
247
257
|
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
|