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 PatchedansibleGitRemote
19
- # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
20
- attr_accessor :sock_read_timeout
19
+ # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
20
+ attr_accessor :password
21
21
 
22
- 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,88 +178,88 @@ 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']
193
+ if attributes.key?(:'rate_limit')
194
+ self.rate_limit = attributes[:'rate_limit']
197
195
  end
198
196
 
199
- if attributes.key?(:'password')
200
- self.password = attributes[:'password']
197
+ if attributes.key?(:'tls_validation')
198
+ self.tls_validation = attributes[:'tls_validation']
201
199
  end
202
200
 
203
- if attributes.key?(:'name')
204
- self.name = attributes[:'name']
201
+ if attributes.key?(:'download_concurrency')
202
+ self.download_concurrency = attributes[:'download_concurrency']
205
203
  end
206
204
 
207
- if attributes.key?(:'proxy_url')
208
- self.proxy_url = attributes[:'proxy_url']
205
+ if attributes.key?(:'headers')
206
+ if (value = attributes[:'headers']).is_a?(Array)
207
+ self.headers = value
208
+ end
209
209
  end
210
210
 
211
- if attributes.key?(:'tls_validation')
212
- self.tls_validation = attributes[:'tls_validation']
211
+ if attributes.key?(:'url')
212
+ self.url = attributes[:'url']
213
213
  end
214
214
 
215
- if attributes.key?(:'ca_cert')
216
- self.ca_cert = attributes[:'ca_cert']
215
+ if attributes.key?(:'proxy_url')
216
+ self.proxy_url = attributes[:'proxy_url']
217
217
  end
218
218
 
219
- if attributes.key?(:'download_concurrency')
220
- self.download_concurrency = attributes[:'download_concurrency']
219
+ if attributes.key?(:'pulp_labels')
220
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
221
+ self.pulp_labels = value
222
+ end
221
223
  end
222
224
 
223
- if attributes.key?(:'max_retries')
224
- self.max_retries = attributes[:'max_retries']
225
+ if attributes.key?(:'total_timeout')
226
+ self.total_timeout = attributes[:'total_timeout']
225
227
  end
226
228
 
227
- if attributes.key?(:'url')
228
- self.url = attributes[:'url']
229
+ if attributes.key?(:'sock_read_timeout')
230
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
229
231
  end
230
232
 
231
- if attributes.key?(:'client_key')
232
- self.client_key = attributes[:'client_key']
233
+ if attributes.key?(:'proxy_password')
234
+ self.proxy_password = attributes[:'proxy_password']
233
235
  end
234
236
 
235
237
  if attributes.key?(:'username')
236
238
  self.username = attributes[:'username']
237
239
  end
238
240
 
239
- if attributes.key?(:'sock_connect_timeout')
240
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
241
+ if attributes.key?(:'client_cert')
242
+ self.client_cert = attributes[:'client_cert']
241
243
  end
242
244
 
243
- if attributes.key?(:'proxy_password')
244
- self.proxy_password = attributes[:'proxy_password']
245
+ if attributes.key?(:'sock_connect_timeout')
246
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
245
247
  end
246
248
 
247
- if attributes.key?(:'total_timeout')
248
- self.total_timeout = attributes[:'total_timeout']
249
+ if attributes.key?(:'client_key')
250
+ self.client_key = attributes[:'client_key']
249
251
  end
250
252
 
251
- if attributes.key?(:'headers')
252
- if (value = attributes[:'headers']).is_a?(Array)
253
- self.headers = value
254
- end
253
+ if attributes.key?(:'name')
254
+ self.name = attributes[:'name']
255
255
  end
256
256
 
257
- if attributes.key?(:'rate_limit')
258
- self.rate_limit = attributes[:'rate_limit']
257
+ if attributes.key?(:'ca_cert')
258
+ self.ca_cert = attributes[:'ca_cert']
259
259
  end
260
260
 
261
- if attributes.key?(:'client_cert')
262
- self.client_cert = attributes[:'client_cert']
261
+ if attributes.key?(:'proxy_username')
262
+ self.proxy_username = attributes[:'proxy_username']
263
263
  end
264
264
 
265
265
  if attributes.key?(:'metadata_only')
@@ -276,64 +276,64 @@ module PulpAnsibleClient
276
276
  def list_invalid_properties
277
277
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
278
278
  invalid_properties = Array.new
279
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
280
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
279
+ if !@password.nil? && @password.to_s.length < 1
280
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
281
281
  end
282
282
 
283
283
  if !@connect_timeout.nil? && @connect_timeout < 0.0
284
284
  invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
285
285
  end
286
286
 
287
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
288
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
289
- end
290
-
291
- if !@password.nil? && @password.to_s.length < 1
292
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
287
+ if !@download_concurrency.nil? && @download_concurrency < 1
288
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
293
289
  end
294
290
 
295
- if !@name.nil? && @name.to_s.length < 1
296
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
291
+ if !@url.nil? && @url.to_s.length < 1
292
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
297
293
  end
298
294
 
299
295
  if !@proxy_url.nil? && @proxy_url.to_s.length < 1
300
296
  invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
301
297
  end
302
298
 
303
- if !@ca_cert.nil? && @ca_cert.to_s.length < 1
304
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
305
- end
306
-
307
- if !@download_concurrency.nil? && @download_concurrency < 1
308
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
299
+ if !@total_timeout.nil? && @total_timeout < 0.0
300
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
309
301
  end
310
302
 
311
- if !@url.nil? && @url.to_s.length < 1
312
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
303
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
304
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
313
305
  end
314
306
 
315
- if !@client_key.nil? && @client_key.to_s.length < 1
316
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
307
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
308
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
317
309
  end
318
310
 
319
311
  if !@username.nil? && @username.to_s.length < 1
320
312
  invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
321
313
  end
322
314
 
315
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
316
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
317
+ end
318
+
323
319
  if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
324
320
  invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
325
321
  end
326
322
 
327
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
328
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
323
+ if !@client_key.nil? && @client_key.to_s.length < 1
324
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
329
325
  end
330
326
 
331
- if !@total_timeout.nil? && @total_timeout < 0.0
332
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
327
+ if !@name.nil? && @name.to_s.length < 1
328
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
333
329
  end
334
330
 
335
- if !@client_cert.nil? && @client_cert.to_s.length < 1
336
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
331
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
332
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
333
+ end
334
+
335
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
336
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
337
337
  end
338
338
 
339
339
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -347,33 +347,33 @@ module PulpAnsibleClient
347
347
  # @return true if the model is valid
348
348
  def valid?
349
349
  warn '[DEPRECATED] the `valid?` method is obsolete'
350
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
351
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
352
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
353
350
  return false if !@password.nil? && @password.to_s.length < 1
354
- return false if !@name.nil? && @name.to_s.length < 1
355
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
356
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
351
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
357
352
  return false if !@download_concurrency.nil? && @download_concurrency < 1
358
353
  return false if !@url.nil? && @url.to_s.length < 1
359
- return false if !@client_key.nil? && @client_key.to_s.length < 1
360
- return false if !@username.nil? && @username.to_s.length < 1
361
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
362
- return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
354
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
363
355
  return false if !@total_timeout.nil? && @total_timeout < 0.0
356
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
357
+ return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
358
+ return false if !@username.nil? && @username.to_s.length < 1
364
359
  return false if !@client_cert.nil? && @client_cert.to_s.length < 1
360
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
361
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
362
+ return false if !@name.nil? && @name.to_s.length < 1
363
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
364
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
365
365
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
366
366
  true
367
367
  end
368
368
 
369
369
  # Custom attribute writer method with validation
370
- # @param [Object] sock_read_timeout Value to be assigned
371
- def sock_read_timeout=(sock_read_timeout)
372
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
373
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
370
+ # @param [Object] password Value to be assigned
371
+ def password=(password)
372
+ if !password.nil? && password.to_s.length < 1
373
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
374
374
  end
375
375
 
376
- @sock_read_timeout = sock_read_timeout
376
+ @password = password
377
377
  end
378
378
 
379
379
  # Custom attribute writer method with validation
@@ -387,37 +387,27 @@ module PulpAnsibleClient
387
387
  end
388
388
 
389
389
  # Custom attribute writer method with validation
390
- # @param [Object] proxy_username Value to be assigned
391
- def proxy_username=(proxy_username)
392
- if !proxy_username.nil? && proxy_username.to_s.length < 1
393
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
394
- end
395
-
396
- @proxy_username = proxy_username
397
- end
398
-
399
- # Custom attribute writer method with validation
400
- # @param [Object] password Value to be assigned
401
- def password=(password)
402
- if !password.nil? && password.to_s.length < 1
403
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
390
+ # @param [Object] download_concurrency Value to be assigned
391
+ def download_concurrency=(download_concurrency)
392
+ if !download_concurrency.nil? && download_concurrency < 1
393
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
404
394
  end
405
395
 
406
- @password = password
396
+ @download_concurrency = download_concurrency
407
397
  end
408
398
 
409
399
  # Custom attribute writer method with validation
410
- # @param [Object] name Value to be assigned
411
- def name=(name)
412
- if name.nil?
413
- fail ArgumentError, 'name cannot be nil'
400
+ # @param [Object] url Value to be assigned
401
+ def url=(url)
402
+ if url.nil?
403
+ fail ArgumentError, 'url cannot be nil'
414
404
  end
415
405
 
416
- if name.to_s.length < 1
417
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
406
+ if url.to_s.length < 1
407
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
418
408
  end
419
409
 
420
- @name = name
410
+ @url = url
421
411
  end
422
412
 
423
413
  # Custom attribute writer method with validation
@@ -431,47 +421,33 @@ module PulpAnsibleClient
431
421
  end
432
422
 
433
423
  # Custom attribute writer method with validation
434
- # @param [Object] ca_cert Value to be assigned
435
- def ca_cert=(ca_cert)
436
- if !ca_cert.nil? && ca_cert.to_s.length < 1
437
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
438
- end
439
-
440
- @ca_cert = ca_cert
441
- end
442
-
443
- # Custom attribute writer method with validation
444
- # @param [Object] download_concurrency Value to be assigned
445
- def download_concurrency=(download_concurrency)
446
- if !download_concurrency.nil? && download_concurrency < 1
447
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
424
+ # @param [Object] total_timeout Value to be assigned
425
+ def total_timeout=(total_timeout)
426
+ if !total_timeout.nil? && total_timeout < 0.0
427
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
448
428
  end
449
429
 
450
- @download_concurrency = download_concurrency
430
+ @total_timeout = total_timeout
451
431
  end
452
432
 
453
433
  # Custom attribute writer method with validation
454
- # @param [Object] url Value to be assigned
455
- def url=(url)
456
- if url.nil?
457
- fail ArgumentError, 'url cannot be nil'
458
- end
459
-
460
- if url.to_s.length < 1
461
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
434
+ # @param [Object] sock_read_timeout Value to be assigned
435
+ def sock_read_timeout=(sock_read_timeout)
436
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
437
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
462
438
  end
463
439
 
464
- @url = url
440
+ @sock_read_timeout = sock_read_timeout
465
441
  end
466
442
 
467
443
  # Custom attribute writer method with validation
468
- # @param [Object] client_key Value to be assigned
469
- def client_key=(client_key)
470
- if !client_key.nil? && client_key.to_s.length < 1
471
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
444
+ # @param [Object] proxy_password Value to be assigned
445
+ def proxy_password=(proxy_password)
446
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
447
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
472
448
  end
473
449
 
474
- @client_key = client_key
450
+ @proxy_password = proxy_password
475
451
  end
476
452
 
477
453
  # Custom attribute writer method with validation
@@ -484,6 +460,16 @@ module PulpAnsibleClient
484
460
  @username = username
485
461
  end
486
462
 
463
+ # Custom attribute writer method with validation
464
+ # @param [Object] client_cert Value to be assigned
465
+ def client_cert=(client_cert)
466
+ if !client_cert.nil? && client_cert.to_s.length < 1
467
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
468
+ end
469
+
470
+ @client_cert = client_cert
471
+ end
472
+
487
473
  # Custom attribute writer method with validation
488
474
  # @param [Object] sock_connect_timeout Value to be assigned
489
475
  def sock_connect_timeout=(sock_connect_timeout)
@@ -495,33 +481,47 @@ module PulpAnsibleClient
495
481
  end
496
482
 
497
483
  # Custom attribute writer method with validation
498
- # @param [Object] proxy_password Value to be assigned
499
- def proxy_password=(proxy_password)
500
- if !proxy_password.nil? && proxy_password.to_s.length < 1
501
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
484
+ # @param [Object] client_key Value to be assigned
485
+ def client_key=(client_key)
486
+ if !client_key.nil? && client_key.to_s.length < 1
487
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
502
488
  end
503
489
 
504
- @proxy_password = proxy_password
490
+ @client_key = client_key
505
491
  end
506
492
 
507
493
  # Custom attribute writer method with validation
508
- # @param [Object] total_timeout Value to be assigned
509
- def total_timeout=(total_timeout)
510
- if !total_timeout.nil? && total_timeout < 0.0
511
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
494
+ # @param [Object] name Value to be assigned
495
+ def name=(name)
496
+ if name.nil?
497
+ fail ArgumentError, 'name cannot be nil'
512
498
  end
513
499
 
514
- @total_timeout = total_timeout
500
+ if name.to_s.length < 1
501
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
502
+ end
503
+
504
+ @name = name
515
505
  end
516
506
 
517
507
  # Custom attribute writer method with validation
518
- # @param [Object] client_cert Value to be assigned
519
- def client_cert=(client_cert)
520
- if !client_cert.nil? && client_cert.to_s.length < 1
521
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
508
+ # @param [Object] ca_cert Value to be assigned
509
+ def ca_cert=(ca_cert)
510
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
511
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
522
512
  end
523
513
 
524
- @client_cert = client_cert
514
+ @ca_cert = ca_cert
515
+ end
516
+
517
+ # Custom attribute writer method with validation
518
+ # @param [Object] proxy_username Value to be assigned
519
+ def proxy_username=(proxy_username)
520
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
521
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
522
+ end
523
+
524
+ @proxy_username = proxy_username
525
525
  end
526
526
 
527
527
  # Custom attribute writer method with validation
@@ -543,26 +543,26 @@ module PulpAnsibleClient
543
543
  def ==(o)
544
544
  return true if self.equal?(o)
545
545
  self.class == o.class &&
546
- sock_read_timeout == o.sock_read_timeout &&
547
- pulp_labels == o.pulp_labels &&
548
- connect_timeout == o.connect_timeout &&
549
- proxy_username == o.proxy_username &&
550
546
  password == o.password &&
551
- name == o.name &&
552
- proxy_url == o.proxy_url &&
547
+ max_retries == o.max_retries &&
548
+ connect_timeout == o.connect_timeout &&
549
+ rate_limit == o.rate_limit &&
553
550
  tls_validation == o.tls_validation &&
554
- ca_cert == o.ca_cert &&
555
551
  download_concurrency == o.download_concurrency &&
556
- max_retries == o.max_retries &&
552
+ headers == o.headers &&
557
553
  url == o.url &&
558
- client_key == o.client_key &&
559
- username == o.username &&
560
- sock_connect_timeout == o.sock_connect_timeout &&
561
- proxy_password == o.proxy_password &&
554
+ proxy_url == o.proxy_url &&
555
+ pulp_labels == o.pulp_labels &&
562
556
  total_timeout == o.total_timeout &&
563
- headers == o.headers &&
564
- rate_limit == o.rate_limit &&
557
+ sock_read_timeout == o.sock_read_timeout &&
558
+ proxy_password == o.proxy_password &&
559
+ username == o.username &&
565
560
  client_cert == o.client_cert &&
561
+ sock_connect_timeout == o.sock_connect_timeout &&
562
+ client_key == o.client_key &&
563
+ name == o.name &&
564
+ ca_cert == o.ca_cert &&
565
+ proxy_username == o.proxy_username &&
566
566
  metadata_only == o.metadata_only &&
567
567
  git_ref == o.git_ref
568
568
  end
@@ -576,7 +576,7 @@ module PulpAnsibleClient
576
576
  # Calculates hash code according to all attributes.
577
577
  # @return [Integer] Hash code
578
578
  def hash
579
- [sock_read_timeout, 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
579
+ [password, max_retries, connect_timeout, rate_limit, tls_validation, download_concurrency, headers, url, proxy_url, pulp_labels, total_timeout, sock_read_timeout, proxy_password, username, client_cert, sock_connect_timeout, client_key, name, ca_cert, proxy_username, metadata_only, git_ref].hash
580
580
  end
581
581
 
582
582
  # Builds the object from hash