pulp_python_client 3.11.3 → 3.11.5
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/lib/pulp_python_client/models/patchedpython_python_remote.rb +20 -20
- data/lib/pulp_python_client/models/python_python_remote.rb +20 -20
- data/lib/pulp_python_client/models/python_python_remote_response.rb +20 -20
- data/lib/pulp_python_client/version.rb +1 -1
- metadata +42 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9abc1a08d5dfe995430975165aa63336d0d7b37e1f9cfab038b61b44b5fb76f
|
4
|
+
data.tar.gz: 9c75417a0d43a1293a7e9451b169e8e8e70c4a632248fd799d0325ddeeffa7d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c3314de95cc7e823b9d6bebd467952accf4175dc53fa73b54a7b00788b9af690bc76b7d8c74e54afee887d451fe43bf32299c94d6263e98dd80c858cef2c508
|
7
|
+
data.tar.gz: d8fae83ba35b2a1c6b3acb5a2ea5d1430fcea893ee551a641827d639a2ceee77e9f8df1d5c01061df25fbf2aa6863a79f3f8cae50e0c49626998a2929fdfb139
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 3.11.
|
10
|
+
- Package version: 3.11.5
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_python_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_python_client-3.11.
|
27
|
+
gem install ./pulp_python_client-3.11.5.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.11.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.11.5.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_python_client', '~> 3.11.
|
36
|
+
gem 'pulp_python_client', '~> 3.11.5'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -368,20 +368,20 @@ module PulpPythonClient
|
|
368
368
|
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
369
369
|
end
|
370
370
|
|
371
|
-
if !@total_timeout.nil? && @total_timeout < 0
|
372
|
-
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
|
371
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
372
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
373
373
|
end
|
374
374
|
|
375
|
-
if !@connect_timeout.nil? && @connect_timeout < 0
|
376
|
-
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
|
375
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
376
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
377
377
|
end
|
378
378
|
|
379
|
-
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
380
|
-
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
|
379
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
380
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
381
381
|
end
|
382
382
|
|
383
|
-
if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
384
|
-
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
|
383
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
384
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
385
385
|
end
|
386
386
|
|
387
387
|
invalid_properties
|
@@ -401,10 +401,10 @@ module PulpPythonClient
|
|
401
401
|
return false if !@username.nil? && @username.to_s.length < 1
|
402
402
|
return false if !@password.nil? && @password.to_s.length < 1
|
403
403
|
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
404
|
-
return false if !@total_timeout.nil? && @total_timeout < 0
|
405
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0
|
406
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
407
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
404
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
405
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
406
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
407
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
408
408
|
true
|
409
409
|
end
|
410
410
|
|
@@ -521,8 +521,8 @@ module PulpPythonClient
|
|
521
521
|
# Custom attribute writer method with validation
|
522
522
|
# @param [Object] total_timeout Value to be assigned
|
523
523
|
def total_timeout=(total_timeout)
|
524
|
-
if !total_timeout.nil? && total_timeout < 0
|
525
|
-
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
|
524
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
525
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
526
526
|
end
|
527
527
|
|
528
528
|
@total_timeout = total_timeout
|
@@ -531,8 +531,8 @@ module PulpPythonClient
|
|
531
531
|
# Custom attribute writer method with validation
|
532
532
|
# @param [Object] connect_timeout Value to be assigned
|
533
533
|
def connect_timeout=(connect_timeout)
|
534
|
-
if !connect_timeout.nil? && connect_timeout < 0
|
535
|
-
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
|
534
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
535
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
536
536
|
end
|
537
537
|
|
538
538
|
@connect_timeout = connect_timeout
|
@@ -541,8 +541,8 @@ module PulpPythonClient
|
|
541
541
|
# Custom attribute writer method with validation
|
542
542
|
# @param [Object] sock_connect_timeout Value to be assigned
|
543
543
|
def sock_connect_timeout=(sock_connect_timeout)
|
544
|
-
if !sock_connect_timeout.nil? && sock_connect_timeout < 0
|
545
|
-
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
|
544
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
545
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
546
546
|
end
|
547
547
|
|
548
548
|
@sock_connect_timeout = sock_connect_timeout
|
@@ -551,8 +551,8 @@ module PulpPythonClient
|
|
551
551
|
# Custom attribute writer method with validation
|
552
552
|
# @param [Object] sock_read_timeout Value to be assigned
|
553
553
|
def sock_read_timeout=(sock_read_timeout)
|
554
|
-
if !sock_read_timeout.nil? && sock_read_timeout < 0
|
555
|
-
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
|
554
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
555
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
556
556
|
end
|
557
557
|
|
558
558
|
@sock_read_timeout = sock_read_timeout
|
@@ -376,20 +376,20 @@ module PulpPythonClient
|
|
376
376
|
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
377
377
|
end
|
378
378
|
|
379
|
-
if !@total_timeout.nil? && @total_timeout < 0
|
380
|
-
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
|
379
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
380
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
381
381
|
end
|
382
382
|
|
383
|
-
if !@connect_timeout.nil? && @connect_timeout < 0
|
384
|
-
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
|
383
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
384
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
385
385
|
end
|
386
386
|
|
387
|
-
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
388
|
-
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
|
387
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
388
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
389
389
|
end
|
390
390
|
|
391
|
-
if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
392
|
-
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
|
391
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
392
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
393
393
|
end
|
394
394
|
|
395
395
|
invalid_properties
|
@@ -411,10 +411,10 @@ module PulpPythonClient
|
|
411
411
|
return false if !@username.nil? && @username.to_s.length < 1
|
412
412
|
return false if !@password.nil? && @password.to_s.length < 1
|
413
413
|
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
414
|
-
return false if !@total_timeout.nil? && @total_timeout < 0
|
415
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0
|
416
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
417
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
414
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
415
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
416
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
417
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
418
418
|
true
|
419
419
|
end
|
420
420
|
|
@@ -539,8 +539,8 @@ module PulpPythonClient
|
|
539
539
|
# Custom attribute writer method with validation
|
540
540
|
# @param [Object] total_timeout Value to be assigned
|
541
541
|
def total_timeout=(total_timeout)
|
542
|
-
if !total_timeout.nil? && total_timeout < 0
|
543
|
-
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
|
542
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
543
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
544
544
|
end
|
545
545
|
|
546
546
|
@total_timeout = total_timeout
|
@@ -549,8 +549,8 @@ module PulpPythonClient
|
|
549
549
|
# Custom attribute writer method with validation
|
550
550
|
# @param [Object] connect_timeout Value to be assigned
|
551
551
|
def connect_timeout=(connect_timeout)
|
552
|
-
if !connect_timeout.nil? && connect_timeout < 0
|
553
|
-
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
|
552
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
553
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
554
554
|
end
|
555
555
|
|
556
556
|
@connect_timeout = connect_timeout
|
@@ -559,8 +559,8 @@ module PulpPythonClient
|
|
559
559
|
# Custom attribute writer method with validation
|
560
560
|
# @param [Object] sock_connect_timeout Value to be assigned
|
561
561
|
def sock_connect_timeout=(sock_connect_timeout)
|
562
|
-
if !sock_connect_timeout.nil? && sock_connect_timeout < 0
|
563
|
-
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
|
562
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
563
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
564
564
|
end
|
565
565
|
|
566
566
|
@sock_connect_timeout = sock_connect_timeout
|
@@ -569,8 +569,8 @@ module PulpPythonClient
|
|
569
569
|
# Custom attribute writer method with validation
|
570
570
|
# @param [Object] sock_read_timeout Value to be assigned
|
571
571
|
def sock_read_timeout=(sock_read_timeout)
|
572
|
-
if !sock_read_timeout.nil? && sock_read_timeout < 0
|
573
|
-
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
|
572
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
573
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
574
574
|
end
|
575
575
|
|
576
576
|
@sock_read_timeout = sock_read_timeout
|
@@ -323,20 +323,20 @@ module PulpPythonClient
|
|
323
323
|
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
324
324
|
end
|
325
325
|
|
326
|
-
if !@total_timeout.nil? && @total_timeout < 0
|
327
|
-
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
|
326
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
327
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
328
328
|
end
|
329
329
|
|
330
|
-
if !@connect_timeout.nil? && @connect_timeout < 0
|
331
|
-
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
|
330
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
331
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
332
332
|
end
|
333
333
|
|
334
|
-
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
335
|
-
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
|
334
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
335
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
336
336
|
end
|
337
337
|
|
338
|
-
if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
339
|
-
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
|
338
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
339
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
340
340
|
end
|
341
341
|
|
342
342
|
invalid_properties
|
@@ -348,10 +348,10 @@ module PulpPythonClient
|
|
348
348
|
return false if @name.nil?
|
349
349
|
return false if @url.nil?
|
350
350
|
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
351
|
-
return false if !@total_timeout.nil? && @total_timeout < 0
|
352
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0
|
353
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
354
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
351
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
352
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
353
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
354
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
355
355
|
true
|
356
356
|
end
|
357
357
|
|
@@ -368,8 +368,8 @@ module PulpPythonClient
|
|
368
368
|
# Custom attribute writer method with validation
|
369
369
|
# @param [Object] total_timeout Value to be assigned
|
370
370
|
def total_timeout=(total_timeout)
|
371
|
-
if !total_timeout.nil? && total_timeout < 0
|
372
|
-
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
|
371
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
372
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
373
373
|
end
|
374
374
|
|
375
375
|
@total_timeout = total_timeout
|
@@ -378,8 +378,8 @@ module PulpPythonClient
|
|
378
378
|
# Custom attribute writer method with validation
|
379
379
|
# @param [Object] connect_timeout Value to be assigned
|
380
380
|
def connect_timeout=(connect_timeout)
|
381
|
-
if !connect_timeout.nil? && connect_timeout < 0
|
382
|
-
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
|
381
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
382
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
383
383
|
end
|
384
384
|
|
385
385
|
@connect_timeout = connect_timeout
|
@@ -388,8 +388,8 @@ module PulpPythonClient
|
|
388
388
|
# Custom attribute writer method with validation
|
389
389
|
# @param [Object] sock_connect_timeout Value to be assigned
|
390
390
|
def sock_connect_timeout=(sock_connect_timeout)
|
391
|
-
if !sock_connect_timeout.nil? && sock_connect_timeout < 0
|
392
|
-
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
|
391
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
392
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
393
393
|
end
|
394
394
|
|
395
395
|
@sock_connect_timeout = sock_connect_timeout
|
@@ -398,8 +398,8 @@ module PulpPythonClient
|
|
398
398
|
# Custom attribute writer method with validation
|
399
399
|
# @param [Object] sock_read_timeout Value to be assigned
|
400
400
|
def sock_read_timeout=(sock_read_timeout)
|
401
|
-
if !sock_read_timeout.nil? && sock_read_timeout < 0
|
402
|
-
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
|
401
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
402
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
403
403
|
end
|
404
404
|
|
405
405
|
@sock_read_timeout = sock_read_timeout
|
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.11.
|
4
|
+
version: 3.11.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -237,7 +237,7 @@ homepage: https://github.com/pulp/pulp_python
|
|
237
237
|
licenses:
|
238
238
|
- GPLv2+
|
239
239
|
metadata: {}
|
240
|
-
post_install_message:
|
240
|
+
post_install_message:
|
241
241
|
rdoc_options: []
|
242
242
|
require_paths:
|
243
243
|
- lib
|
@@ -252,59 +252,59 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
252
252
|
- !ruby/object:Gem::Version
|
253
253
|
version: '0'
|
254
254
|
requirements: []
|
255
|
-
rubygems_version: 3.
|
256
|
-
signing_key:
|
255
|
+
rubygems_version: 3.4.20
|
256
|
+
signing_key:
|
257
257
|
specification_version: 4
|
258
258
|
summary: Pulp 3 API Ruby Gem
|
259
259
|
test_files:
|
260
|
-
- spec/api/repositories_python_api_spec.rb
|
261
|
-
- spec/api/distributions_pypi_api_spec.rb
|
262
|
-
- spec/api/pypi_legacy_api_spec.rb
|
263
|
-
- spec/api/pypi_simple_api_spec.rb
|
264
|
-
- spec/api/publications_pypi_api_spec.rb
|
265
260
|
- spec/api/pypi_api_spec.rb
|
266
261
|
- spec/api/repositories_python_versions_api_spec.rb
|
267
|
-
- spec/api/
|
262
|
+
- spec/api/publications_pypi_api_spec.rb
|
263
|
+
- spec/api/pypi_legacy_api_spec.rb
|
268
264
|
- spec/api/pypi_metadata_api_spec.rb
|
265
|
+
- spec/api/content_packages_api_spec.rb
|
269
266
|
- spec/api/remotes_python_api_spec.rb
|
267
|
+
- spec/api/pypi_simple_api_spec.rb
|
268
|
+
- spec/api/distributions_pypi_api_spec.rb
|
269
|
+
- spec/api/repositories_python_api_spec.rb
|
270
270
|
- spec/api_client_spec.rb
|
271
271
|
- spec/configuration_spec.rb
|
272
|
-
- spec/models/python_python_remote_response_hidden_fields_spec.rb
|
273
272
|
- spec/models/repair_spec.rb
|
274
|
-
- spec/models/
|
275
|
-
- spec/models/
|
276
|
-
- spec/models/
|
277
|
-
- spec/models/
|
278
|
-
- spec/models/
|
279
|
-
- spec/models/
|
280
|
-
- spec/models/set_label_response_spec.rb
|
273
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
274
|
+
- spec/models/python_python_repository_response_spec.rb
|
275
|
+
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
276
|
+
- spec/models/python_python_remote_response_hidden_fields_spec.rb
|
277
|
+
- spec/models/set_label_spec.rb
|
278
|
+
- spec/models/python_bander_remote_spec.rb
|
281
279
|
- spec/models/policy_enum_spec.rb
|
282
|
-
- spec/models/
|
283
|
-
- spec/models/
|
280
|
+
- spec/models/python_python_package_content_response_spec.rb
|
281
|
+
- spec/models/repository_add_remove_content_spec.rb
|
282
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
283
|
+
- spec/models/package_metadata_response_spec.rb
|
284
284
|
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
285
|
-
- spec/models/
|
286
|
-
- spec/models/
|
287
|
-
- spec/models/
|
285
|
+
- spec/models/python_python_package_content_spec.rb
|
286
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
287
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
288
|
+
- spec/models/package_upload_spec.rb
|
288
289
|
- spec/models/package_types_enum_spec.rb
|
290
|
+
- spec/models/python_python_remote_spec.rb
|
291
|
+
- spec/models/repository_sync_url_spec.rb
|
292
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
293
|
+
- spec/models/unset_label_spec.rb
|
294
|
+
- spec/models/python_python_distribution_response_spec.rb
|
289
295
|
- spec/models/unset_label_response_spec.rb
|
290
|
-
- spec/models/
|
296
|
+
- spec/models/python_python_publication_response_spec.rb
|
297
|
+
- spec/models/python_python_distribution_spec.rb
|
298
|
+
- spec/models/repository_version_response_spec.rb
|
291
299
|
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
292
|
-
- spec/models/
|
300
|
+
- spec/models/python_python_publication_spec.rb
|
301
|
+
- spec/models/python_python_remote_response_spec.rb
|
302
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
303
|
+
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
293
304
|
- spec/models/package_upload_task_response_spec.rb
|
305
|
+
- spec/models/set_label_response_spec.rb
|
306
|
+
- spec/models/summary_response_spec.rb
|
307
|
+
- spec/models/content_summary_response_spec.rb
|
308
|
+
- spec/models/python_python_repository_spec.rb
|
294
309
|
- spec/models/async_operation_response_spec.rb
|
295
|
-
- spec/models/python_python_package_content_response_spec.rb
|
296
|
-
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
297
|
-
- spec/models/patchedpython_python_repository_spec.rb
|
298
|
-
- spec/models/patchedpython_python_remote_spec.rb
|
299
|
-
- spec/models/python_python_package_content_spec.rb
|
300
|
-
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
301
|
-
- spec/models/python_python_publication_spec.rb
|
302
|
-
- spec/models/python_python_publication_response_spec.rb
|
303
|
-
- spec/models/package_upload_spec.rb
|
304
|
-
- spec/models/package_metadata_response_spec.rb
|
305
|
-
- spec/models/repository_add_remove_content_spec.rb
|
306
|
-
- spec/models/python_python_distribution_spec.rb
|
307
|
-
- spec/models/patchedpython_python_distribution_spec.rb
|
308
|
-
- spec/models/set_label_spec.rb
|
309
|
-
- spec/models/python_python_repository_response_spec.rb
|
310
310
|
- spec/spec_helper.rb
|