pulp_ansible_client 0.21.2 → 0.21.3

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