pulpcore_client 3.118.1 → 3.119.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 (28) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -4
  3. data/docs/ArtifactDistributionResponse.md +17 -17
  4. data/docs/ContentguardsApi.md +4 -4
  5. data/docs/ContentguardsEnvvarHeaderApi.md +810 -0
  6. data/docs/EnvVarHeaderContentGuard.md +24 -0
  7. data/docs/EnvVarHeaderContentGuardResponse.md +32 -0
  8. data/docs/PaginatedEnvVarHeaderContentGuardResponseList.md +24 -0
  9. data/docs/PatchedEnvVarHeaderContentGuard.md +24 -0
  10. data/docs/Purge.md +1 -1
  11. data/lib/pulpcore_client/api/contentguards_api.rb +6 -6
  12. data/lib/pulpcore_client/api/contentguards_envvar_header_api.rb +799 -0
  13. data/lib/pulpcore_client/models/artifact_distribution_response.rb +85 -85
  14. data/lib/pulpcore_client/models/env_var_header_content_guard.rb +340 -0
  15. data/lib/pulpcore_client/models/env_var_header_content_guard_response.rb +307 -0
  16. data/lib/pulpcore_client/models/paginated_env_var_header_content_guard_response_list.rb +257 -0
  17. data/lib/pulpcore_client/models/patched_env_var_header_content_guard.rb +319 -0
  18. data/lib/pulpcore_client/models/purge.rb +1 -1
  19. data/lib/pulpcore_client/version.rb +1 -1
  20. data/lib/pulpcore_client.rb +5 -0
  21. data/spec/api/contentguards_api_spec.rb +2 -2
  22. data/spec/api/contentguards_envvar_header_api_spec.rb +192 -0
  23. data/spec/models/artifact_distribution_response_spec.rb +13 -13
  24. data/spec/models/env_var_header_content_guard_response_spec.rb +78 -0
  25. data/spec/models/env_var_header_content_guard_spec.rb +54 -0
  26. data/spec/models/paginated_env_var_header_content_guard_response_list_spec.rb +54 -0
  27. data/spec/models/patched_env_var_header_content_guard_spec.rb +54 -0
  28. metadata +22 -2
@@ -0,0 +1,78 @@
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::EnvVarHeaderContentGuardResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpcoreClient::EnvVarHeaderContentGuardResponse do
21
+ let(:instance) { PulpcoreClient::EnvVarHeaderContentGuardResponse.new }
22
+
23
+ describe 'test an instance of EnvVarHeaderContentGuardResponse' do
24
+ it 'should create an instance of EnvVarHeaderContentGuardResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpcoreClient::EnvVarHeaderContentGuardResponse)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "pulp_href"' 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
+ describe 'test attribute "prn"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "pulp_created"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "pulp_last_updated"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "name"' 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
+
60
+ describe 'test attribute "description"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "header_name"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
72
+ describe 'test attribute "env_var"' 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
+
78
+ end
@@ -0,0 +1,54 @@
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::EnvVarHeaderContentGuard
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpcoreClient::EnvVarHeaderContentGuard do
21
+ let(:instance) { PulpcoreClient::EnvVarHeaderContentGuard.new }
22
+
23
+ describe 'test an instance of EnvVarHeaderContentGuard' do
24
+ it 'should create an instance of EnvVarHeaderContentGuard' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpcoreClient::EnvVarHeaderContentGuard)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "name"' 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
+ describe 'test attribute "description"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "header_name"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "env_var"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
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::PaginatedEnvVarHeaderContentGuardResponseList
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpcoreClient::PaginatedEnvVarHeaderContentGuardResponseList do
21
+ let(:instance) { PulpcoreClient::PaginatedEnvVarHeaderContentGuardResponseList.new }
22
+
23
+ describe 'test an instance of PaginatedEnvVarHeaderContentGuardResponseList' do
24
+ it 'should create an instance of PaginatedEnvVarHeaderContentGuardResponseList' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpcoreClient::PaginatedEnvVarHeaderContentGuardResponseList)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "count"' 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
+ describe 'test attribute "_next"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "previous"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "results"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
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::PatchedEnvVarHeaderContentGuard
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpcoreClient::PatchedEnvVarHeaderContentGuard do
21
+ let(:instance) { PulpcoreClient::PatchedEnvVarHeaderContentGuard.new }
22
+
23
+ describe 'test an instance of PatchedEnvVarHeaderContentGuard' do
24
+ it 'should create an instance of PatchedEnvVarHeaderContentGuard' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpcoreClient::PatchedEnvVarHeaderContentGuard)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "name"' 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
+ describe 'test attribute "description"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "header_name"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "env_var"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulpcore_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.118.1
4
+ version: 3.119.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-09-17 00:00:00.000000000 Z
11
+ date: 2026-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -112,6 +112,7 @@ files:
112
112
  - docs/ContentguardsApi.md
113
113
  - docs/ContentguardsCompositeApi.md
114
114
  - docs/ContentguardsContentRedirectApi.md
115
+ - docs/ContentguardsEnvvarHeaderApi.md
115
116
  - docs/ContentguardsHeaderApi.md
116
117
  - docs/ContentguardsRbacApi.md
117
118
  - docs/DataRepair7272.md
@@ -125,6 +126,8 @@ files:
125
126
  - docs/DomainBackendMigrator.md
126
127
  - docs/DomainResponse.md
127
128
  - docs/DomainsApi.md
129
+ - docs/EnvVarHeaderContentGuard.md
130
+ - docs/EnvVarHeaderContentGuardResponse.md
128
131
  - docs/EvaluationResponse.md
129
132
  - docs/ExportersFilesystemApi.md
130
133
  - docs/ExportersFilesystemExportsApi.md
@@ -192,6 +195,7 @@ files:
192
195
  - docs/PaginatedContentRedirectContentGuardResponseList.md
193
196
  - docs/PaginatedDistributionResponseList.md
194
197
  - docs/PaginatedDomainResponseList.md
198
+ - docs/PaginatedEnvVarHeaderContentGuardResponseList.md
195
199
  - docs/PaginatedFilesystemExportResponseList.md
196
200
  - docs/PaginatedFilesystemExporterResponseList.md
197
201
  - docs/PaginatedGenericRemoteResponseList.md
@@ -230,6 +234,7 @@ files:
230
234
  - docs/PatchedCompositeContentGuard.md
231
235
  - docs/PatchedContentRedirectContentGuard.md
232
236
  - docs/PatchedDomain.md
237
+ - docs/PatchedEnvVarHeaderContentGuard.md
233
238
  - docs/PatchedFilesystemExporter.md
234
239
  - docs/PatchedGroup.md
235
240
  - docs/PatchedHeaderContentGuard.md
@@ -330,6 +335,7 @@ files:
330
335
  - lib/pulpcore_client/api/contentguards_api.rb
331
336
  - lib/pulpcore_client/api/contentguards_composite_api.rb
332
337
  - lib/pulpcore_client/api/contentguards_content_redirect_api.rb
338
+ - lib/pulpcore_client/api/contentguards_envvar_header_api.rb
333
339
  - lib/pulpcore_client/api/contentguards_header_api.rb
334
340
  - lib/pulpcore_client/api/contentguards_rbac_api.rb
335
341
  - lib/pulpcore_client/api/datarepair7272_api.rb
@@ -392,6 +398,8 @@ files:
392
398
  - lib/pulpcore_client/models/domain.rb
393
399
  - lib/pulpcore_client/models/domain_backend_migrator.rb
394
400
  - lib/pulpcore_client/models/domain_response.rb
401
+ - lib/pulpcore_client/models/env_var_header_content_guard.rb
402
+ - lib/pulpcore_client/models/env_var_header_content_guard_response.rb
395
403
  - lib/pulpcore_client/models/evaluation_response.rb
396
404
  - lib/pulpcore_client/models/filesystem_export.rb
397
405
  - lib/pulpcore_client/models/filesystem_export_response.rb
@@ -445,6 +453,7 @@ files:
445
453
  - lib/pulpcore_client/models/paginated_content_redirect_content_guard_response_list.rb
446
454
  - lib/pulpcore_client/models/paginated_distribution_response_list.rb
447
455
  - lib/pulpcore_client/models/paginated_domain_response_list.rb
456
+ - lib/pulpcore_client/models/paginated_env_var_header_content_guard_response_list.rb
448
457
  - lib/pulpcore_client/models/paginated_filesystem_export_response_list.rb
449
458
  - lib/pulpcore_client/models/paginated_filesystem_exporter_response_list.rb
450
459
  - lib/pulpcore_client/models/paginated_generic_remote_response_list.rb
@@ -483,6 +492,7 @@ files:
483
492
  - lib/pulpcore_client/models/patched_composite_content_guard.rb
484
493
  - lib/pulpcore_client/models/patched_content_redirect_content_guard.rb
485
494
  - lib/pulpcore_client/models/patched_domain.rb
495
+ - lib/pulpcore_client/models/patched_env_var_header_content_guard.rb
486
496
  - lib/pulpcore_client/models/patched_filesystem_exporter.rb
487
497
  - lib/pulpcore_client/models/patched_group.rb
488
498
  - lib/pulpcore_client/models/patched_header_content_guard.rb
@@ -565,6 +575,7 @@ files:
565
575
  - spec/api/contentguards_api_spec.rb
566
576
  - spec/api/contentguards_composite_api_spec.rb
567
577
  - spec/api/contentguards_content_redirect_api_spec.rb
578
+ - spec/api/contentguards_envvar_header_api_spec.rb
568
579
  - spec/api/contentguards_header_api_spec.rb
569
580
  - spec/api/contentguards_rbac_api_spec.rb
570
581
  - spec/api/datarepair7272_api_spec.rb
@@ -624,6 +635,8 @@ files:
624
635
  - spec/models/domain_backend_migrator_spec.rb
625
636
  - spec/models/domain_response_spec.rb
626
637
  - spec/models/domain_spec.rb
638
+ - spec/models/env_var_header_content_guard_response_spec.rb
639
+ - spec/models/env_var_header_content_guard_spec.rb
627
640
  - spec/models/evaluation_response_spec.rb
628
641
  - spec/models/filesystem_export_response_spec.rb
629
642
  - spec/models/filesystem_export_spec.rb
@@ -677,6 +690,7 @@ files:
677
690
  - spec/models/paginated_content_redirect_content_guard_response_list_spec.rb
678
691
  - spec/models/paginated_distribution_response_list_spec.rb
679
692
  - spec/models/paginated_domain_response_list_spec.rb
693
+ - spec/models/paginated_env_var_header_content_guard_response_list_spec.rb
680
694
  - spec/models/paginated_filesystem_export_response_list_spec.rb
681
695
  - spec/models/paginated_filesystem_exporter_response_list_spec.rb
682
696
  - spec/models/paginated_generic_remote_response_list_spec.rb
@@ -715,6 +729,7 @@ files:
715
729
  - spec/models/patched_composite_content_guard_spec.rb
716
730
  - spec/models/patched_content_redirect_content_guard_spec.rb
717
731
  - spec/models/patched_domain_spec.rb
732
+ - spec/models/patched_env_var_header_content_guard_spec.rb
718
733
  - spec/models/patched_filesystem_exporter_spec.rb
719
734
  - spec/models/patched_group_spec.rb
720
735
  - spec/models/patched_header_content_guard_spec.rb
@@ -816,6 +831,7 @@ test_files:
816
831
  - spec/api/content_openpgp_userattribute_api_spec.rb
817
832
  - spec/api/importers_pulp_imports_api_spec.rb
818
833
  - spec/api/exporters_filesystem_api_spec.rb
834
+ - spec/api/contentguards_envvar_header_api_spec.rb
819
835
  - spec/api/repositories_api_spec.rb
820
836
  - spec/api/contentguards_api_spec.rb
821
837
  - spec/api/datarepair7272_api_spec.rb
@@ -881,6 +897,7 @@ test_files:
881
897
  - spec/models/content_settings_response_spec.rb
882
898
  - spec/models/paginated_user_role_response_list_spec.rb
883
899
  - spec/models/paginated_artifact_response_list_spec.rb
900
+ - spec/models/paginated_env_var_header_content_guard_response_list_spec.rb
884
901
  - spec/models/upstream_pulp_response_spec.rb
885
902
  - spec/models/reclaim_space_spec.rb
886
903
  - spec/models/composite_content_guard_spec.rb
@@ -955,6 +972,7 @@ test_files:
955
972
  - spec/models/paginated_domain_response_list_spec.rb
956
973
  - spec/models/status_response_spec.rb
957
974
  - spec/models/open_pgp_user_id_response_spec.rb
975
+ - spec/models/env_var_header_content_guard_spec.rb
958
976
  - spec/models/upload_commit_spec.rb
959
977
  - spec/models/paginated_rbac_content_guard_response_list_spec.rb
960
978
  - spec/models/patched_domain_spec.rb
@@ -975,6 +993,7 @@ test_files:
975
993
  - spec/models/task_group_response_spec.rb
976
994
  - spec/models/nested_open_pgp_user_id_response_spec.rb
977
995
  - spec/models/user_group_spec.rb
996
+ - spec/models/env_var_header_content_guard_response_spec.rb
978
997
  - spec/models/header_content_guard_response_spec.rb
979
998
  - spec/models/patched_composite_content_guard_spec.rb
980
999
  - spec/models/domain_backend_migrator_spec.rb
@@ -1025,6 +1044,7 @@ test_files:
1025
1044
  - spec/models/group_user_response_spec.rb
1026
1045
  - spec/models/policy357_enum_spec.rb
1027
1046
  - spec/models/artifact_distribution_response_spec.rb
1047
+ - spec/models/patched_env_var_header_content_guard_spec.rb
1028
1048
  - spec/models/paginated_filesystem_exporter_response_list_spec.rb
1029
1049
  - spec/models/nested_open_pgp_public_subkey_response_spec.rb
1030
1050
  - spec/models/group_user_spec.rb