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 PatchedansibleGitRemote
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,64 +269,64 @@ 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.')
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.')
274
274
  end
275
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.')
276
+ if !@url.nil? && @url.to_s.length < 1
277
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
278
278
  end
279
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.')
280
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
281
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
282
282
  end
283
283
 
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.')
284
+ if !@username.nil? && @username.to_s.length < 1
285
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
286
286
  end
287
287
 
288
288
  if !@proxy_url.nil? && @proxy_url.to_s.length < 1
289
289
  invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
290
290
  end
291
291
 
292
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
293
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
294
- end
295
-
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
- if !@username.nil? && @username.to_s.length < 1
301
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
292
+ if !@client_key.nil? && @client_key.to_s.length < 1
293
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
302
294
  end
303
295
 
304
- if !@url.nil? && @url.to_s.length < 1
305
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
296
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
297
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
306
298
  end
307
299
 
308
300
  if !@password.nil? && @password.to_s.length < 1
309
301
  invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
310
302
  end
311
303
 
312
- if !@client_key.nil? && @client_key.to_s.length < 1
313
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
304
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
305
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
314
306
  end
315
307
 
316
- if !@download_concurrency.nil? && @download_concurrency < 1
317
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
308
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
309
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
310
+ end
311
+
312
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
313
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
318
314
  end
319
315
 
320
316
  if !@name.nil? && @name.to_s.length < 1
321
317
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
322
318
  end
323
319
 
320
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
321
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
322
+ end
323
+
324
324
  if !@client_cert.nil? && @client_cert.to_s.length < 1
325
325
  invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
326
326
  end
327
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.')
328
+ if !@total_timeout.nil? && @total_timeout < 0.0
329
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
330
330
  end
331
331
 
332
332
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -339,63 +339,63 @@ module PulpAnsibleClient
339
339
  # Check to see if the all the properties in the model are valid
340
340
  # @return true if the model is valid
341
341
  def valid?
342
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
343
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
344
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
345
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
346
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
342
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
343
+ return false if !@url.nil? && @url.to_s.length < 1
347
344
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
348
- return false if !@total_timeout.nil? && @total_timeout < 0.0
349
345
  return false if !@username.nil? && @username.to_s.length < 1
350
- return false if !@url.nil? && @url.to_s.length < 1
351
- return false if !@password.nil? && @password.to_s.length < 1
346
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
352
347
  return false if !@client_key.nil? && @client_key.to_s.length < 1
353
- return false if !@download_concurrency.nil? && @download_concurrency < 1
348
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
349
+ return false if !@password.nil? && @password.to_s.length < 1
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
354
353
  return false if !@name.nil? && @name.to_s.length < 1
355
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
356
354
  return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
355
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
356
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
357
357
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
358
358
  true
359
359
  end
360
360
 
361
361
  # Custom attribute writer method with validation
362
- # @param [Object] sock_read_timeout Value to be assigned
363
- def sock_read_timeout=(sock_read_timeout)
364
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
365
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
362
+ # @param [Object] download_concurrency Value to be assigned
363
+ def download_concurrency=(download_concurrency)
364
+ if !download_concurrency.nil? && download_concurrency < 1
365
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
366
366
  end
367
367
 
368
- @sock_read_timeout = sock_read_timeout
368
+ @download_concurrency = download_concurrency
369
369
  end
370
370
 
371
371
  # Custom attribute writer method with validation
372
- # @param [Object] sock_connect_timeout Value to be assigned
373
- def sock_connect_timeout=(sock_connect_timeout)
374
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
375
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
372
+ # @param [Object] url Value to be assigned
373
+ def url=(url)
374
+ if !url.nil? && url.to_s.length < 1
375
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
376
376
  end
377
377
 
378
- @sock_connect_timeout = sock_connect_timeout
378
+ @url = url
379
379
  end
380
380
 
381
381
  # Custom attribute writer method with validation
382
- # @param [Object] connect_timeout Value to be assigned
383
- def connect_timeout=(connect_timeout)
384
- if !connect_timeout.nil? && connect_timeout < 0.0
385
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
382
+ # @param [Object] proxy_password Value to be assigned
383
+ def proxy_password=(proxy_password)
384
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
385
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
386
386
  end
387
387
 
388
- @connect_timeout = connect_timeout
388
+ @proxy_password = proxy_password
389
389
  end
390
390
 
391
391
  # Custom attribute writer method with validation
392
- # @param [Object] ca_cert Value to be assigned
393
- def ca_cert=(ca_cert)
394
- if !ca_cert.nil? && ca_cert.to_s.length < 1
395
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
392
+ # @param [Object] username Value to be assigned
393
+ def username=(username)
394
+ if !username.nil? && username.to_s.length < 1
395
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
396
396
  end
397
397
 
398
- @ca_cert = ca_cert
398
+ @username = username
399
399
  end
400
400
 
401
401
  # Custom attribute writer method with validation
@@ -409,43 +409,23 @@ module PulpAnsibleClient
409
409
  end
410
410
 
411
411
  # Custom attribute writer method with validation
412
- # @param [Object] proxy_password Value to be assigned
413
- def proxy_password=(proxy_password)
414
- if !proxy_password.nil? && proxy_password.to_s.length < 1
415
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
416
- end
417
-
418
- @proxy_password = proxy_password
419
- end
420
-
421
- # Custom attribute writer method with validation
422
- # @param [Object] total_timeout Value to be assigned
423
- def total_timeout=(total_timeout)
424
- if !total_timeout.nil? && total_timeout < 0.0
425
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
426
- end
427
-
428
- @total_timeout = total_timeout
429
- end
430
-
431
- # Custom attribute writer method with validation
432
- # @param [Object] username Value to be assigned
433
- def username=(username)
434
- if !username.nil? && username.to_s.length < 1
435
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
412
+ # @param [Object] client_key Value to be assigned
413
+ def client_key=(client_key)
414
+ if !client_key.nil? && client_key.to_s.length < 1
415
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
436
416
  end
437
417
 
438
- @username = username
418
+ @client_key = client_key
439
419
  end
440
420
 
441
421
  # Custom attribute writer method with validation
442
- # @param [Object] url Value to be assigned
443
- def url=(url)
444
- if !url.nil? && url.to_s.length < 1
445
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
422
+ # @param [Object] ca_cert Value to be assigned
423
+ def ca_cert=(ca_cert)
424
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
425
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
446
426
  end
447
427
 
448
- @url = url
428
+ @ca_cert = ca_cert
449
429
  end
450
430
 
451
431
  # Custom attribute writer method with validation
@@ -459,23 +439,33 @@ module PulpAnsibleClient
459
439
  end
460
440
 
461
441
  # Custom attribute writer method with validation
462
- # @param [Object] client_key Value to be assigned
463
- def client_key=(client_key)
464
- if !client_key.nil? && client_key.to_s.length < 1
465
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
442
+ # @param [Object] sock_read_timeout Value to be assigned
443
+ def sock_read_timeout=(sock_read_timeout)
444
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
445
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
466
446
  end
467
447
 
468
- @client_key = client_key
448
+ @sock_read_timeout = sock_read_timeout
469
449
  end
470
450
 
471
451
  # Custom attribute writer method with validation
472
- # @param [Object] download_concurrency Value to be assigned
473
- def download_concurrency=(download_concurrency)
474
- if !download_concurrency.nil? && download_concurrency < 1
475
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
452
+ # @param [Object] sock_connect_timeout Value to be assigned
453
+ def sock_connect_timeout=(sock_connect_timeout)
454
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
455
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
476
456
  end
477
457
 
478
- @download_concurrency = download_concurrency
458
+ @sock_connect_timeout = sock_connect_timeout
459
+ end
460
+
461
+ # Custom attribute writer method with validation
462
+ # @param [Object] connect_timeout Value to be assigned
463
+ def connect_timeout=(connect_timeout)
464
+ if !connect_timeout.nil? && connect_timeout < 0.0
465
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
466
+ end
467
+
468
+ @connect_timeout = connect_timeout
479
469
  end
480
470
 
481
471
  # Custom attribute writer method with validation
@@ -488,6 +478,16 @@ module PulpAnsibleClient
488
478
  @name = name
489
479
  end
490
480
 
481
+ # Custom attribute writer method with validation
482
+ # @param [Object] proxy_username Value to be assigned
483
+ def proxy_username=(proxy_username)
484
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
485
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
486
+ end
487
+
488
+ @proxy_username = proxy_username
489
+ end
490
+
491
491
  # Custom attribute writer method with validation
492
492
  # @param [Object] client_cert Value to be assigned
493
493
  def client_cert=(client_cert)
@@ -499,13 +499,13 @@ module PulpAnsibleClient
499
499
  end
500
500
 
501
501
  # Custom attribute writer method with validation
502
- # @param [Object] proxy_username Value to be assigned
503
- def proxy_username=(proxy_username)
504
- if !proxy_username.nil? && proxy_username.to_s.length < 1
505
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
502
+ # @param [Object] total_timeout Value to be assigned
503
+ def total_timeout=(total_timeout)
504
+ if !total_timeout.nil? && total_timeout < 0.0
505
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
506
506
  end
507
507
 
508
- @proxy_username = proxy_username
508
+ @total_timeout = total_timeout
509
509
  end
510
510
 
511
511
  # Custom attribute writer method with validation
@@ -523,26 +523,26 @@ module PulpAnsibleClient
523
523
  def ==(o)
524
524
  return true if self.equal?(o)
525
525
  self.class == o.class &&
526
- sock_read_timeout == o.sock_read_timeout &&
527
- sock_connect_timeout == o.sock_connect_timeout &&
528
- connect_timeout == o.connect_timeout &&
529
- ca_cert == o.ca_cert &&
530
- proxy_url == o.proxy_url &&
526
+ download_concurrency == o.download_concurrency &&
527
+ url == o.url &&
531
528
  tls_validation == o.tls_validation &&
532
529
  proxy_password == o.proxy_password &&
533
- total_timeout == o.total_timeout &&
534
- pulp_labels == o.pulp_labels &&
535
530
  username == o.username &&
536
- url == o.url &&
537
- password == o.password &&
531
+ proxy_url == o.proxy_url &&
538
532
  client_key == o.client_key &&
539
- download_concurrency == o.download_concurrency &&
533
+ pulp_labels == o.pulp_labels &&
534
+ ca_cert == o.ca_cert &&
535
+ password == o.password &&
536
+ sock_read_timeout == o.sock_read_timeout &&
537
+ sock_connect_timeout == o.sock_connect_timeout &&
538
+ connect_timeout == o.connect_timeout &&
539
+ headers == o.headers &&
540
540
  name == o.name &&
541
- client_cert == o.client_cert &&
542
- rate_limit == o.rate_limit &&
543
541
  proxy_username == o.proxy_username &&
544
- headers == o.headers &&
542
+ client_cert == o.client_cert &&
545
543
  max_retries == o.max_retries &&
544
+ total_timeout == o.total_timeout &&
545
+ rate_limit == o.rate_limit &&
546
546
  metadata_only == o.metadata_only &&
547
547
  git_ref == o.git_ref
548
548
  end
@@ -556,7 +556,7 @@ module PulpAnsibleClient
556
556
  # Calculates hash code according to all attributes.
557
557
  # @return [Integer] Hash code
558
558
  def hash
559
- [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
559
+ [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
560
560
  end
561
561
 
562
562
  # Builds the object from hash