pulp_ansible_client 0.28.1 → 0.29.0

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