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