pulp_python_client 3.12.5 → 3.12.6
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 +44 -44
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87c761dd5ffd1521e899c0e97fac18a759618bd29716a060072bdf2194edab94
|
4
|
+
data.tar.gz: d39180657ce90f17579a17ec32be5f3d58b9521ce7ba7e4e839b6df5988fee35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd3eca48bcdcc38dcbf51df1a6d0a248deaa74e820ecad49e882c184af053ce9b0a5285bc81204e17733eb76e62b1a7752fd123e124cad2a435d9800bdb790f9
|
7
|
+
data.tar.gz: e7645bc9f41e16a87f9a43824c5fd7b7cfe3a2e6f8190422ce7b995db70824915fcb38bcefd6607b0ef30face6ae247b57cc17c9eb5cf6399b0f3d8ed67a77d1
|
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.12.
|
10
|
+
- Package version: 3.12.6
|
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.12.
|
27
|
+
gem install ./pulp_python_client-3.12.6.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.12.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.12.6.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.12.
|
36
|
+
gem 'pulp_python_client', '~> 3.12.6'
|
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
|
@@ -332,20 +332,20 @@ module PulpPythonClient
|
|
332
332
|
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
333
333
|
end
|
334
334
|
|
335
|
-
if !@total_timeout.nil? && @total_timeout < 0
|
336
|
-
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.')
|
335
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
336
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
337
337
|
end
|
338
338
|
|
339
|
-
if !@connect_timeout.nil? && @connect_timeout < 0
|
340
|
-
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.')
|
339
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
340
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
341
341
|
end
|
342
342
|
|
343
|
-
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
344
|
-
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.')
|
343
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
344
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
345
345
|
end
|
346
346
|
|
347
|
-
if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
348
|
-
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.')
|
347
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
348
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
349
349
|
end
|
350
350
|
|
351
351
|
invalid_properties
|
@@ -357,10 +357,10 @@ module PulpPythonClient
|
|
357
357
|
return false if @name.nil?
|
358
358
|
return false if @url.nil?
|
359
359
|
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
360
|
-
return false if !@total_timeout.nil? && @total_timeout < 0
|
361
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0
|
362
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0
|
363
|
-
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0
|
360
|
+
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
361
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
362
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
363
|
+
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
364
364
|
true
|
365
365
|
end
|
366
366
|
|
@@ -377,8 +377,8 @@ module PulpPythonClient
|
|
377
377
|
# Custom attribute writer method with validation
|
378
378
|
# @param [Object] total_timeout Value to be assigned
|
379
379
|
def total_timeout=(total_timeout)
|
380
|
-
if !total_timeout.nil? && total_timeout < 0
|
381
|
-
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.'
|
380
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
381
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
382
382
|
end
|
383
383
|
|
384
384
|
@total_timeout = total_timeout
|
@@ -387,8 +387,8 @@ module PulpPythonClient
|
|
387
387
|
# Custom attribute writer method with validation
|
388
388
|
# @param [Object] connect_timeout Value to be assigned
|
389
389
|
def connect_timeout=(connect_timeout)
|
390
|
-
if !connect_timeout.nil? && connect_timeout < 0
|
391
|
-
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.'
|
390
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
391
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
392
392
|
end
|
393
393
|
|
394
394
|
@connect_timeout = connect_timeout
|
@@ -397,8 +397,8 @@ module PulpPythonClient
|
|
397
397
|
# Custom attribute writer method with validation
|
398
398
|
# @param [Object] sock_connect_timeout Value to be assigned
|
399
399
|
def sock_connect_timeout=(sock_connect_timeout)
|
400
|
-
if !sock_connect_timeout.nil? && sock_connect_timeout < 0
|
401
|
-
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.'
|
400
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
401
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
402
402
|
end
|
403
403
|
|
404
404
|
@sock_connect_timeout = sock_connect_timeout
|
@@ -407,8 +407,8 @@ module PulpPythonClient
|
|
407
407
|
# Custom attribute writer method with validation
|
408
408
|
# @param [Object] sock_read_timeout Value to be assigned
|
409
409
|
def sock_read_timeout=(sock_read_timeout)
|
410
|
-
if !sock_read_timeout.nil? && sock_read_timeout < 0
|
411
|
-
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.'
|
410
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
411
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
412
412
|
end
|
413
413
|
|
414
414
|
@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.12.
|
4
|
+
version: 3.12.6
|
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-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -249,7 +249,7 @@ homepage: https://github.com/pulp/pulp_python
|
|
249
249
|
licenses:
|
250
250
|
- GPLv2+
|
251
251
|
metadata: {}
|
252
|
-
post_install_message:
|
252
|
+
post_install_message:
|
253
253
|
rdoc_options: []
|
254
254
|
require_paths:
|
255
255
|
- lib
|
@@ -264,63 +264,63 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
264
264
|
- !ruby/object:Gem::Version
|
265
265
|
version: '0'
|
266
266
|
requirements: []
|
267
|
-
rubygems_version: 3.
|
268
|
-
signing_key:
|
267
|
+
rubygems_version: 3.4.20
|
268
|
+
signing_key:
|
269
269
|
specification_version: 4
|
270
270
|
summary: Pulp 3 API Ruby Gem
|
271
271
|
test_files:
|
272
|
-
- spec/api/distributions_pypi_api_spec.rb
|
273
|
-
- spec/api/remotes_python_api_spec.rb
|
274
|
-
- spec/api/pypi_legacy_api_spec.rb
|
275
|
-
- spec/api/pypi_metadata_api_spec.rb
|
276
|
-
- spec/api/pypi_simple_api_spec.rb
|
277
272
|
- spec/api/pypi_api_spec.rb
|
278
|
-
- spec/api/repositories_python_api_spec.rb
|
279
273
|
- spec/api/repositories_python_versions_api_spec.rb
|
280
274
|
- spec/api/publications_pypi_api_spec.rb
|
275
|
+
- spec/api/pypi_legacy_api_spec.rb
|
276
|
+
- spec/api/pypi_metadata_api_spec.rb
|
281
277
|
- spec/api/content_packages_api_spec.rb
|
278
|
+
- spec/api/remotes_python_api_spec.rb
|
279
|
+
- spec/api/pypi_simple_api_spec.rb
|
280
|
+
- spec/api/distributions_pypi_api_spec.rb
|
281
|
+
- spec/api/repositories_python_api_spec.rb
|
282
282
|
- spec/api_client_spec.rb
|
283
283
|
- spec/configuration_spec.rb
|
284
|
-
- spec/models/
|
285
|
-
- spec/models/repository_version_response_spec.rb
|
286
|
-
- spec/models/repository_add_remove_content_spec.rb
|
287
|
-
- spec/models/python_bander_remote_spec.rb
|
288
|
-
- spec/models/python_python_repository_spec.rb
|
289
|
-
- spec/models/set_label_response_spec.rb
|
284
|
+
- spec/models/repair_spec.rb
|
290
285
|
- spec/models/patchedpython_python_distribution_spec.rb
|
286
|
+
- spec/models/python_python_repository_response_spec.rb
|
287
|
+
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
291
288
|
- spec/models/python_python_remote_response_hidden_fields_spec.rb
|
292
|
-
- spec/models/
|
293
|
-
- spec/models/
|
294
|
-
- spec/models/object_roles_response_spec.rb
|
295
|
-
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
289
|
+
- spec/models/set_label_spec.rb
|
290
|
+
- spec/models/python_bander_remote_spec.rb
|
296
291
|
- spec/models/policy_enum_spec.rb
|
297
|
-
- spec/models/package_types_enum_spec.rb
|
298
|
-
- spec/models/unset_label_response_spec.rb
|
299
|
-
- spec/models/repository_sync_url_spec.rb
|
300
|
-
- spec/models/package_metadata_response_spec.rb
|
301
|
-
- spec/models/nested_role_response_spec.rb
|
302
|
-
- spec/models/async_operation_response_spec.rb
|
303
292
|
- spec/models/python_python_package_content_response_spec.rb
|
304
|
-
- spec/models/
|
305
|
-
- spec/models/patchedpython_python_repository_spec.rb
|
306
|
-
- spec/models/python_python_distribution_spec.rb
|
307
|
-
- spec/models/python_python_publication_response_spec.rb
|
308
|
-
- spec/models/content_summary_response_spec.rb
|
309
|
-
- spec/models/package_upload_spec.rb
|
310
|
-
- spec/models/summary_response_spec.rb
|
311
|
-
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
293
|
+
- spec/models/repository_add_remove_content_spec.rb
|
312
294
|
- spec/models/exclude_platforms_enum_spec.rb
|
295
|
+
- spec/models/package_metadata_response_spec.rb
|
296
|
+
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
297
|
+
- spec/models/python_python_package_content_spec.rb
|
313
298
|
- spec/models/patchedpython_python_remote_spec.rb
|
299
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
300
|
+
- spec/models/nested_role_response_spec.rb
|
301
|
+
- spec/models/nested_role_spec.rb
|
302
|
+
- spec/models/package_upload_spec.rb
|
303
|
+
- spec/models/package_types_enum_spec.rb
|
304
|
+
- spec/models/python_python_remote_spec.rb
|
305
|
+
- spec/models/repository_sync_url_spec.rb
|
306
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
314
307
|
- spec/models/unset_label_spec.rb
|
315
|
-
- spec/models/
|
308
|
+
- spec/models/python_python_distribution_response_spec.rb
|
309
|
+
- spec/models/unset_label_response_spec.rb
|
310
|
+
- spec/models/python_python_publication_response_spec.rb
|
311
|
+
- spec/models/python_python_distribution_spec.rb
|
312
|
+
- spec/models/repository_version_response_spec.rb
|
313
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
314
|
+
- spec/models/python_python_publication_spec.rb
|
316
315
|
- spec/models/python_python_remote_response_spec.rb
|
316
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
317
|
+
- spec/models/my_permissions_response_spec.rb
|
317
318
|
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
319
|
+
- spec/models/object_roles_response_spec.rb
|
318
320
|
- spec/models/package_upload_task_response_spec.rb
|
319
|
-
- spec/models/
|
320
|
-
- spec/models/
|
321
|
-
- spec/models/
|
322
|
-
- spec/models/
|
323
|
-
- spec/models/
|
324
|
-
- spec/models/nested_role_spec.rb
|
325
|
-
- spec/models/python_python_remote_spec.rb
|
321
|
+
- spec/models/set_label_response_spec.rb
|
322
|
+
- spec/models/summary_response_spec.rb
|
323
|
+
- spec/models/content_summary_response_spec.rb
|
324
|
+
- spec/models/python_python_repository_spec.rb
|
325
|
+
- spec/models/async_operation_response_spec.rb
|
326
326
|
- spec/spec_helper.rb
|