pulp_ansible_client 0.25.5 → 0.25.6

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