pulp_ansible_client 0.21.7 → 0.21.9

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