pulp_ansible_client 0.24.8 → 0.24.10

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