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