pulp_ansible_client 0.28.3 → 0.28.5

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