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