pulp_ansible_client 0.18.1 → 0.18.2

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