pulp_maven_client 0.8.1 → 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 +11 -7
- data/docs/AsyncOperationResponse.md +8 -7
- data/docs/ContentArtifactApi.md +116 -64
- data/docs/ContentSummaryResponse.md +12 -11
- data/docs/DistributionsMavenApi.md +267 -130
- data/docs/MavenMavenArtifact.md +12 -11
- data/docs/MavenMavenArtifactResponse.md +24 -21
- data/docs/MavenMavenDistribution.md +20 -19
- data/docs/MavenMavenDistributionResponse.md +32 -27
- data/docs/MavenMavenRemote.md +48 -47
- data/docs/MavenMavenRemoteResponse.md +48 -45
- data/docs/MavenMavenRemoteResponseHiddenFieldsInner.md +20 -0
- data/docs/MavenMavenRepository.md +16 -15
- data/docs/MavenMavenRepositoryResponse.md +28 -25
- 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 +61 -26
- data/docs/RemotesMavenApi.md +271 -132
- data/docs/Repair.md +8 -7
- data/docs/RepositoriesMavenApi.md +300 -146
- data/docs/RepositoriesMavenVersionsApi.md +155 -83
- data/docs/RepositoryAddCachedContent.md +8 -7
- data/docs/RepositoryVersionResponse.md +22 -19
- 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 +31 -22
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +66 -40
- data/lib/pulp_maven_client/api/pulp_maven_api.rb +9 -7
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +81 -52
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +79 -49
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +50 -37
- 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 +45 -25
- data/lib/pulp_maven_client/models/maven_maven_distribution.rb +34 -22
- data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +57 -25
- data/lib/pulp_maven_client/models/maven_maven_remote.rb +57 -38
- data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +71 -42
- 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 +45 -40
- 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 +44 -26
- 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 +9 -8
- data/spec/api/distributions_maven_api_spec.rb +11 -10
- data/spec/api/pulp_maven_api_spec.rb +3 -3
- data/spec/api/remotes_maven_api_spec.rb +18 -16
- data/spec/api/repositories_maven_api_spec.rb +14 -13
- data/spec/api/repositories_maven_versions_api_spec.rb +16 -14
- 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 +20 -19
- data/spec/models/maven_maven_artifact_spec.rb +9 -14
- data/spec/models/maven_maven_distribution_response_spec.rb +29 -22
- 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 +32 -31
- data/spec/models/maven_maven_remote_spec.rb +27 -32
- data/spec/models/maven_maven_repository_response_spec.rb +22 -21
- 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 +19 -18
- 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 +78 -54
- 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 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
|
@@ -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.')
|
@@ -300,10 +329,6 @@ module PulpMavenClient
|
|
300
329
|
invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
|
301
330
|
end
|
302
331
|
|
303
|
-
if !@download_concurrency.nil? && @download_concurrency < 1
|
304
|
-
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
305
|
-
end
|
306
|
-
|
307
332
|
if !@total_timeout.nil? && @total_timeout < 0.0
|
308
333
|
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
309
334
|
end
|
@@ -326,6 +351,7 @@ module PulpMavenClient
|
|
326
351
|
# Check to see if the all the properties in the model are valid
|
327
352
|
# @return true if the model is valid
|
328
353
|
def valid?
|
354
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
329
355
|
return false if !@name.nil? && @name.to_s.length < 1
|
330
356
|
return false if !@url.nil? && @url.to_s.length < 1
|
331
357
|
return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
|
@@ -336,7 +362,6 @@ module PulpMavenClient
|
|
336
362
|
return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
|
337
363
|
return false if !@username.nil? && @username.to_s.length < 1
|
338
364
|
return false if !@password.nil? && @password.to_s.length < 1
|
339
|
-
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
340
365
|
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
341
366
|
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
342
367
|
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
@@ -347,7 +372,11 @@ module PulpMavenClient
|
|
347
372
|
# Custom attribute writer method with validation
|
348
373
|
# @param [Object] name Value to be assigned
|
349
374
|
def name=(name)
|
350
|
-
if
|
375
|
+
if name.nil?
|
376
|
+
fail ArgumentError, 'name cannot be nil'
|
377
|
+
end
|
378
|
+
|
379
|
+
if name.to_s.length < 1
|
351
380
|
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
352
381
|
end
|
353
382
|
|
@@ -357,7 +386,11 @@ module PulpMavenClient
|
|
357
386
|
# Custom attribute writer method with validation
|
358
387
|
# @param [Object] url Value to be assigned
|
359
388
|
def url=(url)
|
360
|
-
if
|
389
|
+
if url.nil?
|
390
|
+
fail ArgumentError, 'url cannot be nil'
|
391
|
+
end
|
392
|
+
|
393
|
+
if url.to_s.length < 1
|
361
394
|
fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
|
362
395
|
end
|
363
396
|
|
@@ -444,16 +477,6 @@ module PulpMavenClient
|
|
444
477
|
@password = password
|
445
478
|
end
|
446
479
|
|
447
|
-
# Custom attribute writer method with validation
|
448
|
-
# @param [Object] download_concurrency Value to be assigned
|
449
|
-
def download_concurrency=(download_concurrency)
|
450
|
-
if !download_concurrency.nil? && download_concurrency < 1
|
451
|
-
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
452
|
-
end
|
453
|
-
|
454
|
-
@download_concurrency = download_concurrency
|
455
|
-
end
|
456
|
-
|
457
480
|
# Custom attribute writer method with validation
|
458
481
|
# @param [Object] total_timeout Value to be assigned
|
459
482
|
def total_timeout=(total_timeout)
|
@@ -538,37 +561,33 @@ module PulpMavenClient
|
|
538
561
|
# @param [Hash] attributes Model attributes in the form of hash
|
539
562
|
# @return [Object] Returns the model itself
|
540
563
|
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
564
|
return nil unless attributes.is_a?(Hash)
|
549
|
-
|
550
|
-
|
565
|
+
attributes = attributes.transform_keys(&:to_sym)
|
566
|
+
transformed_hash = {}
|
567
|
+
openapi_types.each_pair do |key, type|
|
568
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
569
|
+
transformed_hash["#{key}"] = nil
|
570
|
+
elsif type =~ /\AArray<(.*)>/i
|
551
571
|
# check to ensure the input is an array given that the attribute
|
552
572
|
# is documented as an array but the input is not
|
553
|
-
if attributes[
|
554
|
-
|
573
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
574
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
555
575
|
end
|
556
|
-
elsif !attributes[
|
557
|
-
|
558
|
-
end
|
576
|
+
elsif !attributes[attribute_map[key]].nil?
|
577
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
578
|
+
end
|
559
579
|
end
|
560
|
-
|
561
|
-
self
|
580
|
+
new(transformed_hash)
|
562
581
|
end
|
563
582
|
|
564
583
|
# Deserializes the data based on type
|
565
584
|
# @param string type Data type
|
566
585
|
# @param string value Value to be deserialized
|
567
586
|
# @return [Object] Deserialized data
|
568
|
-
def _deserialize(type, value)
|
587
|
+
def self._deserialize(type, value)
|
569
588
|
case type.to_sym
|
570
|
-
when :
|
571
|
-
|
589
|
+
when :Time
|
590
|
+
Time.parse(value)
|
572
591
|
when :Date
|
573
592
|
Date.parse(value)
|
574
593
|
when :String
|
@@ -598,7 +617,9 @@ module PulpMavenClient
|
|
598
617
|
end
|
599
618
|
end
|
600
619
|
else # model
|
601
|
-
|
620
|
+
# models (e.g. Pet) or oneOf
|
621
|
+
klass = PulpMavenClient.const_get(type)
|
622
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
602
623
|
end
|
603
624
|
end
|
604
625
|
|
@@ -624,7 +645,7 @@ module PulpMavenClient
|
|
624
645
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
625
646
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
626
647
|
end
|
627
|
-
|
648
|
+
|
628
649
|
hash[param] = _to_hash(value)
|
629
650
|
end
|
630
651
|
hash
|
@@ -647,5 +668,7 @@ module PulpMavenClient
|
|
647
668
|
value
|
648
669
|
end
|
649
670
|
end
|
671
|
+
|
650
672
|
end
|
673
|
+
|
651
674
|
end
|