pulp_npm_client 0.1.0a4 → 0.1.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 +24 -10
- data/docs/AsyncOperationResponse.md +8 -7
- data/docs/ContentPackagesApi.md +126 -64
- data/docs/ContentSummaryResponse.md +12 -11
- data/docs/DistributionsNpmApi.md +362 -93
- data/docs/NpmNpmDistribution.md +18 -15
- data/docs/NpmNpmDistributionResponse.md +30 -21
- data/docs/NpmNpmRemote.md +48 -47
- data/docs/NpmNpmRemoteResponse.md +48 -43
- data/docs/NpmNpmRemoteResponseHiddenFieldsInner.md +20 -0
- data/docs/NpmNpmRepository.md +16 -15
- data/docs/NpmNpmRepositoryResponse.md +28 -23
- data/docs/NpmPackageResponse.md +22 -17
- data/docs/PaginatedRepositoryVersionResponseList.md +14 -13
- data/docs/PaginatednpmNpmDistributionResponseList.md +14 -13
- data/docs/PaginatednpmNpmRemoteResponseList.md +14 -13
- data/docs/PaginatednpmNpmRepositoryResponseList.md +14 -13
- data/docs/PaginatednpmPackageResponseList.md +14 -13
- data/docs/PatchednpmNpmDistribution.md +18 -15
- data/docs/PatchednpmNpmRemote.md +48 -47
- data/docs/PatchednpmNpmRepository.md +16 -15
- data/docs/PolicyEnum.md +4 -5
- data/docs/RemotesNpmApi.md +364 -99
- data/docs/Repair.md +8 -7
- data/docs/RepositoriesNpmApi.md +429 -110
- data/docs/RepositoriesNpmVersionsApi.md +156 -80
- data/docs/RepositoryAddRemoveContent.md +12 -11
- data/docs/RepositorySyncURL.md +10 -9
- data/docs/RepositoryVersionResponse.md +22 -17
- data/docs/SetLabel.md +20 -0
- data/docs/SetLabelResponse.md +20 -0
- data/docs/UnsetLabel.md +18 -0
- data/docs/UnsetLabelResponse.md +20 -0
- data/lib/pulp_npm_client/api/content_packages_api.rb +72 -44
- data/lib/pulp_npm_client/api/distributions_npm_api.rb +243 -47
- data/lib/pulp_npm_client/api/remotes_npm_api.rb +247 -57
- data/lib/pulp_npm_client/api/repositories_npm_api.rb +283 -55
- data/lib/pulp_npm_client/api/repositories_npm_versions_api.rb +71 -52
- data/lib/pulp_npm_client/api_client.rb +137 -102
- data/lib/pulp_npm_client/api_error.rb +2 -1
- data/lib/pulp_npm_client/configuration.rb +163 -22
- data/lib/pulp_npm_client/models/async_operation_response.rb +32 -22
- data/lib/pulp_npm_client/models/content_summary_response.rb +36 -22
- data/lib/pulp_npm_client/models/npm_npm_distribution.rb +51 -25
- data/lib/pulp_npm_client/models/npm_npm_distribution_response.rb +83 -27
- data/lib/pulp_npm_client/models/npm_npm_remote.rb +61 -25
- data/lib/pulp_npm_client/models/npm_npm_remote_response.rb +99 -41
- data/lib/pulp_npm_client/models/npm_npm_remote_response_hidden_fields_inner.rb +237 -0
- data/lib/pulp_npm_client/models/npm_npm_repository.rb +37 -25
- data/lib/pulp_npm_client/models/npm_npm_repository_response.rb +59 -27
- data/lib/pulp_npm_client/models/npm_package_response.rb +58 -24
- data/lib/pulp_npm_client/models/paginated_repository_version_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_npm_distribution_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_npm_remote_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_npm_repository_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_package_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/patchednpm_npm_distribution.rb +57 -27
- data/lib/pulp_npm_client/models/patchednpm_npm_remote.rb +67 -27
- data/lib/pulp_npm_client/models/patchednpm_npm_repository.rb +40 -26
- data/lib/pulp_npm_client/models/policy_enum.rb +8 -4
- data/lib/pulp_npm_client/models/repair.rb +30 -22
- data/lib/pulp_npm_client/models/repository_add_remove_content.rb +33 -25
- data/lib/pulp_npm_client/models/repository_sync_url.rb +30 -22
- data/lib/pulp_npm_client/models/repository_version_response.rb +53 -25
- data/lib/pulp_npm_client/models/set_label.rb +264 -0
- data/lib/pulp_npm_client/models/set_label_response.rb +255 -0
- data/lib/pulp_npm_client/models/unset_label.rb +252 -0
- data/lib/pulp_npm_client/models/unset_label_response.rb +252 -0
- data/lib/pulp_npm_client/version.rb +2 -2
- data/lib/pulp_npm_client.rb +6 -3
- data/pulp_npm_client.gemspec +10 -7
- data/spec/api/content_packages_api_spec.rb +22 -16
- data/spec/api/distributions_npm_api_spec.rb +51 -14
- data/spec/api/remotes_npm_api_spec.rb +54 -19
- data/spec/api/repositories_npm_api_spec.rb +60 -15
- data/spec/api/repositories_npm_versions_api_spec.rb +23 -19
- data/spec/models/async_operation_response_spec.rb +7 -12
- data/spec/models/content_summary_response_spec.rb +9 -14
- data/spec/models/npm_npm_distribution_response_spec.rb +38 -19
- data/spec/models/npm_npm_distribution_spec.rb +17 -16
- data/spec/models/npm_npm_remote_response_hidden_fields_inner_spec.rb +42 -0
- data/spec/models/npm_npm_remote_response_spec.rb +42 -35
- data/spec/models/npm_npm_remote_spec.rb +27 -32
- data/spec/models/npm_npm_repository_response_spec.rb +27 -20
- data/spec/models/npm_npm_repository_spec.rb +11 -16
- data/spec/models/npm_package_response_spec.rb +24 -17
- data/spec/models/paginated_repository_version_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_npm_distribution_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_npm_remote_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_npm_repository_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_package_response_list_spec.rb +10 -15
- data/spec/models/patchednpm_npm_distribution_spec.rb +17 -16
- data/spec/models/patchednpm_npm_remote_spec.rb +27 -32
- data/spec/models/patchednpm_npm_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_remove_content_spec.rb +9 -14
- data/spec/models/repository_sync_url_spec.rb +8 -13
- data/spec/models/repository_version_response_spec.rb +24 -17
- data/spec/models/set_label_response_spec.rb +42 -0
- data/spec/models/set_label_spec.rb +42 -0
- data/spec/models/unset_label_response_spec.rb +42 -0
- data/spec/models/unset_label_spec.rb +36 -0
- data/spec/spec_helper.rb +1 -1
- metadata +94 -59
- data/docs/NpmPackage.md +0 -29
- data/docs/PulpNpmPackagesApi.md +0 -60
- data/git_push.sh +0 -58
- data/lib/pulp_npm_client/api/pulp_npm_packages_api.rb +0 -86
- data/lib/pulp_npm_client/models/npm_package.rb +0 -337
- data/spec/api/pulp_npm_packages_api_spec.rb +0 -48
- data/spec/api_client_spec.rb +0 -188
- data/spec/configuration_spec.rb +0 -42
- data/spec/models/npm_package_spec.rb +0 -77
|
@@ -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 PulpNpmClient
|
|
16
17
|
# A Serializer for NpmRepository. Add any new fields if defined on NpmRepository. Similar to the example above, in PackageSerializer. Additional validators can be added to the parent validators list For example:: class Meta: validators = platform.RepositorySerializer.Meta.validators + [myValidator1, myValidator2]
|
|
@@ -23,7 +24,7 @@ module PulpNpmClient
|
|
|
23
24
|
# An optional description.
|
|
24
25
|
attr_accessor :description
|
|
25
26
|
|
|
26
|
-
# Retain X versions of the repository. Default is null which retains all versions.
|
|
27
|
+
# Retain X versions of the repository. Default is null which retains all versions.
|
|
27
28
|
attr_accessor :retain_repo_versions
|
|
28
29
|
|
|
29
30
|
# An optional remote to use by default when syncing.
|
|
@@ -40,10 +41,15 @@ module PulpNpmClient
|
|
|
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
|
{
|
|
46
|
-
:'pulp_labels' => :'
|
|
52
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
47
53
|
:'name' => :'String',
|
|
48
54
|
:'description' => :'String',
|
|
49
55
|
:'retain_repo_versions' => :'Integer',
|
|
@@ -76,7 +82,9 @@ module PulpNpmClient
|
|
|
76
82
|
}
|
|
77
83
|
|
|
78
84
|
if attributes.key?(:'pulp_labels')
|
|
79
|
-
|
|
85
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
86
|
+
self.pulp_labels = value
|
|
87
|
+
end
|
|
80
88
|
end
|
|
81
89
|
|
|
82
90
|
if attributes.key?(:'name')
|
|
@@ -99,6 +107,7 @@ module PulpNpmClient
|
|
|
99
107
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
100
108
|
# @return Array for valid properties with the reasons
|
|
101
109
|
def list_invalid_properties
|
|
110
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
102
111
|
invalid_properties = Array.new
|
|
103
112
|
if !@name.nil? && @name.to_s.length < 1
|
|
104
113
|
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
@@ -118,6 +127,7 @@ module PulpNpmClient
|
|
|
118
127
|
# Check to see if the all the properties in the model are valid
|
|
119
128
|
# @return true if the model is valid
|
|
120
129
|
def valid?
|
|
130
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
121
131
|
return false if !@name.nil? && @name.to_s.length < 1
|
|
122
132
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
123
133
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
@@ -127,7 +137,11 @@ module PulpNpmClient
|
|
|
127
137
|
# Custom attribute writer method with validation
|
|
128
138
|
# @param [Object] name Value to be assigned
|
|
129
139
|
def name=(name)
|
|
130
|
-
if
|
|
140
|
+
if name.nil?
|
|
141
|
+
fail ArgumentError, 'name cannot be nil'
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
if name.to_s.length < 1
|
|
131
145
|
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
|
132
146
|
end
|
|
133
147
|
|
|
@@ -182,37 +196,33 @@ module PulpNpmClient
|
|
|
182
196
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
183
197
|
# @return [Object] Returns the model itself
|
|
184
198
|
def self.build_from_hash(attributes)
|
|
185
|
-
new.build_from_hash(attributes)
|
|
186
|
-
end
|
|
187
|
-
|
|
188
|
-
# Builds the object from hash
|
|
189
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
190
|
-
# @return [Object] Returns the model itself
|
|
191
|
-
def build_from_hash(attributes)
|
|
192
199
|
return nil unless attributes.is_a?(Hash)
|
|
193
|
-
|
|
194
|
-
|
|
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
|
|
195
206
|
# check to ensure the input is an array given that the attribute
|
|
196
207
|
# is documented as an array but the input is not
|
|
197
|
-
if attributes[
|
|
198
|
-
|
|
208
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
209
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
199
210
|
end
|
|
200
|
-
elsif !attributes[
|
|
201
|
-
|
|
202
|
-
end
|
|
211
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
212
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
213
|
+
end
|
|
203
214
|
end
|
|
204
|
-
|
|
205
|
-
self
|
|
215
|
+
new(transformed_hash)
|
|
206
216
|
end
|
|
207
217
|
|
|
208
218
|
# Deserializes the data based on type
|
|
209
219
|
# @param string type Data type
|
|
210
220
|
# @param string value Value to be deserialized
|
|
211
221
|
# @return [Object] Deserialized data
|
|
212
|
-
def _deserialize(type, value)
|
|
222
|
+
def self._deserialize(type, value)
|
|
213
223
|
case type.to_sym
|
|
214
|
-
when :
|
|
215
|
-
|
|
224
|
+
when :Time
|
|
225
|
+
Time.parse(value)
|
|
216
226
|
when :Date
|
|
217
227
|
Date.parse(value)
|
|
218
228
|
when :String
|
|
@@ -242,7 +252,9 @@ module PulpNpmClient
|
|
|
242
252
|
end
|
|
243
253
|
end
|
|
244
254
|
else # model
|
|
245
|
-
|
|
255
|
+
# models (e.g. Pet) or oneOf
|
|
256
|
+
klass = PulpNpmClient.const_get(type)
|
|
257
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
246
258
|
end
|
|
247
259
|
end
|
|
248
260
|
|
|
@@ -268,7 +280,7 @@ module PulpNpmClient
|
|
|
268
280
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
269
281
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
270
282
|
end
|
|
271
|
-
|
|
283
|
+
|
|
272
284
|
hash[param] = _to_hash(value)
|
|
273
285
|
end
|
|
274
286
|
hash
|
|
@@ -291,5 +303,7 @@ module PulpNpmClient
|
|
|
291
303
|
value
|
|
292
304
|
end
|
|
293
305
|
end
|
|
306
|
+
|
|
294
307
|
end
|
|
308
|
+
|
|
295
309
|
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 PulpNpmClient
|
|
16
17
|
class PolicyEnum
|
|
@@ -18,6 +19,10 @@ module PulpNpmClient
|
|
|
18
19
|
ON_DEMAND = "on_demand".freeze
|
|
19
20
|
STREAMED = "streamed".freeze
|
|
20
21
|
|
|
22
|
+
def self.all_vars
|
|
23
|
+
@all_vars ||= [IMMEDIATE, ON_DEMAND, STREAMED].freeze
|
|
24
|
+
end
|
|
25
|
+
|
|
21
26
|
# Builds the enum from string
|
|
22
27
|
# @param [String] The enum value in the form of the string
|
|
23
28
|
# @return [String] The enum value
|
|
@@ -29,9 +34,8 @@ module PulpNpmClient
|
|
|
29
34
|
# @param [String] The enum value in the form of the string
|
|
30
35
|
# @return [String] The enum value
|
|
31
36
|
def build_from_hash(value)
|
|
32
|
-
|
|
33
|
-
raise "Invalid ENUM value #{value} for class #PolicyEnum"
|
|
34
|
-
value
|
|
37
|
+
return value if PolicyEnum.all_vars.include?(value)
|
|
38
|
+
raise "Invalid ENUM value #{value} for class #PolicyEnum"
|
|
35
39
|
end
|
|
36
40
|
end
|
|
37
41
|
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 PulpNpmClient
|
|
16
17
|
class Repair
|
|
@@ -24,6 +25,11 @@ module PulpNpmClient
|
|
|
24
25
|
}
|
|
25
26
|
end
|
|
26
27
|
|
|
28
|
+
# Returns all the JSON keys this model knows about
|
|
29
|
+
def self.acceptable_attributes
|
|
30
|
+
attribute_map.values
|
|
31
|
+
end
|
|
32
|
+
|
|
27
33
|
# Attribute type mapping.
|
|
28
34
|
def self.openapi_types
|
|
29
35
|
{
|
|
@@ -62,6 +68,7 @@ module PulpNpmClient
|
|
|
62
68
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
63
69
|
# @return Array for valid properties with the reasons
|
|
64
70
|
def list_invalid_properties
|
|
71
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
65
72
|
invalid_properties = Array.new
|
|
66
73
|
invalid_properties
|
|
67
74
|
end
|
|
@@ -69,6 +76,7 @@ module PulpNpmClient
|
|
|
69
76
|
# Check to see if the all the properties in the model are valid
|
|
70
77
|
# @return true if the model is valid
|
|
71
78
|
def valid?
|
|
79
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
72
80
|
true
|
|
73
81
|
end
|
|
74
82
|
|
|
@@ -96,37 +104,33 @@ module PulpNpmClient
|
|
|
96
104
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
97
105
|
# @return [Object] Returns the model itself
|
|
98
106
|
def self.build_from_hash(attributes)
|
|
99
|
-
new.build_from_hash(attributes)
|
|
100
|
-
end
|
|
101
|
-
|
|
102
|
-
# Builds the object from hash
|
|
103
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
104
|
-
# @return [Object] Returns the model itself
|
|
105
|
-
def build_from_hash(attributes)
|
|
106
107
|
return nil unless attributes.is_a?(Hash)
|
|
107
|
-
|
|
108
|
-
|
|
108
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
109
|
+
transformed_hash = {}
|
|
110
|
+
openapi_types.each_pair do |key, type|
|
|
111
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
112
|
+
transformed_hash["#{key}"] = nil
|
|
113
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
109
114
|
# check to ensure the input is an array given that the attribute
|
|
110
115
|
# is documented as an array but the input is not
|
|
111
|
-
if attributes[
|
|
112
|
-
|
|
116
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
117
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
113
118
|
end
|
|
114
|
-
elsif !attributes[
|
|
115
|
-
|
|
116
|
-
end
|
|
119
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
120
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
121
|
+
end
|
|
117
122
|
end
|
|
118
|
-
|
|
119
|
-
self
|
|
123
|
+
new(transformed_hash)
|
|
120
124
|
end
|
|
121
125
|
|
|
122
126
|
# Deserializes the data based on type
|
|
123
127
|
# @param string type Data type
|
|
124
128
|
# @param string value Value to be deserialized
|
|
125
129
|
# @return [Object] Deserialized data
|
|
126
|
-
def _deserialize(type, value)
|
|
130
|
+
def self._deserialize(type, value)
|
|
127
131
|
case type.to_sym
|
|
128
|
-
when :
|
|
129
|
-
|
|
132
|
+
when :Time
|
|
133
|
+
Time.parse(value)
|
|
130
134
|
when :Date
|
|
131
135
|
Date.parse(value)
|
|
132
136
|
when :String
|
|
@@ -156,7 +160,9 @@ module PulpNpmClient
|
|
|
156
160
|
end
|
|
157
161
|
end
|
|
158
162
|
else # model
|
|
159
|
-
|
|
163
|
+
# models (e.g. Pet) or oneOf
|
|
164
|
+
klass = PulpNpmClient.const_get(type)
|
|
165
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
160
166
|
end
|
|
161
167
|
end
|
|
162
168
|
|
|
@@ -182,7 +188,7 @@ module PulpNpmClient
|
|
|
182
188
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
183
189
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
184
190
|
end
|
|
185
|
-
|
|
191
|
+
|
|
186
192
|
hash[param] = _to_hash(value)
|
|
187
193
|
end
|
|
188
194
|
hash
|
|
@@ -205,5 +211,7 @@ module PulpNpmClient
|
|
|
205
211
|
value
|
|
206
212
|
end
|
|
207
213
|
end
|
|
214
|
+
|
|
208
215
|
end
|
|
216
|
+
|
|
209
217
|
end
|
|
@@ -6,14 +6,15 @@
|
|
|
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 PulpNpmClient
|
|
16
|
-
# Base serializer for use with
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
17
18
|
class RepositoryAddRemoveContent
|
|
18
19
|
# A list of content units to add to a new repository version. This content is added after remove_content_units are removed.
|
|
19
20
|
attr_accessor :add_content_units
|
|
@@ -33,11 +34,16 @@ module PulpNpmClient
|
|
|
33
34
|
}
|
|
34
35
|
end
|
|
35
36
|
|
|
37
|
+
# Returns all the JSON keys this model knows about
|
|
38
|
+
def self.acceptable_attributes
|
|
39
|
+
attribute_map.values
|
|
40
|
+
end
|
|
41
|
+
|
|
36
42
|
# Attribute type mapping.
|
|
37
43
|
def self.openapi_types
|
|
38
44
|
{
|
|
39
|
-
:'add_content_units' => :'Array<
|
|
40
|
-
:'remove_content_units' => :'Array<
|
|
45
|
+
:'add_content_units' => :'Array<String>',
|
|
46
|
+
:'remove_content_units' => :'Array<String>',
|
|
41
47
|
:'base_version' => :'String'
|
|
42
48
|
}
|
|
43
49
|
end
|
|
@@ -83,6 +89,7 @@ module PulpNpmClient
|
|
|
83
89
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
84
90
|
# @return Array for valid properties with the reasons
|
|
85
91
|
def list_invalid_properties
|
|
92
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
86
93
|
invalid_properties = Array.new
|
|
87
94
|
invalid_properties
|
|
88
95
|
end
|
|
@@ -90,6 +97,7 @@ module PulpNpmClient
|
|
|
90
97
|
# Check to see if the all the properties in the model are valid
|
|
91
98
|
# @return true if the model is valid
|
|
92
99
|
def valid?
|
|
100
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
93
101
|
true
|
|
94
102
|
end
|
|
95
103
|
|
|
@@ -119,37 +127,33 @@ module PulpNpmClient
|
|
|
119
127
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
120
128
|
# @return [Object] Returns the model itself
|
|
121
129
|
def self.build_from_hash(attributes)
|
|
122
|
-
new.build_from_hash(attributes)
|
|
123
|
-
end
|
|
124
|
-
|
|
125
|
-
# Builds the object from hash
|
|
126
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
127
|
-
# @return [Object] Returns the model itself
|
|
128
|
-
def build_from_hash(attributes)
|
|
129
130
|
return nil unless attributes.is_a?(Hash)
|
|
130
|
-
|
|
131
|
-
|
|
131
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
132
|
+
transformed_hash = {}
|
|
133
|
+
openapi_types.each_pair do |key, type|
|
|
134
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
135
|
+
transformed_hash["#{key}"] = nil
|
|
136
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
132
137
|
# check to ensure the input is an array given that the attribute
|
|
133
138
|
# is documented as an array but the input is not
|
|
134
|
-
if attributes[
|
|
135
|
-
|
|
139
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
140
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
136
141
|
end
|
|
137
|
-
elsif !attributes[
|
|
138
|
-
|
|
139
|
-
end
|
|
142
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
143
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
144
|
+
end
|
|
140
145
|
end
|
|
141
|
-
|
|
142
|
-
self
|
|
146
|
+
new(transformed_hash)
|
|
143
147
|
end
|
|
144
148
|
|
|
145
149
|
# Deserializes the data based on type
|
|
146
150
|
# @param string type Data type
|
|
147
151
|
# @param string value Value to be deserialized
|
|
148
152
|
# @return [Object] Deserialized data
|
|
149
|
-
def _deserialize(type, value)
|
|
153
|
+
def self._deserialize(type, value)
|
|
150
154
|
case type.to_sym
|
|
151
|
-
when :
|
|
152
|
-
|
|
155
|
+
when :Time
|
|
156
|
+
Time.parse(value)
|
|
153
157
|
when :Date
|
|
154
158
|
Date.parse(value)
|
|
155
159
|
when :String
|
|
@@ -179,7 +183,9 @@ module PulpNpmClient
|
|
|
179
183
|
end
|
|
180
184
|
end
|
|
181
185
|
else # model
|
|
182
|
-
|
|
186
|
+
# models (e.g. Pet) or oneOf
|
|
187
|
+
klass = PulpNpmClient.const_get(type)
|
|
188
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
183
189
|
end
|
|
184
190
|
end
|
|
185
191
|
|
|
@@ -205,7 +211,7 @@ module PulpNpmClient
|
|
|
205
211
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
206
212
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
207
213
|
end
|
|
208
|
-
|
|
214
|
+
|
|
209
215
|
hash[param] = _to_hash(value)
|
|
210
216
|
end
|
|
211
217
|
hash
|
|
@@ -228,5 +234,7 @@ module PulpNpmClient
|
|
|
228
234
|
value
|
|
229
235
|
end
|
|
230
236
|
end
|
|
237
|
+
|
|
231
238
|
end
|
|
239
|
+
|
|
232
240
|
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 PulpNpmClient
|
|
16
17
|
# A mixin for validating unknown serializers' fields.
|
|
@@ -29,6 +30,11 @@ module PulpNpmClient
|
|
|
29
30
|
}
|
|
30
31
|
end
|
|
31
32
|
|
|
33
|
+
# Returns all the JSON keys this model knows about
|
|
34
|
+
def self.acceptable_attributes
|
|
35
|
+
attribute_map.values
|
|
36
|
+
end
|
|
37
|
+
|
|
32
38
|
# Attribute type mapping.
|
|
33
39
|
def self.openapi_types
|
|
34
40
|
{
|
|
@@ -72,6 +78,7 @@ module PulpNpmClient
|
|
|
72
78
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
73
79
|
# @return Array for valid properties with the reasons
|
|
74
80
|
def list_invalid_properties
|
|
81
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
75
82
|
invalid_properties = Array.new
|
|
76
83
|
invalid_properties
|
|
77
84
|
end
|
|
@@ -79,6 +86,7 @@ module PulpNpmClient
|
|
|
79
86
|
# Check to see if the all the properties in the model are valid
|
|
80
87
|
# @return true if the model is valid
|
|
81
88
|
def valid?
|
|
89
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
82
90
|
true
|
|
83
91
|
end
|
|
84
92
|
|
|
@@ -107,37 +115,33 @@ module PulpNpmClient
|
|
|
107
115
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
108
116
|
# @return [Object] Returns the model itself
|
|
109
117
|
def self.build_from_hash(attributes)
|
|
110
|
-
new.build_from_hash(attributes)
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
# Builds the object from hash
|
|
114
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
|
115
|
-
# @return [Object] Returns the model itself
|
|
116
|
-
def build_from_hash(attributes)
|
|
117
118
|
return nil unless attributes.is_a?(Hash)
|
|
118
|
-
|
|
119
|
-
|
|
119
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
120
|
+
transformed_hash = {}
|
|
121
|
+
openapi_types.each_pair do |key, type|
|
|
122
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
123
|
+
transformed_hash["#{key}"] = nil
|
|
124
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
120
125
|
# check to ensure the input is an array given that the attribute
|
|
121
126
|
# is documented as an array but the input is not
|
|
122
|
-
if attributes[
|
|
123
|
-
|
|
127
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
128
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
124
129
|
end
|
|
125
|
-
elsif !attributes[
|
|
126
|
-
|
|
127
|
-
end
|
|
130
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
131
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
132
|
+
end
|
|
128
133
|
end
|
|
129
|
-
|
|
130
|
-
self
|
|
134
|
+
new(transformed_hash)
|
|
131
135
|
end
|
|
132
136
|
|
|
133
137
|
# Deserializes the data based on type
|
|
134
138
|
# @param string type Data type
|
|
135
139
|
# @param string value Value to be deserialized
|
|
136
140
|
# @return [Object] Deserialized data
|
|
137
|
-
def _deserialize(type, value)
|
|
141
|
+
def self._deserialize(type, value)
|
|
138
142
|
case type.to_sym
|
|
139
|
-
when :
|
|
140
|
-
|
|
143
|
+
when :Time
|
|
144
|
+
Time.parse(value)
|
|
141
145
|
when :Date
|
|
142
146
|
Date.parse(value)
|
|
143
147
|
when :String
|
|
@@ -167,7 +171,9 @@ module PulpNpmClient
|
|
|
167
171
|
end
|
|
168
172
|
end
|
|
169
173
|
else # model
|
|
170
|
-
|
|
174
|
+
# models (e.g. Pet) or oneOf
|
|
175
|
+
klass = PulpNpmClient.const_get(type)
|
|
176
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
171
177
|
end
|
|
172
178
|
end
|
|
173
179
|
|
|
@@ -193,7 +199,7 @@ module PulpNpmClient
|
|
|
193
199
|
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
194
200
|
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
195
201
|
end
|
|
196
|
-
|
|
202
|
+
|
|
197
203
|
hash[param] = _to_hash(value)
|
|
198
204
|
end
|
|
199
205
|
hash
|
|
@@ -216,5 +222,7 @@ module PulpNpmClient
|
|
|
216
222
|
value
|
|
217
223
|
end
|
|
218
224
|
end
|
|
225
|
+
|
|
219
226
|
end
|
|
227
|
+
|
|
220
228
|
end
|