pulp_ansible_client 0.24.5 → 0.24.6

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