pulp_ansible_client 0.29.0 → 0.29.2

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