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 PatchedansibleGitRemote
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,40 +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']
201
+ if attributes.key?(:'download_concurrency')
202
+ self.download_concurrency = attributes[:'download_concurrency']
215
203
  end
216
204
 
217
205
  if attributes.key?(:'headers')
@@ -220,16 +208,12 @@ module PulpAnsibleClient
220
208
  end
221
209
  end
222
210
 
223
- if attributes.key?(:'download_concurrency')
224
- self.download_concurrency = attributes[:'download_concurrency']
225
- end
226
-
227
- if attributes.key?(:'ca_cert')
228
- self.ca_cert = attributes[:'ca_cert']
211
+ if attributes.key?(:'url')
212
+ self.url = attributes[:'url']
229
213
  end
230
214
 
231
- if attributes.key?(:'sock_connect_timeout')
232
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
215
+ if attributes.key?(:'proxy_url')
216
+ self.proxy_url = attributes[:'proxy_url']
233
217
  end
234
218
 
235
219
  if attributes.key?(:'pulp_labels')
@@ -238,30 +222,46 @@ module PulpAnsibleClient
238
222
  end
239
223
  end
240
224
 
241
- if attributes.key?(:'password')
242
- self.password = attributes[:'password']
243
- end
244
-
245
225
  if attributes.key?(:'total_timeout')
246
226
  self.total_timeout = attributes[:'total_timeout']
247
227
  end
248
228
 
249
- if attributes.key?(:'tls_validation')
250
- self.tls_validation = attributes[:'tls_validation']
229
+ if attributes.key?(:'sock_read_timeout')
230
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
251
231
  end
252
232
 
253
- if attributes.key?(:'client_key')
254
- self.client_key = attributes[:'client_key']
233
+ if attributes.key?(:'proxy_password')
234
+ self.proxy_password = attributes[:'proxy_password']
255
235
  end
256
236
 
257
- if attributes.key?(:'proxy_url')
258
- self.proxy_url = attributes[:'proxy_url']
237
+ if attributes.key?(:'username')
238
+ self.username = attributes[:'username']
239
+ end
240
+
241
+ if attributes.key?(:'client_cert')
242
+ self.client_cert = attributes[:'client_cert']
243
+ end
244
+
245
+ if attributes.key?(:'sock_connect_timeout')
246
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
247
+ end
248
+
249
+ if attributes.key?(:'client_key')
250
+ self.client_key = attributes[:'client_key']
259
251
  end
260
252
 
261
253
  if attributes.key?(:'name')
262
254
  self.name = attributes[:'name']
263
255
  end
264
256
 
257
+ if attributes.key?(:'ca_cert')
258
+ self.ca_cert = attributes[:'ca_cert']
259
+ end
260
+
261
+ if attributes.key?(:'proxy_username')
262
+ self.proxy_username = attributes[:'proxy_username']
263
+ end
264
+
265
265
  if attributes.key?(:'metadata_only')
266
266
  self.metadata_only = attributes[:'metadata_only']
267
267
  end
@@ -276,66 +276,66 @@ 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 !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
280
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
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_username.nil? && @proxy_username.to_s.length < 1
288
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
279
+ if !@password.nil? && @password.to_s.length < 1
280
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
289
281
  end
290
282
 
291
283
  if !@connect_timeout.nil? && @connect_timeout < 0.0
292
284
  invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
293
285
  end
294
286
 
295
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
296
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
297
- end
298
-
299
- if !@username.nil? && @username.to_s.length < 1
300
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
287
+ if !@download_concurrency.nil? && @download_concurrency < 1
288
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
301
289
  end
302
290
 
303
291
  if !@url.nil? && @url.to_s.length < 1
304
292
  invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
305
293
  end
306
294
 
307
- if !@download_concurrency.nil? && @download_concurrency < 1
308
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
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.')
309
297
  end
310
298
 
311
- if !@ca_cert.nil? && @ca_cert.to_s.length < 1
312
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
299
+ if !@total_timeout.nil? && @total_timeout < 0.0
300
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
313
301
  end
314
302
 
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.')
303
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
304
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
317
305
  end
318
306
 
319
- if !@password.nil? && @password.to_s.length < 1
320
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
307
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
308
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
321
309
  end
322
310
 
323
- if !@total_timeout.nil? && @total_timeout < 0.0
324
- invalid_properties.push('invalid value for "total_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.')
325
313
  end
326
314
 
327
- if !@client_key.nil? && @client_key.to_s.length < 1
328
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
315
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
316
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
329
317
  end
330
318
 
331
- if !@proxy_url.nil? && @proxy_url.to_s.length < 1
332
- invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
319
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
320
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
321
+ end
322
+
323
+ if !@client_key.nil? && @client_key.to_s.length < 1
324
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
333
325
  end
334
326
 
335
327
  if !@name.nil? && @name.to_s.length < 1
336
328
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
337
329
  end
338
330
 
331
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
332
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
333
+ end
334
+
335
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
336
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
337
+ end
338
+
339
339
  if !@git_ref.nil? && @git_ref.to_s.length < 1
340
340
  invalid_properties.push('invalid value for "git_ref", the character length must be great than or equal to 1.')
341
341
  end
@@ -347,53 +347,33 @@ 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 !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
351
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
352
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
350
+ return false if !@password.nil? && @password.to_s.length < 1
353
351
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
352
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
353
+ return false if !@url.nil? && @url.to_s.length < 1
354
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
355
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
356
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
354
357
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
355
358
  return false if !@username.nil? && @username.to_s.length < 1
356
- return false if !@url.nil? && @url.to_s.length < 1
357
- return false if !@download_concurrency.nil? && @download_concurrency < 1
358
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
359
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
359
360
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
360
- return false if !@password.nil? && @password.to_s.length < 1
361
- return false if !@total_timeout.nil? && @total_timeout < 0.0
362
361
  return false if !@client_key.nil? && @client_key.to_s.length < 1
363
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
364
362
  return false if !@name.nil? && @name.to_s.length < 1
363
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
364
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
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] sock_read_timeout Value to be assigned
371
- def sock_read_timeout=(sock_read_timeout)
372
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
373
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
374
- end
375
-
376
- @sock_read_timeout = sock_read_timeout
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_username Value to be assigned
391
- def proxy_username=(proxy_username)
392
- if !proxy_username.nil? && proxy_username.to_s.length < 1
393
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
370
+ # @param [Object] password Value to be assigned
371
+ def password=(password)
372
+ if !password.nil? && password.to_s.length < 1
373
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
394
374
  end
395
375
 
396
- @proxy_username = proxy_username
376
+ @password = password
397
377
  end
398
378
 
399
379
  # Custom attribute writer method with validation
@@ -407,23 +387,13 @@ module PulpAnsibleClient
407
387
  end
408
388
 
409
389
  # Custom attribute writer method with validation
410
- # @param [Object] proxy_password Value to be assigned
411
- def proxy_password=(proxy_password)
412
- if !proxy_password.nil? && proxy_password.to_s.length < 1
413
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
414
- end
415
-
416
- @proxy_password = proxy_password
417
- end
418
-
419
- # Custom attribute writer method with validation
420
- # @param [Object] username Value to be assigned
421
- def username=(username)
422
- if !username.nil? && username.to_s.length < 1
423
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
390
+ # @param [Object] download_concurrency Value to be assigned
391
+ def download_concurrency=(download_concurrency)
392
+ if !download_concurrency.nil? && download_concurrency < 1
393
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
424
394
  end
425
395
 
426
- @username = username
396
+ @download_concurrency = download_concurrency
427
397
  end
428
398
 
429
399
  # Custom attribute writer method with validation
@@ -441,73 +411,83 @@ module PulpAnsibleClient
441
411
  end
442
412
 
443
413
  # Custom attribute writer method with validation
444
- # @param [Object] download_concurrency Value to be assigned
445
- def download_concurrency=(download_concurrency)
446
- if !download_concurrency.nil? && download_concurrency < 1
447
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
414
+ # @param [Object] proxy_url Value to be assigned
415
+ def proxy_url=(proxy_url)
416
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
417
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
448
418
  end
449
419
 
450
- @download_concurrency = download_concurrency
420
+ @proxy_url = proxy_url
451
421
  end
452
422
 
453
423
  # Custom attribute writer method with validation
454
- # @param [Object] ca_cert Value to be assigned
455
- def ca_cert=(ca_cert)
456
- if !ca_cert.nil? && ca_cert.to_s.length < 1
457
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
424
+ # @param [Object] total_timeout Value to be assigned
425
+ def total_timeout=(total_timeout)
426
+ if !total_timeout.nil? && total_timeout < 0.0
427
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
458
428
  end
459
429
 
460
- @ca_cert = ca_cert
430
+ @total_timeout = total_timeout
461
431
  end
462
432
 
463
433
  # Custom attribute writer method with validation
464
- # @param [Object] sock_connect_timeout Value to be assigned
465
- def sock_connect_timeout=(sock_connect_timeout)
466
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
467
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
434
+ # @param [Object] sock_read_timeout Value to be assigned
435
+ def sock_read_timeout=(sock_read_timeout)
436
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
437
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
468
438
  end
469
439
 
470
- @sock_connect_timeout = sock_connect_timeout
440
+ @sock_read_timeout = sock_read_timeout
471
441
  end
472
442
 
473
443
  # Custom attribute writer method with validation
474
- # @param [Object] password Value to be assigned
475
- def password=(password)
476
- if !password.nil? && password.to_s.length < 1
477
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
444
+ # @param [Object] proxy_password Value to be assigned
445
+ def proxy_password=(proxy_password)
446
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
447
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
478
448
  end
479
449
 
480
- @password = password
450
+ @proxy_password = proxy_password
481
451
  end
482
452
 
483
453
  # Custom attribute writer method with validation
484
- # @param [Object] total_timeout Value to be assigned
485
- def total_timeout=(total_timeout)
486
- if !total_timeout.nil? && total_timeout < 0.0
487
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
454
+ # @param [Object] username Value to be assigned
455
+ def username=(username)
456
+ if !username.nil? && username.to_s.length < 1
457
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
488
458
  end
489
459
 
490
- @total_timeout = total_timeout
460
+ @username = username
491
461
  end
492
462
 
493
463
  # Custom attribute writer method with validation
494
- # @param [Object] client_key Value to be assigned
495
- def client_key=(client_key)
496
- if !client_key.nil? && client_key.to_s.length < 1
497
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
464
+ # @param [Object] client_cert Value to be assigned
465
+ def client_cert=(client_cert)
466
+ if !client_cert.nil? && client_cert.to_s.length < 1
467
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
498
468
  end
499
469
 
500
- @client_key = client_key
470
+ @client_cert = client_cert
501
471
  end
502
472
 
503
473
  # Custom attribute writer method with validation
504
- # @param [Object] proxy_url Value to be assigned
505
- def proxy_url=(proxy_url)
506
- if !proxy_url.nil? && proxy_url.to_s.length < 1
507
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
474
+ # @param [Object] sock_connect_timeout Value to be assigned
475
+ def sock_connect_timeout=(sock_connect_timeout)
476
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
477
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
508
478
  end
509
479
 
510
- @proxy_url = proxy_url
480
+ @sock_connect_timeout = sock_connect_timeout
481
+ end
482
+
483
+ # Custom attribute writer method with validation
484
+ # @param [Object] client_key Value to be assigned
485
+ def client_key=(client_key)
486
+ if !client_key.nil? && client_key.to_s.length < 1
487
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
488
+ end
489
+
490
+ @client_key = client_key
511
491
  end
512
492
 
513
493
  # Custom attribute writer method with validation
@@ -524,6 +504,26 @@ module PulpAnsibleClient
524
504
  @name = name
525
505
  end
526
506
 
507
+ # Custom attribute writer method with validation
508
+ # @param [Object] ca_cert Value to be assigned
509
+ def ca_cert=(ca_cert)
510
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
511
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
512
+ end
513
+
514
+ @ca_cert = ca_cert
515
+ end
516
+
517
+ # Custom attribute writer method with validation
518
+ # @param [Object] proxy_username Value to be assigned
519
+ def proxy_username=(proxy_username)
520
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
521
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
522
+ end
523
+
524
+ @proxy_username = proxy_username
525
+ end
526
+
527
527
  # Custom attribute writer method with validation
528
528
  # @param [Object] git_ref Value to be assigned
529
529
  def git_ref=(git_ref)
@@ -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
- sock_read_timeout == o.sock_read_timeout &&
546
+ password == o.password &&
547
547
  max_retries == o.max_retries &&
548
- client_cert == o.client_cert &&
549
- proxy_username == o.proxy_username &&
550
548
  connect_timeout == o.connect_timeout &&
551
- proxy_password == o.proxy_password &&
552
549
  rate_limit == o.rate_limit &&
553
- username == o.username &&
554
- url == o.url &&
555
- headers == o.headers &&
550
+ tls_validation == o.tls_validation &&
556
551
  download_concurrency == o.download_concurrency &&
557
- ca_cert == o.ca_cert &&
558
- sock_connect_timeout == o.sock_connect_timeout &&
552
+ headers == o.headers &&
553
+ url == o.url &&
554
+ proxy_url == o.proxy_url &&
559
555
  pulp_labels == o.pulp_labels &&
560
- password == o.password &&
561
556
  total_timeout == o.total_timeout &&
562
- tls_validation == o.tls_validation &&
557
+ sock_read_timeout == o.sock_read_timeout &&
558
+ proxy_password == o.proxy_password &&
559
+ username == o.username &&
560
+ client_cert == o.client_cert &&
561
+ sock_connect_timeout == o.sock_connect_timeout &&
563
562
  client_key == o.client_key &&
564
- proxy_url == o.proxy_url &&
565
563
  name == o.name &&
564
+ ca_cert == o.ca_cert &&
565
+ proxy_username == o.proxy_username &&
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
- [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
579
+ [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
580
580
  end
581
581
 
582
582
  # Builds the object from hash