pulp_python_client 3.0.0b9 → 3.0.0b11
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 +49 -42
- data/docs/ContentPackagesApi.md +54 -56
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +21 -0
- data/docs/DistributionsPypiApi.md +108 -60
- data/docs/InlineResponse200.md +3 -3
- data/docs/InlineResponse2001.md +3 -3
- data/docs/InlineResponse2002.md +3 -3
- data/docs/InlineResponse2003.md +3 -3
- data/docs/InlineResponse2004.md +3 -3
- data/docs/InlineResponse2005.md +3 -3
- data/docs/PatchedpythonPythonDistribution.md +23 -0
- data/docs/PatchedpythonPythonRemote.md +43 -0
- data/docs/PatchedpythonPythonRepository.md +21 -0
- data/docs/PolicyEnum.md +16 -0
- data/docs/PublicationsPypiApi.md +40 -40
- data/docs/PythonBanderRemote.md +19 -0
- data/docs/PythonPythonDistribution.md +1 -7
- data/docs/{PythonPythonDistributionRead.md → PythonPythonDistributionResponse.md} +2 -2
- data/docs/PythonPythonPackageContent.md +61 -0
- data/docs/{PythonPythonPackageContentRead.md → PythonPythonPackageContentResponse.md} +3 -3
- data/docs/PythonPythonPublication.md +2 -8
- data/docs/{PythonPythonPublicationRead.md → PythonPythonPublicationResponse.md} +2 -2
- data/docs/PythonPythonRemote.md +6 -12
- data/docs/{PythonPythonRemoteRead.md → PythonPythonRemoteResponse.md} +7 -7
- data/docs/PythonPythonRepository.md +4 -10
- data/docs/{PythonPythonRepositoryRead.md → PythonPythonRepositoryResponse.md} +5 -3
- data/docs/RemotesPythonApi.md +181 -65
- data/docs/RepositoriesPythonApi.md +97 -73
- data/docs/RepositoriesPythonVersionsApi.md +94 -60
- data/docs/RepositoryAddRemoveContent.md +2 -2
- data/docs/RepositorySyncURL.md +1 -1
- data/docs/RepositoryVersion.md +1 -9
- data/docs/{RepositoryVersionRead.md → RepositoryVersionResponse.md} +3 -3
- data/lib/pulp_python_client.rb +15 -9
- data/lib/pulp_python_client/api/content_packages_api.rb +73 -84
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +153 -90
- data/lib/pulp_python_client/api/publications_pypi_api.rb +59 -59
- data/lib/pulp_python_client/api/remotes_python_api.rb +253 -100
- data/lib/pulp_python_client/api/repositories_python_api.rb +145 -118
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +137 -89
- data/lib/pulp_python_client/api_client.rb +2 -2
- data/lib/pulp_python_client/api_error.rb +2 -2
- data/lib/pulp_python_client/configuration.rb +3 -3
- data/lib/pulp_python_client/models/async_operation_response.rb +3 -2
- data/lib/pulp_python_client/models/content_summary.rb +9 -15
- data/lib/pulp_python_client/models/content_summary_response.rb +240 -0
- data/lib/pulp_python_client/models/inline_response200.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2001.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2002.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2003.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2004.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2005.rb +3 -13
- data/lib/pulp_python_client/models/patchedpython_python_distribution.rb +240 -0
- data/lib/pulp_python_client/models/patchedpython_python_remote.rb +359 -0
- data/lib/pulp_python_client/models/patchedpython_python_repository.rb +229 -0
- data/lib/pulp_python_client/models/policy_enum.rb +37 -0
- data/lib/pulp_python_client/models/{project_specifier.rb → python_bander_remote.rb} +26 -40
- data/lib/pulp_python_client/models/python_python_distribution.rb +4 -85
- data/lib/pulp_python_client/models/{python_python_distribution_read.rb → python_python_distribution_response.rb} +6 -58
- data/lib/pulp_python_client/models/python_python_package_content.rb +433 -0
- data/lib/pulp_python_client/models/{python_python_package_content_read.rb → python_python_package_content_response.rb} +6 -89
- data/lib/pulp_python_client/models/python_python_publication.rb +7 -37
- data/lib/pulp_python_client/models/{python_python_publication_read.rb → python_python_publication_response.rb} +6 -5
- data/lib/pulp_python_client/models/python_python_remote.rb +13 -209
- data/lib/pulp_python_client/models/{python_python_remote_read.rb → python_python_remote_response.rb} +15 -182
- data/lib/pulp_python_client/models/python_python_repository.rb +18 -78
- data/lib/pulp_python_client/models/{python_python_repository_read.rb → python_python_repository_response.rb} +21 -44
- data/lib/pulp_python_client/models/repository_add_remove_content.rb +5 -4
- data/lib/pulp_python_client/models/repository_sync_url.rb +3 -8
- data/lib/pulp_python_client/models/repository_version.rb +7 -43
- data/lib/pulp_python_client/models/{repository_version_read.rb → repository_version_response.rb} +8 -6
- data/lib/pulp_python_client/version.rb +3 -3
- data/pulp_python_client.gemspec +4 -4
- data/spec/api/content_packages_api_spec.rb +24 -25
- data/spec/api/distributions_pypi_api_spec.rb +39 -18
- data/spec/api/publications_pypi_api_spec.rb +14 -14
- data/spec/api/remotes_python_api_spec.rb +61 -21
- data/spec/api/repositories_python_api_spec.rb +28 -19
- data/spec/api/repositories_python_versions_api_spec.rb +38 -22
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/async_operation_response_spec.rb +2 -2
- data/spec/models/content_summary_response_spec.rb +53 -0
- data/spec/models/content_summary_spec.rb +2 -2
- data/spec/models/inline_response2001_spec.rb +2 -2
- data/spec/models/inline_response2002_spec.rb +2 -2
- data/spec/models/inline_response2003_spec.rb +2 -2
- data/spec/models/inline_response2004_spec.rb +2 -2
- data/spec/models/inline_response2005_spec.rb +2 -2
- data/spec/models/inline_response200_spec.rb +2 -2
- data/spec/models/patchedpython_python_distribution_spec.rb +59 -0
- data/spec/models/patchedpython_python_remote_spec.rb +119 -0
- data/spec/models/patchedpython_python_repository_spec.rb +53 -0
- data/spec/models/policy_enum_spec.rb +35 -0
- data/spec/models/{project_specifier_spec.rb → python_bander_remote_spec.rb} +10 -10
- data/spec/models/{python_python_distribution_read_spec.rb → python_python_distribution_response_spec.rb} +8 -8
- data/spec/models/python_python_distribution_spec.rb +2 -20
- data/spec/models/{python_python_package_content_read_spec.rb → python_python_package_content_response_spec.rb} +8 -8
- data/spec/models/python_python_package_content_spec.rb +173 -0
- data/spec/models/{python_python_publication_read_spec.rb → python_python_publication_response_spec.rb} +8 -8
- data/spec/models/python_python_publication_spec.rb +2 -20
- data/spec/models/{python_python_remote_read_spec.rb → python_python_remote_response_spec.rb} +8 -12
- data/spec/models/python_python_remote_spec.rb +2 -24
- data/spec/models/{python_python_repository_read_spec.rb → python_python_repository_response_spec.rb} +14 -8
- data/spec/models/python_python_repository_spec.rb +5 -23
- data/spec/models/repository_add_remove_content_spec.rb +2 -2
- data/spec/models/repository_sync_url_spec.rb +2 -2
- data/spec/models/{repository_version_read_spec.rb → repository_version_response_spec.rb} +8 -8
- data/spec/models/repository_version_spec.rb +2 -26
- data/spec/spec_helper.rb +2 -2
- metadata +70 -46
- data/docs/ProjectSpecifier.md +0 -19
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -32,18 +32,6 @@ describe 'PythonPythonRemote' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpPythonClient::PythonPythonRemote)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "pulp_href"' do
|
|
36
|
-
it 'should work' do
|
|
37
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
-
end
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
describe 'test attribute "pulp_created"' do
|
|
42
|
-
it 'should work' do
|
|
43
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
|
|
47
35
|
describe 'test attribute "name"' do
|
|
48
36
|
it 'should work' do
|
|
49
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -98,12 +86,6 @@ describe 'PythonPythonRemote' do
|
|
|
98
86
|
end
|
|
99
87
|
end
|
|
100
88
|
|
|
101
|
-
describe 'test attribute "pulp_last_updated"' do
|
|
102
|
-
it 'should work' do
|
|
103
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
|
-
end
|
|
105
|
-
end
|
|
106
|
-
|
|
107
89
|
describe 'test attribute "download_concurrency"' do
|
|
108
90
|
it 'should work' do
|
|
109
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -113,10 +95,6 @@ describe 'PythonPythonRemote' do
|
|
|
113
95
|
describe 'test attribute "policy"' do
|
|
114
96
|
it 'should work' do
|
|
115
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["immediate", "on_demand", "streamed"])
|
|
117
|
-
# validator.allowable_values.each do |value|
|
|
118
|
-
# expect { @instance.policy = value }.not_to raise_error
|
|
119
|
-
# end
|
|
120
98
|
end
|
|
121
99
|
end
|
|
122
100
|
|
data/spec/models/{python_python_repository_read_spec.rb → python_python_repository_response_spec.rb}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpPythonClient::
|
|
17
|
+
# Unit tests for PulpPythonClient::PythonPythonRepositoryResponse
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'PythonPythonRepositoryResponse' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpPythonClient::
|
|
23
|
+
@instance = PulpPythonClient::PythonPythonRepositoryResponse.new
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
after do
|
|
27
27
|
# run after each test
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test an instance of
|
|
31
|
-
it 'should create an instance of
|
|
32
|
-
expect(@instance).to be_instance_of(PulpPythonClient::
|
|
30
|
+
describe 'test an instance of PythonPythonRepositoryResponse' do
|
|
31
|
+
it 'should create an instance of PythonPythonRepositoryResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::PythonPythonRepositoryResponse)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -68,4 +68,10 @@ describe 'PythonPythonRepositoryRead' do
|
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
+
describe 'test attribute "remote"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
71
77
|
end
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -32,37 +32,19 @@ describe 'PythonPythonRepository' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpPythonClient::PythonPythonRepository)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
36
|
-
it 'should work' do
|
|
37
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
-
end
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
describe 'test attribute "pulp_created"' do
|
|
42
|
-
it 'should work' do
|
|
43
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
describe 'test attribute "versions_href"' do
|
|
48
|
-
it 'should work' do
|
|
49
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
-
end
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
describe 'test attribute "latest_version_href"' do
|
|
35
|
+
describe 'test attribute "name"' do
|
|
54
36
|
it 'should work' do
|
|
55
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
38
|
end
|
|
57
39
|
end
|
|
58
40
|
|
|
59
|
-
describe 'test attribute "
|
|
41
|
+
describe 'test attribute "description"' do
|
|
60
42
|
it 'should work' do
|
|
61
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
44
|
end
|
|
63
45
|
end
|
|
64
46
|
|
|
65
|
-
describe 'test attribute "
|
|
47
|
+
describe 'test attribute "remote"' do
|
|
66
48
|
it 'should work' do
|
|
67
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
50
|
end
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -14,22 +14,22 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for PulpPythonClient::
|
|
17
|
+
# Unit tests for PulpPythonClient::RepositoryVersionResponse
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe '
|
|
20
|
+
describe 'RepositoryVersionResponse' do
|
|
21
21
|
before do
|
|
22
22
|
# run before each test
|
|
23
|
-
@instance = PulpPythonClient::
|
|
23
|
+
@instance = PulpPythonClient::RepositoryVersionResponse.new
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
after do
|
|
27
27
|
# run after each test
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test an instance of
|
|
31
|
-
it 'should create an instance of
|
|
32
|
-
expect(@instance).to be_instance_of(PulpPythonClient::
|
|
30
|
+
describe 'test an instance of RepositoryVersionResponse' do
|
|
31
|
+
it 'should create an instance of RepositoryVersionResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::RepositoryVersionResponse)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
describe 'test attribute "pulp_href"' do
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -32,34 +32,10 @@ describe 'RepositoryVersion' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(PulpPythonClient::RepositoryVersion)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "pulp_href"' do
|
|
36
|
-
it 'should work' do
|
|
37
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
-
end
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
describe 'test attribute "pulp_created"' do
|
|
42
|
-
it 'should work' do
|
|
43
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
describe 'test attribute "number"' do
|
|
48
|
-
it 'should work' do
|
|
49
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
-
end
|
|
51
|
-
end
|
|
52
|
-
|
|
53
35
|
describe 'test attribute "base_version"' do
|
|
54
36
|
it 'should work' do
|
|
55
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
38
|
end
|
|
57
39
|
end
|
|
58
40
|
|
|
59
|
-
describe 'test attribute "content_summary"' do
|
|
60
|
-
it 'should work' do
|
|
61
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
-
end
|
|
63
|
-
end
|
|
64
|
-
|
|
65
41
|
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
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.0.
|
|
4
|
+
version: 3.0.0b11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -64,9 +64,9 @@ dependencies:
|
|
|
64
64
|
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
66
|
version: '3.6'
|
|
67
|
-
description:
|
|
67
|
+
description: Fetch, Upload, Organize, and Distribute Software Packages
|
|
68
68
|
email:
|
|
69
|
-
-
|
|
69
|
+
- pulp-list@redhat.com
|
|
70
70
|
executables: []
|
|
71
71
|
extensions: []
|
|
72
72
|
extra_rdoc_files: []
|
|
@@ -77,6 +77,7 @@ files:
|
|
|
77
77
|
- docs/AsyncOperationResponse.md
|
|
78
78
|
- docs/ContentPackagesApi.md
|
|
79
79
|
- docs/ContentSummary.md
|
|
80
|
+
- docs/ContentSummaryResponse.md
|
|
80
81
|
- docs/DistributionsPypiApi.md
|
|
81
82
|
- docs/InlineResponse200.md
|
|
82
83
|
- docs/InlineResponse2001.md
|
|
@@ -84,24 +85,29 @@ files:
|
|
|
84
85
|
- docs/InlineResponse2003.md
|
|
85
86
|
- docs/InlineResponse2004.md
|
|
86
87
|
- docs/InlineResponse2005.md
|
|
87
|
-
- docs/
|
|
88
|
+
- docs/PatchedpythonPythonDistribution.md
|
|
89
|
+
- docs/PatchedpythonPythonRemote.md
|
|
90
|
+
- docs/PatchedpythonPythonRepository.md
|
|
91
|
+
- docs/PolicyEnum.md
|
|
88
92
|
- docs/PublicationsPypiApi.md
|
|
93
|
+
- docs/PythonBanderRemote.md
|
|
89
94
|
- docs/PythonPythonDistribution.md
|
|
90
|
-
- docs/
|
|
91
|
-
- docs/
|
|
95
|
+
- docs/PythonPythonDistributionResponse.md
|
|
96
|
+
- docs/PythonPythonPackageContent.md
|
|
97
|
+
- docs/PythonPythonPackageContentResponse.md
|
|
92
98
|
- docs/PythonPythonPublication.md
|
|
93
|
-
- docs/
|
|
99
|
+
- docs/PythonPythonPublicationResponse.md
|
|
94
100
|
- docs/PythonPythonRemote.md
|
|
95
|
-
- docs/
|
|
101
|
+
- docs/PythonPythonRemoteResponse.md
|
|
96
102
|
- docs/PythonPythonRepository.md
|
|
97
|
-
- docs/
|
|
103
|
+
- docs/PythonPythonRepositoryResponse.md
|
|
98
104
|
- docs/RemotesPythonApi.md
|
|
99
105
|
- docs/RepositoriesPythonApi.md
|
|
100
106
|
- docs/RepositoriesPythonVersionsApi.md
|
|
101
107
|
- docs/RepositoryAddRemoveContent.md
|
|
102
108
|
- docs/RepositorySyncURL.md
|
|
103
109
|
- docs/RepositoryVersion.md
|
|
104
|
-
- docs/
|
|
110
|
+
- docs/RepositoryVersionResponse.md
|
|
105
111
|
- git_push.sh
|
|
106
112
|
- lib/pulp_python_client.rb
|
|
107
113
|
- lib/pulp_python_client/api/content_packages_api.rb
|
|
@@ -115,26 +121,32 @@ files:
|
|
|
115
121
|
- lib/pulp_python_client/configuration.rb
|
|
116
122
|
- lib/pulp_python_client/models/async_operation_response.rb
|
|
117
123
|
- lib/pulp_python_client/models/content_summary.rb
|
|
124
|
+
- lib/pulp_python_client/models/content_summary_response.rb
|
|
118
125
|
- lib/pulp_python_client/models/inline_response200.rb
|
|
119
126
|
- lib/pulp_python_client/models/inline_response2001.rb
|
|
120
127
|
- lib/pulp_python_client/models/inline_response2002.rb
|
|
121
128
|
- lib/pulp_python_client/models/inline_response2003.rb
|
|
122
129
|
- lib/pulp_python_client/models/inline_response2004.rb
|
|
123
130
|
- lib/pulp_python_client/models/inline_response2005.rb
|
|
124
|
-
- lib/pulp_python_client/models/
|
|
131
|
+
- lib/pulp_python_client/models/patchedpython_python_distribution.rb
|
|
132
|
+
- lib/pulp_python_client/models/patchedpython_python_remote.rb
|
|
133
|
+
- lib/pulp_python_client/models/patchedpython_python_repository.rb
|
|
134
|
+
- lib/pulp_python_client/models/policy_enum.rb
|
|
135
|
+
- lib/pulp_python_client/models/python_bander_remote.rb
|
|
125
136
|
- lib/pulp_python_client/models/python_python_distribution.rb
|
|
126
|
-
- lib/pulp_python_client/models/
|
|
127
|
-
- lib/pulp_python_client/models/
|
|
137
|
+
- lib/pulp_python_client/models/python_python_distribution_response.rb
|
|
138
|
+
- lib/pulp_python_client/models/python_python_package_content.rb
|
|
139
|
+
- lib/pulp_python_client/models/python_python_package_content_response.rb
|
|
128
140
|
- lib/pulp_python_client/models/python_python_publication.rb
|
|
129
|
-
- lib/pulp_python_client/models/
|
|
141
|
+
- lib/pulp_python_client/models/python_python_publication_response.rb
|
|
130
142
|
- lib/pulp_python_client/models/python_python_remote.rb
|
|
131
|
-
- lib/pulp_python_client/models/
|
|
143
|
+
- lib/pulp_python_client/models/python_python_remote_response.rb
|
|
132
144
|
- lib/pulp_python_client/models/python_python_repository.rb
|
|
133
|
-
- lib/pulp_python_client/models/
|
|
145
|
+
- lib/pulp_python_client/models/python_python_repository_response.rb
|
|
134
146
|
- lib/pulp_python_client/models/repository_add_remove_content.rb
|
|
135
147
|
- lib/pulp_python_client/models/repository_sync_url.rb
|
|
136
148
|
- lib/pulp_python_client/models/repository_version.rb
|
|
137
|
-
- lib/pulp_python_client/models/
|
|
149
|
+
- lib/pulp_python_client/models/repository_version_response.rb
|
|
138
150
|
- lib/pulp_python_client/version.rb
|
|
139
151
|
- pulp_python_client.gemspec
|
|
140
152
|
- spec/api/content_packages_api_spec.rb
|
|
@@ -146,6 +158,7 @@ files:
|
|
|
146
158
|
- spec/api_client_spec.rb
|
|
147
159
|
- spec/configuration_spec.rb
|
|
148
160
|
- spec/models/async_operation_response_spec.rb
|
|
161
|
+
- spec/models/content_summary_response_spec.rb
|
|
149
162
|
- spec/models/content_summary_spec.rb
|
|
150
163
|
- spec/models/inline_response2001_spec.rb
|
|
151
164
|
- spec/models/inline_response2002_spec.rb
|
|
@@ -153,19 +166,24 @@ files:
|
|
|
153
166
|
- spec/models/inline_response2004_spec.rb
|
|
154
167
|
- spec/models/inline_response2005_spec.rb
|
|
155
168
|
- spec/models/inline_response200_spec.rb
|
|
156
|
-
- spec/models/
|
|
157
|
-
- spec/models/
|
|
169
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
|
170
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
|
171
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
|
172
|
+
- spec/models/policy_enum_spec.rb
|
|
173
|
+
- spec/models/python_bander_remote_spec.rb
|
|
174
|
+
- spec/models/python_python_distribution_response_spec.rb
|
|
158
175
|
- spec/models/python_python_distribution_spec.rb
|
|
159
|
-
- spec/models/
|
|
160
|
-
- spec/models/
|
|
176
|
+
- spec/models/python_python_package_content_response_spec.rb
|
|
177
|
+
- spec/models/python_python_package_content_spec.rb
|
|
178
|
+
- spec/models/python_python_publication_response_spec.rb
|
|
161
179
|
- spec/models/python_python_publication_spec.rb
|
|
162
|
-
- spec/models/
|
|
180
|
+
- spec/models/python_python_remote_response_spec.rb
|
|
163
181
|
- spec/models/python_python_remote_spec.rb
|
|
164
|
-
- spec/models/
|
|
182
|
+
- spec/models/python_python_repository_response_spec.rb
|
|
165
183
|
- spec/models/python_python_repository_spec.rb
|
|
166
184
|
- spec/models/repository_add_remove_content_spec.rb
|
|
167
185
|
- spec/models/repository_sync_url_spec.rb
|
|
168
|
-
- spec/models/
|
|
186
|
+
- spec/models/repository_version_response_spec.rb
|
|
169
187
|
- spec/models/repository_version_spec.rb
|
|
170
188
|
- spec/spec_helper.rb
|
|
171
189
|
homepage: https://openapi-generator.tech
|
|
@@ -192,34 +210,40 @@ signing_key:
|
|
|
192
210
|
specification_version: 4
|
|
193
211
|
summary: Pulp 3 API Ruby Gem
|
|
194
212
|
test_files:
|
|
195
|
-
- spec/api/
|
|
196
|
-
- spec/api/remotes_python_api_spec.rb
|
|
213
|
+
- spec/api/distributions_pypi_api_spec.rb
|
|
197
214
|
- spec/api/content_packages_api_spec.rb
|
|
198
215
|
- spec/api/publications_pypi_api_spec.rb
|
|
199
216
|
- spec/api/repositories_python_versions_api_spec.rb
|
|
200
|
-
- spec/api/
|
|
217
|
+
- spec/api/repositories_python_api_spec.rb
|
|
218
|
+
- spec/api/remotes_python_api_spec.rb
|
|
201
219
|
- spec/api_client_spec.rb
|
|
202
220
|
- spec/configuration_spec.rb
|
|
203
|
-
- spec/models/python_python_distribution_read_spec.rb
|
|
204
|
-
- spec/models/repository_sync_url_spec.rb
|
|
205
|
-
- spec/models/async_operation_response_spec.rb
|
|
206
|
-
- spec/models/python_python_remote_spec.rb
|
|
207
|
-
- spec/models/repository_add_remove_content_spec.rb
|
|
208
|
-
- spec/models/inline_response2003_spec.rb
|
|
209
|
-
- spec/models/python_python_remote_read_spec.rb
|
|
210
|
-
- spec/models/repository_version_spec.rb
|
|
211
|
-
- spec/models/python_python_repository_read_spec.rb
|
|
212
221
|
- spec/models/inline_response2004_spec.rb
|
|
213
|
-
- spec/models/
|
|
214
|
-
- spec/models/
|
|
215
|
-
- spec/models/python_python_publication_read_spec.rb
|
|
216
|
-
- spec/models/inline_response200_spec.rb
|
|
217
|
-
- spec/models/project_specifier_spec.rb
|
|
222
|
+
- spec/models/content_summary_response_spec.rb
|
|
223
|
+
- spec/models/repository_add_remove_content_spec.rb
|
|
218
224
|
- spec/models/python_python_distribution_spec.rb
|
|
219
|
-
- spec/models/
|
|
225
|
+
- spec/models/python_python_repository_response_spec.rb
|
|
226
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
|
227
|
+
- spec/models/python_python_package_content_spec.rb
|
|
228
|
+
- spec/models/python_python_package_content_response_spec.rb
|
|
229
|
+
- spec/models/python_python_remote_spec.rb
|
|
230
|
+
- spec/models/async_operation_response_spec.rb
|
|
231
|
+
- spec/models/policy_enum_spec.rb
|
|
220
232
|
- spec/models/content_summary_spec.rb
|
|
221
|
-
- spec/models/
|
|
222
|
-
- spec/models/
|
|
233
|
+
- spec/models/python_bander_remote_spec.rb
|
|
234
|
+
- spec/models/python_python_publication_response_spec.rb
|
|
235
|
+
- spec/models/inline_response2005_spec.rb
|
|
236
|
+
- spec/models/repository_version_spec.rb
|
|
237
|
+
- spec/models/python_python_distribution_response_spec.rb
|
|
223
238
|
- spec/models/python_python_publication_spec.rb
|
|
224
|
-
- spec/models/
|
|
239
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
|
240
|
+
- spec/models/inline_response2003_spec.rb
|
|
241
|
+
- spec/models/repository_version_response_spec.rb
|
|
242
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
|
243
|
+
- spec/models/python_python_remote_response_spec.rb
|
|
244
|
+
- spec/models/inline_response2001_spec.rb
|
|
245
|
+
- spec/models/python_python_repository_spec.rb
|
|
246
|
+
- spec/models/inline_response2002_spec.rb
|
|
247
|
+
- spec/models/repository_sync_url_spec.rb
|
|
248
|
+
- spec/models/inline_response200_spec.rb
|
|
225
249
|
- spec/spec_helper.rb
|