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 AnsibleGitRemote
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,32 @@ 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']
187
+ else
188
+ self.name = nil
191
189
  end
192
190
 
193
- if attributes.key?(:'sock_connect_timeout')
194
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
191
+ if attributes.key?(:'password')
192
+ self.password = attributes[:'password']
195
193
  end
196
194
 
197
- if attributes.key?(:'proxy_password')
198
- self.proxy_password = attributes[:'proxy_password']
195
+ if attributes.key?(:'headers')
196
+ if (value = attributes[:'headers']).is_a?(Array)
197
+ self.headers = value
198
+ end
199
199
  end
200
200
 
201
- if attributes.key?(:'total_timeout')
202
- self.total_timeout = attributes[:'total_timeout']
201
+ if attributes.key?(:'client_cert')
202
+ self.client_cert = attributes[:'client_cert']
203
203
  end
204
204
 
205
- if attributes.key?(:'download_concurrency')
206
- self.download_concurrency = attributes[:'download_concurrency']
205
+ if attributes.key?(:'sock_connect_timeout')
206
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
207
207
  end
208
208
 
209
209
  if attributes.key?(:'sock_read_timeout')
@@ -216,54 +216,54 @@ module PulpAnsibleClient
216
216
  self.url = nil
217
217
  end
218
218
 
219
- if attributes.key?(:'proxy_url')
220
- self.proxy_url = attributes[:'proxy_url']
219
+ if attributes.key?(:'ca_cert')
220
+ self.ca_cert = attributes[:'ca_cert']
221
221
  end
222
222
 
223
- if attributes.key?(:'pulp_labels')
224
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
225
- self.pulp_labels = value
226
- end
223
+ if attributes.key?(:'tls_validation')
224
+ self.tls_validation = attributes[:'tls_validation']
227
225
  end
228
226
 
229
- if attributes.key?(:'ca_cert')
230
- self.ca_cert = attributes[:'ca_cert']
227
+ if attributes.key?(:'total_timeout')
228
+ self.total_timeout = attributes[:'total_timeout']
231
229
  end
232
230
 
233
- if attributes.key?(:'name')
234
- self.name = attributes[:'name']
235
- else
236
- self.name = nil
231
+ if attributes.key?(:'client_key')
232
+ self.client_key = attributes[:'client_key']
233
+ end
234
+
235
+ if attributes.key?(:'proxy_password')
236
+ self.proxy_password = attributes[:'proxy_password']
237
+ end
238
+
239
+ if attributes.key?(:'max_retries')
240
+ self.max_retries = attributes[:'max_retries']
237
241
  end
238
242
 
239
243
  if attributes.key?(:'username')
240
244
  self.username = attributes[:'username']
241
245
  end
242
246
 
243
- if attributes.key?(:'tls_validation')
244
- self.tls_validation = attributes[:'tls_validation']
247
+ if attributes.key?(:'connect_timeout')
248
+ self.connect_timeout = attributes[:'connect_timeout']
245
249
  end
246
250
 
247
- if attributes.key?(:'rate_limit')
248
- self.rate_limit = attributes[:'rate_limit']
251
+ if attributes.key?(:'proxy_url')
252
+ self.proxy_url = attributes[:'proxy_url']
249
253
  end
250
254
 
251
- if attributes.key?(:'client_cert')
252
- self.client_cert = attributes[:'client_cert']
255
+ if attributes.key?(:'download_concurrency')
256
+ self.download_concurrency = attributes[:'download_concurrency']
253
257
  end
254
258
 
255
- if attributes.key?(:'headers')
256
- if (value = attributes[:'headers']).is_a?(Array)
257
- self.headers = value
259
+ if attributes.key?(:'pulp_labels')
260
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
261
+ self.pulp_labels = value
258
262
  end
259
263
  end
260
264
 
261
- if attributes.key?(:'client_key')
262
- self.client_key = attributes[:'client_key']
263
- end
264
-
265
- if attributes.key?(:'proxy_username')
266
- self.proxy_username = attributes[:'proxy_username']
265
+ if attributes.key?(:'rate_limit')
266
+ self.rate_limit = attributes[:'rate_limit']
267
267
  end
268
268
 
269
269
  if attributes.key?(:'metadata_only')
@@ -280,24 +280,28 @@ 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 !@password.nil? && @password.to_s.length < 1
284
- invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
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.')
285
285
  end
286
286
 
287
- if !@connect_timeout.nil? && @connect_timeout < 0.0
288
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
287
+ if @name.nil?
288
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
289
289
  end
290
290
 
291
- if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
292
- invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
291
+ if @name.to_s.length < 1
292
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
293
293
  end
294
294
 
295
- if !@proxy_password.nil? && @proxy_password.to_s.length < 1
296
- invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
295
+ if !@password.nil? && @password.to_s.length < 1
296
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
297
297
  end
298
298
 
299
- if !@total_timeout.nil? && @total_timeout < 0.0
300
- invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
299
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
300
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
301
+ end
302
+
303
+ if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
304
+ invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
301
305
  end
302
306
 
303
307
  if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
@@ -312,36 +316,32 @@ module PulpAnsibleClient
312
316
  invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
313
317
  end
314
318
 
315
- if !@proxy_url.nil? && @proxy_url.to_s.length < 1
316
- invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
317
- end
318
-
319
319
  if !@ca_cert.nil? && @ca_cert.to_s.length < 1
320
320
  invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
321
321
  end
322
322
 
323
- if @name.nil?
324
- invalid_properties.push('invalid value for "name", name cannot be nil.')
323
+ if !@total_timeout.nil? && @total_timeout < 0.0
324
+ invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
325
325
  end
326
326
 
327
- if @name.to_s.length < 1
328
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
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.')
329
329
  end
330
330
 
331
- if !@username.nil? && @username.to_s.length < 1
332
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
331
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
332
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
333
333
  end
334
334
 
335
- if !@client_cert.nil? && @client_cert.to_s.length < 1
336
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
335
+ if !@username.nil? && @username.to_s.length < 1
336
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
337
337
  end
338
338
 
339
- if !@client_key.nil? && @client_key.to_s.length < 1
340
- invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
339
+ if !@connect_timeout.nil? && @connect_timeout < 0.0
340
+ invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
341
341
  end
342
342
 
343
- if !@proxy_username.nil? && @proxy_username.to_s.length < 1
344
- invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
343
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
344
+ invalid_properties.push('invalid value for "proxy_url", 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,74 +355,78 @@ 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 !@proxy_username.nil? && @proxy_username.to_s.length < 1
359
+ return false if @name.nil?
360
+ return false if @name.to_s.length < 1
358
361
  return false if !@password.nil? && @password.to_s.length < 1
359
- return false if !@connect_timeout.nil? && @connect_timeout < 0.0
362
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
360
363
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
361
- return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
362
- return false if !@total_timeout.nil? && @total_timeout < 0.0
363
364
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
364
365
  return false if @url.nil?
365
366
  return false if @url.to_s.length < 1
366
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
367
367
  return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
368
- return false if @name.nil?
369
- return false if @name.to_s.length < 1
370
- return false if !@username.nil? && @username.to_s.length < 1
371
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
368
+ return false if !@total_timeout.nil? && @total_timeout < 0.0
372
369
  return false if !@client_key.nil? && @client_key.to_s.length < 1
373
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
370
+ return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
371
+ return false if !@username.nil? && @username.to_s.length < 1
372
+ return false if !@connect_timeout.nil? && @connect_timeout < 0.0
373
+ return false if !@proxy_url.nil? && @proxy_url.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
378
  # Custom attribute writer method with validation
379
- # @param [Object] password Value to be assigned
380
- def password=(password)
381
- if !password.nil? && password.to_s.length < 1
382
- fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
379
+ # @param [Object] proxy_username Value to be assigned
380
+ def proxy_username=(proxy_username)
381
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
382
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
383
383
  end
384
384
 
385
- @password = password
385
+ @proxy_username = proxy_username
386
386
  end
387
387
 
388
388
  # Custom attribute writer method with validation
389
- # @param [Object] connect_timeout Value to be assigned
390
- def connect_timeout=(connect_timeout)
391
- if !connect_timeout.nil? && connect_timeout < 0.0
392
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
389
+ # @param [Object] name Value to be assigned
390
+ def name=(name)
391
+ if name.nil?
392
+ fail ArgumentError, 'name cannot be nil'
393
393
  end
394
394
 
395
- @connect_timeout = connect_timeout
395
+ if name.to_s.length < 1
396
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
397
+ end
398
+
399
+ @name = name
396
400
  end
397
401
 
398
402
  # Custom attribute writer method with validation
399
- # @param [Object] sock_connect_timeout Value to be assigned
400
- def sock_connect_timeout=(sock_connect_timeout)
401
- if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
402
- fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
403
+ # @param [Object] password Value to be assigned
404
+ def password=(password)
405
+ if !password.nil? && password.to_s.length < 1
406
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
403
407
  end
404
408
 
405
- @sock_connect_timeout = sock_connect_timeout
409
+ @password = password
406
410
  end
407
411
 
408
412
  # Custom attribute writer method with validation
409
- # @param [Object] proxy_password Value to be assigned
410
- def proxy_password=(proxy_password)
411
- if !proxy_password.nil? && proxy_password.to_s.length < 1
412
- fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
413
+ # @param [Object] client_cert Value to be assigned
414
+ def client_cert=(client_cert)
415
+ if !client_cert.nil? && client_cert.to_s.length < 1
416
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
413
417
  end
414
418
 
415
- @proxy_password = proxy_password
419
+ @client_cert = client_cert
416
420
  end
417
421
 
418
422
  # Custom attribute writer method with validation
419
- # @param [Object] total_timeout Value to be assigned
420
- def total_timeout=(total_timeout)
421
- if !total_timeout.nil? && total_timeout < 0.0
422
- fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
423
+ # @param [Object] sock_connect_timeout Value to be assigned
424
+ def sock_connect_timeout=(sock_connect_timeout)
425
+ if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
426
+ fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
423
427
  end
424
428
 
425
- @total_timeout = total_timeout
429
+ @sock_connect_timeout = sock_connect_timeout
426
430
  end
427
431
 
428
432
  # Custom attribute writer method with validation
@@ -449,16 +453,6 @@ module PulpAnsibleClient
449
453
  @url = url
450
454
  end
451
455
 
452
- # Custom attribute writer method with validation
453
- # @param [Object] proxy_url Value to be assigned
454
- def proxy_url=(proxy_url)
455
- if !proxy_url.nil? && proxy_url.to_s.length < 1
456
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
457
- end
458
-
459
- @proxy_url = proxy_url
460
- end
461
-
462
456
  # Custom attribute writer method with validation
463
457
  # @param [Object] ca_cert Value to be assigned
464
458
  def ca_cert=(ca_cert)
@@ -470,57 +464,63 @@ module PulpAnsibleClient
470
464
  end
471
465
 
472
466
  # Custom attribute writer method with validation
473
- # @param [Object] name Value to be assigned
474
- def name=(name)
475
- if name.nil?
476
- fail ArgumentError, 'name cannot be nil'
467
+ # @param [Object] total_timeout Value to be assigned
468
+ def total_timeout=(total_timeout)
469
+ if !total_timeout.nil? && total_timeout < 0.0
470
+ fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
477
471
  end
478
472
 
479
- if name.to_s.length < 1
480
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
473
+ @total_timeout = total_timeout
474
+ end
475
+
476
+ # Custom attribute writer method with validation
477
+ # @param [Object] client_key Value to be assigned
478
+ def client_key=(client_key)
479
+ if !client_key.nil? && client_key.to_s.length < 1
480
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
481
481
  end
482
482
 
483
- @name = name
483
+ @client_key = client_key
484
484
  end
485
485
 
486
486
  # Custom attribute writer method with validation
487
- # @param [Object] username Value to be assigned
488
- def username=(username)
489
- if !username.nil? && username.to_s.length < 1
490
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
487
+ # @param [Object] proxy_password Value to be assigned
488
+ def proxy_password=(proxy_password)
489
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
490
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
491
491
  end
492
492
 
493
- @username = username
493
+ @proxy_password = proxy_password
494
494
  end
495
495
 
496
496
  # Custom attribute writer method with validation
497
- # @param [Object] client_cert Value to be assigned
498
- def client_cert=(client_cert)
499
- if !client_cert.nil? && client_cert.to_s.length < 1
500
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
497
+ # @param [Object] username Value to be assigned
498
+ def username=(username)
499
+ if !username.nil? && username.to_s.length < 1
500
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
501
501
  end
502
502
 
503
- @client_cert = client_cert
503
+ @username = username
504
504
  end
505
505
 
506
506
  # Custom attribute writer method with validation
507
- # @param [Object] client_key Value to be assigned
508
- def client_key=(client_key)
509
- if !client_key.nil? && client_key.to_s.length < 1
510
- fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
507
+ # @param [Object] connect_timeout Value to be assigned
508
+ def connect_timeout=(connect_timeout)
509
+ if !connect_timeout.nil? && connect_timeout < 0.0
510
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
511
511
  end
512
512
 
513
- @client_key = client_key
513
+ @connect_timeout = connect_timeout
514
514
  end
515
515
 
516
516
  # Custom attribute writer method with validation
517
- # @param [Object] proxy_username Value to be assigned
518
- def proxy_username=(proxy_username)
519
- if !proxy_username.nil? && proxy_username.to_s.length < 1
520
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
517
+ # @param [Object] proxy_url Value to be assigned
518
+ def proxy_url=(proxy_url)
519
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
520
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
521
521
  end
522
522
 
523
- @proxy_username = proxy_username
523
+ @proxy_url = proxy_url
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
+ proxy_username == o.proxy_username &&
546
+ name == o.name &&
545
547
  password == o.password &&
546
- max_retries == o.max_retries &&
547
- connect_timeout == o.connect_timeout &&
548
+ headers == o.headers &&
549
+ client_cert == o.client_cert &&
548
550
  sock_connect_timeout == o.sock_connect_timeout &&
549
- proxy_password == o.proxy_password &&
550
- total_timeout == o.total_timeout &&
551
- download_concurrency == o.download_concurrency &&
552
551
  sock_read_timeout == o.sock_read_timeout &&
553
552
  url == o.url &&
554
- proxy_url == o.proxy_url &&
555
- pulp_labels == o.pulp_labels &&
556
553
  ca_cert == o.ca_cert &&
557
- name == o.name &&
558
- username == o.username &&
559
554
  tls_validation == o.tls_validation &&
560
- rate_limit == o.rate_limit &&
561
- client_cert == o.client_cert &&
562
- headers == o.headers &&
555
+ total_timeout == o.total_timeout &&
563
556
  client_key == o.client_key &&
564
- proxy_username == o.proxy_username &&
557
+ proxy_password == o.proxy_password &&
558
+ max_retries == o.max_retries &&
559
+ username == o.username &&
560
+ connect_timeout == o.connect_timeout &&
561
+ proxy_url == o.proxy_url &&
562
+ download_concurrency == o.download_concurrency &&
563
+ pulp_labels == o.pulp_labels &&
564
+ rate_limit == o.rate_limit &&
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
- [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
578
+ [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
579
579
  end
580
580
 
581
581
  # Builds the object from hash