pulp_ansible_client 0.28.0 → 0.29.0

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