pulp_ansible_client 0.28.1 → 0.29.1

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.
@@ -16,8 +16,11 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Git Collection Remotes.
18
18
  class PatchedansibleGitRemote
19
- # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
20
- attr_accessor :password
19
+ # The proxy URL. Format: scheme://host:port
20
+ attr_accessor :proxy_url
21
+
22
+ # Total number of simultaneous connections. If not set then the default value will be used.
23
+ attr_accessor :download_concurrency
21
24
 
22
25
  # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
23
26
  attr_accessor :connect_timeout
@@ -25,56 +28,53 @@ module PulpAnsibleClient
25
28
  # A unique name for this remote.
26
29
  attr_accessor :name
27
30
 
28
- attr_accessor :pulp_labels
31
+ # Headers for aiohttp.Clientsession
32
+ attr_accessor :headers
29
33
 
30
- # Total number of simultaneous connections. If not set then the default value will be used.
31
- attr_accessor :download_concurrency
34
+ # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
35
+ attr_accessor :password
32
36
 
33
- # A PEM encoded private key used for authentication.
34
- attr_accessor :client_key
37
+ # If True, TLS peer validation must be performed.
38
+ attr_accessor :tls_validation
35
39
 
36
- # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
37
- attr_accessor :sock_read_timeout
40
+ # The URL of an external content source.
41
+ attr_accessor :url
38
42
 
39
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
40
- attr_accessor :max_retries
43
+ # Limits requests per second for each concurrent downloader
44
+ attr_accessor :rate_limit
41
45
 
42
46
  # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
43
47
  attr_accessor :ca_cert
44
48
 
45
- # The username to be used for authentication when syncing.
46
- attr_accessor :username
47
-
48
- # Limits requests per second for each concurrent downloader
49
- attr_accessor :rate_limit
50
-
51
49
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
52
50
  attr_accessor :total_timeout
53
51
 
52
+ # The username to authenticte to the proxy.
53
+ attr_accessor :proxy_username
54
+
54
55
  # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
55
56
  attr_accessor :proxy_password
56
57
 
57
- # The username to authenticte to the proxy.
58
- attr_accessor :proxy_username
58
+ attr_accessor :pulp_labels
59
59
 
60
- # The proxy URL. Format: scheme://host:port
61
- attr_accessor :proxy_url
60
+ # The username to be used for authentication when syncing.
61
+ attr_accessor :username
62
62
 
63
- # If True, TLS peer validation must be performed.
64
- attr_accessor :tls_validation
63
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
64
+ attr_accessor :max_retries
65
+
66
+ # A PEM encoded private key used for authentication.
67
+ attr_accessor :client_key
68
+
69
+ # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
70
+ attr_accessor :sock_read_timeout
65
71
 
66
72
  # A PEM encoded client certificate used for authentication.
67
73
  attr_accessor :client_cert
68
74
 
69
- # Headers for aiohttp.Clientsession
70
- attr_accessor :headers
71
-
72
75
  # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
73
76
  attr_accessor :sock_connect_timeout
74
77
 
75
- # The URL of an external content source.
76
- attr_accessor :url
77
-
78
78
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
79
79
  attr_accessor :metadata_only
80
80
 
@@ -84,26 +84,26 @@ module PulpAnsibleClient
84
84
  # Attribute mapping from ruby-style variable name to JSON key.
85
85
  def self.attribute_map
86
86
  {
87
- :'password' => :'password',
87
+ :'proxy_url' => :'proxy_url',
88
+ :'download_concurrency' => :'download_concurrency',
88
89
  :'connect_timeout' => :'connect_timeout',
89
90
  :'name' => :'name',
90
- :'pulp_labels' => :'pulp_labels',
91
- :'download_concurrency' => :'download_concurrency',
92
- :'client_key' => :'client_key',
93
- :'sock_read_timeout' => :'sock_read_timeout',
94
- :'max_retries' => :'max_retries',
95
- :'ca_cert' => :'ca_cert',
96
- :'username' => :'username',
91
+ :'headers' => :'headers',
92
+ :'password' => :'password',
93
+ :'tls_validation' => :'tls_validation',
94
+ :'url' => :'url',
97
95
  :'rate_limit' => :'rate_limit',
96
+ :'ca_cert' => :'ca_cert',
98
97
  :'total_timeout' => :'total_timeout',
99
- :'proxy_password' => :'proxy_password',
100
98
  :'proxy_username' => :'proxy_username',
101
- :'proxy_url' => :'proxy_url',
102
- :'tls_validation' => :'tls_validation',
99
+ :'proxy_password' => :'proxy_password',
100
+ :'pulp_labels' => :'pulp_labels',
101
+ :'username' => :'username',
102
+ :'max_retries' => :'max_retries',
103
+ :'client_key' => :'client_key',
104
+ :'sock_read_timeout' => :'sock_read_timeout',
103
105
  :'client_cert' => :'client_cert',
104
- :'headers' => :'headers',
105
106
  :'sock_connect_timeout' => :'sock_connect_timeout',
106
- :'url' => :'url',
107
107
  :'metadata_only' => :'metadata_only',
108
108
  :'git_ref' => :'git_ref'
109
109
  }
@@ -117,26 +117,26 @@ module PulpAnsibleClient
117
117
  # Attribute type mapping.
118
118
  def self.openapi_types
119
119
  {
120
- :'password' => :'String',
120
+ :'proxy_url' => :'String',
121
+ :'download_concurrency' => :'Integer',
121
122
  :'connect_timeout' => :'Float',
122
123
  :'name' => :'String',
123
- :'pulp_labels' => :'Hash<String, String>',
124
- :'download_concurrency' => :'Integer',
125
- :'client_key' => :'String',
126
- :'sock_read_timeout' => :'Float',
127
- :'max_retries' => :'Integer',
128
- :'ca_cert' => :'String',
129
- :'username' => :'String',
124
+ :'headers' => :'Array<Object>',
125
+ :'password' => :'String',
126
+ :'tls_validation' => :'Boolean',
127
+ :'url' => :'String',
130
128
  :'rate_limit' => :'Integer',
129
+ :'ca_cert' => :'String',
131
130
  :'total_timeout' => :'Float',
132
- :'proxy_password' => :'String',
133
131
  :'proxy_username' => :'String',
134
- :'proxy_url' => :'String',
135
- :'tls_validation' => :'Boolean',
132
+ :'proxy_password' => :'String',
133
+ :'pulp_labels' => :'Hash<String, String>',
134
+ :'username' => :'String',
135
+ :'max_retries' => :'Integer',
136
+ :'client_key' => :'String',
137
+ :'sock_read_timeout' => :'Float',
136
138
  :'client_cert' => :'String',
137
- :'headers' => :'Array<Object>',
138
139
  :'sock_connect_timeout' => :'Float',
139
- :'url' => :'String',
140
140
  :'metadata_only' => :'Boolean',
141
141
  :'git_ref' => :'String'
142
142
  }
@@ -145,19 +145,19 @@ module PulpAnsibleClient
145
145
  # List of attributes with nullable: true
146
146
  def self.openapi_nullable
147
147
  Set.new([
148
- :'password',
149
- :'connect_timeout',
148
+ :'proxy_url',
150
149
  :'download_concurrency',
151
- :'client_key',
152
- :'sock_read_timeout',
153
- :'max_retries',
154
- :'ca_cert',
155
- :'username',
150
+ :'connect_timeout',
151
+ :'password',
156
152
  :'rate_limit',
153
+ :'ca_cert',
157
154
  :'total_timeout',
158
- :'proxy_password',
159
155
  :'proxy_username',
160
- :'proxy_url',
156
+ :'proxy_password',
157
+ :'username',
158
+ :'max_retries',
159
+ :'client_key',
160
+ :'sock_read_timeout',
161
161
  :'client_cert',
162
162
  :'sock_connect_timeout',
163
163
  ])
@@ -178,8 +178,12 @@ module PulpAnsibleClient
178
178
  h[k.to_sym] = v
179
179
  }
180
180
 
181
- if attributes.key?(:'password')
182
- self.password = attributes[:'password']
181
+ if attributes.key?(:'proxy_url')
182
+ self.proxy_url = attributes[:'proxy_url']
183
+ end
184
+
185
+ if attributes.key?(:'download_concurrency')
186
+ self.download_concurrency = attributes[:'download_concurrency']
183
187
  end
184
188
 
185
189
  if attributes.key?(:'connect_timeout')
@@ -190,76 +194,72 @@ module PulpAnsibleClient
190
194
  self.name = attributes[:'name']
191
195
  end
192
196
 
193
- if attributes.key?(:'pulp_labels')
194
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
195
- self.pulp_labels = value
197
+ if attributes.key?(:'headers')
198
+ if (value = attributes[:'headers']).is_a?(Array)
199
+ self.headers = value
196
200
  end
197
201
  end
198
202
 
199
- if attributes.key?(:'download_concurrency')
200
- self.download_concurrency = attributes[:'download_concurrency']
203
+ if attributes.key?(:'password')
204
+ self.password = attributes[:'password']
201
205
  end
202
206
 
203
- if attributes.key?(:'client_key')
204
- self.client_key = attributes[:'client_key']
207
+ if attributes.key?(:'tls_validation')
208
+ self.tls_validation = attributes[:'tls_validation']
205
209
  end
206
210
 
207
- if attributes.key?(:'sock_read_timeout')
208
- self.sock_read_timeout = attributes[:'sock_read_timeout']
211
+ if attributes.key?(:'url')
212
+ self.url = attributes[:'url']
209
213
  end
210
214
 
211
- if attributes.key?(:'max_retries')
212
- self.max_retries = attributes[:'max_retries']
215
+ if attributes.key?(:'rate_limit')
216
+ self.rate_limit = attributes[:'rate_limit']
213
217
  end
214
218
 
215
219
  if attributes.key?(:'ca_cert')
216
220
  self.ca_cert = attributes[:'ca_cert']
217
221
  end
218
222
 
219
- if attributes.key?(:'username')
220
- self.username = attributes[:'username']
221
- end
222
-
223
- if attributes.key?(:'rate_limit')
224
- self.rate_limit = attributes[:'rate_limit']
225
- end
226
-
227
223
  if attributes.key?(:'total_timeout')
228
224
  self.total_timeout = attributes[:'total_timeout']
229
225
  end
230
226
 
227
+ if attributes.key?(:'proxy_username')
228
+ self.proxy_username = attributes[:'proxy_username']
229
+ end
230
+
231
231
  if attributes.key?(:'proxy_password')
232
232
  self.proxy_password = attributes[:'proxy_password']
233
233
  end
234
234
 
235
- if attributes.key?(:'proxy_username')
236
- self.proxy_username = attributes[:'proxy_username']
235
+ if attributes.key?(:'pulp_labels')
236
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
237
+ self.pulp_labels = value
238
+ end
237
239
  end
238
240
 
239
- if attributes.key?(:'proxy_url')
240
- self.proxy_url = attributes[:'proxy_url']
241
+ if attributes.key?(:'username')
242
+ self.username = attributes[:'username']
241
243
  end
242
244
 
243
- if attributes.key?(:'tls_validation')
244
- self.tls_validation = attributes[:'tls_validation']
245
+ if attributes.key?(:'max_retries')
246
+ self.max_retries = attributes[:'max_retries']
245
247
  end
246
248
 
247
- if attributes.key?(:'client_cert')
248
- self.client_cert = attributes[:'client_cert']
249
+ if attributes.key?(:'client_key')
250
+ self.client_key = attributes[:'client_key']
249
251
  end
250
252
 
251
- if attributes.key?(:'headers')
252
- if (value = attributes[:'headers']).is_a?(Array)
253
- self.headers = value
254
- end
253
+ if attributes.key?(:'sock_read_timeout')
254
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
255
255
  end
256
256
 
257
- if attributes.key?(:'sock_connect_timeout')
258
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
257
+ if attributes.key?(:'client_cert')
258
+ self.client_cert = attributes[:'client_cert']
259
259
  end
260
260
 
261
- if attributes.key?(:'url')
262
- self.url = attributes[:'url']
261
+ if attributes.key?(:'sock_connect_timeout')
262
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
263
263
  end
264
264
 
265
265
  if attributes.key?(:'metadata_only')
@@ -276,8 +276,8 @@ module PulpAnsibleClient
276
276
  def list_invalid_properties
277
277
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
278
278
  invalid_properties = Array.new
279
- if !@password.nil? && @password.to_s.length < 1
280
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
279
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
280
+ invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
281
281
  end
282
282
 
283
283
  if !@connect_timeout.nil? && @connect_timeout < 0.0
@@ -288,36 +288,40 @@ module PulpAnsibleClient
288
288
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
289
289
  end
290
290
 
291
- if !@client_key.nil? && @client_key.to_s.length < 1
292
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
291
+ if !@password.nil? && @password.to_s.length < 1
292
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
293
293
  end
294
294
 
295
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
296
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
295
+ if !@url.nil? && @url.to_s.length < 1
296
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
297
297
  end
298
298
 
299
299
  if !@ca_cert.nil? && @ca_cert.to_s.length < 1
300
300
  invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
301
301
  end
302
302
 
303
- if !@username.nil? && @username.to_s.length < 1
304
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
305
- end
306
-
307
303
  if !@total_timeout.nil? && @total_timeout < 0.0
308
304
  invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
309
305
  end
310
306
 
307
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
308
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
309
+ end
310
+
311
311
  if !@proxy_password.nil? && @proxy_password.to_s.length < 1
312
312
  invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
313
313
  end
314
314
 
315
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
316
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
315
+ if !@username.nil? && @username.to_s.length < 1
316
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
317
317
  end
318
318
 
319
- if !@proxy_url.nil? && @proxy_url.to_s.length < 1
320
- invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
319
+ if !@client_key.nil? && @client_key.to_s.length < 1
320
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
321
+ end
322
+
323
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
324
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
321
325
  end
322
326
 
323
327
  if !@client_cert.nil? && @client_cert.to_s.length < 1
@@ -328,10 +332,6 @@ module PulpAnsibleClient
328
332
  invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
329
333
  end
330
334
 
331
- if !@url.nil? && @url.to_s.length < 1
332
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
333
- end
334
-
335
335
  if !@git_ref.nil? && @git_ref.to_s.length < 1
336
336
  invalid_properties.push('invalid value for "git_ref", the character length must be great than or equal to 1.')
337
337
  end
@@ -343,32 +343,32 @@ module PulpAnsibleClient
343
343
  # @return true if the model is valid
344
344
  def valid?
345
345
  warn '[DEPRECATED] the `valid?` method is obsolete'
346
- return false if !@password.nil? && @password.to_s.length < 1
346
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
347
347
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
348
348
  return false if !@name.nil? && @name.to_s.length < 1
349
- return false if !@client_key.nil? && @client_key.to_s.length < 1
350
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
349
+ return false if !@password.nil? && @password.to_s.length < 1
350
+ return false if !@url.nil? && @url.to_s.length < 1
351
351
  return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
352
- return false if !@username.nil? && @username.to_s.length < 1
353
352
  return false if !@total_timeout.nil? && @total_timeout < 0.0
354
- return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
355
353
  return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
356
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
354
+ return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
355
+ return false if !@username.nil? && @username.to_s.length < 1
356
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
357
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
357
358
  return false if !@client_cert.nil? && @client_cert.to_s.length < 1
358
359
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
359
- return false if !@url.nil? && @url.to_s.length < 1
360
360
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
361
361
  true
362
362
  end
363
363
 
364
364
  # Custom attribute writer method with validation
365
- # @param [Object] password Value to be assigned
366
- def password=(password)
367
- if !password.nil? && password.to_s.length < 1
368
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
365
+ # @param [Object] proxy_url Value to be assigned
366
+ def proxy_url=(proxy_url)
367
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
368
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
369
369
  end
370
370
 
371
- @password = password
371
+ @proxy_url = proxy_url
372
372
  end
373
373
 
374
374
  # Custom attribute writer method with validation
@@ -396,23 +396,27 @@ module PulpAnsibleClient
396
396
  end
397
397
 
398
398
  # Custom attribute writer method with validation
399
- # @param [Object] client_key Value to be assigned
400
- def client_key=(client_key)
401
- if !client_key.nil? && client_key.to_s.length < 1
402
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
399
+ # @param [Object] password Value to be assigned
400
+ def password=(password)
401
+ if !password.nil? && password.to_s.length < 1
402
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
403
403
  end
404
404
 
405
- @client_key = client_key
405
+ @password = password
406
406
  end
407
407
 
408
408
  # Custom attribute writer method with validation
409
- # @param [Object] sock_read_timeout Value to be assigned
410
- def sock_read_timeout=(sock_read_timeout)
411
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
412
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
409
+ # @param [Object] url Value to be assigned
410
+ def url=(url)
411
+ if url.nil?
412
+ fail ArgumentError, 'url cannot be nil'
413
413
  end
414
414
 
415
- @sock_read_timeout = sock_read_timeout
415
+ if url.to_s.length < 1
416
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
417
+ end
418
+
419
+ @url = url
416
420
  end
417
421
 
418
422
  # Custom attribute writer method with validation
@@ -425,16 +429,6 @@ module PulpAnsibleClient
425
429
  @ca_cert = ca_cert
426
430
  end
427
431
 
428
- # Custom attribute writer method with validation
429
- # @param [Object] username Value to be assigned
430
- def username=(username)
431
- if !username.nil? && username.to_s.length < 1
432
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
433
- end
434
-
435
- @username = username
436
- end
437
-
438
432
  # Custom attribute writer method with validation
439
433
  # @param [Object] total_timeout Value to be assigned
440
434
  def total_timeout=(total_timeout)
@@ -445,6 +439,16 @@ module PulpAnsibleClient
445
439
  @total_timeout = total_timeout
446
440
  end
447
441
 
442
+ # Custom attribute writer method with validation
443
+ # @param [Object] proxy_username Value to be assigned
444
+ def proxy_username=(proxy_username)
445
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
446
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
447
+ end
448
+
449
+ @proxy_username = proxy_username
450
+ end
451
+
448
452
  # Custom attribute writer method with validation
449
453
  # @param [Object] proxy_password Value to be assigned
450
454
  def proxy_password=(proxy_password)
@@ -456,23 +460,33 @@ module PulpAnsibleClient
456
460
  end
457
461
 
458
462
  # Custom attribute writer method with validation
459
- # @param [Object] proxy_username Value to be assigned
460
- def proxy_username=(proxy_username)
461
- if !proxy_username.nil? && proxy_username.to_s.length < 1
462
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
463
+ # @param [Object] username Value to be assigned
464
+ def username=(username)
465
+ if !username.nil? && username.to_s.length < 1
466
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
463
467
  end
464
468
 
465
- @proxy_username = proxy_username
469
+ @username = username
466
470
  end
467
471
 
468
472
  # Custom attribute writer method with validation
469
- # @param [Object] proxy_url Value to be assigned
470
- def proxy_url=(proxy_url)
471
- if !proxy_url.nil? && proxy_url.to_s.length < 1
472
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
473
+ # @param [Object] client_key Value to be assigned
474
+ def client_key=(client_key)
475
+ if !client_key.nil? && client_key.to_s.length < 1
476
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
473
477
  end
474
478
 
475
- @proxy_url = proxy_url
479
+ @client_key = client_key
480
+ end
481
+
482
+ # Custom attribute writer method with validation
483
+ # @param [Object] sock_read_timeout Value to be assigned
484
+ def sock_read_timeout=(sock_read_timeout)
485
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
486
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
487
+ end
488
+
489
+ @sock_read_timeout = sock_read_timeout
476
490
  end
477
491
 
478
492
  # Custom attribute writer method with validation
@@ -495,20 +509,6 @@ module PulpAnsibleClient
495
509
  @sock_connect_timeout = sock_connect_timeout
496
510
  end
497
511
 
498
- # Custom attribute writer method with validation
499
- # @param [Object] url Value to be assigned
500
- def url=(url)
501
- if url.nil?
502
- fail ArgumentError, 'url cannot be nil'
503
- end
504
-
505
- if url.to_s.length < 1
506
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
507
- end
508
-
509
- @url = url
510
- end
511
-
512
512
  # Custom attribute writer method with validation
513
513
  # @param [Object] git_ref Value to be assigned
514
514
  def git_ref=(git_ref)
@@ -528,26 +528,26 @@ module PulpAnsibleClient
528
528
  def ==(o)
529
529
  return true if self.equal?(o)
530
530
  self.class == o.class &&
531
- password == o.password &&
531
+ proxy_url == o.proxy_url &&
532
+ download_concurrency == o.download_concurrency &&
532
533
  connect_timeout == o.connect_timeout &&
533
534
  name == o.name &&
534
- pulp_labels == o.pulp_labels &&
535
- download_concurrency == o.download_concurrency &&
536
- client_key == o.client_key &&
537
- sock_read_timeout == o.sock_read_timeout &&
538
- max_retries == o.max_retries &&
539
- ca_cert == o.ca_cert &&
540
- username == o.username &&
535
+ headers == o.headers &&
536
+ password == o.password &&
537
+ tls_validation == o.tls_validation &&
538
+ url == o.url &&
541
539
  rate_limit == o.rate_limit &&
540
+ ca_cert == o.ca_cert &&
542
541
  total_timeout == o.total_timeout &&
543
- proxy_password == o.proxy_password &&
544
542
  proxy_username == o.proxy_username &&
545
- proxy_url == o.proxy_url &&
546
- tls_validation == o.tls_validation &&
543
+ proxy_password == o.proxy_password &&
544
+ pulp_labels == o.pulp_labels &&
545
+ username == o.username &&
546
+ max_retries == o.max_retries &&
547
+ client_key == o.client_key &&
548
+ sock_read_timeout == o.sock_read_timeout &&
547
549
  client_cert == o.client_cert &&
548
- headers == o.headers &&
549
550
  sock_connect_timeout == o.sock_connect_timeout &&
550
- url == o.url &&
551
551
  metadata_only == o.metadata_only &&
552
552
  git_ref == o.git_ref
553
553
  end
@@ -561,7 +561,7 @@ module PulpAnsibleClient
561
561
  # Calculates hash code according to all attributes.
562
562
  # @return [Integer] Hash code
563
563
  def hash
564
- [password, connect_timeout, name, pulp_labels, download_concurrency, client_key, sock_read_timeout, max_retries, ca_cert, username, rate_limit, total_timeout, proxy_password, proxy_username, proxy_url, tls_validation, client_cert, headers, sock_connect_timeout, url, metadata_only, git_ref].hash
564
+ [proxy_url, download_concurrency, connect_timeout, name, headers, password, tls_validation, url, rate_limit, ca_cert, total_timeout, proxy_username, proxy_password, pulp_labels, username, max_retries, client_key, sock_read_timeout, client_cert, sock_connect_timeout, metadata_only, git_ref].hash
565
565
  end
566
566
 
567
567
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.28.1'
14
+ VERSION = '0.29.1'
15
15
  end
@@ -37,12 +37,12 @@ describe 'ContentCollectionVersionsApi' do
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
- # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
41
40
  # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
42
- # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
43
- # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
44
41
  # @option opts [String] :artifact Artifact file representing the physical content
42
+ # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
45
43
  # @option opts [File] :file An uploaded file that may be turned into the content unit.
44
+ # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
45
+ # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
46
46
  # @option opts [String] :expected_name The name of the collection.
47
47
  # @option opts [String] :expected_namespace The namespace of the collection.
48
48
  # @option opts [String] :expected_version The version of the collection.