pulp_ansible_client 0.29.9 → 0.30.0

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