pulp_ansible_client 0.24.5 → 0.25.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.
@@ -16,64 +16,64 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Git Collection Remotes.
18
18
  class PatchedansibleGitRemote
19
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
20
- attr_accessor :ca_cert
21
-
22
- # The URL of an external content source.
23
- attr_accessor :url
24
-
25
19
  # 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.
26
20
  attr_accessor :sock_read_timeout
27
21
 
28
- # Total number of simultaneous connections. If not set then the default value will be used.
29
- attr_accessor :download_concurrency
22
+ attr_accessor :pulp_labels
30
23
 
31
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
32
- attr_accessor :total_timeout
24
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
25
+ attr_accessor :connect_timeout
26
+
27
+ # The username to authenticte to the proxy.
28
+ attr_accessor :proxy_username
33
29
 
34
30
  # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
35
31
  attr_accessor :password
36
32
 
37
- attr_accessor :pulp_labels
38
-
39
- # The username to be used for authentication when syncing.
40
- attr_accessor :username
41
-
42
- # 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.
43
- attr_accessor :sock_connect_timeout
33
+ # A unique name for this remote.
34
+ attr_accessor :name
44
35
 
45
36
  # The proxy URL. Format: scheme://host:port
46
37
  attr_accessor :proxy_url
47
38
 
48
- # Limits requests per second for each concurrent downloader
49
- attr_accessor :rate_limit
39
+ # If True, TLS peer validation must be performed.
40
+ attr_accessor :tls_validation
50
41
 
51
- # A PEM encoded client certificate used for authentication.
52
- attr_accessor :client_cert
42
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
43
+ attr_accessor :ca_cert
53
44
 
54
- # The username to authenticte to the proxy.
55
- attr_accessor :proxy_username
45
+ # Total number of simultaneous connections. If not set then the default value will be used.
46
+ attr_accessor :download_concurrency
56
47
 
57
- # Headers for aiohttp.Clientsession
58
- attr_accessor :headers
48
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
49
+ attr_accessor :max_retries
59
50
 
60
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
61
- attr_accessor :connect_timeout
51
+ # The URL of an external content source.
52
+ attr_accessor :url
62
53
 
63
54
  # A PEM encoded private key used for authentication.
64
55
  attr_accessor :client_key
65
56
 
57
+ # The username to be used for authentication when syncing.
58
+ attr_accessor :username
59
+
60
+ # 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.
61
+ attr_accessor :sock_connect_timeout
62
+
66
63
  # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
67
64
  attr_accessor :proxy_password
68
65
 
69
- # If True, TLS peer validation must be performed.
70
- attr_accessor :tls_validation
66
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
67
+ attr_accessor :total_timeout
71
68
 
72
- # A unique name for this remote.
73
- attr_accessor :name
69
+ # Headers for aiohttp.Clientsession
70
+ attr_accessor :headers
74
71
 
75
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
76
- attr_accessor :max_retries
72
+ # Limits requests per second for each concurrent downloader
73
+ attr_accessor :rate_limit
74
+
75
+ # A PEM encoded client certificate used for authentication.
76
+ attr_accessor :client_cert
77
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
@@ -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
- :'ca_cert' => :'ca_cert',
88
- :'url' => :'url',
89
87
  :'sock_read_timeout' => :'sock_read_timeout',
90
- :'download_concurrency' => :'download_concurrency',
91
- :'total_timeout' => :'total_timeout',
92
- :'password' => :'password',
93
88
  :'pulp_labels' => :'pulp_labels',
89
+ :'connect_timeout' => :'connect_timeout',
90
+ :'proxy_username' => :'proxy_username',
91
+ :'password' => :'password',
92
+ :'name' => :'name',
93
+ :'proxy_url' => :'proxy_url',
94
+ :'tls_validation' => :'tls_validation',
95
+ :'ca_cert' => :'ca_cert',
96
+ :'download_concurrency' => :'download_concurrency',
97
+ :'max_retries' => :'max_retries',
98
+ :'url' => :'url',
99
+ :'client_key' => :'client_key',
94
100
  :'username' => :'username',
95
101
  :'sock_connect_timeout' => :'sock_connect_timeout',
96
- :'proxy_url' => :'proxy_url',
102
+ :'proxy_password' => :'proxy_password',
103
+ :'total_timeout' => :'total_timeout',
104
+ :'headers' => :'headers',
97
105
  :'rate_limit' => :'rate_limit',
98
106
  :'client_cert' => :'client_cert',
99
- :'proxy_username' => :'proxy_username',
100
- :'headers' => :'headers',
101
- :'connect_timeout' => :'connect_timeout',
102
- :'client_key' => :'client_key',
103
- :'proxy_password' => :'proxy_password',
104
- :'tls_validation' => :'tls_validation',
105
- :'name' => :'name',
106
- :'max_retries' => :'max_retries',
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
- :'ca_cert' => :'String',
121
- :'url' => :'String',
122
120
  :'sock_read_timeout' => :'Float',
123
- :'download_concurrency' => :'Integer',
124
- :'total_timeout' => :'Float',
125
- :'password' => :'String',
126
121
  :'pulp_labels' => :'Hash<String, String>',
122
+ :'connect_timeout' => :'Float',
123
+ :'proxy_username' => :'String',
124
+ :'password' => :'String',
125
+ :'name' => :'String',
126
+ :'proxy_url' => :'String',
127
+ :'tls_validation' => :'Boolean',
128
+ :'ca_cert' => :'String',
129
+ :'download_concurrency' => :'Integer',
130
+ :'max_retries' => :'Integer',
131
+ :'url' => :'String',
132
+ :'client_key' => :'String',
127
133
  :'username' => :'String',
128
134
  :'sock_connect_timeout' => :'Float',
129
- :'proxy_url' => :'String',
135
+ :'proxy_password' => :'String',
136
+ :'total_timeout' => :'Float',
137
+ :'headers' => :'Array<Object>',
130
138
  :'rate_limit' => :'Integer',
131
139
  :'client_cert' => :'String',
132
- :'proxy_username' => :'String',
133
- :'headers' => :'Array<Object>',
134
- :'connect_timeout' => :'Float',
135
- :'client_key' => :'String',
136
- :'proxy_password' => :'String',
137
- :'tls_validation' => :'Boolean',
138
- :'name' => :'String',
139
- :'max_retries' => :'Integer',
140
140
  :'metadata_only' => :'Boolean',
141
141
  :'git_ref' => :'String'
142
142
  }
@@ -145,21 +145,21 @@ module PulpAnsibleClient
145
145
  # List of attributes with nullable: true
146
146
  def self.openapi_nullable
147
147
  Set.new([
148
- :'ca_cert',
149
148
  :'sock_read_timeout',
150
- :'download_concurrency',
151
- :'total_timeout',
149
+ :'connect_timeout',
150
+ :'proxy_username',
152
151
  :'password',
152
+ :'proxy_url',
153
+ :'ca_cert',
154
+ :'download_concurrency',
155
+ :'max_retries',
156
+ :'client_key',
153
157
  :'username',
154
158
  :'sock_connect_timeout',
155
- :'proxy_url',
159
+ :'proxy_password',
160
+ :'total_timeout',
156
161
  :'rate_limit',
157
162
  :'client_cert',
158
- :'proxy_username',
159
- :'connect_timeout',
160
- :'client_key',
161
- :'proxy_password',
162
- :'max_retries',
163
163
  ])
164
164
  end
165
165
 
@@ -178,88 +178,88 @@ module PulpAnsibleClient
178
178
  h[k.to_sym] = v
179
179
  }
180
180
 
181
- if attributes.key?(:'ca_cert')
182
- self.ca_cert = attributes[:'ca_cert']
183
- end
184
-
185
- if attributes.key?(:'url')
186
- self.url = attributes[:'url']
187
- end
188
-
189
181
  if attributes.key?(:'sock_read_timeout')
190
182
  self.sock_read_timeout = attributes[:'sock_read_timeout']
191
183
  end
192
184
 
193
- if attributes.key?(:'download_concurrency')
194
- self.download_concurrency = attributes[:'download_concurrency']
195
- end
196
-
197
- if attributes.key?(:'total_timeout')
198
- self.total_timeout = attributes[:'total_timeout']
199
- end
200
-
201
- if attributes.key?(:'password')
202
- self.password = attributes[:'password']
203
- end
204
-
205
185
  if attributes.key?(:'pulp_labels')
206
186
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
207
187
  self.pulp_labels = value
208
188
  end
209
189
  end
210
190
 
211
- if attributes.key?(:'username')
212
- self.username = attributes[:'username']
191
+ if attributes.key?(:'connect_timeout')
192
+ self.connect_timeout = attributes[:'connect_timeout']
213
193
  end
214
194
 
215
- if attributes.key?(:'sock_connect_timeout')
216
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
195
+ if attributes.key?(:'proxy_username')
196
+ self.proxy_username = attributes[:'proxy_username']
197
+ end
198
+
199
+ if attributes.key?(:'password')
200
+ self.password = attributes[:'password']
201
+ end
202
+
203
+ if attributes.key?(:'name')
204
+ self.name = attributes[:'name']
217
205
  end
218
206
 
219
207
  if attributes.key?(:'proxy_url')
220
208
  self.proxy_url = attributes[:'proxy_url']
221
209
  end
222
210
 
223
- if attributes.key?(:'rate_limit')
224
- self.rate_limit = attributes[:'rate_limit']
211
+ if attributes.key?(:'tls_validation')
212
+ self.tls_validation = attributes[:'tls_validation']
225
213
  end
226
214
 
227
- if attributes.key?(:'client_cert')
228
- self.client_cert = attributes[:'client_cert']
215
+ if attributes.key?(:'ca_cert')
216
+ self.ca_cert = attributes[:'ca_cert']
229
217
  end
230
218
 
231
- if attributes.key?(:'proxy_username')
232
- self.proxy_username = attributes[:'proxy_username']
219
+ if attributes.key?(:'download_concurrency')
220
+ self.download_concurrency = attributes[:'download_concurrency']
233
221
  end
234
222
 
235
- if attributes.key?(:'headers')
236
- if (value = attributes[:'headers']).is_a?(Array)
237
- self.headers = value
238
- end
223
+ if attributes.key?(:'max_retries')
224
+ self.max_retries = attributes[:'max_retries']
239
225
  end
240
226
 
241
- if attributes.key?(:'connect_timeout')
242
- self.connect_timeout = attributes[:'connect_timeout']
227
+ if attributes.key?(:'url')
228
+ self.url = attributes[:'url']
243
229
  end
244
230
 
245
231
  if attributes.key?(:'client_key')
246
232
  self.client_key = attributes[:'client_key']
247
233
  end
248
234
 
235
+ if attributes.key?(:'username')
236
+ self.username = attributes[:'username']
237
+ end
238
+
239
+ if attributes.key?(:'sock_connect_timeout')
240
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
241
+ end
242
+
249
243
  if attributes.key?(:'proxy_password')
250
244
  self.proxy_password = attributes[:'proxy_password']
251
245
  end
252
246
 
253
- if attributes.key?(:'tls_validation')
254
- self.tls_validation = attributes[:'tls_validation']
247
+ if attributes.key?(:'total_timeout')
248
+ self.total_timeout = attributes[:'total_timeout']
255
249
  end
256
250
 
257
- if attributes.key?(:'name')
258
- self.name = attributes[:'name']
251
+ if attributes.key?(:'headers')
252
+ if (value = attributes[:'headers']).is_a?(Array)
253
+ self.headers = value
254
+ end
259
255
  end
260
256
 
261
- if attributes.key?(:'max_retries')
262
- self.max_retries = attributes[:'max_retries']
257
+ if attributes.key?(:'rate_limit')
258
+ self.rate_limit = attributes[:'rate_limit']
259
+ end
260
+
261
+ if attributes.key?(:'client_cert')
262
+ self.client_cert = attributes[:'client_cert']
263
263
  end
264
264
 
265
265
  if attributes.key?(:'metadata_only')
@@ -276,64 +276,64 @@ 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 !@ca_cert.nil? && @ca_cert.to_s.length < 1
280
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
281
- end
282
-
283
- if !@url.nil? && @url.to_s.length < 1
284
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
285
- end
286
-
287
279
  if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
288
280
  invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
289
281
  end
290
282
 
291
- if !@download_concurrency.nil? && @download_concurrency < 1
292
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
283
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
284
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
293
285
  end
294
286
 
295
- if !@total_timeout.nil? && @total_timeout < 0.0
296
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
287
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
288
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
297
289
  end
298
290
 
299
291
  if !@password.nil? && @password.to_s.length < 1
300
292
  invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
301
293
  end
302
294
 
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
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
308
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
295
+ if !@name.nil? && @name.to_s.length < 1
296
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
309
297
  end
310
298
 
311
299
  if !@proxy_url.nil? && @proxy_url.to_s.length < 1
312
300
  invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
313
301
  end
314
302
 
315
- if !@client_cert.nil? && @client_cert.to_s.length < 1
316
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
303
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
304
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
317
305
  end
318
306
 
319
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
320
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
307
+ if !@download_concurrency.nil? && @download_concurrency < 1
308
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
321
309
  end
322
310
 
323
- if !@connect_timeout.nil? && @connect_timeout < 0.0
324
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
311
+ if !@url.nil? && @url.to_s.length < 1
312
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
325
313
  end
326
314
 
327
315
  if !@client_key.nil? && @client_key.to_s.length < 1
328
316
  invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
329
317
  end
330
318
 
319
+ if !@username.nil? && @username.to_s.length < 1
320
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
321
+ end
322
+
323
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
324
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
325
+ end
326
+
331
327
  if !@proxy_password.nil? && @proxy_password.to_s.length < 1
332
328
  invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
333
329
  end
334
330
 
335
- if !@name.nil? && @name.to_s.length < 1
336
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
331
+ if !@total_timeout.nil? && @total_timeout < 0.0
332
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
333
+ end
334
+
335
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
336
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
337
337
  end
338
338
 
339
339
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -347,49 +347,25 @@ module PulpAnsibleClient
347
347
  # @return true if the model is valid
348
348
  def valid?
349
349
  warn '[DEPRECATED] the `valid?` method is obsolete'
350
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
351
- return false if !@url.nil? && @url.to_s.length < 1
352
350
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
353
- return false if !@download_concurrency.nil? && @download_concurrency < 1
354
- return false if !@total_timeout.nil? && @total_timeout < 0.0
351
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
352
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
355
353
  return false if !@password.nil? && @password.to_s.length < 1
356
- return false if !@username.nil? && @username.to_s.length < 1
357
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
354
+ return false if !@name.nil? && @name.to_s.length < 1
358
355
  return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
359
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
360
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
361
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
356
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
357
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
358
+ return false if !@url.nil? && @url.to_s.length < 1
362
359
  return false if !@client_key.nil? && @client_key.to_s.length < 1
360
+ return false if !@username.nil? && @username.to_s.length < 1
361
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
363
362
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
364
- return false if !@name.nil? && @name.to_s.length < 1
363
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
364
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
365
365
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
366
366
  true
367
367
  end
368
368
 
369
- # Custom attribute writer method with validation
370
- # @param [Object] ca_cert Value to be assigned
371
- def ca_cert=(ca_cert)
372
- if !ca_cert.nil? && ca_cert.to_s.length < 1
373
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
374
- end
375
-
376
- @ca_cert = ca_cert
377
- end
378
-
379
- # Custom attribute writer method with validation
380
- # @param [Object] url Value to be assigned
381
- def url=(url)
382
- if url.nil?
383
- fail ArgumentError, 'url cannot be nil'
384
- end
385
-
386
- if url.to_s.length < 1
387
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
388
- end
389
-
390
- @url = url
391
- end
392
-
393
369
  # Custom attribute writer method with validation
394
370
  # @param [Object] sock_read_timeout Value to be assigned
395
371
  def sock_read_timeout=(sock_read_timeout)
@@ -401,23 +377,23 @@ module PulpAnsibleClient
401
377
  end
402
378
 
403
379
  # Custom attribute writer method with validation
404
- # @param [Object] download_concurrency Value to be assigned
405
- def download_concurrency=(download_concurrency)
406
- if !download_concurrency.nil? && download_concurrency < 1
407
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
380
+ # @param [Object] connect_timeout Value to be assigned
381
+ def connect_timeout=(connect_timeout)
382
+ if !connect_timeout.nil? && connect_timeout < 0.0
383
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
408
384
  end
409
385
 
410
- @download_concurrency = download_concurrency
386
+ @connect_timeout = connect_timeout
411
387
  end
412
388
 
413
389
  # Custom attribute writer method with validation
414
- # @param [Object] total_timeout Value to be assigned
415
- def total_timeout=(total_timeout)
416
- if !total_timeout.nil? && total_timeout < 0.0
417
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
390
+ # @param [Object] proxy_username Value to be assigned
391
+ def proxy_username=(proxy_username)
392
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
393
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
418
394
  end
419
395
 
420
- @total_timeout = total_timeout
396
+ @proxy_username = proxy_username
421
397
  end
422
398
 
423
399
  # Custom attribute writer method with validation
@@ -431,23 +407,17 @@ module PulpAnsibleClient
431
407
  end
432
408
 
433
409
  # Custom attribute writer method with validation
434
- # @param [Object] username Value to be assigned
435
- def username=(username)
436
- if !username.nil? && username.to_s.length < 1
437
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
410
+ # @param [Object] name Value to be assigned
411
+ def name=(name)
412
+ if name.nil?
413
+ fail ArgumentError, 'name cannot be nil'
438
414
  end
439
415
 
440
- @username = username
441
- end
442
-
443
- # Custom attribute writer method with validation
444
- # @param [Object] sock_connect_timeout Value to be assigned
445
- def sock_connect_timeout=(sock_connect_timeout)
446
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
447
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
416
+ if name.to_s.length < 1
417
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
448
418
  end
449
419
 
450
- @sock_connect_timeout = sock_connect_timeout
420
+ @name = name
451
421
  end
452
422
 
453
423
  # Custom attribute writer method with validation
@@ -461,33 +431,37 @@ module PulpAnsibleClient
461
431
  end
462
432
 
463
433
  # Custom attribute writer method with validation
464
- # @param [Object] client_cert Value to be assigned
465
- def client_cert=(client_cert)
466
- if !client_cert.nil? && client_cert.to_s.length < 1
467
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
434
+ # @param [Object] ca_cert Value to be assigned
435
+ def ca_cert=(ca_cert)
436
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
437
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
468
438
  end
469
439
 
470
- @client_cert = client_cert
440
+ @ca_cert = ca_cert
471
441
  end
472
442
 
473
443
  # Custom attribute writer method with validation
474
- # @param [Object] proxy_username Value to be assigned
475
- def proxy_username=(proxy_username)
476
- if !proxy_username.nil? && proxy_username.to_s.length < 1
477
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
444
+ # @param [Object] download_concurrency Value to be assigned
445
+ def download_concurrency=(download_concurrency)
446
+ if !download_concurrency.nil? && download_concurrency < 1
447
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
478
448
  end
479
449
 
480
- @proxy_username = proxy_username
450
+ @download_concurrency = download_concurrency
481
451
  end
482
452
 
483
453
  # Custom attribute writer method with validation
484
- # @param [Object] connect_timeout Value to be assigned
485
- def connect_timeout=(connect_timeout)
486
- if !connect_timeout.nil? && connect_timeout < 0.0
487
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
454
+ # @param [Object] url Value to be assigned
455
+ def url=(url)
456
+ if url.nil?
457
+ fail ArgumentError, 'url cannot be nil'
488
458
  end
489
459
 
490
- @connect_timeout = connect_timeout
460
+ if url.to_s.length < 1
461
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
462
+ end
463
+
464
+ @url = url
491
465
  end
492
466
 
493
467
  # Custom attribute writer method with validation
@@ -500,6 +474,26 @@ module PulpAnsibleClient
500
474
  @client_key = client_key
501
475
  end
502
476
 
477
+ # Custom attribute writer method with validation
478
+ # @param [Object] username Value to be assigned
479
+ def username=(username)
480
+ if !username.nil? && username.to_s.length < 1
481
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
482
+ end
483
+
484
+ @username = username
485
+ end
486
+
487
+ # Custom attribute writer method with validation
488
+ # @param [Object] sock_connect_timeout Value to be assigned
489
+ def sock_connect_timeout=(sock_connect_timeout)
490
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
491
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
492
+ end
493
+
494
+ @sock_connect_timeout = sock_connect_timeout
495
+ end
496
+
503
497
  # Custom attribute writer method with validation
504
498
  # @param [Object] proxy_password Value to be assigned
505
499
  def proxy_password=(proxy_password)
@@ -511,17 +505,23 @@ module PulpAnsibleClient
511
505
  end
512
506
 
513
507
  # Custom attribute writer method with validation
514
- # @param [Object] name Value to be assigned
515
- def name=(name)
516
- if name.nil?
517
- fail ArgumentError, 'name cannot be nil'
508
+ # @param [Object] total_timeout Value to be assigned
509
+ def total_timeout=(total_timeout)
510
+ if !total_timeout.nil? && total_timeout < 0.0
511
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
518
512
  end
519
513
 
520
- if name.to_s.length < 1
521
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
514
+ @total_timeout = total_timeout
515
+ end
516
+
517
+ # Custom attribute writer method with validation
518
+ # @param [Object] client_cert Value to be assigned
519
+ def client_cert=(client_cert)
520
+ if !client_cert.nil? && client_cert.to_s.length < 1
521
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
522
522
  end
523
523
 
524
- @name = name
524
+ @client_cert = client_cert
525
525
  end
526
526
 
527
527
  # Custom attribute writer method with validation
@@ -543,26 +543,26 @@ module PulpAnsibleClient
543
543
  def ==(o)
544
544
  return true if self.equal?(o)
545
545
  self.class == o.class &&
546
- ca_cert == o.ca_cert &&
547
- url == o.url &&
548
546
  sock_read_timeout == o.sock_read_timeout &&
549
- download_concurrency == o.download_concurrency &&
550
- total_timeout == o.total_timeout &&
551
- password == o.password &&
552
547
  pulp_labels == o.pulp_labels &&
548
+ connect_timeout == o.connect_timeout &&
549
+ proxy_username == o.proxy_username &&
550
+ password == o.password &&
551
+ name == o.name &&
552
+ proxy_url == o.proxy_url &&
553
+ tls_validation == o.tls_validation &&
554
+ ca_cert == o.ca_cert &&
555
+ download_concurrency == o.download_concurrency &&
556
+ max_retries == o.max_retries &&
557
+ url == o.url &&
558
+ client_key == o.client_key &&
553
559
  username == o.username &&
554
560
  sock_connect_timeout == o.sock_connect_timeout &&
555
- proxy_url == o.proxy_url &&
561
+ proxy_password == o.proxy_password &&
562
+ total_timeout == o.total_timeout &&
563
+ headers == o.headers &&
556
564
  rate_limit == o.rate_limit &&
557
565
  client_cert == o.client_cert &&
558
- proxy_username == o.proxy_username &&
559
- headers == o.headers &&
560
- connect_timeout == o.connect_timeout &&
561
- client_key == o.client_key &&
562
- proxy_password == o.proxy_password &&
563
- tls_validation == o.tls_validation &&
564
- name == o.name &&
565
- max_retries == o.max_retries &&
566
566
  metadata_only == o.metadata_only &&
567
567
  git_ref == o.git_ref
568
568
  end
@@ -576,7 +576,7 @@ module PulpAnsibleClient
576
576
  # Calculates hash code according to all attributes.
577
577
  # @return [Integer] Hash code
578
578
  def hash
579
- [ca_cert, url, sock_read_timeout, download_concurrency, total_timeout, password, pulp_labels, username, sock_connect_timeout, proxy_url, rate_limit, client_cert, proxy_username, headers, connect_timeout, client_key, proxy_password, tls_validation, name, max_retries, metadata_only, git_ref].hash
579
+ [sock_read_timeout, pulp_labels, connect_timeout, proxy_username, password, name, proxy_url, tls_validation, ca_cert, download_concurrency, max_retries, url, client_key, username, sock_connect_timeout, proxy_password, total_timeout, headers, rate_limit, client_cert, metadata_only, git_ref].hash
580
580
  end
581
581
 
582
582
  # Builds the object from hash