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 PatchedansibleGitRemote
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,52 +178,44 @@ module PulpAnsibleClient
178
178
  h[k.to_sym] = v
179
179
  }
180
180
 
181
- if attributes.key?(:'url')
182
- self.url = attributes[:'url']
183
- end
184
-
185
- if attributes.key?(:'download_concurrency')
186
- self.download_concurrency = attributes[:'download_concurrency']
187
- end
188
-
189
181
  if attributes.key?(:'sock_connect_timeout')
190
182
  self.sock_connect_timeout = attributes[:'sock_connect_timeout']
191
183
  end
192
184
 
193
- if attributes.key?(:'client_key')
194
- self.client_key = attributes[:'client_key']
185
+ if attributes.key?(:'rate_limit')
186
+ self.rate_limit = attributes[:'rate_limit']
195
187
  end
196
188
 
197
- if attributes.key?(:'tls_validation')
198
- self.tls_validation = attributes[:'tls_validation']
189
+ if attributes.key?(:'download_concurrency')
190
+ self.download_concurrency = attributes[:'download_concurrency']
199
191
  end
200
192
 
201
- if attributes.key?(:'total_timeout')
202
- self.total_timeout = attributes[:'total_timeout']
193
+ if attributes.key?(:'client_cert')
194
+ self.client_cert = attributes[:'client_cert']
203
195
  end
204
196
 
205
- if attributes.key?(:'ca_cert')
206
- self.ca_cert = attributes[:'ca_cert']
197
+ if attributes.key?(:'max_retries')
198
+ self.max_retries = attributes[:'max_retries']
207
199
  end
208
200
 
209
201
  if attributes.key?(:'proxy_password')
210
202
  self.proxy_password = attributes[:'proxy_password']
211
203
  end
212
204
 
213
- if attributes.key?(:'password')
214
- self.password = attributes[:'password']
205
+ if attributes.key?(:'url')
206
+ self.url = attributes[:'url']
215
207
  end
216
208
 
217
- if attributes.key?(:'rate_limit')
218
- self.rate_limit = attributes[:'rate_limit']
209
+ if attributes.key?(:'total_timeout')
210
+ self.total_timeout = attributes[:'total_timeout']
219
211
  end
220
212
 
221
- if attributes.key?(:'proxy_username')
222
- self.proxy_username = attributes[:'proxy_username']
213
+ if attributes.key?(:'ca_cert')
214
+ self.ca_cert = attributes[:'ca_cert']
223
215
  end
224
216
 
225
- if attributes.key?(:'sock_read_timeout')
226
- self.sock_read_timeout = attributes[:'sock_read_timeout']
217
+ if attributes.key?(:'proxy_username')
218
+ self.proxy_username = attributes[:'proxy_username']
227
219
  end
228
220
 
229
221
  if attributes.key?(:'headers')
@@ -232,16 +224,16 @@ module PulpAnsibleClient
232
224
  end
233
225
  end
234
226
 
235
- if attributes.key?(:'max_retries')
236
- self.max_retries = attributes[:'max_retries']
227
+ if attributes.key?(:'sock_read_timeout')
228
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
237
229
  end
238
230
 
239
- if attributes.key?(:'connect_timeout')
240
- self.connect_timeout = attributes[:'connect_timeout']
231
+ if attributes.key?(:'proxy_url')
232
+ self.proxy_url = attributes[:'proxy_url']
241
233
  end
242
234
 
243
- if attributes.key?(:'username')
244
- self.username = attributes[:'username']
235
+ if attributes.key?(:'password')
236
+ self.password = attributes[:'password']
245
237
  end
246
238
 
247
239
  if attributes.key?(:'pulp_labels')
@@ -250,18 +242,26 @@ module PulpAnsibleClient
250
242
  end
251
243
  end
252
244
 
253
- if attributes.key?(:'client_cert')
254
- self.client_cert = attributes[:'client_cert']
255
- end
256
-
257
- if attributes.key?(:'proxy_url')
258
- self.proxy_url = attributes[:'proxy_url']
245
+ if attributes.key?(:'tls_validation')
246
+ self.tls_validation = attributes[:'tls_validation']
259
247
  end
260
248
 
261
249
  if attributes.key?(:'name')
262
250
  self.name = attributes[:'name']
263
251
  end
264
252
 
253
+ if attributes.key?(:'username')
254
+ self.username = attributes[:'username']
255
+ end
256
+
257
+ if attributes.key?(:'connect_timeout')
258
+ self.connect_timeout = attributes[:'connect_timeout']
259
+ end
260
+
261
+ if attributes.key?(:'client_key')
262
+ self.client_key = attributes[:'client_key']
263
+ end
264
+
265
265
  if attributes.key?(:'metadata_only')
266
266
  self.metadata_only = attributes[:'metadata_only']
267
267
  end
@@ -276,20 +276,24 @@ module PulpAnsibleClient
276
276
  def list_invalid_properties
277
277
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
278
278
  invalid_properties = Array.new
279
- if !@url.nil? && @url.to_s.length < 1
280
- invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
279
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
280
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
281
281
  end
282
282
 
283
283
  if !@download_concurrency.nil? && @download_concurrency < 1
284
284
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
285
285
  end
286
286
 
287
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
288
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
287
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
288
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
289
289
  end
290
290
 
291
- if !@client_key.nil? && @client_key.to_s.length < 1
292
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
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.')
293
+ end
294
+
295
+ if !@url.nil? && @url.to_s.length < 1
296
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
293
297
  end
294
298
 
295
299
  if !@total_timeout.nil? && @total_timeout < 0.0
@@ -300,14 +304,6 @@ module PulpAnsibleClient
300
304
  invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
301
305
  end
302
306
 
303
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
304
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
305
- end
306
-
307
- if !@password.nil? && @password.to_s.length < 1
308
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
309
- end
310
-
311
307
  if !@proxy_username.nil? && @proxy_username.to_s.length < 1
312
308
  invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
313
309
  end
@@ -316,24 +312,28 @@ module PulpAnsibleClient
316
312
  invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
317
313
  end
318
314
 
319
- if !@connect_timeout.nil? && @connect_timeout < 0.0
320
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
315
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
316
+ invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
321
317
  end
322
318
 
323
- if !@username.nil? && @username.to_s.length < 1
324
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
319
+ if !@password.nil? && @password.to_s.length < 1
320
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
325
321
  end
326
322
 
327
- if !@client_cert.nil? && @client_cert.to_s.length < 1
328
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
323
+ if !@name.nil? && @name.to_s.length < 1
324
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
329
325
  end
330
326
 
331
- if !@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.')
327
+ if !@username.nil? && @username.to_s.length < 1
328
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
333
329
  end
334
330
 
335
- if !@name.nil? && @name.to_s.length < 1
336
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
331
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
332
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
333
+ end
334
+
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
337
  end
338
338
 
339
339
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -347,37 +347,33 @@ module PulpAnsibleClient
347
347
  # @return true if the model is valid
348
348
  def valid?
349
349
  warn '[DEPRECATED] the `valid?` method is obsolete'
350
- return false if !@url.nil? && @url.to_s.length < 1
351
- return false if !@download_concurrency.nil? && @download_concurrency < 1
352
350
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
353
- return false if !@client_key.nil? && @client_key.to_s.length < 1
351
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
352
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
353
+ return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
354
+ return false if !@url.nil? && @url.to_s.length < 1
354
355
  return false if !@total_timeout.nil? && @total_timeout < 0.0
355
356
  return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
356
- return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
357
- return false if !@password.nil? && @password.to_s.length < 1
358
357
  return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
359
358
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
360
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
361
- return false if !@username.nil? && @username.to_s.length < 1
362
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
363
359
  return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
360
+ return false if !@password.nil? && @password.to_s.length < 1
364
361
  return false if !@name.nil? && @name.to_s.length < 1
362
+ return false if !@username.nil? && @username.to_s.length < 1
363
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
364
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
365
365
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
366
366
  true
367
367
  end
368
368
 
369
369
  # Custom attribute writer method with validation
370
- # @param [Object] url Value to be assigned
371
- def url=(url)
372
- if url.nil?
373
- fail ArgumentError, 'url cannot be nil'
374
- end
375
-
376
- if url.to_s.length < 1
377
- fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
370
+ # @param [Object] sock_connect_timeout Value to be assigned
371
+ def sock_connect_timeout=(sock_connect_timeout)
372
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
373
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
378
374
  end
379
375
 
380
- @url = url
376
+ @sock_connect_timeout = sock_connect_timeout
381
377
  end
382
378
 
383
379
  # Custom attribute writer method with validation
@@ -391,23 +387,37 @@ module PulpAnsibleClient
391
387
  end
392
388
 
393
389
  # Custom attribute writer method with validation
394
- # @param [Object] sock_connect_timeout Value to be assigned
395
- def sock_connect_timeout=(sock_connect_timeout)
396
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
397
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
390
+ # @param [Object] client_cert Value to be assigned
391
+ def client_cert=(client_cert)
392
+ if !client_cert.nil? && client_cert.to_s.length < 1
393
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
398
394
  end
399
395
 
400
- @sock_connect_timeout = sock_connect_timeout
396
+ @client_cert = client_cert
401
397
  end
402
398
 
403
399
  # Custom attribute writer method with validation
404
- # @param [Object] client_key Value to be assigned
405
- def client_key=(client_key)
406
- if !client_key.nil? && client_key.to_s.length < 1
407
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
400
+ # @param [Object] proxy_password Value to be assigned
401
+ def proxy_password=(proxy_password)
402
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
403
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
408
404
  end
409
405
 
410
- @client_key = client_key
406
+ @proxy_password = proxy_password
407
+ end
408
+
409
+ # Custom attribute writer method with validation
410
+ # @param [Object] url Value to be assigned
411
+ def url=(url)
412
+ if url.nil?
413
+ fail ArgumentError, 'url cannot be nil'
414
+ end
415
+
416
+ if url.to_s.length < 1
417
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
418
+ end
419
+
420
+ @url = url
411
421
  end
412
422
 
413
423
  # Custom attribute writer method with validation
@@ -430,26 +440,6 @@ module PulpAnsibleClient
430
440
  @ca_cert = ca_cert
431
441
  end
432
442
 
433
- # Custom attribute writer method with validation
434
- # @param [Object] proxy_password Value to be assigned
435
- def proxy_password=(proxy_password)
436
- if !proxy_password.nil? && proxy_password.to_s.length < 1
437
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
438
- end
439
-
440
- @proxy_password = proxy_password
441
- end
442
-
443
- # Custom attribute writer method with validation
444
- # @param [Object] password Value to be assigned
445
- def password=(password)
446
- if !password.nil? && password.to_s.length < 1
447
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
448
- end
449
-
450
- @password = password
451
- end
452
-
453
443
  # Custom attribute writer method with validation
454
444
  # @param [Object] proxy_username Value to be assigned
455
445
  def proxy_username=(proxy_username)
@@ -471,57 +461,67 @@ module PulpAnsibleClient
471
461
  end
472
462
 
473
463
  # Custom attribute writer method with validation
474
- # @param [Object] connect_timeout Value to be assigned
475
- def connect_timeout=(connect_timeout)
476
- if !connect_timeout.nil? && connect_timeout < 0.0
477
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
464
+ # @param [Object] proxy_url Value to be assigned
465
+ def proxy_url=(proxy_url)
466
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
467
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
478
468
  end
479
469
 
480
- @connect_timeout = connect_timeout
470
+ @proxy_url = proxy_url
481
471
  end
482
472
 
483
473
  # Custom attribute writer method with validation
484
- # @param [Object] username Value to be assigned
485
- def username=(username)
486
- if !username.nil? && username.to_s.length < 1
487
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
474
+ # @param [Object] password Value to be assigned
475
+ def password=(password)
476
+ if !password.nil? && password.to_s.length < 1
477
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
488
478
  end
489
479
 
490
- @username = username
480
+ @password = password
491
481
  end
492
482
 
493
483
  # Custom attribute writer method with validation
494
- # @param [Object] client_cert Value to be assigned
495
- def client_cert=(client_cert)
496
- if !client_cert.nil? && client_cert.to_s.length < 1
497
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
484
+ # @param [Object] name Value to be assigned
485
+ def name=(name)
486
+ if name.nil?
487
+ fail ArgumentError, 'name cannot be nil'
498
488
  end
499
489
 
500
- @client_cert = client_cert
490
+ if name.to_s.length < 1
491
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
492
+ end
493
+
494
+ @name = name
501
495
  end
502
496
 
503
497
  # Custom attribute writer method with validation
504
- # @param [Object] proxy_url Value to be assigned
505
- def proxy_url=(proxy_url)
506
- if !proxy_url.nil? && proxy_url.to_s.length < 1
507
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
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.'
508
502
  end
509
503
 
510
- @proxy_url = proxy_url
504
+ @username = username
511
505
  end
512
506
 
513
507
  # Custom attribute writer method with validation
514
- # @param [Object] name Value to be assigned
515
- def name=(name)
516
- if name.nil?
517
- fail ArgumentError, 'name cannot be nil'
508
+ # @param [Object] connect_timeout Value to be assigned
509
+ def connect_timeout=(connect_timeout)
510
+ if !connect_timeout.nil? && connect_timeout < 0.0
511
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
518
512
  end
519
513
 
520
- if name.to_s.length < 1
521
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
514
+ @connect_timeout = connect_timeout
515
+ end
516
+
517
+ # Custom attribute writer method with validation
518
+ # @param [Object] client_key Value to be assigned
519
+ def client_key=(client_key)
520
+ if !client_key.nil? && client_key.to_s.length < 1
521
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
522
522
  end
523
523
 
524
- @name = name
524
+ @client_key = client_key
525
525
  end
526
526
 
527
527
  # Custom attribute writer method with validation
@@ -543,26 +543,26 @@ module PulpAnsibleClient
543
543
  def ==(o)
544
544
  return true if self.equal?(o)
545
545
  self.class == o.class &&
546
- url == o.url &&
547
- download_concurrency == o.download_concurrency &&
548
546
  sock_connect_timeout == o.sock_connect_timeout &&
549
- client_key == o.client_key &&
550
- tls_validation == o.tls_validation &&
547
+ rate_limit == o.rate_limit &&
548
+ download_concurrency == o.download_concurrency &&
549
+ client_cert == o.client_cert &&
550
+ max_retries == o.max_retries &&
551
+ proxy_password == o.proxy_password &&
552
+ url == o.url &&
551
553
  total_timeout == o.total_timeout &&
552
554
  ca_cert == o.ca_cert &&
553
- proxy_password == o.proxy_password &&
554
- password == o.password &&
555
- rate_limit == o.rate_limit &&
556
555
  proxy_username == o.proxy_username &&
557
- sock_read_timeout == o.sock_read_timeout &&
558
556
  headers == o.headers &&
559
- max_retries == o.max_retries &&
560
- connect_timeout == o.connect_timeout &&
561
- username == o.username &&
562
- pulp_labels == o.pulp_labels &&
563
- client_cert == o.client_cert &&
557
+ sock_read_timeout == o.sock_read_timeout &&
564
558
  proxy_url == o.proxy_url &&
559
+ password == o.password &&
560
+ pulp_labels == o.pulp_labels &&
561
+ tls_validation == o.tls_validation &&
565
562
  name == o.name &&
563
+ username == o.username &&
564
+ connect_timeout == o.connect_timeout &&
565
+ client_key == o.client_key &&
566
566
  metadata_only == o.metadata_only &&
567
567
  git_ref == o.git_ref
568
568
  end
@@ -576,7 +576,7 @@ module PulpAnsibleClient
576
576
  # Calculates hash code according to all attributes.
577
577
  # @return [Integer] Hash code
578
578
  def hash
579
- [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
579
+ [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
580
580
  end
581
581
 
582
582
  # Builds the object from hash