pulp_ansible_client 0.29.8 → 0.30.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.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleAnsibleCollectionDeprecated.md +2 -0
  4. data/docs/AnsibleCollectionRemote.md +3 -1
  5. data/docs/AnsibleCollectionRemoteResponse.md +2 -0
  6. data/docs/AnsibleCollectionVersionResponse.md +6 -6
  7. data/docs/AnsibleGitRemote.md +26 -26
  8. data/docs/AnsibleGitRemoteResponse.md +24 -24
  9. data/docs/AnsibleRole.md +4 -2
  10. data/docs/AnsibleRoleResponse.md +6 -6
  11. data/docs/ContentCollectionSignaturesApi.md +2 -0
  12. data/docs/ContentCollectionVersionsApi.md +10 -8
  13. data/docs/PatchedansibleCollectionRemote.md +3 -1
  14. data/docs/PatchedansibleGitRemote.md +26 -26
  15. data/docs/RemotesCollectionApi.md +2 -2
  16. data/docs/RepositoryAddRemoveContent.md +3 -1
  17. data/lib/pulp_ansible_client/api/content_collection_signatures_api.rb +3 -0
  18. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +15 -12
  19. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
  20. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
  21. data/lib/pulp_ansible_client/api/remotes_collection_api.rb +3 -3
  22. data/lib/pulp_ansible_client/models/ansible_ansible_collection_deprecated.rb +11 -1
  23. data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata.rb +3 -3
  24. data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata_response.rb +3 -3
  25. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +30 -4
  26. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +27 -1
  27. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +28 -28
  28. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +222 -222
  29. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +124 -124
  30. data/lib/pulp_ansible_client/models/ansible_role.rb +18 -8
  31. data/lib/pulp_ansible_client/models/ansible_role_response.rb +28 -28
  32. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +30 -4
  33. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +214 -214
  34. data/lib/pulp_ansible_client/models/repository_add_remove_content.rb +16 -4
  35. data/lib/pulp_ansible_client/version.rb +1 -1
  36. data/spec/api/content_collection_signatures_api_spec.rb +1 -0
  37. data/spec/api/content_collection_versions_api_spec.rb +5 -4
  38. data/spec/api/remotes_collection_api_spec.rb +1 -1
  39. data/spec/models/ansible_ansible_collection_deprecated_spec.rb +6 -0
  40. data/spec/models/ansible_collection_remote_response_spec.rb +6 -0
  41. data/spec/models/ansible_collection_remote_spec.rb +6 -0
  42. data/spec/models/ansible_collection_version_response_spec.rb +6 -6
  43. data/spec/models/ansible_git_remote_response_spec.rb +18 -18
  44. data/spec/models/ansible_git_remote_spec.rb +19 -19
  45. data/spec/models/ansible_role_response_spec.rb +6 -6
  46. data/spec/models/ansible_role_spec.rb +7 -1
  47. data/spec/models/patchedansible_collection_remote_spec.rb +6 -0
  48. data/spec/models/patchedansible_git_remote_spec.rb +19 -19
  49. data/spec/models/repository_add_remove_content_spec.rb +6 -0
  50. metadata +121 -121
@@ -16,20 +16,26 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Git Collection Remotes.
18
18
  class AnsibleGitRemote
19
- # The URL of an external content source.
20
- attr_accessor :url
19
+ # 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.
20
+ attr_accessor :sock_connect_timeout
21
+
22
+ # Limits requests per second for each concurrent downloader
23
+ attr_accessor :rate_limit
21
24
 
22
25
  # Total number of simultaneous connections. If not set then the default value will be used.
23
26
  attr_accessor :download_concurrency
24
27
 
25
- # 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.
26
- attr_accessor :sock_connect_timeout
28
+ # A PEM encoded client certificate used for authentication.
29
+ attr_accessor :client_cert
27
30
 
28
- # A PEM encoded private key used for authentication.
29
- attr_accessor :client_key
31
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
32
+ attr_accessor :max_retries
30
33
 
31
- # If True, TLS peer validation must be performed.
32
- attr_accessor :tls_validation
34
+ # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
35
+ attr_accessor :proxy_password
36
+
37
+ # The URL of an external content source.
38
+ attr_accessor :url
33
39
 
34
40
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
35
41
  attr_accessor :total_timeout
@@ -37,44 +43,38 @@ module PulpAnsibleClient
37
43
  # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
38
44
  attr_accessor :ca_cert
39
45
 
40
- # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
41
- attr_accessor :proxy_password
42
-
43
- # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
44
- attr_accessor :password
45
-
46
- # Limits requests per second for each concurrent downloader
47
- attr_accessor :rate_limit
48
-
49
46
  # The username to authenticte to the proxy.
50
47
  attr_accessor :proxy_username
51
48
 
52
- # 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.
53
- attr_accessor :sock_read_timeout
54
-
55
49
  # Headers for aiohttp.Clientsession
56
50
  attr_accessor :headers
57
51
 
58
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
59
- attr_accessor :max_retries
52
+ # 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.
53
+ attr_accessor :sock_read_timeout
60
54
 
61
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
62
- attr_accessor :connect_timeout
55
+ # The proxy URL. Format: scheme://host:port
56
+ attr_accessor :proxy_url
63
57
 
64
- # The username to be used for authentication when syncing.
65
- attr_accessor :username
58
+ # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
59
+ attr_accessor :password
66
60
 
67
61
  attr_accessor :pulp_labels
68
62
 
69
- # A PEM encoded client certificate used for authentication.
70
- attr_accessor :client_cert
71
-
72
- # The proxy URL. Format: scheme://host:port
73
- attr_accessor :proxy_url
63
+ # If True, TLS peer validation must be performed.
64
+ attr_accessor :tls_validation
74
65
 
75
66
  # A unique name for this remote.
76
67
  attr_accessor :name
77
68
 
69
+ # The username to be used for authentication when syncing.
70
+ attr_accessor :username
71
+
72
+ # aiohttp.ClientTimeout.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 :connect_timeout
74
+
75
+ # A PEM encoded private key used for authentication.
76
+ attr_accessor :client_key
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
80
80
 
@@ -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
- :'url' => :'url',
88
- :'download_concurrency' => :'download_concurrency',
89
87
  :'sock_connect_timeout' => :'sock_connect_timeout',
90
- :'client_key' => :'client_key',
91
- :'tls_validation' => :'tls_validation',
88
+ :'rate_limit' => :'rate_limit',
89
+ :'download_concurrency' => :'download_concurrency',
90
+ :'client_cert' => :'client_cert',
91
+ :'max_retries' => :'max_retries',
92
+ :'proxy_password' => :'proxy_password',
93
+ :'url' => :'url',
92
94
  :'total_timeout' => :'total_timeout',
93
95
  :'ca_cert' => :'ca_cert',
94
- :'proxy_password' => :'proxy_password',
95
- :'password' => :'password',
96
- :'rate_limit' => :'rate_limit',
97
96
  :'proxy_username' => :'proxy_username',
98
- :'sock_read_timeout' => :'sock_read_timeout',
99
97
  :'headers' => :'headers',
100
- :'max_retries' => :'max_retries',
101
- :'connect_timeout' => :'connect_timeout',
102
- :'username' => :'username',
103
- :'pulp_labels' => :'pulp_labels',
104
- :'client_cert' => :'client_cert',
98
+ :'sock_read_timeout' => :'sock_read_timeout',
105
99
  :'proxy_url' => :'proxy_url',
100
+ :'password' => :'password',
101
+ :'pulp_labels' => :'pulp_labels',
102
+ :'tls_validation' => :'tls_validation',
106
103
  :'name' => :'name',
104
+ :'username' => :'username',
105
+ :'connect_timeout' => :'connect_timeout',
106
+ :'client_key' => :'client_key',
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
- :'url' => :'String',
121
- :'download_concurrency' => :'Integer',
122
120
  :'sock_connect_timeout' => :'Float',
123
- :'client_key' => :'String',
124
- :'tls_validation' => :'Boolean',
121
+ :'rate_limit' => :'Integer',
122
+ :'download_concurrency' => :'Integer',
123
+ :'client_cert' => :'String',
124
+ :'max_retries' => :'Integer',
125
+ :'proxy_password' => :'String',
126
+ :'url' => :'String',
125
127
  :'total_timeout' => :'Float',
126
128
  :'ca_cert' => :'String',
127
- :'proxy_password' => :'String',
128
- :'password' => :'String',
129
- :'rate_limit' => :'Integer',
130
129
  :'proxy_username' => :'String',
131
- :'sock_read_timeout' => :'Float',
132
130
  :'headers' => :'Array<Object>',
133
- :'max_retries' => :'Integer',
134
- :'connect_timeout' => :'Float',
135
- :'username' => :'String',
136
- :'pulp_labels' => :'Hash<String, String>',
137
- :'client_cert' => :'String',
131
+ :'sock_read_timeout' => :'Float',
138
132
  :'proxy_url' => :'String',
133
+ :'password' => :'String',
134
+ :'pulp_labels' => :'Hash<String, String>',
135
+ :'tls_validation' => :'Boolean',
139
136
  :'name' => :'String',
137
+ :'username' => :'String',
138
+ :'connect_timeout' => :'Float',
139
+ :'client_key' => :'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
- :'download_concurrency',
149
148
  :'sock_connect_timeout',
150
- :'client_key',
149
+ :'rate_limit',
150
+ :'download_concurrency',
151
+ :'client_cert',
152
+ :'max_retries',
153
+ :'proxy_password',
151
154
  :'total_timeout',
152
155
  :'ca_cert',
153
- :'proxy_password',
154
- :'password',
155
- :'rate_limit',
156
156
  :'proxy_username',
157
157
  :'sock_read_timeout',
158
- :'max_retries',
159
- :'connect_timeout',
160
- :'username',
161
- :'client_cert',
162
158
  :'proxy_url',
159
+ :'password',
160
+ :'username',
161
+ :'connect_timeout',
162
+ :'client_key',
163
163
  ])
164
164
  end
165
165
 
@@ -178,54 +178,46 @@ module PulpAnsibleClient
178
178
  h[k.to_sym] = v
179
179
  }
180
180
 
181
- if attributes.key?(:'url')
182
- self.url = attributes[:'url']
183
- else
184
- self.url = nil
185
- end
186
-
187
- if attributes.key?(:'download_concurrency')
188
- self.download_concurrency = attributes[:'download_concurrency']
189
- end
190
-
191
181
  if attributes.key?(:'sock_connect_timeout')
192
182
  self.sock_connect_timeout = attributes[:'sock_connect_timeout']
193
183
  end
194
184
 
195
- if attributes.key?(:'client_key')
196
- self.client_key = attributes[:'client_key']
185
+ if attributes.key?(:'rate_limit')
186
+ self.rate_limit = attributes[:'rate_limit']
197
187
  end
198
188
 
199
- if attributes.key?(:'tls_validation')
200
- self.tls_validation = attributes[:'tls_validation']
189
+ if attributes.key?(:'download_concurrency')
190
+ self.download_concurrency = attributes[:'download_concurrency']
201
191
  end
202
192
 
203
- if attributes.key?(:'total_timeout')
204
- self.total_timeout = attributes[:'total_timeout']
193
+ if attributes.key?(:'client_cert')
194
+ self.client_cert = attributes[:'client_cert']
205
195
  end
206
196
 
207
- if attributes.key?(:'ca_cert')
208
- self.ca_cert = attributes[:'ca_cert']
197
+ if attributes.key?(:'max_retries')
198
+ self.max_retries = attributes[:'max_retries']
209
199
  end
210
200
 
211
201
  if attributes.key?(:'proxy_password')
212
202
  self.proxy_password = attributes[:'proxy_password']
213
203
  end
214
204
 
215
- if attributes.key?(:'password')
216
- self.password = attributes[:'password']
205
+ if attributes.key?(:'url')
206
+ self.url = attributes[:'url']
207
+ else
208
+ self.url = nil
217
209
  end
218
210
 
219
- if attributes.key?(:'rate_limit')
220
- self.rate_limit = attributes[:'rate_limit']
211
+ if attributes.key?(:'total_timeout')
212
+ self.total_timeout = attributes[:'total_timeout']
221
213
  end
222
214
 
223
- if attributes.key?(:'proxy_username')
224
- self.proxy_username = attributes[:'proxy_username']
215
+ if attributes.key?(:'ca_cert')
216
+ self.ca_cert = attributes[:'ca_cert']
225
217
  end
226
218
 
227
- if attributes.key?(:'sock_read_timeout')
228
- self.sock_read_timeout = attributes[:'sock_read_timeout']
219
+ if attributes.key?(:'proxy_username')
220
+ self.proxy_username = attributes[:'proxy_username']
229
221
  end
230
222
 
231
223
  if attributes.key?(:'headers')
@@ -234,16 +226,16 @@ module PulpAnsibleClient
234
226
  end
235
227
  end
236
228
 
237
- if attributes.key?(:'max_retries')
238
- self.max_retries = attributes[:'max_retries']
229
+ if attributes.key?(:'sock_read_timeout')
230
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
239
231
  end
240
232
 
241
- if attributes.key?(:'connect_timeout')
242
- self.connect_timeout = attributes[:'connect_timeout']
233
+ if attributes.key?(:'proxy_url')
234
+ self.proxy_url = attributes[:'proxy_url']
243
235
  end
244
236
 
245
- if attributes.key?(:'username')
246
- self.username = attributes[:'username']
237
+ if attributes.key?(:'password')
238
+ self.password = attributes[:'password']
247
239
  end
248
240
 
249
241
  if attributes.key?(:'pulp_labels')
@@ -252,12 +244,8 @@ module PulpAnsibleClient
252
244
  end
253
245
  end
254
246
 
255
- if attributes.key?(:'client_cert')
256
- self.client_cert = attributes[:'client_cert']
257
- end
258
-
259
- if attributes.key?(:'proxy_url')
260
- self.proxy_url = attributes[:'proxy_url']
247
+ if attributes.key?(:'tls_validation')
248
+ self.tls_validation = attributes[:'tls_validation']
261
249
  end
262
250
 
263
251
  if attributes.key?(:'name')
@@ -266,6 +254,18 @@ module PulpAnsibleClient
266
254
  self.name = nil
267
255
  end
268
256
 
257
+ if attributes.key?(:'username')
258
+ self.username = attributes[:'username']
259
+ end
260
+
261
+ if attributes.key?(:'connect_timeout')
262
+ self.connect_timeout = attributes[:'connect_timeout']
263
+ end
264
+
265
+ if attributes.key?(:'client_key')
266
+ self.client_key = attributes[:'client_key']
267
+ end
268
+
269
269
  if attributes.key?(:'metadata_only')
270
270
  self.metadata_only = attributes[:'metadata_only']
271
271
  end
@@ -280,40 +280,36 @@ 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 @url.nil?
284
- invalid_properties.push('invalid value for "url", url cannot be nil.')
285
- end
286
-
287
- if @url.to_s.length < 1
288
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
283
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
284
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
289
285
  end
290
286
 
291
287
  if !@download_concurrency.nil? && @download_concurrency < 1
292
288
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
293
289
  end
294
290
 
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.')
291
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
292
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
297
293
  end
298
294
 
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.')
295
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
296
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
301
297
  end
302
298
 
303
- if !@total_timeout.nil? && @total_timeout < 0.0
304
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
299
+ if @url.nil?
300
+ invalid_properties.push('invalid value for "url", url cannot be nil.')
305
301
  end
306
302
 
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.')
303
+ if @url.to_s.length < 1
304
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
309
305
  end
310
306
 
311
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
312
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
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.')
313
309
  end
314
310
 
315
- if !@password.nil? && @password.to_s.length < 1
316
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
311
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
312
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
317
313
  end
318
314
 
319
315
  if !@proxy_username.nil? && @proxy_username.to_s.length < 1
@@ -324,22 +320,14 @@ module PulpAnsibleClient
324
320
  invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
325
321
  end
326
322
 
327
- if !@connect_timeout.nil? && @connect_timeout < 0.0
328
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
329
- end
330
-
331
- if !@username.nil? && @username.to_s.length < 1
332
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
333
- end
334
-
335
- if !@client_cert.nil? && @client_cert.to_s.length < 1
336
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
337
- end
338
-
339
323
  if !@proxy_url.nil? && @proxy_url.to_s.length < 1
340
324
  invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
341
325
  end
342
326
 
327
+ if !@password.nil? && @password.to_s.length < 1
328
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
329
+ end
330
+
343
331
  if @name.nil?
344
332
  invalid_properties.push('invalid value for "name", name cannot be nil.')
345
333
  end
@@ -348,6 +336,18 @@ module PulpAnsibleClient
348
336
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
349
337
  end
350
338
 
339
+ if !@username.nil? && @username.to_s.length < 1
340
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
341
+ end
342
+
343
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
344
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
345
+ end
346
+
347
+ if !@client_key.nil? && @client_key.to_s.length < 1
348
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
349
+ end
350
+
351
351
  if !@git_ref.nil? && @git_ref.to_s.length < 1
352
352
  invalid_properties.push('invalid value for "git_ref", the character length must be great than or equal to 1.')
353
353
  end
@@ -359,39 +359,35 @@ module PulpAnsibleClient
359
359
  # @return true if the model is valid
360
360
  def valid?
361
361
  warn '[DEPRECATED] the `valid?` method is obsolete'
362
+ return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
363
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
364
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
365
+ return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
362
366
  return false if @url.nil?
363
367
  return false if @url.to_s.length < 1
364
- return false if !@download_concurrency.nil? && @download_concurrency < 1
365
- return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
366
- return false if !@client_key.nil? && @client_key.to_s.length < 1
367
368
  return false if !@total_timeout.nil? && @total_timeout < 0.0
368
369
  return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
369
- return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
370
- return false if !@password.nil? && @password.to_s.length < 1
371
370
  return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
372
371
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
373
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
374
- return false if !@username.nil? && @username.to_s.length < 1
375
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
376
372
  return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
373
+ return false if !@password.nil? && @password.to_s.length < 1
377
374
  return false if @name.nil?
378
375
  return false if @name.to_s.length < 1
376
+ return false if !@username.nil? && @username.to_s.length < 1
377
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
378
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
379
379
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
380
380
  true
381
381
  end
382
382
 
383
383
  # Custom attribute writer method with validation
384
- # @param [Object] url Value to be assigned
385
- def url=(url)
386
- if url.nil?
387
- fail ArgumentError, 'url cannot be nil'
388
- end
389
-
390
- if url.to_s.length < 1
391
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
384
+ # @param [Object] sock_connect_timeout Value to be assigned
385
+ def sock_connect_timeout=(sock_connect_timeout)
386
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
387
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
392
388
  end
393
389
 
394
- @url = url
390
+ @sock_connect_timeout = sock_connect_timeout
395
391
  end
396
392
 
397
393
  # Custom attribute writer method with validation
@@ -405,23 +401,37 @@ module PulpAnsibleClient
405
401
  end
406
402
 
407
403
  # Custom attribute writer method with validation
408
- # @param [Object] sock_connect_timeout Value to be assigned
409
- def sock_connect_timeout=(sock_connect_timeout)
410
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
411
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
404
+ # @param [Object] client_cert Value to be assigned
405
+ def client_cert=(client_cert)
406
+ if !client_cert.nil? && client_cert.to_s.length < 1
407
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
412
408
  end
413
409
 
414
- @sock_connect_timeout = sock_connect_timeout
410
+ @client_cert = client_cert
415
411
  end
416
412
 
417
413
  # Custom attribute writer method with validation
418
- # @param [Object] client_key Value to be assigned
419
- def client_key=(client_key)
420
- if !client_key.nil? && client_key.to_s.length < 1
421
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
414
+ # @param [Object] proxy_password Value to be assigned
415
+ def proxy_password=(proxy_password)
416
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
417
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
422
418
  end
423
419
 
424
- @client_key = client_key
420
+ @proxy_password = proxy_password
421
+ end
422
+
423
+ # Custom attribute writer method with validation
424
+ # @param [Object] url Value to be assigned
425
+ def url=(url)
426
+ if url.nil?
427
+ fail ArgumentError, 'url cannot be nil'
428
+ end
429
+
430
+ if url.to_s.length < 1
431
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
432
+ end
433
+
434
+ @url = url
425
435
  end
426
436
 
427
437
  # Custom attribute writer method with validation
@@ -444,26 +454,6 @@ module PulpAnsibleClient
444
454
  @ca_cert = ca_cert
445
455
  end
446
456
 
447
- # Custom attribute writer method with validation
448
- # @param [Object] proxy_password Value to be assigned
449
- def proxy_password=(proxy_password)
450
- if !proxy_password.nil? && proxy_password.to_s.length < 1
451
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
452
- end
453
-
454
- @proxy_password = proxy_password
455
- end
456
-
457
- # Custom attribute writer method with validation
458
- # @param [Object] password Value to be assigned
459
- def password=(password)
460
- if !password.nil? && password.to_s.length < 1
461
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
462
- end
463
-
464
- @password = password
465
- end
466
-
467
457
  # Custom attribute writer method with validation
468
458
  # @param [Object] proxy_username Value to be assigned
469
459
  def proxy_username=(proxy_username)
@@ -485,57 +475,67 @@ module PulpAnsibleClient
485
475
  end
486
476
 
487
477
  # Custom attribute writer method with validation
488
- # @param [Object] connect_timeout Value to be assigned
489
- def connect_timeout=(connect_timeout)
490
- if !connect_timeout.nil? && connect_timeout < 0.0
491
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
478
+ # @param [Object] proxy_url Value to be assigned
479
+ def proxy_url=(proxy_url)
480
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
481
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
492
482
  end
493
483
 
494
- @connect_timeout = connect_timeout
484
+ @proxy_url = proxy_url
495
485
  end
496
486
 
497
487
  # Custom attribute writer method with validation
498
- # @param [Object] username Value to be assigned
499
- def username=(username)
500
- if !username.nil? && username.to_s.length < 1
501
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
488
+ # @param [Object] password Value to be assigned
489
+ def password=(password)
490
+ if !password.nil? && password.to_s.length < 1
491
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
502
492
  end
503
493
 
504
- @username = username
494
+ @password = password
505
495
  end
506
496
 
507
497
  # Custom attribute writer method with validation
508
- # @param [Object] client_cert Value to be assigned
509
- def client_cert=(client_cert)
510
- if !client_cert.nil? && client_cert.to_s.length < 1
511
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
498
+ # @param [Object] name Value to be assigned
499
+ def name=(name)
500
+ if name.nil?
501
+ fail ArgumentError, 'name cannot be nil'
512
502
  end
513
503
 
514
- @client_cert = client_cert
504
+ if name.to_s.length < 1
505
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
506
+ end
507
+
508
+ @name = name
515
509
  end
516
510
 
517
511
  # Custom attribute writer method with validation
518
- # @param [Object] proxy_url Value to be assigned
519
- def proxy_url=(proxy_url)
520
- if !proxy_url.nil? && proxy_url.to_s.length < 1
521
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
512
+ # @param [Object] username Value to be assigned
513
+ def username=(username)
514
+ if !username.nil? && username.to_s.length < 1
515
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
522
516
  end
523
517
 
524
- @proxy_url = proxy_url
518
+ @username = username
525
519
  end
526
520
 
527
521
  # Custom attribute writer method with validation
528
- # @param [Object] name Value to be assigned
529
- def name=(name)
530
- if name.nil?
531
- fail ArgumentError, 'name cannot be nil'
522
+ # @param [Object] connect_timeout Value to be assigned
523
+ def connect_timeout=(connect_timeout)
524
+ if !connect_timeout.nil? && connect_timeout < 0.0
525
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
532
526
  end
533
527
 
534
- if name.to_s.length < 1
535
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
528
+ @connect_timeout = connect_timeout
529
+ end
530
+
531
+ # Custom attribute writer method with validation
532
+ # @param [Object] client_key Value to be assigned
533
+ def client_key=(client_key)
534
+ if !client_key.nil? && client_key.to_s.length < 1
535
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
536
536
  end
537
537
 
538
- @name = name
538
+ @client_key = client_key
539
539
  end
540
540
 
541
541
  # Custom attribute writer method with validation
@@ -557,26 +557,26 @@ module PulpAnsibleClient
557
557
  def ==(o)
558
558
  return true if self.equal?(o)
559
559
  self.class == o.class &&
560
- url == o.url &&
561
- download_concurrency == o.download_concurrency &&
562
560
  sock_connect_timeout == o.sock_connect_timeout &&
563
- client_key == o.client_key &&
564
- tls_validation == o.tls_validation &&
561
+ rate_limit == o.rate_limit &&
562
+ download_concurrency == o.download_concurrency &&
563
+ client_cert == o.client_cert &&
564
+ max_retries == o.max_retries &&
565
+ proxy_password == o.proxy_password &&
566
+ url == o.url &&
565
567
  total_timeout == o.total_timeout &&
566
568
  ca_cert == o.ca_cert &&
567
- proxy_password == o.proxy_password &&
568
- password == o.password &&
569
- rate_limit == o.rate_limit &&
570
569
  proxy_username == o.proxy_username &&
571
- sock_read_timeout == o.sock_read_timeout &&
572
570
  headers == o.headers &&
573
- max_retries == o.max_retries &&
574
- connect_timeout == o.connect_timeout &&
575
- username == o.username &&
576
- pulp_labels == o.pulp_labels &&
577
- client_cert == o.client_cert &&
571
+ sock_read_timeout == o.sock_read_timeout &&
578
572
  proxy_url == o.proxy_url &&
573
+ password == o.password &&
574
+ pulp_labels == o.pulp_labels &&
575
+ tls_validation == o.tls_validation &&
579
576
  name == o.name &&
577
+ username == o.username &&
578
+ connect_timeout == o.connect_timeout &&
579
+ client_key == o.client_key &&
580
580
  metadata_only == o.metadata_only &&
581
581
  git_ref == o.git_ref
582
582
  end
@@ -590,7 +590,7 @@ module PulpAnsibleClient
590
590
  # Calculates hash code according to all attributes.
591
591
  # @return [Integer] Hash code
592
592
  def hash
593
- [url, download_concurrency, sock_connect_timeout, client_key, tls_validation, total_timeout, ca_cert, proxy_password, password, rate_limit, proxy_username, sock_read_timeout, headers, max_retries, connect_timeout, username, pulp_labels, client_cert, proxy_url, name, metadata_only, git_ref].hash
593
+ [sock_connect_timeout, rate_limit, download_concurrency, client_cert, max_retries, proxy_password, url, total_timeout, ca_cert, proxy_username, headers, sock_read_timeout, proxy_url, password, pulp_labels, tls_validation, name, username, connect_timeout, client_key, metadata_only, git_ref].hash
594
594
  end
595
595
 
596
596
  # Builds the object from hash