pulpcore_client 3.102.0 → 3.103.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 +6 -4
- data/docs/ArtifactDistributionResponse.md +14 -14
- data/docs/ContentOpenpgpPublickeyApi.md +3 -1
- data/docs/GenericRemoteResponse.md +9 -9
- data/docs/Purge.md +1 -1
- data/docs/RemoteNetworkConfig.md +50 -0
- data/docs/RemoteNetworkConfigResponse.md +40 -0
- data/lib/pulpcore_client/api/content_openpgp_publickey_api.rb +3 -0
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +69 -69
- data/lib/pulpcore_client/models/generic_remote_response.rb +49 -49
- data/lib/pulpcore_client/models/purge.rb +1 -1
- data/lib/pulpcore_client/models/remote_network_config.rb +573 -0
- data/lib/pulpcore_client/models/remote_network_config_response.rb +398 -0
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +2 -0
- data/spec/api/content_openpgp_publickey_api_spec.rb +1 -0
- data/spec/models/artifact_distribution_response_spec.rb +11 -11
- data/spec/models/generic_remote_response_spec.rb +10 -10
- data/spec/models/remote_network_config_response_spec.rb +102 -0
- data/spec/models/remote_network_config_spec.rb +132 -0
- metadata +10 -2
|
@@ -0,0 +1,132 @@
|
|
|
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::RemoteNetworkConfig
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpcoreClient::RemoteNetworkConfig do
|
|
21
|
+
let(:instance) { PulpcoreClient::RemoteNetworkConfig.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of RemoteNetworkConfig' do
|
|
24
|
+
it 'should create an instance of RemoteNetworkConfig' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpcoreClient::RemoteNetworkConfig)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "ca_cert"' 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 "client_cert"' 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 "client_key"' 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 "tls_validation"' 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 "proxy_url"' 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 "proxy_username"' 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 "proxy_password"' 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 "username"' 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
|
+
describe 'test attribute "password"' do
|
|
79
|
+
it 'should work' do
|
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
describe 'test attribute "max_retries"' do
|
|
85
|
+
it 'should work' do
|
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
describe 'test attribute "total_timeout"' 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
|
+
|
|
96
|
+
describe 'test attribute "connect_timeout"' do
|
|
97
|
+
it 'should work' do
|
|
98
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
describe 'test attribute "sock_connect_timeout"' do
|
|
103
|
+
it 'should work' do
|
|
104
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
describe 'test attribute "sock_read_timeout"' 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
|
+
|
|
114
|
+
describe 'test attribute "headers"' 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
|
+
|
|
120
|
+
describe 'test attribute "download_concurrency"' do
|
|
121
|
+
it 'should work' do
|
|
122
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
describe 'test attribute "rate_limit"' do
|
|
127
|
+
it 'should work' do
|
|
128
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
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.
|
|
4
|
+
version: 3.103.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-
|
|
11
|
+
date: 2026-02-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -258,6 +258,8 @@ files:
|
|
|
258
258
|
- docs/RBACContentGuardResponse.md
|
|
259
259
|
- docs/ReclaimSpace.md
|
|
260
260
|
- docs/RedisConnectionResponse.md
|
|
261
|
+
- docs/RemoteNetworkConfig.md
|
|
262
|
+
- docs/RemoteNetworkConfigResponse.md
|
|
261
263
|
- docs/RemotesApi.md
|
|
262
264
|
- docs/Repair.md
|
|
263
265
|
- docs/RepairApi.md
|
|
@@ -503,6 +505,8 @@ files:
|
|
|
503
505
|
- lib/pulpcore_client/models/rbac_content_guard_response.rb
|
|
504
506
|
- lib/pulpcore_client/models/reclaim_space.rb
|
|
505
507
|
- lib/pulpcore_client/models/redis_connection_response.rb
|
|
508
|
+
- lib/pulpcore_client/models/remote_network_config.rb
|
|
509
|
+
- lib/pulpcore_client/models/remote_network_config_response.rb
|
|
506
510
|
- lib/pulpcore_client/models/repair.rb
|
|
507
511
|
- lib/pulpcore_client/models/repository_add_remove_content.rb
|
|
508
512
|
- lib/pulpcore_client/models/repository_response.rb
|
|
@@ -728,6 +732,8 @@ files:
|
|
|
728
732
|
- spec/models/rbac_content_guard_spec.rb
|
|
729
733
|
- spec/models/reclaim_space_spec.rb
|
|
730
734
|
- spec/models/redis_connection_response_spec.rb
|
|
735
|
+
- spec/models/remote_network_config_response_spec.rb
|
|
736
|
+
- spec/models/remote_network_config_spec.rb
|
|
731
737
|
- spec/models/repair_spec.rb
|
|
732
738
|
- spec/models/repository_add_remove_content_spec.rb
|
|
733
739
|
- spec/models/repository_response_spec.rb
|
|
@@ -940,6 +946,7 @@ test_files:
|
|
|
940
946
|
- spec/models/filesystem_exporter_spec.rb
|
|
941
947
|
- spec/models/paginated_distribution_response_list_spec.rb
|
|
942
948
|
- spec/models/patched_pulp_importer_spec.rb
|
|
949
|
+
- spec/models/remote_network_config_spec.rb
|
|
943
950
|
- spec/models/domain_response_spec.rb
|
|
944
951
|
- spec/models/group_user_spec.rb
|
|
945
952
|
- spec/models/paginated_artifact_response_list_spec.rb
|
|
@@ -993,6 +1000,7 @@ test_files:
|
|
|
993
1000
|
- spec/models/paginated_import_response_list_spec.rb
|
|
994
1001
|
- spec/models/role_response_spec.rb
|
|
995
1002
|
- spec/models/pulp_importer_spec.rb
|
|
1003
|
+
- spec/models/remote_network_config_response_spec.rb
|
|
996
1004
|
- spec/models/status_response_spec.rb
|
|
997
1005
|
- spec/models/generic_remote_response_spec.rb
|
|
998
1006
|
- spec/models/paginated_open_pgp_user_id_response_list_spec.rb
|