pulp_ansible_client 0.24.4 → 0.24.5

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