pulpcore_client 3.110.2 → 3.111.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 +4 -4
- data/docs/ArtifactDistributionResponse.md +13 -13
- data/docs/ContentOpenpgpPublickeyApi.md +2 -0
- data/docs/PatchedUpstreamPulp.md +12 -0
- data/docs/Purge.md +1 -1
- data/docs/RepositoryAddRemoveContent.md +3 -1
- data/docs/UpstreamPulp.md +12 -0
- data/docs/UpstreamPulpResponse.md +12 -0
- data/docs/UpstreamPulpsApi.md +2 -2
- data/lib/pulpcore_client/api/content_openpgp_publickey_api.rb +3 -0
- data/lib/pulpcore_client/api/upstream_pulps_api.rb +3 -3
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +56 -56
- data/lib/pulpcore_client/models/patched_upstream_pulp.rb +142 -1
- data/lib/pulpcore_client/models/purge.rb +1 -1
- data/lib/pulpcore_client/models/repository_add_remove_content.rb +16 -4
- data/lib/pulpcore_client/models/upstream_pulp.rb +142 -1
- data/lib/pulpcore_client/models/upstream_pulp_response.rb +142 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/content_openpgp_publickey_api_spec.rb +1 -0
- data/spec/api/upstream_pulps_api_spec.rb +1 -1
- data/spec/models/artifact_distribution_response_spec.rb +9 -9
- data/spec/models/patched_upstream_pulp_spec.rb +36 -0
- data/spec/models/repository_add_remove_content_spec.rb +6 -0
- data/spec/models/upstream_pulp_response_spec.rb +36 -0
- data/spec/models/upstream_pulp_spec.rb +36 -0
- metadata +2 -2
|
@@ -48,6 +48,24 @@ module PulpcoreClient
|
|
|
48
48
|
# If True, TLS peer validation must be performed.
|
|
49
49
|
attr_accessor :tls_validation
|
|
50
50
|
|
|
51
|
+
# Total number of simultaneous connections. If not set then the default value will be used.
|
|
52
|
+
attr_accessor :download_concurrency
|
|
53
|
+
|
|
54
|
+
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
|
55
|
+
attr_accessor :max_retries
|
|
56
|
+
|
|
57
|
+
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
58
|
+
attr_accessor :total_timeout
|
|
59
|
+
|
|
60
|
+
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
61
|
+
attr_accessor :connect_timeout
|
|
62
|
+
|
|
63
|
+
# aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
64
|
+
attr_accessor :sock_connect_timeout
|
|
65
|
+
|
|
66
|
+
# aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
67
|
+
attr_accessor :sock_read_timeout
|
|
68
|
+
|
|
51
69
|
# List of hidden (write only) fields
|
|
52
70
|
attr_accessor :hidden_fields
|
|
53
71
|
|
|
@@ -96,6 +114,12 @@ module PulpcoreClient
|
|
|
96
114
|
:'ca_cert' => :'ca_cert',
|
|
97
115
|
:'client_cert' => :'client_cert',
|
|
98
116
|
:'tls_validation' => :'tls_validation',
|
|
117
|
+
:'download_concurrency' => :'download_concurrency',
|
|
118
|
+
:'max_retries' => :'max_retries',
|
|
119
|
+
:'total_timeout' => :'total_timeout',
|
|
120
|
+
:'connect_timeout' => :'connect_timeout',
|
|
121
|
+
:'sock_connect_timeout' => :'sock_connect_timeout',
|
|
122
|
+
:'sock_read_timeout' => :'sock_read_timeout',
|
|
99
123
|
:'hidden_fields' => :'hidden_fields',
|
|
100
124
|
:'q_select' => :'q_select',
|
|
101
125
|
:'last_replication' => :'last_replication',
|
|
@@ -122,6 +146,12 @@ module PulpcoreClient
|
|
|
122
146
|
:'ca_cert' => :'String',
|
|
123
147
|
:'client_cert' => :'String',
|
|
124
148
|
:'tls_validation' => :'Boolean',
|
|
149
|
+
:'download_concurrency' => :'Integer',
|
|
150
|
+
:'max_retries' => :'Integer',
|
|
151
|
+
:'total_timeout' => :'Float',
|
|
152
|
+
:'connect_timeout' => :'Float',
|
|
153
|
+
:'sock_connect_timeout' => :'Float',
|
|
154
|
+
:'sock_read_timeout' => :'Float',
|
|
125
155
|
:'hidden_fields' => :'Array<GenericRemoteResponseHiddenFieldsInner>',
|
|
126
156
|
:'q_select' => :'String',
|
|
127
157
|
:'last_replication' => :'Time',
|
|
@@ -135,6 +165,12 @@ module PulpcoreClient
|
|
|
135
165
|
:'domain',
|
|
136
166
|
:'ca_cert',
|
|
137
167
|
:'client_cert',
|
|
168
|
+
:'download_concurrency',
|
|
169
|
+
:'max_retries',
|
|
170
|
+
:'total_timeout',
|
|
171
|
+
:'connect_timeout',
|
|
172
|
+
:'sock_connect_timeout',
|
|
173
|
+
:'sock_read_timeout',
|
|
138
174
|
:'q_select',
|
|
139
175
|
])
|
|
140
176
|
end
|
|
@@ -204,6 +240,30 @@ module PulpcoreClient
|
|
|
204
240
|
self.tls_validation = attributes[:'tls_validation']
|
|
205
241
|
end
|
|
206
242
|
|
|
243
|
+
if attributes.key?(:'download_concurrency')
|
|
244
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
if attributes.key?(:'max_retries')
|
|
248
|
+
self.max_retries = attributes[:'max_retries']
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
if attributes.key?(:'total_timeout')
|
|
252
|
+
self.total_timeout = attributes[:'total_timeout']
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
if attributes.key?(:'connect_timeout')
|
|
256
|
+
self.connect_timeout = attributes[:'connect_timeout']
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
if attributes.key?(:'sock_connect_timeout')
|
|
260
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
|
261
|
+
end
|
|
262
|
+
|
|
263
|
+
if attributes.key?(:'sock_read_timeout')
|
|
264
|
+
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
|
265
|
+
end
|
|
266
|
+
|
|
207
267
|
if attributes.key?(:'hidden_fields')
|
|
208
268
|
if (value = attributes[:'hidden_fields']).is_a?(Array)
|
|
209
269
|
self.hidden_fields = value
|
|
@@ -240,6 +300,26 @@ module PulpcoreClient
|
|
|
240
300
|
invalid_properties.push('invalid value for "api_root", api_root cannot be nil.')
|
|
241
301
|
end
|
|
242
302
|
|
|
303
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
|
304
|
+
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
|
308
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
312
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
316
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
320
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
|
321
|
+
end
|
|
322
|
+
|
|
243
323
|
invalid_properties
|
|
244
324
|
end
|
|
245
325
|
|
|
@@ -250,9 +330,64 @@ module PulpcoreClient
|
|
|
250
330
|
return false if @name.nil?
|
|
251
331
|
return false if @base_url.nil?
|
|
252
332
|
return false if @api_root.nil?
|
|
333
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
|
334
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
|
335
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
336
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
337
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
253
338
|
true
|
|
254
339
|
end
|
|
255
340
|
|
|
341
|
+
# Custom attribute writer method with validation
|
|
342
|
+
# @param [Object] download_concurrency Value to be assigned
|
|
343
|
+
def download_concurrency=(download_concurrency)
|
|
344
|
+
if !download_concurrency.nil? && download_concurrency < 1
|
|
345
|
+
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
|
346
|
+
end
|
|
347
|
+
|
|
348
|
+
@download_concurrency = download_concurrency
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
# Custom attribute writer method with validation
|
|
352
|
+
# @param [Object] total_timeout Value to be assigned
|
|
353
|
+
def total_timeout=(total_timeout)
|
|
354
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
|
355
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
@total_timeout = total_timeout
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
# Custom attribute writer method with validation
|
|
362
|
+
# @param [Object] connect_timeout Value to be assigned
|
|
363
|
+
def connect_timeout=(connect_timeout)
|
|
364
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
|
365
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
@connect_timeout = connect_timeout
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
# Custom attribute writer method with validation
|
|
372
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
|
373
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
|
374
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
|
375
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
@sock_connect_timeout = sock_connect_timeout
|
|
379
|
+
end
|
|
380
|
+
|
|
381
|
+
# Custom attribute writer method with validation
|
|
382
|
+
# @param [Object] sock_read_timeout Value to be assigned
|
|
383
|
+
def sock_read_timeout=(sock_read_timeout)
|
|
384
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
|
385
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
@sock_read_timeout = sock_read_timeout
|
|
389
|
+
end
|
|
390
|
+
|
|
256
391
|
# Checks equality by comparing each attribute.
|
|
257
392
|
# @param [Object] Object to be compared
|
|
258
393
|
def ==(o)
|
|
@@ -269,6 +404,12 @@ module PulpcoreClient
|
|
|
269
404
|
ca_cert == o.ca_cert &&
|
|
270
405
|
client_cert == o.client_cert &&
|
|
271
406
|
tls_validation == o.tls_validation &&
|
|
407
|
+
download_concurrency == o.download_concurrency &&
|
|
408
|
+
max_retries == o.max_retries &&
|
|
409
|
+
total_timeout == o.total_timeout &&
|
|
410
|
+
connect_timeout == o.connect_timeout &&
|
|
411
|
+
sock_connect_timeout == o.sock_connect_timeout &&
|
|
412
|
+
sock_read_timeout == o.sock_read_timeout &&
|
|
272
413
|
hidden_fields == o.hidden_fields &&
|
|
273
414
|
q_select == o.q_select &&
|
|
274
415
|
last_replication == o.last_replication &&
|
|
@@ -284,7 +425,7 @@ module PulpcoreClient
|
|
|
284
425
|
# Calculates hash code according to all attributes.
|
|
285
426
|
# @return [Integer] Hash code
|
|
286
427
|
def hash
|
|
287
|
-
[pulp_href, prn, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, hidden_fields, q_select, last_replication, policy].hash
|
|
428
|
+
[pulp_href, prn, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, download_concurrency, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, hidden_fields, q_select, last_replication, policy].hash
|
|
288
429
|
end
|
|
289
430
|
|
|
290
431
|
# Builds the object from hash
|
|
@@ -38,6 +38,7 @@ describe 'ContentOpenpgpPublickeyApi' do
|
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
40
|
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
|
41
|
+
# @option opts [Boolean] :overwrite When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true.
|
|
41
42
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
42
43
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
|
43
44
|
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
|
@@ -104,7 +104,7 @@ describe 'UpstreamPulpsApi' do
|
|
|
104
104
|
# @option opts [String] :name__regex Filter results where name matches regex value
|
|
105
105
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
106
106
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
107
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `base_url` - Base url * `-base_url` - Base url (descending) * `api_root` - Api root * `-api_root` - Api root (descending) * `domain` - Domain * `-domain` - Domain (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `q_select` - Q select * `-q_select` - Q select (descending) * `policy` - Policy * `-policy` - Policy (descending) * `last_replication` - Last replication * `-last_replication` - Last replication (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
107
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `base_url` - Base url * `-base_url` - Base url (descending) * `api_root` - Api root * `-api_root` - Api root (descending) * `domain` - Domain * `-domain` - Domain (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `q_select` - Q select * `-q_select` - Q select (descending) * `policy` - Policy * `-policy` - Policy (descending) * `last_replication` - Last replication * `-last_replication` - Last replication (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
108
108
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
109
109
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
110
110
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
@@ -33,13 +33,13 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "no_content_change_since"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "base_url"' 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
|
|
@@ -51,13 +51,13 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "pulp_created"' 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 "
|
|
60
|
+
describe 'test attribute "hidden"' 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
|
|
@@ -69,7 +69,7 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "pulp_last_updated"' 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
|
|
@@ -81,25 +81,25 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "name"' 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 "
|
|
90
|
+
describe 'test attribute "base_path"' 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 "
|
|
96
|
+
describe 'test attribute "prn"' 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 "
|
|
102
|
+
describe 'test attribute "pulp_href"' 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
|
|
@@ -87,6 +87,42 @@ describe PulpcoreClient::PatchedUpstreamPulp do
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
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 "max_retries"' 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 "total_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 "connect_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 "sock_connect_timeout"' 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 "sock_read_timeout"' 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
|
+
|
|
90
126
|
describe 'test attribute "q_select"' do
|
|
91
127
|
it 'should work' do
|
|
92
128
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -45,4 +45,10 @@ describe PulpcoreClient::RepositoryAddRemoveContent do
|
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
describe 'test attribute "overwrite"' 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
|
+
|
|
48
54
|
end
|
|
@@ -93,6 +93,42 @@ describe PulpcoreClient::UpstreamPulpResponse do
|
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
+
describe 'test attribute "download_concurrency"' 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 "max_retries"' 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 "total_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 "connect_timeout"' 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 "sock_connect_timeout"' 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 "sock_read_timeout"' 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
|
+
|
|
96
132
|
describe 'test attribute "hidden_fields"' do
|
|
97
133
|
it 'should work' do
|
|
98
134
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -87,6 +87,42 @@ describe PulpcoreClient::UpstreamPulp do
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
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 "max_retries"' 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 "total_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 "connect_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 "sock_connect_timeout"' 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 "sock_read_timeout"' 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
|
+
|
|
90
126
|
describe 'test attribute "q_select"' do
|
|
91
127
|
it 'should work' do
|
|
92
128
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
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.111.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-05-
|
|
11
|
+
date: 2026-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|