pulp_ansible_client 0.7.1 → 0.7.2

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 (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -6
  3. data/docs/AnsibleCollectionRemote.md +7 -1
  4. data/docs/AnsibleCollectionRemoteResponse.md +3 -7
  5. data/docs/AnsibleCollectionVersionResponse.md +3 -3
  6. data/docs/AnsibleCollectionsApi.md +4 -4
  7. data/docs/AnsibleRoleRemote.md +7 -1
  8. data/docs/AnsibleRoleRemoteResponse.md +3 -7
  9. data/docs/AnsibleRoleResponse.md +3 -3
  10. data/docs/ContentCollectionVersionsApi.md +18 -18
  11. data/docs/ContentRolesApi.md +12 -12
  12. data/docs/ContentSummary.md +3 -3
  13. data/docs/ContentSummaryResponse.md +3 -3
  14. data/docs/DistributionsAnsibleApi.md +20 -20
  15. data/docs/PatchedansibleCollectionRemote.md +7 -1
  16. data/docs/PatchedansibleRoleRemote.md +7 -1
  17. data/docs/PulpAnsibleGalaxyApiCollectionsApi.md +6 -6
  18. data/docs/PulpAnsibleGalaxyApiV3AllApi.md +6 -24
  19. data/docs/PulpAnsibleGalaxyApiV3VersionsApi.md +18 -18
  20. data/docs/RemotesCollectionApi.md +24 -24
  21. data/docs/RemotesRoleApi.md +24 -24
  22. data/docs/RepositoriesAnsibleApi.md +12 -12
  23. data/docs/RepositoriesAnsibleVersionsApi.md +28 -28
  24. data/lib/pulp_ansible_client/api/ansible_collections_api.rb +4 -4
  25. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +18 -18
  26. data/lib/pulp_ansible_client/api/content_roles_api.rb +12 -12
  27. data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +22 -22
  28. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb +6 -6
  29. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_all_api.rb +6 -33
  30. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_versions_api.rb +18 -18
  31. data/lib/pulp_ansible_client/api/remotes_collection_api.rb +26 -26
  32. data/lib/pulp_ansible_client/api/remotes_role_api.rb +26 -26
  33. data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +13 -13
  34. data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +30 -30
  35. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +36 -2
  36. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +14 -35
  37. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
  38. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +36 -2
  39. data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +14 -35
  40. data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
  41. data/lib/pulp_ansible_client/models/content_summary.rb +12 -6
  42. data/lib/pulp_ansible_client/models/content_summary_response.rb +12 -6
  43. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +36 -2
  44. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +36 -2
  45. data/lib/pulp_ansible_client/version.rb +1 -1
  46. data/spec/api/ansible_collections_api_spec.rb +2 -2
  47. data/spec/api/content_collection_versions_api_spec.rb +9 -9
  48. data/spec/api/content_roles_api_spec.rb +6 -6
  49. data/spec/api/distributions_ansible_api_spec.rb +10 -10
  50. data/spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb +3 -3
  51. data/spec/api/pulp_ansible_galaxy_api_v3_all_api_spec.rb +3 -12
  52. data/spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb +9 -9
  53. data/spec/api/remotes_collection_api_spec.rb +12 -12
  54. data/spec/api/remotes_role_api_spec.rb +12 -12
  55. data/spec/api/repositories_ansible_api_spec.rb +6 -6
  56. data/spec/api/repositories_ansible_versions_api_spec.rb +14 -14
  57. data/spec/models/ansible_collection_remote_response_spec.rb +6 -18
  58. data/spec/models/ansible_collection_remote_spec.rb +18 -0
  59. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  60. data/spec/models/ansible_role_remote_response_spec.rb +6 -18
  61. data/spec/models/ansible_role_remote_spec.rb +18 -0
  62. data/spec/models/ansible_role_response_spec.rb +3 -3
  63. data/spec/models/patchedansible_collection_remote_spec.rb +18 -0
  64. data/spec/models/patchedansible_role_remote_spec.rb +18 -0
  65. metadata +65 -65
@@ -74,6 +74,18 @@ describe 'AnsibleCollectionRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' 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
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -128,6 +140,12 @@ describe 'AnsibleCollectionRemote' do
128
140
  end
129
141
  end
130
142
 
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
131
149
  describe 'test attribute "rate_limit"' do
132
150
  it 'should work' do
133
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,19 +32,19 @@ describe 'AnsibleCollectionVersionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "pulp_href"' 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 "pulp_href"' do
41
+ describe 'test attribute "artifact"' 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 "artifact"' do
47
+ describe 'test attribute "pulp_created"' 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
@@ -68,12 +68,6 @@ describe 'AnsibleRoleRemoteResponse' do
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "client_key"' do
72
- it 'should work' do
73
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
- end
75
- end
76
-
77
71
  describe 'test attribute "tls_validation"' do
78
72
  it 'should work' do
79
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,18 +80,6 @@ describe 'AnsibleRoleRemoteResponse' do
86
80
  end
87
81
  end
88
82
 
89
- describe 'test attribute "username"' do
90
- it 'should work' do
91
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
- end
93
- end
94
-
95
- describe 'test attribute "password"' do
96
- it 'should work' do
97
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
- end
99
- end
100
-
101
83
  describe 'test attribute "pulp_labels"' do
102
84
  it 'should work' do
103
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -146,6 +128,12 @@ describe 'AnsibleRoleRemoteResponse' do
146
128
  end
147
129
  end
148
130
 
131
+ describe 'test attribute "headers"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
149
137
  describe 'test attribute "rate_limit"' do
150
138
  it 'should work' do
151
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -74,6 +74,18 @@ describe 'AnsibleRoleRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' 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
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -128,6 +140,12 @@ describe 'AnsibleRoleRemote' do
128
140
  end
129
141
  end
130
142
 
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
131
149
  describe 'test attribute "rate_limit"' do
132
150
  it 'should work' do
133
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,19 +32,19 @@ describe 'AnsibleRoleResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleRoleResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "pulp_href"' 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 "pulp_href"' do
41
+ describe 'test attribute "artifact"' 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 "artifact"' do
47
+ describe 'test attribute "pulp_created"' 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
@@ -74,6 +74,18 @@ describe 'PatchedansibleCollectionRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' 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
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -128,6 +140,12 @@ describe 'PatchedansibleCollectionRemote' do
128
140
  end
129
141
  end
130
142
 
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
131
149
  describe 'test attribute "rate_limit"' do
132
150
  it 'should work' do
133
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -74,6 +74,18 @@ describe 'PatchedansibleRoleRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' 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
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -128,6 +140,12 @@ describe 'PatchedansibleRoleRemote' do
128
140
  end
129
141
  end
130
142
 
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
131
149
  describe 'test attribute "rate_limit"' do
132
150
  it 'should work' do
133
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_ansible_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-04 00:00:00.000000000 Z
11
+ date: 2021-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -360,90 +360,90 @@ signing_key:
360
360
  specification_version: 4
361
361
  summary: Pulp 3 API Ruby Gem
362
362
  test_files:
363
- - spec/api/distributions_ansible_api_spec.rb
364
- - spec/api/api_collections_api_spec.rb
365
- - spec/api/ansible_collections_api_spec.rb
363
+ - spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
364
+ - spec/api/ansible_copy_api_spec.rb
366
365
  - spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
367
- - spec/api/pulp_ansible_api_api_spec.rb
368
- - spec/api/remotes_collection_api_spec.rb
369
- - spec/api/collection_import_api_spec.rb
370
- - spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
371
366
  - spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
372
- - spec/api/repositories_ansible_versions_api_spec.rb
373
- - spec/api/ansible_copy_api_spec.rb
374
- - spec/api/repositories_ansible_api_spec.rb
375
- - spec/api/content_roles_api_spec.rb
376
- - spec/api/pulp_ansible_galaxy_v3_api_spec.rb
377
- - spec/api/galaxy_detail_api_spec.rb
378
367
  - spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb
379
- - spec/api/content_collection_versions_api_spec.rb
368
+ - spec/api/pulp_ansible_galaxy_v3_api_spec.rb
369
+ - spec/api/repositories_ansible_api_spec.rb
380
370
  - spec/api/remotes_role_api_spec.rb
381
- - spec/api/pulp_ansible_tags_api_spec.rb
382
- - spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
371
+ - spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
383
372
  - spec/api/api_roles_api_spec.rb
373
+ - spec/api/api_collections_api_spec.rb
374
+ - spec/api/repositories_ansible_versions_api_spec.rb
375
+ - spec/api/pulp_ansible_api_api_spec.rb
376
+ - spec/api/content_roles_api_spec.rb
377
+ - spec/api/remotes_collection_api_spec.rb
378
+ - spec/api/distributions_ansible_api_spec.rb
384
379
  - spec/api/pulp_ansible_galaxy_api_v3_all_api_spec.rb
380
+ - spec/api/galaxy_detail_api_spec.rb
385
381
  - spec/api/versions_api_spec.rb
382
+ - spec/api/collection_import_api_spec.rb
383
+ - spec/api/ansible_collections_api_spec.rb
384
+ - spec/api/pulp_ansible_tags_api_spec.rb
385
+ - spec/api/content_collection_versions_api_spec.rb
386
386
  - spec/api_client_spec.rb
387
387
  - spec/configuration_spec.rb
388
- - spec/models/repository_version_spec.rb
389
- - spec/models/repository_version_response_spec.rb
390
- - spec/models/async_operation_response_spec.rb
391
- - spec/models/galaxy_collection_response_spec.rb
392
388
  - spec/models/paginated_collection_response_list_spec.rb
393
- - spec/models/paginated_galaxy_role_response_list_spec.rb
394
- - spec/models/collection_namespace_response_spec.rb
395
- - spec/models/ansible_collection_version_response_spec.rb
396
- - spec/models/patchedansible_ansible_distribution_spec.rb
397
- - spec/models/galaxy_role_version_response_spec.rb
398
389
  - spec/models/ansible_ansible_repository_spec.rb
399
- - spec/models/copy_spec.rb
400
- - spec/models/content_summary_response_spec.rb
401
- - spec/models/paginated_repository_version_response_list_spec.rb
402
- - spec/models/content_summary_spec.rb
403
- - spec/models/patchedansible_role_remote_spec.rb
404
- - spec/models/paginatedansible_collection_remote_response_list_spec.rb
405
- - spec/models/policy_enum_spec.rb
406
- - spec/models/ansible_collection_version_spec.rb
407
- - spec/models/paginatedansible_collection_response_list_spec.rb
390
+ - spec/models/collection_namespace_response_spec.rb
408
391
  - spec/models/ansible_ansible_distribution_response_spec.rb
409
- - spec/models/paginatedansible_collection_version_response_list_spec.rb
410
- - spec/models/repo_metadata_response_spec.rb
411
- - spec/models/ansible_ansible_distribution_spec.rb
412
- - spec/models/collection_import_detail_response_spec.rb
413
- - spec/models/paginated_galaxy_role_version_response_list_spec.rb
414
- - spec/models/collection_one_shot_spec.rb
415
- - spec/models/paginated_galaxy_collection_version_response_list_spec.rb
416
- - spec/models/galaxy_collection_version_response_spec.rb
417
- - spec/models/ansible_role_remote_spec.rb
418
- - spec/models/paginatedansible_ansible_repository_response_list_spec.rb
419
- - spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
420
- - spec/models/ansible_role_spec.rb
421
- - spec/models/collection_version_docs_response_spec.rb
422
- - spec/models/paginated_collection_response_list_meta_spec.rb
423
- - spec/models/paginated_collection_response_list_links_spec.rb
424
- - spec/models/paginatedansible_role_response_list_spec.rb
392
+ - spec/models/patchedansible_role_remote_spec.rb
393
+ - spec/models/repository_version_response_spec.rb
394
+ - spec/models/paginated_galaxy_role_response_list_spec.rb
425
395
  - spec/models/paginated_galaxy_collection_response_list_spec.rb
426
- - spec/models/ansible_collection_remote_response_spec.rb
427
396
  - spec/models/unpaginated_collection_version_response_spec.rb
428
397
  - spec/models/artifact_ref_response_spec.rb
429
- - spec/models/ansible_collection_remote_spec.rb
430
- - spec/models/ansible_collection_response_spec.rb
431
- - spec/models/paginated_tag_response_list_spec.rb
432
- - spec/models/collection_metadata_response_spec.rb
398
+ - spec/models/ansible_ansible_distribution_spec.rb
433
399
  - spec/models/tag_response_spec.rb
434
- - spec/models/paginatedansible_role_remote_response_list_spec.rb
400
+ - spec/models/paginated_collection_response_list_meta_spec.rb
401
+ - spec/models/paginated_collection_response_list_links_spec.rb
402
+ - spec/models/paginatedansible_role_response_list_spec.rb
403
+ - spec/models/galaxy_role_response_spec.rb
404
+ - spec/models/patchedansible_ansible_distribution_spec.rb
435
405
  - spec/models/patchedansible_collection_remote_spec.rb
436
- - spec/models/repository_add_remove_content_spec.rb
437
- - spec/models/ansible_ansible_repository_response_spec.rb
406
+ - spec/models/paginatedansible_role_remote_response_list_spec.rb
407
+ - spec/models/ansible_collection_version_response_spec.rb
408
+ - spec/models/paginated_galaxy_collection_version_response_list_spec.rb
438
409
  - spec/models/collection_response_spec.rb
439
- - spec/models/collection_version_response_spec.rb
410
+ - spec/models/ansible_repository_sync_url_spec.rb
411
+ - spec/models/content_summary_response_spec.rb
412
+ - spec/models/ansible_ansible_repository_response_spec.rb
413
+ - spec/models/paginatedansible_ansible_repository_response_list_spec.rb
414
+ - spec/models/repo_metadata_response_spec.rb
415
+ - spec/models/ansible_role_spec.rb
416
+ - spec/models/ansible_collection_version_spec.rb
417
+ - spec/models/galaxy_collection_response_spec.rb
440
418
  - spec/models/paginated_collection_version_response_list_spec.rb
441
- - spec/models/collection_ref_response_spec.rb
442
- - spec/models/galaxy_collection_spec.rb
419
+ - spec/models/paginatedansible_collection_remote_response_list_spec.rb
420
+ - spec/models/galaxy_collection_version_response_spec.rb
421
+ - spec/models/galaxy_role_version_response_spec.rb
422
+ - spec/models/collection_metadata_response_spec.rb
423
+ - spec/models/paginatedansible_collection_version_response_list_spec.rb
424
+ - spec/models/content_summary_spec.rb
443
425
  - spec/models/ansible_tag_response_spec.rb
444
- - spec/models/ansible_repository_sync_url_spec.rb
445
- - spec/models/galaxy_role_response_spec.rb
426
+ - spec/models/paginated_tag_response_list_spec.rb
427
+ - spec/models/copy_spec.rb
428
+ - spec/models/collection_version_docs_response_spec.rb
429
+ - spec/models/ansible_collection_remote_spec.rb
430
+ - spec/models/ansible_collection_remote_response_spec.rb
446
431
  - spec/models/patchedansible_ansible_repository_spec.rb
432
+ - spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
433
+ - spec/models/galaxy_collection_spec.rb
434
+ - spec/models/paginatedansible_collection_response_list_spec.rb
435
+ - spec/models/collection_ref_response_spec.rb
436
+ - spec/models/repository_version_spec.rb
437
+ - spec/models/ansible_collection_response_spec.rb
438
+ - spec/models/collection_version_response_spec.rb
447
439
  - spec/models/ansible_role_response_spec.rb
440
+ - spec/models/policy_enum_spec.rb
441
+ - spec/models/paginated_galaxy_role_version_response_list_spec.rb
442
+ - spec/models/collection_one_shot_spec.rb
448
443
  - spec/models/ansible_role_remote_response_spec.rb
444
+ - spec/models/repository_add_remove_content_spec.rb
445
+ - spec/models/async_operation_response_spec.rb
446
+ - spec/models/paginated_repository_version_response_list_spec.rb
447
+ - spec/models/ansible_role_remote_spec.rb
448
+ - spec/models/collection_import_detail_response_spec.rb
449
449
  - spec/spec_helper.rb