pulp_ansible_client 0.29.7 → 0.29.9

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