pulp_ansible_client 0.20.10 → 0.20.11

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.
@@ -15,31 +15,29 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemote
18
- # Total number of simultaneous connections. If not set then the default value will be used.
19
- attr_accessor :download_concurrency
20
-
21
- # The proxy URL. Format: scheme://host:port
22
- attr_accessor :proxy_url
18
+ # A PEM encoded client certificate used for authentication.
19
+ attr_accessor :client_cert
23
20
 
24
21
  # The username to be used for authentication when syncing.
25
22
  attr_accessor :username
26
23
 
27
- # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
28
- attr_accessor :password
24
+ # Headers for aiohttp.Clientsession
25
+ attr_accessor :headers
29
26
 
30
- # 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.
31
- attr_accessor :sock_connect_timeout
27
+ # 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.
28
+ attr_accessor :sock_read_timeout
32
29
 
33
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
34
- attr_accessor :ca_cert
30
+ # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
31
+ attr_accessor :password
35
32
 
36
- attr_accessor :pulp_labels
33
+ # The URL of an external content source.
34
+ attr_accessor :url
37
35
 
38
- # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
39
- attr_accessor :total_timeout
36
+ # A unique name for this remote.
37
+ attr_accessor :name
40
38
 
41
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
42
- attr_accessor :max_retries
39
+ # A PEM encoded private key used for authentication.
40
+ attr_accessor :client_key
43
41
 
44
42
  # Limits requests per second for each concurrent downloader
45
43
  attr_accessor :rate_limit
@@ -47,33 +45,35 @@ module PulpAnsibleClient
47
45
  # The username to authenticte to the proxy.
48
46
  attr_accessor :proxy_username
49
47
 
50
- # 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.
51
- attr_accessor :sock_read_timeout
52
-
53
- # A unique name for this remote.
54
- attr_accessor :name
48
+ # 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.
49
+ attr_accessor :sock_connect_timeout
55
50
 
56
- # Headers for aiohttp.Clientsession
57
- attr_accessor :headers
51
+ attr_accessor :pulp_labels
58
52
 
59
53
  # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
60
54
  attr_accessor :connect_timeout
61
55
 
62
- # The URL of an external content source.
63
- attr_accessor :url
56
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
57
+ attr_accessor :max_retries
64
58
 
65
- # A PEM encoded private key used for authentication.
66
- attr_accessor :client_key
59
+ # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
60
+ attr_accessor :total_timeout
61
+
62
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
63
+ attr_accessor :ca_cert
64
+
65
+ # The proxy URL. Format: scheme://host:port
66
+ attr_accessor :proxy_url
67
67
 
68
68
  # If True, TLS peer validation must be performed.
69
69
  attr_accessor :tls_validation
70
70
 
71
+ # Total number of simultaneous connections. If not set then the default value will be used.
72
+ attr_accessor :download_concurrency
73
+
71
74
  # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
72
75
  attr_accessor :proxy_password
73
76
 
74
- # A PEM encoded client certificate used for authentication.
75
- attr_accessor :client_cert
76
-
77
77
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
78
78
  attr_accessor :metadata_only
79
79
 
@@ -83,26 +83,26 @@ module PulpAnsibleClient
83
83
  # Attribute mapping from ruby-style variable name to JSON key.
84
84
  def self.attribute_map
85
85
  {
86
- :'download_concurrency' => :'download_concurrency',
87
- :'proxy_url' => :'proxy_url',
86
+ :'client_cert' => :'client_cert',
88
87
  :'username' => :'username',
88
+ :'headers' => :'headers',
89
+ :'sock_read_timeout' => :'sock_read_timeout',
89
90
  :'password' => :'password',
90
- :'sock_connect_timeout' => :'sock_connect_timeout',
91
- :'ca_cert' => :'ca_cert',
92
- :'pulp_labels' => :'pulp_labels',
93
- :'total_timeout' => :'total_timeout',
94
- :'max_retries' => :'max_retries',
91
+ :'url' => :'url',
92
+ :'name' => :'name',
93
+ :'client_key' => :'client_key',
95
94
  :'rate_limit' => :'rate_limit',
96
95
  :'proxy_username' => :'proxy_username',
97
- :'sock_read_timeout' => :'sock_read_timeout',
98
- :'name' => :'name',
99
- :'headers' => :'headers',
96
+ :'sock_connect_timeout' => :'sock_connect_timeout',
97
+ :'pulp_labels' => :'pulp_labels',
100
98
  :'connect_timeout' => :'connect_timeout',
101
- :'url' => :'url',
102
- :'client_key' => :'client_key',
99
+ :'max_retries' => :'max_retries',
100
+ :'total_timeout' => :'total_timeout',
101
+ :'ca_cert' => :'ca_cert',
102
+ :'proxy_url' => :'proxy_url',
103
103
  :'tls_validation' => :'tls_validation',
104
+ :'download_concurrency' => :'download_concurrency',
104
105
  :'proxy_password' => :'proxy_password',
105
- :'client_cert' => :'client_cert',
106
106
  :'metadata_only' => :'metadata_only',
107
107
  :'git_ref' => :'git_ref'
108
108
  }
@@ -111,26 +111,26 @@ module PulpAnsibleClient
111
111
  # Attribute type mapping.
112
112
  def self.openapi_types
113
113
  {
114
- :'download_concurrency' => :'Integer',
115
- :'proxy_url' => :'String',
114
+ :'client_cert' => :'String',
116
115
  :'username' => :'String',
116
+ :'headers' => :'Array<Object>',
117
+ :'sock_read_timeout' => :'Float',
117
118
  :'password' => :'String',
118
- :'sock_connect_timeout' => :'Float',
119
- :'ca_cert' => :'String',
120
- :'pulp_labels' => :'Hash<String, String>',
121
- :'total_timeout' => :'Float',
122
- :'max_retries' => :'Integer',
119
+ :'url' => :'String',
120
+ :'name' => :'String',
121
+ :'client_key' => :'String',
123
122
  :'rate_limit' => :'Integer',
124
123
  :'proxy_username' => :'String',
125
- :'sock_read_timeout' => :'Float',
126
- :'name' => :'String',
127
- :'headers' => :'Array<Object>',
124
+ :'sock_connect_timeout' => :'Float',
125
+ :'pulp_labels' => :'Hash<String, String>',
128
126
  :'connect_timeout' => :'Float',
129
- :'url' => :'String',
130
- :'client_key' => :'String',
127
+ :'max_retries' => :'Integer',
128
+ :'total_timeout' => :'Float',
129
+ :'ca_cert' => :'String',
130
+ :'proxy_url' => :'String',
131
131
  :'tls_validation' => :'Boolean',
132
+ :'download_concurrency' => :'Integer',
132
133
  :'proxy_password' => :'String',
133
- :'client_cert' => :'String',
134
134
  :'metadata_only' => :'Boolean',
135
135
  :'git_ref' => :'String'
136
136
  }
@@ -139,21 +139,21 @@ module PulpAnsibleClient
139
139
  # List of attributes with nullable: true
140
140
  def self.openapi_nullable
141
141
  Set.new([
142
- :'download_concurrency',
143
- :'proxy_url',
142
+ :'client_cert',
144
143
  :'username',
144
+ :'sock_read_timeout',
145
145
  :'password',
146
- :'sock_connect_timeout',
147
- :'ca_cert',
148
- :'total_timeout',
149
- :'max_retries',
146
+ :'client_key',
150
147
  :'rate_limit',
151
148
  :'proxy_username',
152
- :'sock_read_timeout',
149
+ :'sock_connect_timeout',
153
150
  :'connect_timeout',
154
- :'client_key',
151
+ :'max_retries',
152
+ :'total_timeout',
153
+ :'ca_cert',
154
+ :'proxy_url',
155
+ :'download_concurrency',
155
156
  :'proxy_password',
156
- :'client_cert',
157
157
  ])
158
158
  end
159
159
 
@@ -172,42 +172,38 @@ module PulpAnsibleClient
172
172
  h[k.to_sym] = v
173
173
  }
174
174
 
175
- if attributes.key?(:'download_concurrency')
176
- self.download_concurrency = attributes[:'download_concurrency']
177
- end
178
-
179
- if attributes.key?(:'proxy_url')
180
- self.proxy_url = attributes[:'proxy_url']
175
+ if attributes.key?(:'client_cert')
176
+ self.client_cert = attributes[:'client_cert']
181
177
  end
182
178
 
183
179
  if attributes.key?(:'username')
184
180
  self.username = attributes[:'username']
185
181
  end
186
182
 
187
- if attributes.key?(:'password')
188
- self.password = attributes[:'password']
183
+ if attributes.key?(:'headers')
184
+ if (value = attributes[:'headers']).is_a?(Array)
185
+ self.headers = value
186
+ end
189
187
  end
190
188
 
191
- if attributes.key?(:'sock_connect_timeout')
192
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
189
+ if attributes.key?(:'sock_read_timeout')
190
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
193
191
  end
194
192
 
195
- if attributes.key?(:'ca_cert')
196
- self.ca_cert = attributes[:'ca_cert']
193
+ if attributes.key?(:'password')
194
+ self.password = attributes[:'password']
197
195
  end
198
196
 
199
- if attributes.key?(:'pulp_labels')
200
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
201
- self.pulp_labels = value
202
- end
197
+ if attributes.key?(:'url')
198
+ self.url = attributes[:'url']
203
199
  end
204
200
 
205
- if attributes.key?(:'total_timeout')
206
- self.total_timeout = attributes[:'total_timeout']
201
+ if attributes.key?(:'name')
202
+ self.name = attributes[:'name']
207
203
  end
208
204
 
209
- if attributes.key?(:'max_retries')
210
- self.max_retries = attributes[:'max_retries']
205
+ if attributes.key?(:'client_key')
206
+ self.client_key = attributes[:'client_key']
211
207
  end
212
208
 
213
209
  if attributes.key?(:'rate_limit')
@@ -218,17 +214,13 @@ module PulpAnsibleClient
218
214
  self.proxy_username = attributes[:'proxy_username']
219
215
  end
220
216
 
221
- if attributes.key?(:'sock_read_timeout')
222
- self.sock_read_timeout = attributes[:'sock_read_timeout']
223
- end
224
-
225
- if attributes.key?(:'name')
226
- self.name = attributes[:'name']
217
+ if attributes.key?(:'sock_connect_timeout')
218
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
227
219
  end
228
220
 
229
- if attributes.key?(:'headers')
230
- if (value = attributes[:'headers']).is_a?(Array)
231
- self.headers = value
221
+ if attributes.key?(:'pulp_labels')
222
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
223
+ self.pulp_labels = value
232
224
  end
233
225
  end
234
226
 
@@ -236,24 +228,32 @@ module PulpAnsibleClient
236
228
  self.connect_timeout = attributes[:'connect_timeout']
237
229
  end
238
230
 
239
- if attributes.key?(:'url')
240
- self.url = attributes[:'url']
231
+ if attributes.key?(:'max_retries')
232
+ self.max_retries = attributes[:'max_retries']
241
233
  end
242
234
 
243
- if attributes.key?(:'client_key')
244
- self.client_key = attributes[:'client_key']
235
+ if attributes.key?(:'total_timeout')
236
+ self.total_timeout = attributes[:'total_timeout']
237
+ end
238
+
239
+ if attributes.key?(:'ca_cert')
240
+ self.ca_cert = attributes[:'ca_cert']
241
+ end
242
+
243
+ if attributes.key?(:'proxy_url')
244
+ self.proxy_url = attributes[:'proxy_url']
245
245
  end
246
246
 
247
247
  if attributes.key?(:'tls_validation')
248
248
  self.tls_validation = attributes[:'tls_validation']
249
249
  end
250
250
 
251
- if attributes.key?(:'proxy_password')
252
- self.proxy_password = attributes[:'proxy_password']
251
+ if attributes.key?(:'download_concurrency')
252
+ self.download_concurrency = attributes[:'download_concurrency']
253
253
  end
254
254
 
255
- if attributes.key?(:'client_cert')
256
- self.client_cert = attributes[:'client_cert']
255
+ if attributes.key?(:'proxy_password')
256
+ self.proxy_password = attributes[:'proxy_password']
257
257
  end
258
258
 
259
259
  if attributes.key?(:'metadata_only')
@@ -269,72 +269,72 @@ module PulpAnsibleClient
269
269
  # @return Array for valid properties with the reasons
270
270
  def list_invalid_properties
271
271
  invalid_properties = Array.new
272
- if !@download_concurrency.nil? && @download_concurrency < 1
273
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
274
- end
275
-
276
- if !@proxy_url.nil? && @proxy_url.to_s.length < 1
277
- invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
272
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
273
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
278
274
  end
279
275
 
280
276
  if !@username.nil? && @username.to_s.length < 1
281
277
  invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
282
278
  end
283
279
 
280
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
281
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
282
+ end
283
+
284
284
  if !@password.nil? && @password.to_s.length < 1
285
285
  invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
286
286
  end
287
287
 
288
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
289
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
288
+ if @url.nil?
289
+ invalid_properties.push('invalid value for "url", url cannot be nil.')
290
290
  end
291
291
 
292
- if !@ca_cert.nil? && @ca_cert.to_s.length < 1
293
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
292
+ if @url.to_s.length < 1
293
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
294
294
  end
295
295
 
296
- if !@total_timeout.nil? && @total_timeout < 0.0
297
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
296
+ if @name.nil?
297
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
298
298
  end
299
299
 
300
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
301
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
300
+ if @name.to_s.length < 1
301
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
302
302
  end
303
303
 
304
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
305
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
304
+ if !@client_key.nil? && @client_key.to_s.length < 1
305
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
306
306
  end
307
307
 
308
- if @name.nil?
309
- invalid_properties.push('invalid value for "name", name cannot be nil.')
308
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
309
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
310
310
  end
311
311
 
312
- if @name.to_s.length < 1
313
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
312
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
313
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
314
314
  end
315
315
 
316
316
  if !@connect_timeout.nil? && @connect_timeout < 0.0
317
317
  invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
318
318
  end
319
319
 
320
- if @url.nil?
321
- invalid_properties.push('invalid value for "url", url cannot be nil.')
320
+ if !@total_timeout.nil? && @total_timeout < 0.0
321
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
322
322
  end
323
323
 
324
- if @url.to_s.length < 1
325
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
324
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
325
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
326
326
  end
327
327
 
328
- if !@client_key.nil? && @client_key.to_s.length < 1
329
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
328
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
329
+ invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
330
330
  end
331
331
 
332
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
333
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
332
+ if !@download_concurrency.nil? && @download_concurrency < 1
333
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
334
334
  end
335
335
 
336
- if !@client_cert.nil? && @client_cert.to_s.length < 1
337
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
336
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
337
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
338
338
  end
339
339
 
340
340
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -347,45 +347,35 @@ module PulpAnsibleClient
347
347
  # Check to see if the all the properties in the model are valid
348
348
  # @return true if the model is valid
349
349
  def valid?
350
- return false if !@download_concurrency.nil? && @download_concurrency < 1
351
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
350
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
352
351
  return false if !@username.nil? && @username.to_s.length < 1
353
- return false if !@password.nil? && @password.to_s.length < 1
354
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
355
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
356
- return false if !@total_timeout.nil? && @total_timeout < 0.0
357
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
358
352
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
359
- return false if @name.nil?
360
- return false if @name.to_s.length < 1
361
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
353
+ return false if !@password.nil? && @password.to_s.length < 1
362
354
  return false if @url.nil?
363
355
  return false if @url.to_s.length < 1
356
+ return false if @name.nil?
357
+ return false if @name.to_s.length < 1
364
358
  return false if !@client_key.nil? && @client_key.to_s.length < 1
359
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
360
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
361
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
362
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
363
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
364
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
365
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
365
366
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
366
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
367
367
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
368
368
  true
369
369
  end
370
370
 
371
371
  # Custom attribute writer method with validation
372
- # @param [Object] download_concurrency Value to be assigned
373
- def download_concurrency=(download_concurrency)
374
- if !download_concurrency.nil? && download_concurrency < 1
375
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
376
- end
377
-
378
- @download_concurrency = download_concurrency
379
- end
380
-
381
- # Custom attribute writer method with validation
382
- # @param [Object] proxy_url Value to be assigned
383
- def proxy_url=(proxy_url)
384
- if !proxy_url.nil? && proxy_url.to_s.length < 1
385
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
372
+ # @param [Object] client_cert Value to be assigned
373
+ def client_cert=(client_cert)
374
+ if !client_cert.nil? && client_cert.to_s.length < 1
375
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
386
376
  end
387
377
 
388
- @proxy_url = proxy_url
378
+ @client_cert = client_cert
389
379
  end
390
380
 
391
381
  # Custom attribute writer method with validation
@@ -398,6 +388,16 @@ module PulpAnsibleClient
398
388
  @username = username
399
389
  end
400
390
 
391
+ # Custom attribute writer method with validation
392
+ # @param [Object] sock_read_timeout Value to be assigned
393
+ def sock_read_timeout=(sock_read_timeout)
394
+ if !sock_read_timeout.nil? && sock_read_timeout < 0.0
395
+ fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
396
+ end
397
+
398
+ @sock_read_timeout = sock_read_timeout
399
+ end
400
+
401
401
  # Custom attribute writer method with validation
402
402
  # @param [Object] password Value to be assigned
403
403
  def password=(password)
@@ -409,33 +409,41 @@ module PulpAnsibleClient
409
409
  end
410
410
 
411
411
  # Custom attribute writer method with validation
412
- # @param [Object] sock_connect_timeout Value to be assigned
413
- def sock_connect_timeout=(sock_connect_timeout)
414
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
415
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
412
+ # @param [Object] url Value to be assigned
413
+ def url=(url)
414
+ if url.nil?
415
+ fail ArgumentError, 'url cannot be nil'
416
416
  end
417
417
 
418
- @sock_connect_timeout = sock_connect_timeout
418
+ if url.to_s.length < 1
419
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
420
+ end
421
+
422
+ @url = url
419
423
  end
420
424
 
421
425
  # Custom attribute writer method with validation
422
- # @param [Object] ca_cert Value to be assigned
423
- def ca_cert=(ca_cert)
424
- if !ca_cert.nil? && ca_cert.to_s.length < 1
425
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
426
+ # @param [Object] name Value to be assigned
427
+ def name=(name)
428
+ if name.nil?
429
+ fail ArgumentError, 'name cannot be nil'
426
430
  end
427
431
 
428
- @ca_cert = ca_cert
432
+ if name.to_s.length < 1
433
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
434
+ end
435
+
436
+ @name = name
429
437
  end
430
438
 
431
439
  # Custom attribute writer method with validation
432
- # @param [Object] total_timeout Value to be assigned
433
- def total_timeout=(total_timeout)
434
- if !total_timeout.nil? && total_timeout < 0.0
435
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
440
+ # @param [Object] client_key Value to be assigned
441
+ def client_key=(client_key)
442
+ if !client_key.nil? && client_key.to_s.length < 1
443
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
436
444
  end
437
445
 
438
- @total_timeout = total_timeout
446
+ @client_key = client_key
439
447
  end
440
448
 
441
449
  # Custom attribute writer method with validation
@@ -449,27 +457,13 @@ module PulpAnsibleClient
449
457
  end
450
458
 
451
459
  # Custom attribute writer method with validation
452
- # @param [Object] sock_read_timeout Value to be assigned
453
- def sock_read_timeout=(sock_read_timeout)
454
- if !sock_read_timeout.nil? && sock_read_timeout < 0.0
455
- fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
456
- end
457
-
458
- @sock_read_timeout = sock_read_timeout
459
- end
460
-
461
- # Custom attribute writer method with validation
462
- # @param [Object] name Value to be assigned
463
- def name=(name)
464
- if name.nil?
465
- fail ArgumentError, 'name cannot be nil'
466
- end
467
-
468
- if name.to_s.length < 1
469
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
460
+ # @param [Object] sock_connect_timeout Value to be assigned
461
+ def sock_connect_timeout=(sock_connect_timeout)
462
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
463
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
470
464
  end
471
465
 
472
- @name = name
466
+ @sock_connect_timeout = sock_connect_timeout
473
467
  end
474
468
 
475
469
  # Custom attribute writer method with validation
@@ -483,47 +477,53 @@ module PulpAnsibleClient
483
477
  end
484
478
 
485
479
  # Custom attribute writer method with validation
486
- # @param [Object] url Value to be assigned
487
- def url=(url)
488
- if url.nil?
489
- fail ArgumentError, 'url cannot be nil'
480
+ # @param [Object] total_timeout Value to be assigned
481
+ def total_timeout=(total_timeout)
482
+ if !total_timeout.nil? && total_timeout < 0.0
483
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
490
484
  end
491
485
 
492
- if url.to_s.length < 1
493
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
486
+ @total_timeout = total_timeout
487
+ end
488
+
489
+ # Custom attribute writer method with validation
490
+ # @param [Object] ca_cert Value to be assigned
491
+ def ca_cert=(ca_cert)
492
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
493
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
494
494
  end
495
495
 
496
- @url = url
496
+ @ca_cert = ca_cert
497
497
  end
498
498
 
499
499
  # Custom attribute writer method with validation
500
- # @param [Object] client_key Value to be assigned
501
- def client_key=(client_key)
502
- if !client_key.nil? && client_key.to_s.length < 1
503
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
500
+ # @param [Object] proxy_url Value to be assigned
501
+ def proxy_url=(proxy_url)
502
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
503
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
504
504
  end
505
505
 
506
- @client_key = client_key
506
+ @proxy_url = proxy_url
507
507
  end
508
508
 
509
509
  # Custom attribute writer method with validation
510
- # @param [Object] proxy_password Value to be assigned
511
- def proxy_password=(proxy_password)
512
- if !proxy_password.nil? && proxy_password.to_s.length < 1
513
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
510
+ # @param [Object] download_concurrency Value to be assigned
511
+ def download_concurrency=(download_concurrency)
512
+ if !download_concurrency.nil? && download_concurrency < 1
513
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
514
514
  end
515
515
 
516
- @proxy_password = proxy_password
516
+ @download_concurrency = download_concurrency
517
517
  end
518
518
 
519
519
  # Custom attribute writer method with validation
520
- # @param [Object] client_cert Value to be assigned
521
- def client_cert=(client_cert)
522
- if !client_cert.nil? && client_cert.to_s.length < 1
523
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
520
+ # @param [Object] proxy_password Value to be assigned
521
+ def proxy_password=(proxy_password)
522
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
523
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
524
524
  end
525
525
 
526
- @client_cert = client_cert
526
+ @proxy_password = proxy_password
527
527
  end
528
528
 
529
529
  # Custom attribute writer method with validation
@@ -541,26 +541,26 @@ module PulpAnsibleClient
541
541
  def ==(o)
542
542
  return true if self.equal?(o)
543
543
  self.class == o.class &&
544
- download_concurrency == o.download_concurrency &&
545
- proxy_url == o.proxy_url &&
544
+ client_cert == o.client_cert &&
546
545
  username == o.username &&
546
+ headers == o.headers &&
547
+ sock_read_timeout == o.sock_read_timeout &&
547
548
  password == o.password &&
548
- sock_connect_timeout == o.sock_connect_timeout &&
549
- ca_cert == o.ca_cert &&
550
- pulp_labels == o.pulp_labels &&
551
- total_timeout == o.total_timeout &&
552
- max_retries == o.max_retries &&
549
+ url == o.url &&
550
+ name == o.name &&
551
+ client_key == o.client_key &&
553
552
  rate_limit == o.rate_limit &&
554
553
  proxy_username == o.proxy_username &&
555
- sock_read_timeout == o.sock_read_timeout &&
556
- name == o.name &&
557
- headers == o.headers &&
554
+ sock_connect_timeout == o.sock_connect_timeout &&
555
+ pulp_labels == o.pulp_labels &&
558
556
  connect_timeout == o.connect_timeout &&
559
- url == o.url &&
560
- client_key == o.client_key &&
557
+ max_retries == o.max_retries &&
558
+ total_timeout == o.total_timeout &&
559
+ ca_cert == o.ca_cert &&
560
+ proxy_url == o.proxy_url &&
561
561
  tls_validation == o.tls_validation &&
562
+ download_concurrency == o.download_concurrency &&
562
563
  proxy_password == o.proxy_password &&
563
- client_cert == o.client_cert &&
564
564
  metadata_only == o.metadata_only &&
565
565
  git_ref == o.git_ref
566
566
  end
@@ -574,7 +574,7 @@ module PulpAnsibleClient
574
574
  # Calculates hash code according to all attributes.
575
575
  # @return [Integer] Hash code
576
576
  def hash
577
- [download_concurrency, proxy_url, username, password, sock_connect_timeout, ca_cert, pulp_labels, total_timeout, max_retries, rate_limit, proxy_username, sock_read_timeout, name, headers, connect_timeout, url, client_key, tls_validation, proxy_password, client_cert, metadata_only, git_ref].hash
577
+ [client_cert, username, headers, sock_read_timeout, password, url, name, client_key, rate_limit, proxy_username, sock_connect_timeout, pulp_labels, connect_timeout, max_retries, total_timeout, ca_cert, proxy_url, tls_validation, download_concurrency, proxy_password, metadata_only, git_ref].hash
578
578
  end
579
579
 
580
580
  # Builds the object from hash