pulp_ansible_client 0.28.8 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleAnsibleDistribution.md +3 -5
  4. data/docs/AnsibleAnsibleDistributionResponse.md +4 -12
  5. data/docs/AnsibleCollectionVersionResponse.md +12 -4
  6. data/docs/AnsibleGitRemote.md +22 -22
  7. data/docs/AnsibleGitRemoteResponse.md +24 -24
  8. data/docs/AnsibleRole.md +2 -2
  9. data/docs/AnsibleRoleResponse.md +4 -4
  10. data/docs/ContentCollectionVersionsApi.md +8 -8
  11. data/docs/PatchedansibleAnsibleDistribution.md +3 -5
  12. data/docs/PatchedansibleGitRemote.md +22 -22
  13. data/docs/RemotesGitApi.md +2 -2
  14. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -12
  15. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
  16. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
  17. data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +16 -28
  18. data/lib/pulp_ansible_client/models/ansible_ansible_distribution_response.rb +20 -62
  19. data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata.rb +3 -3
  20. data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata_response.rb +3 -3
  21. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +62 -20
  22. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +189 -189
  23. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +131 -131
  24. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  25. data/lib/pulp_ansible_client/models/ansible_role_response.rb +20 -20
  26. data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +16 -28
  27. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +184 -184
  28. data/lib/pulp_ansible_client/version.rb +1 -1
  29. data/spec/api/content_collection_versions_api_spec.rb +4 -4
  30. data/spec/models/ansible_ansible_distribution_response_spec.rb +4 -28
  31. data/spec/models/ansible_ansible_distribution_spec.rb +4 -10
  32. data/spec/models/ansible_collection_version_response_spec.rb +30 -6
  33. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  34. data/spec/models/ansible_git_remote_spec.rb +18 -18
  35. data/spec/models/ansible_role_response_spec.rb +6 -6
  36. data/spec/models/ansible_role_spec.rb +2 -2
  37. data/spec/models/patchedansible_ansible_distribution_spec.rb +4 -10
  38. data/spec/models/patchedansible_git_remote_spec.rb +18 -18
  39. metadata +122 -122
@@ -16,11 +16,8 @@ require 'time'
16
16
  module PulpAnsibleClient
17
17
  # A serializer for Git Collection Remotes.
18
18
  class PatchedansibleGitRemote
19
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
20
- attr_accessor :ca_cert
21
-
22
- # The username to authenticte to the proxy.
23
- attr_accessor :proxy_username
19
+ # A unique name for this remote.
20
+ attr_accessor :name
24
21
 
25
22
  # The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.
26
23
  attr_accessor :proxy_password
@@ -28,40 +25,37 @@ module PulpAnsibleClient
28
25
  # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
29
26
  attr_accessor :password
30
27
 
31
- # If True, TLS peer validation must be performed.
32
- attr_accessor :tls_validation
28
+ # The username to authenticte to the proxy.
29
+ attr_accessor :proxy_username
33
30
 
34
- attr_accessor :pulp_labels
31
+ # The username to be used for authentication when syncing.
32
+ attr_accessor :username
33
+
34
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
35
+ attr_accessor :ca_cert
35
36
 
36
37
  # The URL of an external content source.
37
38
  attr_accessor :url
38
39
 
40
+ # Limits requests per second for each concurrent downloader
41
+ attr_accessor :rate_limit
42
+
39
43
  # aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
40
44
  attr_accessor :sock_connect_timeout
41
45
 
42
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
43
- attr_accessor :max_retries
44
-
45
- # The proxy URL. Format: scheme://host:port
46
- attr_accessor :proxy_url
47
-
48
- # Headers for aiohttp.Clientsession
49
- attr_accessor :headers
50
-
51
- # A PEM encoded client certificate used for authentication.
52
- attr_accessor :client_cert
46
+ # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
47
+ attr_accessor :connect_timeout
53
48
 
54
49
  # aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
55
50
  attr_accessor :sock_read_timeout
56
51
 
57
- # The username to be used for authentication when syncing.
58
- attr_accessor :username
52
+ attr_accessor :pulp_labels
59
53
 
60
- # aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
61
- attr_accessor :connect_timeout
54
+ # The proxy URL. Format: scheme://host:port
55
+ attr_accessor :proxy_url
62
56
 
63
- # Limits requests per second for each concurrent downloader
64
- attr_accessor :rate_limit
57
+ # Headers for aiohttp.Clientsession
58
+ attr_accessor :headers
65
59
 
66
60
  # A PEM encoded private key used for authentication.
67
61
  attr_accessor :client_key
@@ -69,11 +63,17 @@ module PulpAnsibleClient
69
63
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
70
64
  attr_accessor :total_timeout
71
65
 
66
+ # A PEM encoded client certificate used for authentication.
67
+ attr_accessor :client_cert
68
+
69
+ # If True, TLS peer validation must be performed.
70
+ attr_accessor :tls_validation
71
+
72
72
  # Total number of simultaneous connections. If not set then the default value will be used.
73
73
  attr_accessor :download_concurrency
74
74
 
75
- # A unique name for this remote.
76
- attr_accessor :name
75
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
76
+ attr_accessor :max_retries
77
77
 
78
78
  # If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
79
79
  attr_accessor :metadata_only
@@ -84,26 +84,26 @@ module PulpAnsibleClient
84
84
  # Attribute mapping from ruby-style variable name to JSON key.
85
85
  def self.attribute_map
86
86
  {
87
- :'ca_cert' => :'ca_cert',
88
- :'proxy_username' => :'proxy_username',
87
+ :'name' => :'name',
89
88
  :'proxy_password' => :'proxy_password',
90
89
  :'password' => :'password',
91
- :'tls_validation' => :'tls_validation',
92
- :'pulp_labels' => :'pulp_labels',
90
+ :'proxy_username' => :'proxy_username',
91
+ :'username' => :'username',
92
+ :'ca_cert' => :'ca_cert',
93
93
  :'url' => :'url',
94
+ :'rate_limit' => :'rate_limit',
94
95
  :'sock_connect_timeout' => :'sock_connect_timeout',
95
- :'max_retries' => :'max_retries',
96
+ :'connect_timeout' => :'connect_timeout',
97
+ :'sock_read_timeout' => :'sock_read_timeout',
98
+ :'pulp_labels' => :'pulp_labels',
96
99
  :'proxy_url' => :'proxy_url',
97
100
  :'headers' => :'headers',
98
- :'client_cert' => :'client_cert',
99
- :'sock_read_timeout' => :'sock_read_timeout',
100
- :'username' => :'username',
101
- :'connect_timeout' => :'connect_timeout',
102
- :'rate_limit' => :'rate_limit',
103
101
  :'client_key' => :'client_key',
104
102
  :'total_timeout' => :'total_timeout',
103
+ :'client_cert' => :'client_cert',
104
+ :'tls_validation' => :'tls_validation',
105
105
  :'download_concurrency' => :'download_concurrency',
106
- :'name' => :'name',
106
+ :'max_retries' => :'max_retries',
107
107
  :'metadata_only' => :'metadata_only',
108
108
  :'git_ref' => :'git_ref'
109
109
  }
@@ -117,26 +117,26 @@ module PulpAnsibleClient
117
117
  # Attribute type mapping.
118
118
  def self.openapi_types
119
119
  {
120
- :'ca_cert' => :'String',
121
- :'proxy_username' => :'String',
120
+ :'name' => :'String',
122
121
  :'proxy_password' => :'String',
123
122
  :'password' => :'String',
124
- :'tls_validation' => :'Boolean',
125
- :'pulp_labels' => :'Hash<String, String>',
123
+ :'proxy_username' => :'String',
124
+ :'username' => :'String',
125
+ :'ca_cert' => :'String',
126
126
  :'url' => :'String',
127
+ :'rate_limit' => :'Integer',
127
128
  :'sock_connect_timeout' => :'Float',
128
- :'max_retries' => :'Integer',
129
+ :'connect_timeout' => :'Float',
130
+ :'sock_read_timeout' => :'Float',
131
+ :'pulp_labels' => :'Hash<String, String>',
129
132
  :'proxy_url' => :'String',
130
133
  :'headers' => :'Array<Object>',
131
- :'client_cert' => :'String',
132
- :'sock_read_timeout' => :'Float',
133
- :'username' => :'String',
134
- :'connect_timeout' => :'Float',
135
- :'rate_limit' => :'Integer',
136
134
  :'client_key' => :'String',
137
135
  :'total_timeout' => :'Float',
136
+ :'client_cert' => :'String',
137
+ :'tls_validation' => :'Boolean',
138
138
  :'download_concurrency' => :'Integer',
139
- :'name' => :'String',
139
+ :'max_retries' => :'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
- :'ca_cert',
149
- :'proxy_username',
150
148
  :'proxy_password',
151
149
  :'password',
152
- :'sock_connect_timeout',
153
- :'max_retries',
154
- :'proxy_url',
155
- :'client_cert',
156
- :'sock_read_timeout',
150
+ :'proxy_username',
157
151
  :'username',
158
- :'connect_timeout',
152
+ :'ca_cert',
159
153
  :'rate_limit',
154
+ :'sock_connect_timeout',
155
+ :'connect_timeout',
156
+ :'sock_read_timeout',
157
+ :'proxy_url',
160
158
  :'client_key',
161
159
  :'total_timeout',
160
+ :'client_cert',
162
161
  :'download_concurrency',
162
+ :'max_retries',
163
163
  ])
164
164
  end
165
165
 
@@ -178,12 +178,8 @@ module PulpAnsibleClient
178
178
  h[k.to_sym] = v
179
179
  }
180
180
 
181
- if attributes.key?(:'ca_cert')
182
- self.ca_cert = attributes[:'ca_cert']
183
- end
184
-
185
- if attributes.key?(:'proxy_username')
186
- self.proxy_username = attributes[:'proxy_username']
181
+ if attributes.key?(:'name')
182
+ self.name = attributes[:'name']
187
183
  end
188
184
 
189
185
  if attributes.key?(:'proxy_password')
@@ -194,56 +190,52 @@ module PulpAnsibleClient
194
190
  self.password = attributes[:'password']
195
191
  end
196
192
 
197
- if attributes.key?(:'tls_validation')
198
- self.tls_validation = attributes[:'tls_validation']
199
- end
200
-
201
- if attributes.key?(:'pulp_labels')
202
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
203
- self.pulp_labels = value
204
- end
193
+ if attributes.key?(:'proxy_username')
194
+ self.proxy_username = attributes[:'proxy_username']
205
195
  end
206
196
 
207
- if attributes.key?(:'url')
208
- self.url = attributes[:'url']
197
+ if attributes.key?(:'username')
198
+ self.username = attributes[:'username']
209
199
  end
210
200
 
211
- if attributes.key?(:'sock_connect_timeout')
212
- self.sock_connect_timeout = attributes[:'sock_connect_timeout']
201
+ if attributes.key?(:'ca_cert')
202
+ self.ca_cert = attributes[:'ca_cert']
213
203
  end
214
204
 
215
- if attributes.key?(:'max_retries')
216
- self.max_retries = attributes[:'max_retries']
205
+ if attributes.key?(:'url')
206
+ self.url = attributes[:'url']
217
207
  end
218
208
 
219
- if attributes.key?(:'proxy_url')
220
- self.proxy_url = attributes[:'proxy_url']
209
+ if attributes.key?(:'rate_limit')
210
+ self.rate_limit = attributes[:'rate_limit']
221
211
  end
222
212
 
223
- if attributes.key?(:'headers')
224
- if (value = attributes[:'headers']).is_a?(Array)
225
- self.headers = value
226
- end
213
+ if attributes.key?(:'sock_connect_timeout')
214
+ self.sock_connect_timeout = attributes[:'sock_connect_timeout']
227
215
  end
228
216
 
229
- if attributes.key?(:'client_cert')
230
- self.client_cert = attributes[:'client_cert']
217
+ if attributes.key?(:'connect_timeout')
218
+ self.connect_timeout = attributes[:'connect_timeout']
231
219
  end
232
220
 
233
221
  if attributes.key?(:'sock_read_timeout')
234
222
  self.sock_read_timeout = attributes[:'sock_read_timeout']
235
223
  end
236
224
 
237
- if attributes.key?(:'username')
238
- self.username = attributes[:'username']
225
+ if attributes.key?(:'pulp_labels')
226
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
227
+ self.pulp_labels = value
228
+ end
239
229
  end
240
230
 
241
- if attributes.key?(:'connect_timeout')
242
- self.connect_timeout = attributes[:'connect_timeout']
231
+ if attributes.key?(:'proxy_url')
232
+ self.proxy_url = attributes[:'proxy_url']
243
233
  end
244
234
 
245
- if attributes.key?(:'rate_limit')
246
- self.rate_limit = attributes[:'rate_limit']
235
+ if attributes.key?(:'headers')
236
+ if (value = attributes[:'headers']).is_a?(Array)
237
+ self.headers = value
238
+ end
247
239
  end
248
240
 
249
241
  if attributes.key?(:'client_key')
@@ -254,12 +246,20 @@ module PulpAnsibleClient
254
246
  self.total_timeout = attributes[:'total_timeout']
255
247
  end
256
248
 
249
+ if attributes.key?(:'client_cert')
250
+ self.client_cert = attributes[:'client_cert']
251
+ end
252
+
253
+ if attributes.key?(:'tls_validation')
254
+ self.tls_validation = attributes[:'tls_validation']
255
+ end
256
+
257
257
  if attributes.key?(:'download_concurrency')
258
258
  self.download_concurrency = attributes[:'download_concurrency']
259
259
  end
260
260
 
261
- if attributes.key?(:'name')
262
- self.name = attributes[:'name']
261
+ if attributes.key?(:'max_retries')
262
+ self.max_retries = attributes[:'max_retries']
263
263
  end
264
264
 
265
265
  if attributes.key?(:'metadata_only')
@@ -276,12 +276,8 @@ 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 !@ca_cert.nil? && @ca_cert.to_s.length < 1
280
- invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
281
- end
282
-
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.')
279
+ if !@name.nil? && @name.to_s.length < 1
280
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
285
281
  end
286
282
 
287
283
  if !@proxy_password.nil? && @proxy_password.to_s.length < 1
@@ -292,6 +288,18 @@ module PulpAnsibleClient
292
288
  invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
293
289
  end
294
290
 
291
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
292
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
293
+ end
294
+
295
+ if !@username.nil? && @username.to_s.length < 1
296
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
297
+ end
298
+
299
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
300
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
301
+ end
302
+
295
303
  if !@url.nil? && @url.to_s.length < 1
296
304
  invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
297
305
  end
@@ -300,24 +308,16 @@ module PulpAnsibleClient
300
308
  invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
301
309
  end
302
310
 
303
- if !@proxy_url.nil? && @proxy_url.to_s.length < 1
304
- invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
305
- end
306
-
307
- if !@client_cert.nil? && @client_cert.to_s.length < 1
308
- invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
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.')
309
313
  end
310
314
 
311
315
  if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
312
316
  invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
313
317
  end
314
318
 
315
- if !@username.nil? && @username.to_s.length < 1
316
- invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
317
- end
318
-
319
- if !@connect_timeout.nil? && @connect_timeout < 0.0
320
- invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
319
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
320
+ invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
321
321
  end
322
322
 
323
323
  if !@client_key.nil? && @client_key.to_s.length < 1
@@ -328,8 +328,8 @@ module PulpAnsibleClient
328
328
  invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
329
329
  end
330
330
 
331
- if !@name.nil? && @name.to_s.length < 1
332
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
331
+ if !@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.')
333
333
  end
334
334
 
335
335
  if !@git_ref.nil? && @git_ref.to_s.length < 1
@@ -343,42 +343,36 @@ module PulpAnsibleClient
343
343
  # @return true if the model is valid
344
344
  def valid?
345
345
  warn '[DEPRECATED] the `valid?` method is obsolete'
346
- return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
347
- return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
346
+ return false if !@name.nil? && @name.to_s.length < 1
348
347
  return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
349
348
  return false if !@password.nil? && @password.to_s.length < 1
349
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
350
+ return false if !@username.nil? && @username.to_s.length < 1
351
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
350
352
  return false if !@url.nil? && @url.to_s.length < 1
351
353
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
352
- return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
353
- return false if !@client_cert.nil? && @client_cert.to_s.length < 1
354
- return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
355
- return false if !@username.nil? && @username.to_s.length < 1
356
354
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
355
+ return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
356
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
357
357
  return false if !@client_key.nil? && @client_key.to_s.length < 1
358
358
  return false if !@total_timeout.nil? && @total_timeout < 0.0
359
- return false if !@name.nil? && @name.to_s.length < 1
359
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
360
360
  return false if !@git_ref.nil? && @git_ref.to_s.length < 1
361
361
  true
362
362
  end
363
363
 
364
364
  # Custom attribute writer method with validation
365
- # @param [Object] ca_cert Value to be assigned
366
- def ca_cert=(ca_cert)
367
- if !ca_cert.nil? && ca_cert.to_s.length < 1
368
- fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
365
+ # @param [Object] name Value to be assigned
366
+ def name=(name)
367
+ if name.nil?
368
+ fail ArgumentError, 'name cannot be nil'
369
369
  end
370
370
 
371
- @ca_cert = ca_cert
372
- end
373
-
374
- # Custom attribute writer method with validation
375
- # @param [Object] proxy_username Value to be assigned
376
- def proxy_username=(proxy_username)
377
- if !proxy_username.nil? && proxy_username.to_s.length < 1
378
- fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
371
+ if name.to_s.length < 1
372
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
379
373
  end
380
374
 
381
- @proxy_username = proxy_username
375
+ @name = name
382
376
  end
383
377
 
384
378
  # Custom attribute writer method with validation
@@ -401,6 +395,36 @@ module PulpAnsibleClient
401
395
  @password = password
402
396
  end
403
397
 
398
+ # Custom attribute writer method with validation
399
+ # @param [Object] proxy_username Value to be assigned
400
+ def proxy_username=(proxy_username)
401
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
402
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
403
+ end
404
+
405
+ @proxy_username = proxy_username
406
+ end
407
+
408
+ # Custom attribute writer method with validation
409
+ # @param [Object] username Value to be assigned
410
+ def username=(username)
411
+ if !username.nil? && username.to_s.length < 1
412
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
413
+ end
414
+
415
+ @username = username
416
+ end
417
+
418
+ # Custom attribute writer method with validation
419
+ # @param [Object] ca_cert Value to be assigned
420
+ def ca_cert=(ca_cert)
421
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
422
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
423
+ end
424
+
425
+ @ca_cert = ca_cert
426
+ end
427
+
404
428
  # Custom attribute writer method with validation
405
429
  # @param [Object] url Value to be assigned
406
430
  def url=(url)
@@ -426,23 +450,13 @@ module PulpAnsibleClient
426
450
  end
427
451
 
428
452
  # Custom attribute writer method with validation
429
- # @param [Object] proxy_url Value to be assigned
430
- def proxy_url=(proxy_url)
431
- if !proxy_url.nil? && proxy_url.to_s.length < 1
432
- fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
433
- end
434
-
435
- @proxy_url = proxy_url
436
- end
437
-
438
- # Custom attribute writer method with validation
439
- # @param [Object] client_cert Value to be assigned
440
- def client_cert=(client_cert)
441
- if !client_cert.nil? && client_cert.to_s.length < 1
442
- fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
453
+ # @param [Object] connect_timeout Value to be assigned
454
+ def connect_timeout=(connect_timeout)
455
+ if !connect_timeout.nil? && connect_timeout < 0.0
456
+ fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
443
457
  end
444
458
 
445
- @client_cert = client_cert
459
+ @connect_timeout = connect_timeout
446
460
  end
447
461
 
448
462
  # Custom attribute writer method with validation
@@ -456,23 +470,13 @@ module PulpAnsibleClient
456
470
  end
457
471
 
458
472
  # Custom attribute writer method with validation
459
- # @param [Object] username Value to be assigned
460
- def username=(username)
461
- if !username.nil? && username.to_s.length < 1
462
- fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
463
- end
464
-
465
- @username = username
466
- end
467
-
468
- # Custom attribute writer method with validation
469
- # @param [Object] connect_timeout Value to be assigned
470
- def connect_timeout=(connect_timeout)
471
- if !connect_timeout.nil? && connect_timeout < 0.0
472
- fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
473
+ # @param [Object] proxy_url Value to be assigned
474
+ def proxy_url=(proxy_url)
475
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
476
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
473
477
  end
474
478
 
475
- @connect_timeout = connect_timeout
479
+ @proxy_url = proxy_url
476
480
  end
477
481
 
478
482
  # Custom attribute writer method with validation
@@ -496,17 +500,13 @@ module PulpAnsibleClient
496
500
  end
497
501
 
498
502
  # Custom attribute writer method with validation
499
- # @param [Object] name Value to be assigned
500
- def name=(name)
501
- if name.nil?
502
- fail ArgumentError, 'name cannot be nil'
503
- end
504
-
505
- if name.to_s.length < 1
506
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
503
+ # @param [Object] client_cert Value to be assigned
504
+ def client_cert=(client_cert)
505
+ if !client_cert.nil? && client_cert.to_s.length < 1
506
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
507
507
  end
508
508
 
509
- @name = name
509
+ @client_cert = client_cert
510
510
  end
511
511
 
512
512
  # Custom attribute writer method with validation
@@ -528,26 +528,26 @@ module PulpAnsibleClient
528
528
  def ==(o)
529
529
  return true if self.equal?(o)
530
530
  self.class == o.class &&
531
- ca_cert == o.ca_cert &&
532
- proxy_username == o.proxy_username &&
531
+ name == o.name &&
533
532
  proxy_password == o.proxy_password &&
534
533
  password == o.password &&
535
- tls_validation == o.tls_validation &&
536
- pulp_labels == o.pulp_labels &&
534
+ proxy_username == o.proxy_username &&
535
+ username == o.username &&
536
+ ca_cert == o.ca_cert &&
537
537
  url == o.url &&
538
+ rate_limit == o.rate_limit &&
538
539
  sock_connect_timeout == o.sock_connect_timeout &&
539
- max_retries == o.max_retries &&
540
+ connect_timeout == o.connect_timeout &&
541
+ sock_read_timeout == o.sock_read_timeout &&
542
+ pulp_labels == o.pulp_labels &&
540
543
  proxy_url == o.proxy_url &&
541
544
  headers == o.headers &&
542
- client_cert == o.client_cert &&
543
- sock_read_timeout == o.sock_read_timeout &&
544
- username == o.username &&
545
- connect_timeout == o.connect_timeout &&
546
- rate_limit == o.rate_limit &&
547
545
  client_key == o.client_key &&
548
546
  total_timeout == o.total_timeout &&
547
+ client_cert == o.client_cert &&
548
+ tls_validation == o.tls_validation &&
549
549
  download_concurrency == o.download_concurrency &&
550
- name == o.name &&
550
+ max_retries == o.max_retries &&
551
551
  metadata_only == o.metadata_only &&
552
552
  git_ref == o.git_ref
553
553
  end
@@ -561,7 +561,7 @@ module PulpAnsibleClient
561
561
  # Calculates hash code according to all attributes.
562
562
  # @return [Integer] Hash code
563
563
  def hash
564
- [ca_cert, proxy_username, proxy_password, password, tls_validation, pulp_labels, url, sock_connect_timeout, max_retries, proxy_url, headers, client_cert, sock_read_timeout, username, connect_timeout, rate_limit, client_key, total_timeout, download_concurrency, name, metadata_only, git_ref].hash
564
+ [name, proxy_password, password, proxy_username, username, ca_cert, url, rate_limit, sock_connect_timeout, connect_timeout, sock_read_timeout, pulp_labels, proxy_url, headers, client_key, total_timeout, client_cert, tls_validation, download_concurrency, max_retries, metadata_only, git_ref].hash
565
565
  end
566
566
 
567
567
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.28.8'
14
+ VERSION = '0.29.0'
15
15
  end
@@ -37,12 +37,12 @@ describe 'ContentCollectionVersionsApi' do
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
+ # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
41
+ # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
42
+ # @option opts [File] :file An uploaded file that may be turned into the content unit.
40
43
  # @option opts [String] :artifact Artifact file representing the physical content
41
- # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
42
44
  # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
43
- # @option opts [File] :file An uploaded file that may be turned into the content unit.
44
- # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
45
- # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
45
+ # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
46
46
  # @option opts [String] :expected_name The name of the collection.
47
47
  # @option opts [String] :expected_namespace The namespace of the collection.
48
48
  # @option opts [String] :expected_version The version of the collection.