pulp_maven_client 0.15.0 → 0.16.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 +11 -5
- data/docs/ContentArtifactApi.md +103 -6
- data/docs/RemoteNetworkConfig.md +50 -0
- data/docs/RemoteNetworkConfigResponse.md +40 -0
- data/lib/pulp_maven_client/api/content_artifact_api.rb +122 -5
- data/lib/pulp_maven_client/models/remote_network_config.rb +588 -0
- data/lib/pulp_maven_client/models/remote_network_config_response.rb +413 -0
- data/lib/pulp_maven_client/version.rb +1 -1
- data/lib/pulp_maven_client.rb +2 -0
- data/spec/api/content_artifact_api_spec.rb +26 -2
- data/spec/models/remote_network_config_response_spec.rb +102 -0
- data/spec/models/remote_network_config_spec.rb +132 -0
- metadata +9 -1
|
@@ -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 PulpMavenClient::RemoteNetworkConfig
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpMavenClient::RemoteNetworkConfig do
|
|
21
|
+
let(:instance) { PulpMavenClient::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(PulpMavenClient::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,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_maven_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -110,6 +110,8 @@ files:
|
|
|
110
110
|
- docs/PatchedmavenMavenRepository.md
|
|
111
111
|
- docs/PolicyEnum.md
|
|
112
112
|
- docs/PulpMavenApi.md
|
|
113
|
+
- docs/RemoteNetworkConfig.md
|
|
114
|
+
- docs/RemoteNetworkConfigResponse.md
|
|
113
115
|
- docs/RemotesMavenApi.md
|
|
114
116
|
- docs/Repair.md
|
|
115
117
|
- docs/RepositoriesMavenApi.md
|
|
@@ -150,6 +152,8 @@ files:
|
|
|
150
152
|
- lib/pulp_maven_client/models/patchedmaven_maven_remote.rb
|
|
151
153
|
- lib/pulp_maven_client/models/patchedmaven_maven_repository.rb
|
|
152
154
|
- lib/pulp_maven_client/models/policy_enum.rb
|
|
155
|
+
- lib/pulp_maven_client/models/remote_network_config.rb
|
|
156
|
+
- lib/pulp_maven_client/models/remote_network_config_response.rb
|
|
153
157
|
- lib/pulp_maven_client/models/repair.rb
|
|
154
158
|
- lib/pulp_maven_client/models/repository_add_cached_content.rb
|
|
155
159
|
- lib/pulp_maven_client/models/repository_add_remove_content.rb
|
|
@@ -185,6 +189,8 @@ files:
|
|
|
185
189
|
- spec/models/patchedmaven_maven_remote_spec.rb
|
|
186
190
|
- spec/models/patchedmaven_maven_repository_spec.rb
|
|
187
191
|
- spec/models/policy_enum_spec.rb
|
|
192
|
+
- spec/models/remote_network_config_response_spec.rb
|
|
193
|
+
- spec/models/remote_network_config_spec.rb
|
|
188
194
|
- spec/models/repair_spec.rb
|
|
189
195
|
- spec/models/repository_add_cached_content_spec.rb
|
|
190
196
|
- spec/models/repository_add_remove_content_spec.rb
|
|
@@ -225,12 +231,14 @@ test_files:
|
|
|
225
231
|
- spec/api/repositories_maven_versions_api_spec.rb
|
|
226
232
|
- spec/api/pulp_maven_api_spec.rb
|
|
227
233
|
- spec/models/content_summary_response_spec.rb
|
|
234
|
+
- spec/models/remote_network_config_spec.rb
|
|
228
235
|
- spec/models/maven_maven_repository_response_spec.rb
|
|
229
236
|
- spec/models/unset_label_spec.rb
|
|
230
237
|
- spec/models/paginatedmaven_maven_distribution_response_list_spec.rb
|
|
231
238
|
- spec/models/maven_maven_remote_response_hidden_fields_inner_spec.rb
|
|
232
239
|
- spec/models/maven_maven_remote_spec.rb
|
|
233
240
|
- spec/models/repository_add_remove_content_spec.rb
|
|
241
|
+
- spec/models/remote_network_config_response_spec.rb
|
|
234
242
|
- spec/models/paginatedmaven_maven_remote_response_list_spec.rb
|
|
235
243
|
- spec/models/maven_maven_artifact_response_spec.rb
|
|
236
244
|
- spec/models/set_label_spec.rb
|