pulp_ansible_client 0.24.3 → 0.24.4

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