pulpcore_client 3.72.2 → 3.73.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.
- checksums.yaml +4 -4
- data/README.md +8 -5
- data/docs/ArtifactDistributionResponse.md +15 -15
- data/docs/ContentApi.md +2 -0
- data/docs/ContentOpenpgpPublickeyApi.md +152 -2
- data/docs/ContentOpenpgpPublicsubkeyApi.md +4 -2
- data/docs/ContentOpenpgpSignatureApi.md +4 -2
- data/docs/ContentOpenpgpUserattributeApi.md +4 -2
- data/docs/ContentOpenpgpUseridApi.md +4 -2
- data/docs/GenericRemoteResponse.md +1 -1
- data/docs/GenericRemoteResponsePolicyEnum.md +15 -0
- data/docs/MultipleArtifactContentResponse.md +2 -0
- data/docs/OpenPGPPublicKeyResponse.md +2 -0
- data/docs/OpenPGPPublicSubkeyResponse.md +2 -0
- data/docs/OpenPGPSignatureResponse.md +2 -0
- data/docs/OpenPGPUserAttributeResponse.md +2 -0
- data/docs/OpenPGPUserIDResponse.md +2 -0
- data/docs/PatchedUpstreamPulp.md +3 -1
- data/docs/{PolicyEnum.md → Policy357Enum.md} +2 -2
- data/docs/UpstreamPulp.md +3 -1
- data/docs/UpstreamPulpResponse.md +3 -1
- data/docs/UpstreamPulpsApi.md +2 -2
- data/lib/pulpcore_client/api/content_api.rb +3 -0
- data/lib/pulpcore_client/api/content_openpgp_publickey_api.rb +157 -3
- data/lib/pulpcore_client/api/content_openpgp_publicsubkey_api.rb +6 -3
- data/lib/pulpcore_client/api/content_openpgp_signature_api.rb +6 -3
- data/lib/pulpcore_client/api/content_openpgp_userattribute_api.rb +6 -3
- data/lib/pulpcore_client/api/content_openpgp_userid_api.rb +6 -3
- data/lib/pulpcore_client/api/upstream_pulps_api.rb +3 -3
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +67 -67
- data/lib/pulpcore_client/models/generic_remote_response.rb +1 -1
- data/lib/pulpcore_client/models/{policy_enum.rb → generic_remote_response_policy_enum.rb} +3 -3
- data/lib/pulpcore_client/models/multiple_artifact_content_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_public_key_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_public_subkey_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_signature_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_user_attribute_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_user_id_response.rb +13 -1
- data/lib/pulpcore_client/models/patched_upstream_pulp.rb +37 -5
- data/lib/pulpcore_client/models/policy357_enum.rb +41 -0
- data/lib/pulpcore_client/models/upstream_pulp.rb +37 -5
- data/lib/pulpcore_client/models/upstream_pulp_response.rb +36 -4
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +2 -1
- data/spec/api/content_api_spec.rb +1 -0
- data/spec/api/content_openpgp_publickey_api_spec.rb +29 -1
- data/spec/api/content_openpgp_publicsubkey_api_spec.rb +2 -1
- data/spec/api/content_openpgp_signature_api_spec.rb +2 -1
- data/spec/api/content_openpgp_userattribute_api_spec.rb +2 -1
- data/spec/api/content_openpgp_userid_api_spec.rb +2 -1
- data/spec/api/upstream_pulps_api_spec.rb +1 -1
- data/spec/models/artifact_distribution_response_spec.rb +10 -10
- data/spec/models/generic_remote_response_policy_enum_spec.rb +30 -0
- data/spec/models/multiple_artifact_content_response_spec.rb +6 -0
- data/spec/models/open_pgp_public_key_response_spec.rb +6 -0
- data/spec/models/open_pgp_public_subkey_response_spec.rb +6 -0
- data/spec/models/open_pgp_signature_response_spec.rb +6 -0
- data/spec/models/open_pgp_user_attribute_response_spec.rb +6 -0
- data/spec/models/open_pgp_user_id_response_spec.rb +6 -0
- data/spec/models/patched_upstream_pulp_spec.rb +6 -0
- data/spec/models/{policy_enum_spec.rb → policy357_enum_spec.rb} +6 -6
- data/spec/models/upstream_pulp_response_spec.rb +6 -0
- data/spec/models/upstream_pulp_spec.rb +6 -0
- metadata +9 -5
@@ -51,6 +51,12 @@ describe PulpcoreClient::OpenPGPUserAttributeResponse do
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
+
describe 'test attribute "pulp_labels"' 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 "sha256"' 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::OpenPGPUserIDResponse do
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
+
describe 'test attribute "pulp_labels"' 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 "user_id"' do
|
55
61
|
it 'should work' do
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -14,16 +14,16 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for PulpcoreClient::
|
17
|
+
# Unit tests for PulpcoreClient::Policy357Enum
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe PulpcoreClient::
|
21
|
-
let(:instance) { PulpcoreClient::
|
20
|
+
describe PulpcoreClient::Policy357Enum do
|
21
|
+
let(:instance) { PulpcoreClient::Policy357Enum.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
23
|
+
describe 'test an instance of Policy357Enum' do
|
24
|
+
it 'should create an instance of Policy357Enum' do
|
25
25
|
# uncomment below to test the instance creation
|
26
|
-
#expect(instance).to be_instance_of(PulpcoreClient::
|
26
|
+
#expect(instance).to be_instance_of(PulpcoreClient::Policy357Enum)
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
@@ -111,4 +111,10 @@ describe PulpcoreClient::UpstreamPulpResponse do
|
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
114
|
+
describe 'test attribute "policy"' do
|
115
|
+
it 'should work' do
|
116
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
114
120
|
end
|
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.
|
4
|
+
version: 3.73.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- docs/FilesystemExporterResponse.md
|
156
156
|
- docs/GenericRemoteResponse.md
|
157
157
|
- docs/GenericRemoteResponseHiddenFieldsInner.md
|
158
|
+
- docs/GenericRemoteResponsePolicyEnum.md
|
158
159
|
- docs/Group.md
|
159
160
|
- docs/GroupProgressReportResponse.md
|
160
161
|
- docs/GroupResponse.md
|
@@ -258,7 +259,7 @@ files:
|
|
258
259
|
- docs/PatchedTaskCancel.md
|
259
260
|
- docs/PatchedUpstreamPulp.md
|
260
261
|
- docs/PatchedUser.md
|
261
|
-
- docs/
|
262
|
+
- docs/Policy357Enum.md
|
262
263
|
- docs/ProfileArtifactResponse.md
|
263
264
|
- docs/ProgressReportResponse.md
|
264
265
|
- docs/PublicationResponse.md
|
@@ -407,6 +408,7 @@ files:
|
|
407
408
|
- lib/pulpcore_client/models/filesystem_exporter_response.rb
|
408
409
|
- lib/pulpcore_client/models/generic_remote_response.rb
|
409
410
|
- lib/pulpcore_client/models/generic_remote_response_hidden_fields_inner.rb
|
411
|
+
- lib/pulpcore_client/models/generic_remote_response_policy_enum.rb
|
410
412
|
- lib/pulpcore_client/models/group.rb
|
411
413
|
- lib/pulpcore_client/models/group_progress_report_response.rb
|
412
414
|
- lib/pulpcore_client/models/group_response.rb
|
@@ -500,7 +502,7 @@ files:
|
|
500
502
|
- lib/pulpcore_client/models/patched_task_cancel.rb
|
501
503
|
- lib/pulpcore_client/models/patched_upstream_pulp.rb
|
502
504
|
- lib/pulpcore_client/models/patched_user.rb
|
503
|
-
- lib/pulpcore_client/models/
|
505
|
+
- lib/pulpcore_client/models/policy357_enum.rb
|
504
506
|
- lib/pulpcore_client/models/profile_artifact_response.rb
|
505
507
|
- lib/pulpcore_client/models/progress_report_response.rb
|
506
508
|
- lib/pulpcore_client/models/publication_response.rb
|
@@ -628,6 +630,7 @@ files:
|
|
628
630
|
- spec/models/filesystem_exporter_response_spec.rb
|
629
631
|
- spec/models/filesystem_exporter_spec.rb
|
630
632
|
- spec/models/generic_remote_response_hidden_fields_inner_spec.rb
|
633
|
+
- spec/models/generic_remote_response_policy_enum_spec.rb
|
631
634
|
- spec/models/generic_remote_response_spec.rb
|
632
635
|
- spec/models/group_progress_report_response_spec.rb
|
633
636
|
- spec/models/group_response_spec.rb
|
@@ -722,7 +725,7 @@ files:
|
|
722
725
|
- spec/models/patched_task_cancel_spec.rb
|
723
726
|
- spec/models/patched_upstream_pulp_spec.rb
|
724
727
|
- spec/models/patched_user_spec.rb
|
725
|
-
- spec/models/
|
728
|
+
- spec/models/policy357_enum_spec.rb
|
726
729
|
- spec/models/profile_artifact_response_spec.rb
|
727
730
|
- spec/models/progress_report_response_spec.rb
|
728
731
|
- spec/models/publication_response_spec.rb
|
@@ -879,9 +882,9 @@ test_files:
|
|
879
882
|
- spec/models/paginated_open_pgp_distribution_response_list_spec.rb
|
880
883
|
- spec/models/nested_open_pgp_user_id_response_spec.rb
|
881
884
|
- spec/models/patched_upstream_pulp_spec.rb
|
882
|
-
- spec/models/policy_enum_spec.rb
|
883
885
|
- spec/models/open_pgp_user_id_response_spec.rb
|
884
886
|
- spec/models/content_settings_response_spec.rb
|
887
|
+
- spec/models/policy357_enum_spec.rb
|
885
888
|
- spec/models/header_content_guard_response_spec.rb
|
886
889
|
- spec/models/status_response_spec.rb
|
887
890
|
- spec/models/signing_service_response_spec.rb
|
@@ -984,6 +987,7 @@ test_files:
|
|
984
987
|
- spec/models/open_pgp_user_attribute_response_spec.rb
|
985
988
|
- spec/models/role_response_spec.rb
|
986
989
|
- spec/models/paginated_user_response_list_spec.rb
|
990
|
+
- spec/models/generic_remote_response_policy_enum_spec.rb
|
987
991
|
- spec/models/group_spec.rb
|
988
992
|
- spec/models/pulp_importer_response_spec.rb
|
989
993
|
- spec/models/paginated_role_response_list_spec.rb
|