pulp_2to3_migration_client 0.12.0.dev1623297700 → 0.12.0.dev1624592835
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +4 -4
- data/build/lib/pulpcore/__init__.py +2 -0
- data/build/lib/pulpcore/client/__init__.py +2 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/__init__.py +43 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/api/__init__.py +8 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py +761 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/api/pulp2_content_api.py +350 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/api/pulp2_repositories_api.py +313 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/api_client.py +667 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/configuration.py +427 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/exceptions.py +121 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/__init__.py +26 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/async_operation_response.py +124 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py +179 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_migration_plan_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_content_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_repository_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py +124 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_response.py +178 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py +338 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py +416 -0
- data/build/lib/pulpcore/client/pulp_2to3_migration/rest.py +292 -0
- data/dist/pulp_2to3_migration-client-0.12.0.dev1624592827.tar.gz +0 -0
- data/dist/pulp_2to3_migration_client-0.12.0.dev1624592827-py3-none-any.whl +0 -0
- data/docs/Pulp2ContentApi.md +2 -2
- data/lib/pulp_2to3_migration_client.rb +1 -1
- data/lib/pulp_2to3_migration_client/api/migration_plans_api.rb +1 -1
- data/lib/pulp_2to3_migration_client/api/pulp2_content_api.rb +3 -23
- data/lib/pulp_2to3_migration_client/api/pulp2_repositories_api.rb +1 -1
- data/lib/pulp_2to3_migration_client/api_client.rb +12 -8
- data/lib/pulp_2to3_migration_client/api_error.rb +1 -1
- data/lib/pulp_2to3_migration_client/configuration.rb +8 -1
- data/lib/pulp_2to3_migration_client/models/async_operation_response.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/migration_plan_run.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_migration_plan_response_list.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_pulp2_content_response_list.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_pulp2_repository_response_list.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan_response.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_content_response.rb +1 -1
- data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_repository_response.rb +1 -1
- data/lib/pulp_2to3_migration_client/version.rb +2 -2
- data/pulp_2to3_migration_client.egg-info/PKG-INFO +15 -0
- data/pulp_2to3_migration_client.egg-info/SOURCES.txt +41 -0
- data/pulp_2to3_migration_client.egg-info/dependency_links.txt +1 -0
- data/pulp_2to3_migration_client.egg-info/requires.txt +4 -0
- data/pulp_2to3_migration_client.egg-info/top_level.txt +1 -0
- data/pulp_2to3_migration_client.gemspec +1 -1
- data/pulpcore/__init__.py +2 -0
- data/pulpcore/client/__init__.py +2 -0
- data/pulpcore/client/pulp_2to3_migration/__init__.py +43 -0
- data/pulpcore/client/pulp_2to3_migration/api/__init__.py +8 -0
- data/pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py +761 -0
- data/pulpcore/client/pulp_2to3_migration/api/pulp2_content_api.py +350 -0
- data/pulpcore/client/pulp_2to3_migration/api/pulp2_repositories_api.py +313 -0
- data/pulpcore/client/pulp_2to3_migration/api_client.py +667 -0
- data/pulpcore/client/pulp_2to3_migration/configuration.py +427 -0
- data/pulpcore/client/pulp_2to3_migration/exceptions.py +121 -0
- data/pulpcore/client/pulp_2to3_migration/models/__init__.py +26 -0
- data/pulpcore/client/pulp_2to3_migration/models/async_operation_response.py +124 -0
- data/pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py +179 -0
- data/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_migration_plan_response_list.py +197 -0
- data/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_content_response_list.py +197 -0
- data/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_repository_response_list.py +197 -0
- data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py +124 -0
- data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_response.py +178 -0
- data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py +338 -0
- data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py +416 -0
- data/pulpcore/client/pulp_2to3_migration/rest.py +292 -0
- data/requirements.txt +6 -0
- data/setup.cfg +2 -0
- data/setup.py +42 -0
- data/spec/api/migration_plans_api_spec.rb +1 -1
- data/spec/api/pulp2_content_api_spec.rb +2 -2
- data/spec/api/pulp2_repositories_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/async_operation_response_spec.rb +1 -1
- data/spec/models/migration_plan_run_spec.rb +1 -1
- data/spec/models/paginatedpulp2to3_migration_migration_plan_response_list_spec.rb +1 -1
- data/spec/models/paginatedpulp2to3_migration_pulp2_content_response_list_spec.rb +1 -1
- data/spec/models/paginatedpulp2to3_migration_pulp2_repository_response_list_spec.rb +1 -1
- data/spec/models/pulp2to3_migration_migration_plan_response_spec.rb +1 -1
- data/spec/models/pulp2to3_migration_migration_plan_spec.rb +1 -1
- data/spec/models/pulp2to3_migration_pulp2_content_response_spec.rb +1 -1
- data/spec/models/pulp2to3_migration_pulp2_repository_response_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/test-requirements.txt +3 -0
- data/test/__init__.py +0 -0
- data/test/test_async_operation_response.py +54 -0
- data/test/test_migration_plan_run.py +55 -0
- data/test/test_migration_plans_api.py +76 -0
- data/test/test_paginatedpulp2to3_migration_migration_plan_response_list.py +61 -0
- data/test/test_paginatedpulp2to3_migration_pulp2_content_response_list.py +67 -0
- data/test/test_paginatedpulp2to3_migration_pulp2_repository_response_list.py +72 -0
- data/test/test_pulp2_content_api.py +48 -0
- data/test/test_pulp2_repositories_api.py +48 -0
- data/test/test_pulp2to3_migration_migration_plan.py +54 -0
- data/test/test_pulp2to3_migration_migration_plan_response.py +56 -0
- data/test/test_pulp2to3_migration_pulp2_content_response.py +65 -0
- data/test/test_pulp2to3_migration_pulp2_repository_response.py +69 -0
- data/tox.ini +9 -0
- metadata +74 -7
data/tox.ini
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_2to3_migration_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.0.
|
4
|
+
version: 0.12.0.dev1624592835
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06-
|
11
|
+
date: 2021-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -74,6 +74,29 @@ files:
|
|
74
74
|
- Gemfile
|
75
75
|
- README.md
|
76
76
|
- Rakefile
|
77
|
+
- build/lib/pulpcore/__init__.py
|
78
|
+
- build/lib/pulpcore/client/__init__.py
|
79
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/__init__.py
|
80
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/api/__init__.py
|
81
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py
|
82
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/api/pulp2_content_api.py
|
83
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/api/pulp2_repositories_api.py
|
84
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/api_client.py
|
85
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/configuration.py
|
86
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/exceptions.py
|
87
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/__init__.py
|
88
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/async_operation_response.py
|
89
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py
|
90
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_migration_plan_response_list.py
|
91
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_content_response_list.py
|
92
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_repository_response_list.py
|
93
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py
|
94
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_response.py
|
95
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py
|
96
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py
|
97
|
+
- build/lib/pulpcore/client/pulp_2to3_migration/rest.py
|
98
|
+
- dist/pulp_2to3_migration-client-0.12.0.dev1624592827.tar.gz
|
99
|
+
- dist/pulp_2to3_migration_client-0.12.0.dev1624592827-py3-none-any.whl
|
77
100
|
- docs/AsyncOperationResponse.md
|
78
101
|
- docs/MigrationPlanRun.md
|
79
102
|
- docs/MigrationPlansApi.md
|
@@ -104,7 +127,36 @@ files:
|
|
104
127
|
- lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_content_response.rb
|
105
128
|
- lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_repository_response.rb
|
106
129
|
- lib/pulp_2to3_migration_client/version.rb
|
130
|
+
- pulp_2to3_migration_client.egg-info/PKG-INFO
|
131
|
+
- pulp_2to3_migration_client.egg-info/SOURCES.txt
|
132
|
+
- pulp_2to3_migration_client.egg-info/dependency_links.txt
|
133
|
+
- pulp_2to3_migration_client.egg-info/requires.txt
|
134
|
+
- pulp_2to3_migration_client.egg-info/top_level.txt
|
107
135
|
- pulp_2to3_migration_client.gemspec
|
136
|
+
- pulpcore/__init__.py
|
137
|
+
- pulpcore/client/__init__.py
|
138
|
+
- pulpcore/client/pulp_2to3_migration/__init__.py
|
139
|
+
- pulpcore/client/pulp_2to3_migration/api/__init__.py
|
140
|
+
- pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py
|
141
|
+
- pulpcore/client/pulp_2to3_migration/api/pulp2_content_api.py
|
142
|
+
- pulpcore/client/pulp_2to3_migration/api/pulp2_repositories_api.py
|
143
|
+
- pulpcore/client/pulp_2to3_migration/api_client.py
|
144
|
+
- pulpcore/client/pulp_2to3_migration/configuration.py
|
145
|
+
- pulpcore/client/pulp_2to3_migration/exceptions.py
|
146
|
+
- pulpcore/client/pulp_2to3_migration/models/__init__.py
|
147
|
+
- pulpcore/client/pulp_2to3_migration/models/async_operation_response.py
|
148
|
+
- pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py
|
149
|
+
- pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_migration_plan_response_list.py
|
150
|
+
- pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_content_response_list.py
|
151
|
+
- pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_repository_response_list.py
|
152
|
+
- pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py
|
153
|
+
- pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_response.py
|
154
|
+
- pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py
|
155
|
+
- pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py
|
156
|
+
- pulpcore/client/pulp_2to3_migration/rest.py
|
157
|
+
- requirements.txt
|
158
|
+
- setup.cfg
|
159
|
+
- setup.py
|
108
160
|
- spec/api/migration_plans_api_spec.rb
|
109
161
|
- spec/api/pulp2_content_api_spec.rb
|
110
162
|
- spec/api/pulp2_repositories_api_spec.rb
|
@@ -120,6 +172,21 @@ files:
|
|
120
172
|
- spec/models/pulp2to3_migration_pulp2_content_response_spec.rb
|
121
173
|
- spec/models/pulp2to3_migration_pulp2_repository_response_spec.rb
|
122
174
|
- spec/spec_helper.rb
|
175
|
+
- test-requirements.txt
|
176
|
+
- test/__init__.py
|
177
|
+
- test/test_async_operation_response.py
|
178
|
+
- test/test_migration_plan_run.py
|
179
|
+
- test/test_migration_plans_api.py
|
180
|
+
- test/test_paginatedpulp2to3_migration_migration_plan_response_list.py
|
181
|
+
- test/test_paginatedpulp2to3_migration_pulp2_content_response_list.py
|
182
|
+
- test/test_paginatedpulp2to3_migration_pulp2_repository_response_list.py
|
183
|
+
- test/test_pulp2_content_api.py
|
184
|
+
- test/test_pulp2_repositories_api.py
|
185
|
+
- test/test_pulp2to3_migration_migration_plan.py
|
186
|
+
- test/test_pulp2to3_migration_migration_plan_response.py
|
187
|
+
- test/test_pulp2to3_migration_pulp2_content_response.py
|
188
|
+
- test/test_pulp2to3_migration_pulp2_repository_response.py
|
189
|
+
- tox.ini
|
123
190
|
homepage: https://openapi-generator.tech
|
124
191
|
licenses:
|
125
192
|
- GPL-2.0+
|
@@ -149,13 +216,13 @@ test_files:
|
|
149
216
|
- spec/api/pulp2_content_api_spec.rb
|
150
217
|
- spec/api_client_spec.rb
|
151
218
|
- spec/configuration_spec.rb
|
152
|
-
- spec/models/paginatedpulp2to3_migration_pulp2_repository_response_list_spec.rb
|
153
|
-
- spec/models/pulp2to3_migration_pulp2_repository_response_spec.rb
|
154
219
|
- spec/models/paginatedpulp2to3_migration_pulp2_content_response_list_spec.rb
|
155
|
-
- spec/models/pulp2to3_migration_pulp2_content_response_spec.rb
|
156
|
-
- spec/models/pulp2to3_migration_migration_plan_response_spec.rb
|
157
220
|
- spec/models/async_operation_response_spec.rb
|
158
|
-
- spec/models/pulp2to3_migration_migration_plan_spec.rb
|
159
221
|
- spec/models/paginatedpulp2to3_migration_migration_plan_response_list_spec.rb
|
222
|
+
- spec/models/pulp2to3_migration_pulp2_repository_response_spec.rb
|
223
|
+
- spec/models/pulp2to3_migration_migration_plan_spec.rb
|
224
|
+
- spec/models/paginatedpulp2to3_migration_pulp2_repository_response_list_spec.rb
|
160
225
|
- spec/models/migration_plan_run_spec.rb
|
226
|
+
- spec/models/pulp2to3_migration_migration_plan_response_spec.rb
|
227
|
+
- spec/models/pulp2to3_migration_pulp2_content_response_spec.rb
|
161
228
|
- spec/spec_helper.rb
|