pulp_ansible_client 0.11.0.dev1636946173 → 0.11.0.dev1638328524

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.

Potentially problematic release.


This version of pulp_ansible_client might be problematic. Click here for more details.

Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionVersionResponse.md +2 -2
  4. data/docs/AnsibleGitRemote.md +30 -28
  5. data/docs/AnsibleGitRemoteResponse.md +28 -26
  6. data/docs/AnsibleRoleResponse.md +2 -2
  7. data/docs/CollectionVersionResponse.md +4 -0
  8. data/docs/PatchedansibleGitRemote.md +30 -28
  9. data/docs/UnpaginatedCollectionVersionResponse.md +5 -1
  10. data/lib/pulp_ansible_client/api/ansible_collections_api.rb +16 -0
  11. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -0
  12. data/lib/pulp_ansible_client/api/pulp_ansible_artifacts_collections_v3_api.rb +16 -0
  13. data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +38 -0
  14. data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +34 -0
  15. data/lib/pulp_ansible_client/models/ansible_collection.rb +38 -0
  16. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +191 -0
  17. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +27 -0
  18. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -16
  19. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +336 -153
  20. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +153 -143
  21. data/lib/pulp_ansible_client/models/ansible_role.rb +57 -0
  22. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +158 -0
  23. data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
  24. data/lib/pulp_ansible_client/models/collection_one_shot.rb +60 -0
  25. data/lib/pulp_ansible_client/models/collection_version_response.rb +19 -1
  26. data/lib/pulp_ansible_client/models/galaxy_collection.rb +38 -0
  27. data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +30 -0
  28. data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +30 -0
  29. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +183 -0
  30. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +323 -148
  31. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +150 -0
  32. data/lib/pulp_ansible_client/models/unpaginated_collection_version_response.rb +22 -4
  33. data/lib/pulp_ansible_client/version.rb +1 -1
  34. data/spec/models/ansible_collection_version_response_spec.rb +2 -2
  35. data/spec/models/ansible_git_remote_response_spec.rb +22 -16
  36. data/spec/models/ansible_git_remote_spec.rb +24 -18
  37. data/spec/models/ansible_role_response_spec.rb +2 -2
  38. data/spec/models/collection_version_response_spec.rb +12 -0
  39. data/spec/models/patchedansible_git_remote_spec.rb +24 -18
  40. data/spec/models/unpaginated_collection_version_response_spec.rb +12 -0
  41. metadata +70 -70
@@ -258,6 +258,46 @@ module PulpAnsibleClient
258
258
  # @return Array for valid properties with the reasons
259
259
  def list_invalid_properties
260
260
  invalid_properties = Array.new
261
+ if !@name.nil? && @name.to_s.length < 1
262
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
263
+ end
264
+
265
+ if !@url.nil? && @url.to_s.length < 1
266
+ invalid_properties.push('invalid value for "url", the character length must be great than or equal to 1.')
267
+ end
268
+
269
+ if !@ca_cert.nil? && @ca_cert.to_s.length < 1
270
+ invalid_properties.push('invalid value for "ca_cert", the character length must be great than or equal to 1.')
271
+ end
272
+
273
+ if !@client_cert.nil? && @client_cert.to_s.length < 1
274
+ invalid_properties.push('invalid value for "client_cert", the character length must be great than or equal to 1.')
275
+ end
276
+
277
+ if !@client_key.nil? && @client_key.to_s.length < 1
278
+ invalid_properties.push('invalid value for "client_key", the character length must be great than or equal to 1.')
279
+ end
280
+
281
+ if !@proxy_url.nil? && @proxy_url.to_s.length < 1
282
+ invalid_properties.push('invalid value for "proxy_url", the character length must be great than or equal to 1.')
283
+ end
284
+
285
+ if !@proxy_username.nil? && @proxy_username.to_s.length < 1
286
+ invalid_properties.push('invalid value for "proxy_username", the character length must be great than or equal to 1.')
287
+ end
288
+
289
+ if !@proxy_password.nil? && @proxy_password.to_s.length < 1
290
+ invalid_properties.push('invalid value for "proxy_password", the character length must be great than or equal to 1.')
291
+ end
292
+
293
+ if !@username.nil? && @username.to_s.length < 1
294
+ invalid_properties.push('invalid value for "username", the character length must be great than or equal to 1.')
295
+ end
296
+
297
+ if !@password.nil? && @password.to_s.length < 1
298
+ invalid_properties.push('invalid value for "password", the character length must be great than or equal to 1.')
299
+ end
300
+
261
301
  if !@download_concurrency.nil? && @download_concurrency < 1
262
302
  invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
263
303
  end
@@ -284,6 +324,16 @@ module PulpAnsibleClient
284
324
  # Check to see if the all the properties in the model are valid
285
325
  # @return true if the model is valid
286
326
  def valid?
327
+ return false if !@name.nil? && @name.to_s.length < 1
328
+ return false if !@url.nil? && @url.to_s.length < 1
329
+ return false if !@ca_cert.nil? && @ca_cert.to_s.length < 1
330
+ return false if !@client_cert.nil? && @client_cert.to_s.length < 1
331
+ return false if !@client_key.nil? && @client_key.to_s.length < 1
332
+ return false if !@proxy_url.nil? && @proxy_url.to_s.length < 1
333
+ return false if !@proxy_username.nil? && @proxy_username.to_s.length < 1
334
+ return false if !@proxy_password.nil? && @proxy_password.to_s.length < 1
335
+ return false if !@username.nil? && @username.to_s.length < 1
336
+ return false if !@password.nil? && @password.to_s.length < 1
287
337
  return false if !@download_concurrency.nil? && @download_concurrency < 1
288
338
  return false if !@total_timeout.nil? && @total_timeout < 0.0
289
339
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
@@ -292,6 +342,106 @@ module PulpAnsibleClient
292
342
  true
293
343
  end
294
344
 
345
+ # Custom attribute writer method with validation
346
+ # @param [Object] name Value to be assigned
347
+ def name=(name)
348
+ if !name.nil? && name.to_s.length < 1
349
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
350
+ end
351
+
352
+ @name = name
353
+ end
354
+
355
+ # Custom attribute writer method with validation
356
+ # @param [Object] url Value to be assigned
357
+ def url=(url)
358
+ if !url.nil? && url.to_s.length < 1
359
+ fail ArgumentError, 'invalid value for "url", the character length must be great than or equal to 1.'
360
+ end
361
+
362
+ @url = url
363
+ end
364
+
365
+ # Custom attribute writer method with validation
366
+ # @param [Object] ca_cert Value to be assigned
367
+ def ca_cert=(ca_cert)
368
+ if !ca_cert.nil? && ca_cert.to_s.length < 1
369
+ fail ArgumentError, 'invalid value for "ca_cert", the character length must be great than or equal to 1.'
370
+ end
371
+
372
+ @ca_cert = ca_cert
373
+ end
374
+
375
+ # Custom attribute writer method with validation
376
+ # @param [Object] client_cert Value to be assigned
377
+ def client_cert=(client_cert)
378
+ if !client_cert.nil? && client_cert.to_s.length < 1
379
+ fail ArgumentError, 'invalid value for "client_cert", the character length must be great than or equal to 1.'
380
+ end
381
+
382
+ @client_cert = client_cert
383
+ end
384
+
385
+ # Custom attribute writer method with validation
386
+ # @param [Object] client_key Value to be assigned
387
+ def client_key=(client_key)
388
+ if !client_key.nil? && client_key.to_s.length < 1
389
+ fail ArgumentError, 'invalid value for "client_key", the character length must be great than or equal to 1.'
390
+ end
391
+
392
+ @client_key = client_key
393
+ end
394
+
395
+ # Custom attribute writer method with validation
396
+ # @param [Object] proxy_url Value to be assigned
397
+ def proxy_url=(proxy_url)
398
+ if !proxy_url.nil? && proxy_url.to_s.length < 1
399
+ fail ArgumentError, 'invalid value for "proxy_url", the character length must be great than or equal to 1.'
400
+ end
401
+
402
+ @proxy_url = proxy_url
403
+ end
404
+
405
+ # Custom attribute writer method with validation
406
+ # @param [Object] proxy_username Value to be assigned
407
+ def proxy_username=(proxy_username)
408
+ if !proxy_username.nil? && proxy_username.to_s.length < 1
409
+ fail ArgumentError, 'invalid value for "proxy_username", the character length must be great than or equal to 1.'
410
+ end
411
+
412
+ @proxy_username = proxy_username
413
+ end
414
+
415
+ # Custom attribute writer method with validation
416
+ # @param [Object] proxy_password Value to be assigned
417
+ def proxy_password=(proxy_password)
418
+ if !proxy_password.nil? && proxy_password.to_s.length < 1
419
+ fail ArgumentError, 'invalid value for "proxy_password", the character length must be great than or equal to 1.'
420
+ end
421
+
422
+ @proxy_password = proxy_password
423
+ end
424
+
425
+ # Custom attribute writer method with validation
426
+ # @param [Object] username Value to be assigned
427
+ def username=(username)
428
+ if !username.nil? && username.to_s.length < 1
429
+ fail ArgumentError, 'invalid value for "username", the character length must be great than or equal to 1.'
430
+ end
431
+
432
+ @username = username
433
+ end
434
+
435
+ # Custom attribute writer method with validation
436
+ # @param [Object] password Value to be assigned
437
+ def password=(password)
438
+ if !password.nil? && password.to_s.length < 1
439
+ fail ArgumentError, 'invalid value for "password", the character length must be great than or equal to 1.'
440
+ end
441
+
442
+ @password = password
443
+ end
444
+
295
445
  # Custom attribute writer method with validation
296
446
  # @param [Object] download_concurrency Value to be assigned
297
447
  def download_concurrency=(download_concurrency)
@@ -37,6 +37,10 @@ module PulpAnsibleClient
37
37
 
38
38
  attr_accessor :metadata
39
39
 
40
+ attr_accessor :git_url
41
+
42
+ attr_accessor :git_commit_sha
43
+
40
44
  # Attribute mapping from ruby-style variable name to JSON key.
41
45
  def self.attribute_map
42
46
  {
@@ -50,7 +54,9 @@ module PulpAnsibleClient
50
54
  :'download_url' => :'download_url',
51
55
  :'name' => :'name',
52
56
  :'namespace' => :'namespace',
53
- :'metadata' => :'metadata'
57
+ :'metadata' => :'metadata',
58
+ :'git_url' => :'git_url',
59
+ :'git_commit_sha' => :'git_commit_sha'
54
60
  }
55
61
  end
56
62
 
@@ -67,7 +73,9 @@ module PulpAnsibleClient
67
73
  :'download_url' => :'String',
68
74
  :'name' => :'String',
69
75
  :'namespace' => :'CollectionNamespaceResponse',
70
- :'metadata' => :'CollectionMetadataResponse'
76
+ :'metadata' => :'CollectionMetadataResponse',
77
+ :'git_url' => :'String',
78
+ :'git_commit_sha' => :'String'
71
79
  }
72
80
  end
73
81
 
@@ -136,6 +144,14 @@ module PulpAnsibleClient
136
144
  if attributes.key?(:'metadata')
137
145
  self.metadata = attributes[:'metadata']
138
146
  end
147
+
148
+ if attributes.key?(:'git_url')
149
+ self.git_url = attributes[:'git_url']
150
+ end
151
+
152
+ if attributes.key?(:'git_commit_sha')
153
+ self.git_commit_sha = attributes[:'git_commit_sha']
154
+ end
139
155
  end
140
156
 
141
157
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -191,7 +207,9 @@ module PulpAnsibleClient
191
207
  download_url == o.download_url &&
192
208
  name == o.name &&
193
209
  namespace == o.namespace &&
194
- metadata == o.metadata
210
+ metadata == o.metadata &&
211
+ git_url == o.git_url &&
212
+ git_commit_sha == o.git_commit_sha
195
213
  end
196
214
 
197
215
  # @see the `==` method
@@ -203,7 +221,7 @@ module PulpAnsibleClient
203
221
  # Calculates hash code according to all attributes.
204
222
  # @return [Integer] Hash code
205
223
  def hash
206
- [version, href, created_at, updated_at, requires_ansible, artifact, collection, download_url, name, namespace, metadata].hash
224
+ [version, href, created_at, updated_at, requires_ansible, artifact, collection, download_url, name, namespace, metadata, git_url, git_commit_sha].hash
207
225
  end
208
226
 
209
227
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.11.0.dev1636946173'
14
+ VERSION = '0.11.0.dev1638328524'
15
15
  end
@@ -38,13 +38,13 @@ describe 'AnsibleCollectionVersionResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "artifact"' do
41
+ describe 'test attribute "pulp_created"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_created"' do
47
+ describe 'test attribute "artifact"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
@@ -32,25 +32,25 @@ describe 'AnsibleGitRemoteResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemoteResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "headers"' do
35
+ describe 'test attribute "name"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "proxy_url"' do
41
+ describe 'test attribute "sock_read_timeout"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "total_timeout"' do
47
+ describe 'test attribute "client_cert"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "url"' do
53
+ describe 'test attribute "headers"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
@@ -62,25 +62,31 @@ describe 'AnsibleGitRemoteResponse' do
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "client_cert"' do
65
+ describe 'test attribute "proxy_url"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "sock_connect_timeout"' do
71
+ describe 'test attribute "pulp_last_updated"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "tls_validation"' do
77
+ describe 'test attribute "ca_cert"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "pulp_last_updated"' do
83
+ describe 'test attribute "sock_connect_timeout"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "max_retries"' do
84
90
  it 'should work' do
85
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
92
  end
@@ -92,37 +98,37 @@ describe 'AnsibleGitRemoteResponse' do
92
98
  end
93
99
  end
94
100
 
95
- describe 'test attribute "max_retries"' do
101
+ describe 'test attribute "total_timeout"' do
96
102
  it 'should work' do
97
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
104
  end
99
105
  end
100
106
 
101
- describe 'test attribute "sock_read_timeout"' do
107
+ describe 'test attribute "connect_timeout"' do
102
108
  it 'should work' do
103
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
110
  end
105
111
  end
106
112
 
107
- describe 'test attribute "name"' do
113
+ describe 'test attribute "tls_validation"' do
108
114
  it 'should work' do
109
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
116
  end
111
117
  end
112
118
 
113
- describe 'test attribute "ca_cert"' do
119
+ describe 'test attribute "pulp_labels"' do
114
120
  it 'should work' do
115
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
122
  end
117
123
  end
118
124
 
119
- describe 'test attribute "pulp_created"' do
125
+ describe 'test attribute "url"' do
120
126
  it 'should work' do
121
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
128
  end
123
129
  end
124
130
 
125
- describe 'test attribute "pulp_labels"' do
131
+ describe 'test attribute "pulp_created"' do
126
132
  it 'should work' do
127
133
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
134
  end
@@ -134,13 +140,13 @@ describe 'AnsibleGitRemoteResponse' do
134
140
  end
135
141
  end
136
142
 
137
- describe 'test attribute "connect_timeout"' do
143
+ describe 'test attribute "metadata_only"' do
138
144
  it 'should work' do
139
145
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
146
  end
141
147
  end
142
148
 
143
- describe 'test attribute "metadata_only"' do
149
+ describe 'test attribute "git_ref"' do
144
150
  it 'should work' do
145
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
152
  end
@@ -32,67 +32,67 @@ describe 'AnsibleGitRemote' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemote)
33
33
  end
34
34
  end
35
- describe 'test attribute "headers"' do
35
+ describe 'test attribute "proxy_password"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "proxy_url"' do
41
+ describe 'test attribute "name"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "total_timeout"' do
47
+ describe 'test attribute "username"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "url"' do
53
+ describe 'test attribute "client_key"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "username"' do
59
+ describe 'test attribute "sock_read_timeout"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "password"' do
65
+ describe 'test attribute "client_cert"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "proxy_username"' do
71
+ describe 'test attribute "headers"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "client_cert"' do
77
+ describe 'test attribute "proxy_url"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "sock_connect_timeout"' do
83
+ describe 'test attribute "ca_cert"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "tls_validation"' do
89
+ describe 'test attribute "password"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
93
93
  end
94
94
 
95
- describe 'test attribute "rate_limit"' do
95
+ describe 'test attribute "sock_connect_timeout"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
98
  end
@@ -104,31 +104,31 @@ describe 'AnsibleGitRemote' do
104
104
  end
105
105
  end
106
106
 
107
- describe 'test attribute "client_key"' do
107
+ describe 'test attribute "rate_limit"' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
110
  end
111
111
  end
112
112
 
113
- describe 'test attribute "proxy_password"' do
113
+ describe 'test attribute "total_timeout"' do
114
114
  it 'should work' do
115
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
116
  end
117
117
  end
118
118
 
119
- describe 'test attribute "sock_read_timeout"' do
119
+ describe 'test attribute "proxy_username"' do
120
120
  it 'should work' do
121
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
122
  end
123
123
  end
124
124
 
125
- describe 'test attribute "name"' do
125
+ describe 'test attribute "connect_timeout"' do
126
126
  it 'should work' do
127
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
128
  end
129
129
  end
130
130
 
131
- describe 'test attribute "ca_cert"' do
131
+ describe 'test attribute "tls_validation"' do
132
132
  it 'should work' do
133
133
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
134
  end
@@ -140,13 +140,13 @@ describe 'AnsibleGitRemote' do
140
140
  end
141
141
  end
142
142
 
143
- describe 'test attribute "download_concurrency"' do
143
+ describe 'test attribute "url"' do
144
144
  it 'should work' do
145
145
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
146
  end
147
147
  end
148
148
 
149
- describe 'test attribute "connect_timeout"' do
149
+ describe 'test attribute "download_concurrency"' do
150
150
  it 'should work' do
151
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
152
  end
@@ -158,4 +158,10 @@ describe 'AnsibleGitRemote' do
158
158
  end
159
159
  end
160
160
 
161
+ describe 'test attribute "git_ref"' do
162
+ it 'should work' do
163
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
164
+ end
165
+ end
166
+
161
167
  end
@@ -38,13 +38,13 @@ describe 'AnsibleRoleResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "artifact"' do
41
+ describe 'test attribute "pulp_created"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_created"' do
47
+ describe 'test attribute "artifact"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
@@ -98,6 +98,18 @@ describe 'CollectionVersionResponse' do
98
98
  end
99
99
  end
100
100
 
101
+ describe 'test attribute "git_url"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
107
+ describe 'test attribute "git_commit_sha"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
101
113
  describe 'test attribute "manifest"' do
102
114
  it 'should work' do
103
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers