pulp_python_client 3.24.1 → 3.24.2

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.
@@ -39,67 +39,67 @@ describe PulpPythonClient::PythonPythonRemote do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "ca_cert"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "client_cert"' do
48
+ describe 'test attribute "policy"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "client_key"' do
54
+ describe 'test attribute "ca_cert"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "tls_validation"' do
60
+ describe 'test attribute "client_cert"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "proxy_url"' do
66
+ describe 'test attribute "client_key"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "proxy_username"' do
72
+ describe 'test attribute "tls_validation"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "proxy_password"' do
78
+ describe 'test attribute "proxy_url"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "username"' do
84
+ describe 'test attribute "proxy_username"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "password"' do
90
+ describe 'test attribute "proxy_password"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_labels"' do
96
+ describe 'test attribute "username"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "password"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -111,12 +111,6 @@ describe PulpPythonClient::PythonPythonRemote 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
-
120
114
  describe 'test attribute "total_timeout"' do
121
115
  it 'should work' do
122
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -147,6 +141,12 @@ describe PulpPythonClient::PythonPythonRemote do
147
141
  end
148
142
  end
149
143
 
144
+ describe 'test attribute "download_concurrency"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
150
  describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -0,0 +1,102 @@
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 PulpPythonClient::RemoteNetworkConfigResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpPythonClient::RemoteNetworkConfigResponse do
21
+ let(:instance) { PulpPythonClient::RemoteNetworkConfigResponse.new }
22
+
23
+ describe 'test an instance of RemoteNetworkConfigResponse' do
24
+ it 'should create an instance of RemoteNetworkConfigResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpPythonClient::RemoteNetworkConfigResponse)
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 "tls_validation"' 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 "proxy_url"' 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 "max_retries"' 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 "total_timeout"' 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 "connect_timeout"' 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 "sock_connect_timeout"' 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 "sock_read_timeout"' 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 "headers"' 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 "download_concurrency"' 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 "rate_limit"' 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
+ end
@@ -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 PulpPythonClient::RemoteNetworkConfig
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpPythonClient::RemoteNetworkConfig do
21
+ let(:instance) { PulpPythonClient::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(PulpPythonClient::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: pulp_python_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.24.1
4
+ version: 3.24.2
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-01-22 00:00:00.000000000 Z
11
+ date: 2026-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -132,6 +132,8 @@ files:
132
132
  - docs/PythonPythonRemoteResponseHiddenFieldsInner.md
133
133
  - docs/PythonPythonRepository.md
134
134
  - docs/PythonPythonRepositoryResponse.md
135
+ - docs/RemoteNetworkConfig.md
136
+ - docs/RemoteNetworkConfigResponse.md
135
137
  - docs/RemotesPythonApi.md
136
138
  - docs/Repair.md
137
139
  - docs/RepositoriesPythonApi.md
@@ -195,6 +197,8 @@ files:
195
197
  - lib/pulp_python_client/models/python_python_remote_response_hidden_fields_inner.rb
196
198
  - lib/pulp_python_client/models/python_python_repository.rb
197
199
  - lib/pulp_python_client/models/python_python_repository_response.rb
200
+ - lib/pulp_python_client/models/remote_network_config.rb
201
+ - lib/pulp_python_client/models/remote_network_config_response.rb
198
202
  - lib/pulp_python_client/models/repair.rb
199
203
  - lib/pulp_python_client/models/repository_add_remove_content.rb
200
204
  - lib/pulp_python_client/models/repository_sync_url.rb
@@ -253,6 +257,8 @@ files:
253
257
  - spec/models/python_python_remote_spec.rb
254
258
  - spec/models/python_python_repository_response_spec.rb
255
259
  - spec/models/python_python_repository_spec.rb
260
+ - spec/models/remote_network_config_response_spec.rb
261
+ - spec/models/remote_network_config_spec.rb
256
262
  - spec/models/repair_spec.rb
257
263
  - spec/models/repository_add_remove_content_spec.rb
258
264
  - spec/models/repository_sync_url_spec.rb
@@ -328,6 +334,7 @@ test_files:
328
334
  - spec/models/unset_label_spec.rb
329
335
  - spec/models/python_python_remote_spec.rb
330
336
  - spec/models/policy_enum_spec.rb
337
+ - spec/models/remote_network_config_spec.rb
331
338
  - spec/models/metadata_version_enum_spec.rb
332
339
  - spec/models/paginatedpython_python_repository_response_list_spec.rb
333
340
  - spec/models/python_python_distribution_response_spec.rb
@@ -341,6 +348,7 @@ test_files:
341
348
  - spec/models/python_package_provenance_response_spec.rb
342
349
  - spec/models/paginatedpython_package_provenance_response_list_spec.rb
343
350
  - spec/models/filetype_enum_spec.rb
351
+ - spec/models/remote_network_config_response_spec.rb
344
352
  - spec/models/python_python_distribution_spec.rb
345
353
  - spec/models/patchedpython_python_repository_spec.rb
346
354
  - spec/spec_helper.rb