pulp_ansible_client 0.25.2 → 0.25.3

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