pulp_ansible_client 0.28.6 → 0.28.7

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