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