pulpcore_client 3.108.0 → 3.109.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.
@@ -0,0 +1,302 @@
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
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module PulpcoreClient
17
+ class LoginUpdateResponse
18
+ # 150 characters or fewer. Letters, digits and @/./+/-/_ only.
19
+ attr_accessor :username
20
+
21
+ # First name
22
+ attr_accessor :first_name
23
+
24
+ # Last name
25
+ attr_accessor :last_name
26
+
27
+ # Email address
28
+ attr_accessor :email
29
+
30
+ # Attribute mapping from ruby-style variable name to JSON key.
31
+ def self.attribute_map
32
+ {
33
+ :'username' => :'username',
34
+ :'first_name' => :'first_name',
35
+ :'last_name' => :'last_name',
36
+ :'email' => :'email'
37
+ }
38
+ end
39
+
40
+ # Returns all the JSON keys this model knows about
41
+ def self.acceptable_attributes
42
+ attribute_map.values
43
+ end
44
+
45
+ # Attribute type mapping.
46
+ def self.openapi_types
47
+ {
48
+ :'username' => :'String',
49
+ :'first_name' => :'String',
50
+ :'last_name' => :'String',
51
+ :'email' => :'String'
52
+ }
53
+ end
54
+
55
+ # List of attributes with nullable: true
56
+ def self.openapi_nullable
57
+ Set.new([
58
+ ])
59
+ end
60
+
61
+ # Initializes the object
62
+ # @param [Hash] attributes Model attributes in the form of hash
63
+ def initialize(attributes = {})
64
+ if (!attributes.is_a?(Hash))
65
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpcoreClient::LoginUpdateResponse` initialize method"
66
+ end
67
+
68
+ # check to see if the attribute exists and convert string to symbol for hash key
69
+ attributes = attributes.each_with_object({}) { |(k, v), h|
70
+ if (!self.class.attribute_map.key?(k.to_sym))
71
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpcoreClient::LoginUpdateResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
72
+ end
73
+ h[k.to_sym] = v
74
+ }
75
+
76
+ if attributes.key?(:'username')
77
+ self.username = attributes[:'username']
78
+ end
79
+
80
+ if attributes.key?(:'first_name')
81
+ self.first_name = attributes[:'first_name']
82
+ end
83
+
84
+ if attributes.key?(:'last_name')
85
+ self.last_name = attributes[:'last_name']
86
+ end
87
+
88
+ if attributes.key?(:'email')
89
+ self.email = attributes[:'email']
90
+ end
91
+ end
92
+
93
+ # Show invalid properties with the reasons. Usually used together with valid?
94
+ # @return Array for valid properties with the reasons
95
+ def list_invalid_properties
96
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
97
+ invalid_properties = Array.new
98
+ if !@username.nil? && @username.to_s.length > 150
99
+ invalid_properties.push('invalid value for "username", the character length must be smaller than or equal to 150.')
100
+ end
101
+
102
+ if !@first_name.nil? && @first_name.to_s.length > 150
103
+ invalid_properties.push('invalid value for "first_name", the character length must be smaller than or equal to 150.')
104
+ end
105
+
106
+ if !@last_name.nil? && @last_name.to_s.length > 150
107
+ invalid_properties.push('invalid value for "last_name", the character length must be smaller than or equal to 150.')
108
+ end
109
+
110
+ invalid_properties
111
+ end
112
+
113
+ # Check to see if the all the properties in the model are valid
114
+ # @return true if the model is valid
115
+ def valid?
116
+ warn '[DEPRECATED] the `valid?` method is obsolete'
117
+ return false if !@username.nil? && @username.to_s.length > 150
118
+ return false if !@first_name.nil? && @first_name.to_s.length > 150
119
+ return false if !@last_name.nil? && @last_name.to_s.length > 150
120
+ true
121
+ end
122
+
123
+ # Custom attribute writer method with validation
124
+ # @param [Object] username Value to be assigned
125
+ def username=(username)
126
+ if username.nil?
127
+ fail ArgumentError, 'username cannot be nil'
128
+ end
129
+
130
+ if username.to_s.length > 150
131
+ fail ArgumentError, 'invalid value for "username", the character length must be smaller than or equal to 150.'
132
+ end
133
+
134
+ @username = username
135
+ end
136
+
137
+ # Custom attribute writer method with validation
138
+ # @param [Object] first_name Value to be assigned
139
+ def first_name=(first_name)
140
+ if first_name.nil?
141
+ fail ArgumentError, 'first_name cannot be nil'
142
+ end
143
+
144
+ if first_name.to_s.length > 150
145
+ fail ArgumentError, 'invalid value for "first_name", the character length must be smaller than or equal to 150.'
146
+ end
147
+
148
+ @first_name = first_name
149
+ end
150
+
151
+ # Custom attribute writer method with validation
152
+ # @param [Object] last_name Value to be assigned
153
+ def last_name=(last_name)
154
+ if last_name.nil?
155
+ fail ArgumentError, 'last_name cannot be nil'
156
+ end
157
+
158
+ if last_name.to_s.length > 150
159
+ fail ArgumentError, 'invalid value for "last_name", the character length must be smaller than or equal to 150.'
160
+ end
161
+
162
+ @last_name = last_name
163
+ end
164
+
165
+ # Checks equality by comparing each attribute.
166
+ # @param [Object] Object to be compared
167
+ def ==(o)
168
+ return true if self.equal?(o)
169
+ self.class == o.class &&
170
+ username == o.username &&
171
+ first_name == o.first_name &&
172
+ last_name == o.last_name &&
173
+ email == o.email
174
+ end
175
+
176
+ # @see the `==` method
177
+ # @param [Object] Object to be compared
178
+ def eql?(o)
179
+ self == o
180
+ end
181
+
182
+ # Calculates hash code according to all attributes.
183
+ # @return [Integer] Hash code
184
+ def hash
185
+ [username, first_name, last_name, email].hash
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 self.build_from_hash(attributes)
192
+ return nil unless attributes.is_a?(Hash)
193
+ attributes = attributes.transform_keys(&:to_sym)
194
+ transformed_hash = {}
195
+ openapi_types.each_pair do |key, type|
196
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
197
+ transformed_hash["#{key}"] = nil
198
+ elsif type =~ /\AArray<(.*)>/i
199
+ # check to ensure the input is an array given that the attribute
200
+ # is documented as an array but the input is not
201
+ if attributes[attribute_map[key]].is_a?(Array)
202
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
203
+ end
204
+ elsif !attributes[attribute_map[key]].nil?
205
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
206
+ end
207
+ end
208
+ new(transformed_hash)
209
+ end
210
+
211
+ # Deserializes the data based on type
212
+ # @param string type Data type
213
+ # @param string value Value to be deserialized
214
+ # @return [Object] Deserialized data
215
+ def self._deserialize(type, value)
216
+ case type.to_sym
217
+ when :Time
218
+ Time.parse(value)
219
+ when :Date
220
+ Date.parse(value)
221
+ when :String
222
+ value.to_s
223
+ when :Integer
224
+ value.to_i
225
+ when :Float
226
+ value.to_f
227
+ when :Boolean
228
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
229
+ true
230
+ else
231
+ false
232
+ end
233
+ when :Object
234
+ # generic object (usually a Hash), return directly
235
+ value
236
+ when /\AArray<(?<inner_type>.+)>\z/
237
+ inner_type = Regexp.last_match[:inner_type]
238
+ value.map { |v| _deserialize(inner_type, v) }
239
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
240
+ k_type = Regexp.last_match[:k_type]
241
+ v_type = Regexp.last_match[:v_type]
242
+ {}.tap do |hash|
243
+ value.each do |k, v|
244
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
245
+ end
246
+ end
247
+ else # model
248
+ # models (e.g. Pet) or oneOf
249
+ klass = PulpcoreClient.const_get(type)
250
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
251
+ end
252
+ end
253
+
254
+ # Returns the string representation of the object
255
+ # @return [String] String presentation of the object
256
+ def to_s
257
+ to_hash.to_s
258
+ end
259
+
260
+ # to_body is an alias to to_hash (backward compatibility)
261
+ # @return [Hash] Returns the object in the form of hash
262
+ def to_body
263
+ to_hash
264
+ end
265
+
266
+ # Returns the object in the form of hash
267
+ # @return [Hash] Returns the object in the form of hash
268
+ def to_hash
269
+ hash = {}
270
+ self.class.attribute_map.each_pair do |attr, param|
271
+ value = self.send(attr)
272
+ if value.nil?
273
+ is_nullable = self.class.openapi_nullable.include?(attr)
274
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
275
+ end
276
+
277
+ hash[param] = _to_hash(value)
278
+ end
279
+ hash
280
+ end
281
+
282
+ # Outputs non-array value in the form of hash
283
+ # For object, use to_hash. Otherwise, just return the value
284
+ # @param [Object] value Any valid value
285
+ # @return [Hash] Returns the value in the form of hash
286
+ def _to_hash(value)
287
+ if value.is_a?(Array)
288
+ value.compact.map { |v| _to_hash(v) }
289
+ elsif value.is_a?(Hash)
290
+ {}.tap do |hash|
291
+ value.each { |k, v| hash[k] = _to_hash(v) }
292
+ end
293
+ elsif value.respond_to? :to_hash
294
+ value.to_hash
295
+ else
296
+ value
297
+ end
298
+ end
299
+
300
+ end
301
+
302
+ end
@@ -0,0 +1,369 @@
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
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module PulpcoreClient
17
+ class PatchedLoginUpdate
18
+ # 150 characters or fewer. Letters, digits and @/./+/-/_ only.
19
+ attr_accessor :username
20
+
21
+ # Old password
22
+ attr_accessor :old_password
23
+
24
+ # New password
25
+ attr_accessor :new_password
26
+
27
+ # First name
28
+ attr_accessor :first_name
29
+
30
+ # Last name
31
+ attr_accessor :last_name
32
+
33
+ # Email address
34
+ attr_accessor :email
35
+
36
+ # Attribute mapping from ruby-style variable name to JSON key.
37
+ def self.attribute_map
38
+ {
39
+ :'username' => :'username',
40
+ :'old_password' => :'old_password',
41
+ :'new_password' => :'new_password',
42
+ :'first_name' => :'first_name',
43
+ :'last_name' => :'last_name',
44
+ :'email' => :'email'
45
+ }
46
+ end
47
+
48
+ # Returns all the JSON keys this model knows about
49
+ def self.acceptable_attributes
50
+ attribute_map.values
51
+ end
52
+
53
+ # Attribute type mapping.
54
+ def self.openapi_types
55
+ {
56
+ :'username' => :'String',
57
+ :'old_password' => :'String',
58
+ :'new_password' => :'String',
59
+ :'first_name' => :'String',
60
+ :'last_name' => :'String',
61
+ :'email' => :'String'
62
+ }
63
+ end
64
+
65
+ # List of attributes with nullable: true
66
+ def self.openapi_nullable
67
+ Set.new([
68
+ ])
69
+ end
70
+
71
+ # Initializes the object
72
+ # @param [Hash] attributes Model attributes in the form of hash
73
+ def initialize(attributes = {})
74
+ if (!attributes.is_a?(Hash))
75
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpcoreClient::PatchedLoginUpdate` initialize method"
76
+ end
77
+
78
+ # check to see if the attribute exists and convert string to symbol for hash key
79
+ attributes = attributes.each_with_object({}) { |(k, v), h|
80
+ if (!self.class.attribute_map.key?(k.to_sym))
81
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpcoreClient::PatchedLoginUpdate`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
82
+ end
83
+ h[k.to_sym] = v
84
+ }
85
+
86
+ if attributes.key?(:'username')
87
+ self.username = attributes[:'username']
88
+ end
89
+
90
+ if attributes.key?(:'old_password')
91
+ self.old_password = attributes[:'old_password']
92
+ end
93
+
94
+ if attributes.key?(:'new_password')
95
+ self.new_password = attributes[:'new_password']
96
+ end
97
+
98
+ if attributes.key?(:'first_name')
99
+ self.first_name = attributes[:'first_name']
100
+ end
101
+
102
+ if attributes.key?(:'last_name')
103
+ self.last_name = attributes[:'last_name']
104
+ end
105
+
106
+ if attributes.key?(:'email')
107
+ self.email = attributes[:'email']
108
+ end
109
+ end
110
+
111
+ # Show invalid properties with the reasons. Usually used together with valid?
112
+ # @return Array for valid properties with the reasons
113
+ def list_invalid_properties
114
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
115
+ invalid_properties = Array.new
116
+ if !@username.nil? && @username.to_s.length > 150
117
+ invalid_properties.push('invalid value for "username", the character length must be smaller than or equal to 150.')
118
+ end
119
+
120
+ if !@username.nil? && @username.to_s.length < 1
121
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
122
+ end
123
+
124
+ if !@old_password.nil? && @old_password.to_s.length < 1
125
+ invalid_properties.push('invalid value for "old_password", the character length must be great than or equal to 1.')
126
+ end
127
+
128
+ if !@new_password.nil? && @new_password.to_s.length < 1
129
+ invalid_properties.push('invalid value for "new_password", the character length must be great than or equal to 1.')
130
+ end
131
+
132
+ if !@first_name.nil? && @first_name.to_s.length > 150
133
+ invalid_properties.push('invalid value for "first_name", the character length must be smaller than or equal to 150.')
134
+ end
135
+
136
+ if !@last_name.nil? && @last_name.to_s.length > 150
137
+ invalid_properties.push('invalid value for "last_name", the character length must be smaller than or equal to 150.')
138
+ end
139
+
140
+ invalid_properties
141
+ end
142
+
143
+ # Check to see if the all the properties in the model are valid
144
+ # @return true if the model is valid
145
+ def valid?
146
+ warn '[DEPRECATED] the `valid?` method is obsolete'
147
+ return false if !@username.nil? && @username.to_s.length > 150
148
+ return false if !@username.nil? && @username.to_s.length < 1
149
+ return false if !@old_password.nil? && @old_password.to_s.length < 1
150
+ return false if !@new_password.nil? && @new_password.to_s.length < 1
151
+ return false if !@first_name.nil? && @first_name.to_s.length > 150
152
+ return false if !@last_name.nil? && @last_name.to_s.length > 150
153
+ true
154
+ end
155
+
156
+ # Custom attribute writer method with validation
157
+ # @param [Object] username Value to be assigned
158
+ def username=(username)
159
+ if username.nil?
160
+ fail ArgumentError, 'username cannot be nil'
161
+ end
162
+
163
+ if username.to_s.length > 150
164
+ fail ArgumentError, 'invalid value for "username", the character length must be smaller than or equal to 150.'
165
+ end
166
+
167
+ if username.to_s.length < 1
168
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
169
+ end
170
+
171
+ @username = username
172
+ end
173
+
174
+ # Custom attribute writer method with validation
175
+ # @param [Object] old_password Value to be assigned
176
+ def old_password=(old_password)
177
+ if old_password.nil?
178
+ fail ArgumentError, 'old_password cannot be nil'
179
+ end
180
+
181
+ if old_password.to_s.length < 1
182
+ fail ArgumentError, 'invalid value for "old_password", the character length must be great than or equal to 1.'
183
+ end
184
+
185
+ @old_password = old_password
186
+ end
187
+
188
+ # Custom attribute writer method with validation
189
+ # @param [Object] new_password Value to be assigned
190
+ def new_password=(new_password)
191
+ if new_password.nil?
192
+ fail ArgumentError, 'new_password cannot be nil'
193
+ end
194
+
195
+ if new_password.to_s.length < 1
196
+ fail ArgumentError, 'invalid value for "new_password", the character length must be great than or equal to 1.'
197
+ end
198
+
199
+ @new_password = new_password
200
+ end
201
+
202
+ # Custom attribute writer method with validation
203
+ # @param [Object] first_name Value to be assigned
204
+ def first_name=(first_name)
205
+ if first_name.nil?
206
+ fail ArgumentError, 'first_name cannot be nil'
207
+ end
208
+
209
+ if first_name.to_s.length > 150
210
+ fail ArgumentError, 'invalid value for "first_name", the character length must be smaller than or equal to 150.'
211
+ end
212
+
213
+ @first_name = first_name
214
+ end
215
+
216
+ # Custom attribute writer method with validation
217
+ # @param [Object] last_name Value to be assigned
218
+ def last_name=(last_name)
219
+ if last_name.nil?
220
+ fail ArgumentError, 'last_name cannot be nil'
221
+ end
222
+
223
+ if last_name.to_s.length > 150
224
+ fail ArgumentError, 'invalid value for "last_name", the character length must be smaller than or equal to 150.'
225
+ end
226
+
227
+ @last_name = last_name
228
+ end
229
+
230
+ # Checks equality by comparing each attribute.
231
+ # @param [Object] Object to be compared
232
+ def ==(o)
233
+ return true if self.equal?(o)
234
+ self.class == o.class &&
235
+ username == o.username &&
236
+ old_password == o.old_password &&
237
+ new_password == o.new_password &&
238
+ first_name == o.first_name &&
239
+ last_name == o.last_name &&
240
+ email == o.email
241
+ end
242
+
243
+ # @see the `==` method
244
+ # @param [Object] Object to be compared
245
+ def eql?(o)
246
+ self == o
247
+ end
248
+
249
+ # Calculates hash code according to all attributes.
250
+ # @return [Integer] Hash code
251
+ def hash
252
+ [username, old_password, new_password, first_name, last_name, email].hash
253
+ end
254
+
255
+ # Builds the object from hash
256
+ # @param [Hash] attributes Model attributes in the form of hash
257
+ # @return [Object] Returns the model itself
258
+ def self.build_from_hash(attributes)
259
+ return nil unless attributes.is_a?(Hash)
260
+ attributes = attributes.transform_keys(&:to_sym)
261
+ transformed_hash = {}
262
+ openapi_types.each_pair do |key, type|
263
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
264
+ transformed_hash["#{key}"] = nil
265
+ elsif type =~ /\AArray<(.*)>/i
266
+ # check to ensure the input is an array given that the attribute
267
+ # is documented as an array but the input is not
268
+ if attributes[attribute_map[key]].is_a?(Array)
269
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
270
+ end
271
+ elsif !attributes[attribute_map[key]].nil?
272
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
273
+ end
274
+ end
275
+ new(transformed_hash)
276
+ end
277
+
278
+ # Deserializes the data based on type
279
+ # @param string type Data type
280
+ # @param string value Value to be deserialized
281
+ # @return [Object] Deserialized data
282
+ def self._deserialize(type, value)
283
+ case type.to_sym
284
+ when :Time
285
+ Time.parse(value)
286
+ when :Date
287
+ Date.parse(value)
288
+ when :String
289
+ value.to_s
290
+ when :Integer
291
+ value.to_i
292
+ when :Float
293
+ value.to_f
294
+ when :Boolean
295
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
296
+ true
297
+ else
298
+ false
299
+ end
300
+ when :Object
301
+ # generic object (usually a Hash), return directly
302
+ value
303
+ when /\AArray<(?<inner_type>.+)>\z/
304
+ inner_type = Regexp.last_match[:inner_type]
305
+ value.map { |v| _deserialize(inner_type, v) }
306
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
307
+ k_type = Regexp.last_match[:k_type]
308
+ v_type = Regexp.last_match[:v_type]
309
+ {}.tap do |hash|
310
+ value.each do |k, v|
311
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
312
+ end
313
+ end
314
+ else # model
315
+ # models (e.g. Pet) or oneOf
316
+ klass = PulpcoreClient.const_get(type)
317
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
318
+ end
319
+ end
320
+
321
+ # Returns the string representation of the object
322
+ # @return [String] String presentation of the object
323
+ def to_s
324
+ to_hash.to_s
325
+ end
326
+
327
+ # to_body is an alias to to_hash (backward compatibility)
328
+ # @return [Hash] Returns the object in the form of hash
329
+ def to_body
330
+ to_hash
331
+ end
332
+
333
+ # Returns the object in the form of hash
334
+ # @return [Hash] Returns the object in the form of hash
335
+ def to_hash
336
+ hash = {}
337
+ self.class.attribute_map.each_pair do |attr, param|
338
+ value = self.send(attr)
339
+ if value.nil?
340
+ is_nullable = self.class.openapi_nullable.include?(attr)
341
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
342
+ end
343
+
344
+ hash[param] = _to_hash(value)
345
+ end
346
+ hash
347
+ end
348
+
349
+ # Outputs non-array value in the form of hash
350
+ # For object, use to_hash. Otherwise, just return the value
351
+ # @param [Object] value Any valid value
352
+ # @return [Hash] Returns the value in the form of hash
353
+ def _to_hash(value)
354
+ if value.is_a?(Array)
355
+ value.compact.map { |v| _to_hash(v) }
356
+ elsif value.is_a?(Hash)
357
+ {}.tap do |hash|
358
+ value.each { |k, v| hash[k] = _to_hash(v) }
359
+ end
360
+ elsif value.respond_to? :to_hash
361
+ value.to_hash
362
+ else
363
+ value
364
+ end
365
+ end
366
+
367
+ end
368
+
369
+ end
@@ -66,7 +66,7 @@ module PulpcoreClient
66
66
  if attributes.key?(:'finished_before')
67
67
  self.finished_before = attributes[:'finished_before']
68
68
  else
69
- self.finished_before = '2026-03-15'
69
+ self.finished_before = '2026-03-22'
70
70
  end
71
71
 
72
72
  if attributes.key?(:'states')
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.108.0'
14
+ VERSION = '3.109.0'
15
15
  end
@@ -56,6 +56,7 @@ require 'pulpcore_client/models/header_content_guard'
56
56
  require 'pulpcore_client/models/header_content_guard_response'
57
57
  require 'pulpcore_client/models/import_response'
58
58
  require 'pulpcore_client/models/login_response'
59
+ require 'pulpcore_client/models/login_update_response'
59
60
  require 'pulpcore_client/models/method_enum'
60
61
  require 'pulpcore_client/models/minimal_task_response'
61
62
  require 'pulpcore_client/models/multiple_artifact_content_response'
@@ -130,6 +131,7 @@ require 'pulpcore_client/models/patched_domain'
130
131
  require 'pulpcore_client/models/patched_filesystem_exporter'
131
132
  require 'pulpcore_client/models/patched_group'
132
133
  require 'pulpcore_client/models/patched_header_content_guard'
134
+ require 'pulpcore_client/models/patched_login_update'
133
135
  require 'pulpcore_client/models/patched_open_pgp_distribution'
134
136
  require 'pulpcore_client/models/patched_open_pgp_keyring'
135
137
  require 'pulpcore_client/models/patched_pulp_exporter'