pulpcore_client 3.105.2 → 3.106.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 (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -4
  3. data/docs/ArtifactDistributionResponse.md +16 -12
  4. data/docs/DataRepair7272.md +18 -0
  5. data/docs/DataRepair7465.md +18 -0
  6. data/docs/Datarepair7272Api.md +82 -0
  7. data/docs/Datarepair7465Api.md +82 -0
  8. data/docs/DistributionResponse.md +5 -1
  9. data/docs/OpenPGPDistributionResponse.md +2 -0
  10. data/docs/OpenPGPKeyring.md +2 -0
  11. data/docs/OpenPGPKeyringResponse.md +2 -0
  12. data/docs/PatchedOpenPGPKeyring.md +2 -0
  13. data/docs/RepositoriesApi.md +18 -2
  14. data/docs/RepositoriesOpenpgpKeyringApi.md +18 -2
  15. data/docs/RepositoryResponse.md +2 -0
  16. data/lib/pulpcore_client/api/datarepair7272_api.rb +93 -0
  17. data/lib/pulpcore_client/api/datarepair7465_api.rb +93 -0
  18. data/lib/pulpcore_client/api/repositories_api.rb +27 -3
  19. data/lib/pulpcore_client/api/repositories_openpgp_keyring_api.rb +27 -3
  20. data/lib/pulpcore_client/models/artifact_distribution_response.rb +72 -51
  21. data/lib/pulpcore_client/models/data_repair7272.rb +217 -0
  22. data/lib/pulpcore_client/models/data_repair7465.rb +217 -0
  23. data/lib/pulpcore_client/models/distribution_response.rb +27 -6
  24. data/lib/pulpcore_client/models/open_pgp_distribution.rb +1 -1
  25. data/lib/pulpcore_client/models/open_pgp_distribution_response.rb +12 -2
  26. data/lib/pulpcore_client/models/open_pgp_keyring.rb +27 -1
  27. data/lib/pulpcore_client/models/open_pgp_keyring_response.rb +27 -1
  28. data/lib/pulpcore_client/models/patched_open_pgp_distribution.rb +1 -1
  29. data/lib/pulpcore_client/models/patched_open_pgp_keyring.rb +27 -1
  30. data/lib/pulpcore_client/models/repository_response.rb +27 -1
  31. data/lib/pulpcore_client/version.rb +1 -1
  32. data/lib/pulpcore_client.rb +4 -0
  33. data/spec/api/datarepair7272_api_spec.rb +48 -0
  34. data/spec/api/datarepair7465_api_spec.rb +48 -0
  35. data/spec/api/repositories_api_spec.rb +9 -1
  36. data/spec/api/repositories_openpgp_keyring_api_spec.rb +9 -1
  37. data/spec/models/artifact_distribution_response_spec.rb +20 -8
  38. data/spec/models/data_repair7272_spec.rb +36 -0
  39. data/spec/models/data_repair7465_spec.rb +36 -0
  40. data/spec/models/distribution_response_spec.rb +12 -0
  41. data/spec/models/open_pgp_distribution_response_spec.rb +6 -0
  42. data/spec/models/open_pgp_keyring_response_spec.rb +6 -0
  43. data/spec/models/open_pgp_keyring_spec.rb +6 -0
  44. data/spec/models/patched_open_pgp_keyring_spec.rb +6 -0
  45. data/spec/models/repository_response_spec.rb +6 -0
  46. metadata +17 -1
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::DataRepair7272
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpcoreClient::DataRepair7272 do
21
+ let(:instance) { PulpcoreClient::DataRepair7272.new }
22
+
23
+ describe 'test an instance of DataRepair7272' do
24
+ it 'should create an instance of DataRepair7272' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpcoreClient::DataRepair7272)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "dry_run"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpcoreClient::DataRepair7465
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpcoreClient::DataRepair7465 do
21
+ let(:instance) { PulpcoreClient::DataRepair7465.new }
22
+
23
+ describe 'test an instance of DataRepair7465' do
24
+ it 'should create an instance of DataRepair7465' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpcoreClient::DataRepair7465)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "dry_run"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -69,6 +69,12 @@ describe PulpcoreClient::DistributionResponse do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "content_guard_prn"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "no_content_change_since"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -99,4 +105,10 @@ describe PulpcoreClient::DistributionResponse do
99
105
  end
100
106
  end
101
107
 
108
+ describe 'test attribute "repository_version"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
102
114
  end
@@ -69,6 +69,12 @@ describe PulpcoreClient::OpenPGPDistributionResponse do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "content_guard_prn"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "no_content_change_since"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -87,6 +87,12 @@ describe PulpcoreClient::OpenPGPKeyringResponse do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "retain_checkpoints"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
90
96
  describe 'test attribute "remote"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -51,6 +51,12 @@ describe PulpcoreClient::OpenPGPKeyring do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "retain_checkpoints"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "remote"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -51,6 +51,12 @@ describe PulpcoreClient::PatchedOpenPGPKeyring do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "retain_checkpoints"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "remote"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -87,6 +87,12 @@ describe PulpcoreClient::RepositoryResponse do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "retain_checkpoints"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
90
96
  describe 'test attribute "remote"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulpcore_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.105.2
4
+ version: 3.106.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -114,7 +114,11 @@ files:
114
114
  - docs/ContentguardsContentRedirectApi.md
115
115
  - docs/ContentguardsHeaderApi.md
116
116
  - docs/ContentguardsRbacApi.md
117
+ - docs/DataRepair7272.md
118
+ - docs/DataRepair7465.md
117
119
  - docs/DatabaseConnectionResponse.md
120
+ - docs/Datarepair7272Api.md
121
+ - docs/Datarepair7465Api.md
118
122
  - docs/DistributionResponse.md
119
123
  - docs/DistributionsApi.md
120
124
  - docs/DistributionsArtifactsApi.md
@@ -327,6 +331,8 @@ files:
327
331
  - lib/pulpcore_client/api/contentguards_content_redirect_api.rb
328
332
  - lib/pulpcore_client/api/contentguards_header_api.rb
329
333
  - lib/pulpcore_client/api/contentguards_rbac_api.rb
334
+ - lib/pulpcore_client/api/datarepair7272_api.rb
335
+ - lib/pulpcore_client/api/datarepair7465_api.rb
330
336
  - lib/pulpcore_client/api/distributions_api.rb
331
337
  - lib/pulpcore_client/api/distributions_artifacts_api.rb
332
338
  - lib/pulpcore_client/api/distributions_openpgp_api.rb
@@ -380,6 +386,8 @@ files:
380
386
  - lib/pulpcore_client/models/content_redirect_content_guard_response.rb
381
387
  - lib/pulpcore_client/models/content_settings_response.rb
382
388
  - lib/pulpcore_client/models/content_summary_response.rb
389
+ - lib/pulpcore_client/models/data_repair7272.rb
390
+ - lib/pulpcore_client/models/data_repair7465.rb
383
391
  - lib/pulpcore_client/models/database_connection_response.rb
384
392
  - lib/pulpcore_client/models/distribution_response.rb
385
393
  - lib/pulpcore_client/models/domain.rb
@@ -557,6 +565,8 @@ files:
557
565
  - spec/api/contentguards_content_redirect_api_spec.rb
558
566
  - spec/api/contentguards_header_api_spec.rb
559
567
  - spec/api/contentguards_rbac_api_spec.rb
568
+ - spec/api/datarepair7272_api_spec.rb
569
+ - spec/api/datarepair7465_api_spec.rb
560
570
  - spec/api/distributions_api_spec.rb
561
571
  - spec/api/distributions_artifacts_api_spec.rb
562
572
  - spec/api/distributions_openpgp_api_spec.rb
@@ -607,6 +617,8 @@ files:
607
617
  - spec/models/content_redirect_content_guard_spec.rb
608
618
  - spec/models/content_settings_response_spec.rb
609
619
  - spec/models/content_summary_response_spec.rb
620
+ - spec/models/data_repair7272_spec.rb
621
+ - spec/models/data_repair7465_spec.rb
610
622
  - spec/models/database_connection_response_spec.rb
611
623
  - spec/models/distribution_response_spec.rb
612
624
  - spec/models/domain_backend_migrator_spec.rb
@@ -826,6 +838,7 @@ test_files:
826
838
  - spec/api/repository_versions_api_spec.rb
827
839
  - spec/api/domains_api_spec.rb
828
840
  - spec/api/groups_users_api_spec.rb
841
+ - spec/api/datarepair7465_api_spec.rb
829
842
  - spec/api/publications_api_spec.rb
830
843
  - spec/api/importers_pulp_imports_api_spec.rb
831
844
  - spec/api/uploads_api_spec.rb
@@ -838,6 +851,7 @@ test_files:
838
851
  - spec/api/contentguards_api_spec.rb
839
852
  - spec/api/exporters_filesystem_exports_api_spec.rb
840
853
  - spec/api/content_openpgp_userattribute_api_spec.rb
854
+ - spec/api/datarepair7272_api_spec.rb
841
855
  - spec/api/distributions_openpgp_api_spec.rb
842
856
  - spec/api/access_policies_api_spec.rb
843
857
  - spec/api/content_openpgp_userid_api_spec.rb
@@ -854,6 +868,7 @@ test_files:
854
868
  - spec/models/task_response_spec.rb
855
869
  - spec/models/nested_role_spec.rb
856
870
  - spec/models/paginated_composite_content_guard_response_list_spec.rb
871
+ - spec/models/data_repair7465_spec.rb
857
872
  - spec/models/patched_composite_content_guard_spec.rb
858
873
  - spec/models/group_user_response_spec.rb
859
874
  - spec/models/set_label_spec.rb
@@ -891,6 +906,7 @@ test_files:
891
906
  - spec/models/nested_open_pgp_public_subkey_spec.rb
892
907
  - spec/models/content_settings_response_spec.rb
893
908
  - spec/models/paginated_generic_remote_response_list_spec.rb
909
+ - spec/models/data_repair7272_spec.rb
894
910
  - spec/models/multiple_artifact_content_response_spec.rb
895
911
  - spec/models/patched_role_spec.rb
896
912
  - spec/models/content_redirect_content_guard_spec.rb