pulp_ansible_client 0.24.7 → 0.24.9

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