pulp_2to3_migration_client 0.12.0.dev1623642407 → 0.12.0.dev1624592835

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/README.md +4 -4
  4. data/build/lib/pulpcore/__init__.py +2 -0
  5. data/build/lib/pulpcore/client/__init__.py +2 -0
  6. data/build/lib/pulpcore/client/pulp_2to3_migration/__init__.py +43 -0
  7. data/build/lib/pulpcore/client/pulp_2to3_migration/api/__init__.py +8 -0
  8. data/build/lib/pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py +761 -0
  9. data/build/lib/pulpcore/client/pulp_2to3_migration/api/pulp2_content_api.py +350 -0
  10. data/build/lib/pulpcore/client/pulp_2to3_migration/api/pulp2_repositories_api.py +313 -0
  11. data/build/lib/pulpcore/client/pulp_2to3_migration/api_client.py +667 -0
  12. data/build/lib/pulpcore/client/pulp_2to3_migration/configuration.py +427 -0
  13. data/build/lib/pulpcore/client/pulp_2to3_migration/exceptions.py +121 -0
  14. data/build/lib/pulpcore/client/pulp_2to3_migration/models/__init__.py +26 -0
  15. data/build/lib/pulpcore/client/pulp_2to3_migration/models/async_operation_response.py +124 -0
  16. data/build/lib/pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py +179 -0
  17. data/build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_migration_plan_response_list.py +197 -0
  18. data/build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_content_response_list.py +197 -0
  19. data/build/lib/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_repository_response_list.py +197 -0
  20. data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py +124 -0
  21. data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_response.py +178 -0
  22. data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py +338 -0
  23. data/build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py +416 -0
  24. data/build/lib/pulpcore/client/pulp_2to3_migration/rest.py +292 -0
  25. data/dist/pulp_2to3_migration-client-0.12.0.dev1624592827.tar.gz +0 -0
  26. data/dist/pulp_2to3_migration_client-0.12.0.dev1624592827-py3-none-any.whl +0 -0
  27. data/lib/pulp_2to3_migration_client.rb +1 -1
  28. data/lib/pulp_2to3_migration_client/api/migration_plans_api.rb +1 -1
  29. data/lib/pulp_2to3_migration_client/api/pulp2_content_api.rb +1 -1
  30. data/lib/pulp_2to3_migration_client/api/pulp2_repositories_api.rb +1 -1
  31. data/lib/pulp_2to3_migration_client/api_client.rb +12 -8
  32. data/lib/pulp_2to3_migration_client/api_error.rb +1 -1
  33. data/lib/pulp_2to3_migration_client/configuration.rb +8 -1
  34. data/lib/pulp_2to3_migration_client/models/async_operation_response.rb +1 -1
  35. data/lib/pulp_2to3_migration_client/models/migration_plan_run.rb +1 -1
  36. data/lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_migration_plan_response_list.rb +1 -1
  37. data/lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_pulp2_content_response_list.rb +1 -1
  38. data/lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_pulp2_repository_response_list.rb +1 -1
  39. data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan.rb +1 -1
  40. data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan_response.rb +1 -1
  41. data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_content_response.rb +1 -1
  42. data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_repository_response.rb +1 -1
  43. data/lib/pulp_2to3_migration_client/version.rb +2 -2
  44. data/pulp_2to3_migration_client.egg-info/PKG-INFO +15 -0
  45. data/pulp_2to3_migration_client.egg-info/SOURCES.txt +41 -0
  46. data/pulp_2to3_migration_client.egg-info/dependency_links.txt +1 -0
  47. data/pulp_2to3_migration_client.egg-info/requires.txt +4 -0
  48. data/pulp_2to3_migration_client.egg-info/top_level.txt +1 -0
  49. data/pulp_2to3_migration_client.gemspec +1 -1
  50. data/pulpcore/__init__.py +2 -0
  51. data/pulpcore/client/__init__.py +2 -0
  52. data/pulpcore/client/pulp_2to3_migration/__init__.py +43 -0
  53. data/pulpcore/client/pulp_2to3_migration/api/__init__.py +8 -0
  54. data/pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py +761 -0
  55. data/pulpcore/client/pulp_2to3_migration/api/pulp2_content_api.py +350 -0
  56. data/pulpcore/client/pulp_2to3_migration/api/pulp2_repositories_api.py +313 -0
  57. data/pulpcore/client/pulp_2to3_migration/api_client.py +667 -0
  58. data/pulpcore/client/pulp_2to3_migration/configuration.py +427 -0
  59. data/pulpcore/client/pulp_2to3_migration/exceptions.py +121 -0
  60. data/pulpcore/client/pulp_2to3_migration/models/__init__.py +26 -0
  61. data/pulpcore/client/pulp_2to3_migration/models/async_operation_response.py +124 -0
  62. data/pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py +179 -0
  63. data/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_migration_plan_response_list.py +197 -0
  64. data/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_content_response_list.py +197 -0
  65. data/pulpcore/client/pulp_2to3_migration/models/paginatedpulp2to3_migration_pulp2_repository_response_list.py +197 -0
  66. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py +124 -0
  67. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_response.py +178 -0
  68. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py +338 -0
  69. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py +416 -0
  70. data/pulpcore/client/pulp_2to3_migration/rest.py +292 -0
  71. data/requirements.txt +6 -0
  72. data/setup.cfg +2 -0
  73. data/setup.py +42 -0
  74. data/spec/api/migration_plans_api_spec.rb +1 -1
  75. data/spec/api/pulp2_content_api_spec.rb +1 -1
  76. data/spec/api/pulp2_repositories_api_spec.rb +1 -1
  77. data/spec/api_client_spec.rb +2 -2
  78. data/spec/configuration_spec.rb +1 -1
  79. data/spec/models/async_operation_response_spec.rb +1 -1
  80. data/spec/models/migration_plan_run_spec.rb +1 -1
  81. data/spec/models/paginatedpulp2to3_migration_migration_plan_response_list_spec.rb +1 -1
  82. data/spec/models/paginatedpulp2to3_migration_pulp2_content_response_list_spec.rb +1 -1
  83. data/spec/models/paginatedpulp2to3_migration_pulp2_repository_response_list_spec.rb +1 -1
  84. data/spec/models/pulp2to3_migration_migration_plan_response_spec.rb +1 -1
  85. data/spec/models/pulp2to3_migration_migration_plan_spec.rb +1 -1
  86. data/spec/models/pulp2to3_migration_pulp2_content_response_spec.rb +1 -1
  87. data/spec/models/pulp2to3_migration_pulp2_repository_response_spec.rb +1 -1
  88. data/spec/spec_helper.rb +1 -1
  89. data/test-requirements.txt +3 -0
  90. data/test/__init__.py +0 -0
  91. data/test/test_async_operation_response.py +54 -0
  92. data/test/test_migration_plan_run.py +55 -0
  93. data/test/test_migration_plans_api.py +76 -0
  94. data/test/test_paginatedpulp2to3_migration_migration_plan_response_list.py +61 -0
  95. data/test/test_paginatedpulp2to3_migration_pulp2_content_response_list.py +67 -0
  96. data/test/test_paginatedpulp2to3_migration_pulp2_repository_response_list.py +72 -0
  97. data/test/test_pulp2_content_api.py +48 -0
  98. data/test/test_pulp2_repositories_api.py +48 -0
  99. data/test/test_pulp2to3_migration_migration_plan.py +54 -0
  100. data/test/test_pulp2to3_migration_migration_plan_response.py +56 -0
  101. data/test/test_pulp2to3_migration_pulp2_content_response.py +65 -0
  102. data/test/test_pulp2to3_migration_pulp2_repository_response.py +69 -0
  103. data/tox.ini +9 -0
  104. metadata +74 -7
data/tox.ini ADDED
@@ -0,0 +1,9 @@
1
+ [tox]
2
+ envlist = py27, py3
3
+
4
+ [testenv]
5
+ deps=-r{toxinidir}/requirements.txt
6
+ -r{toxinidir}/test-requirements.txt
7
+
8
+ commands=
9
+ pytest --cov=pulpcore.client.pulp_2to3_migration
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.dev1623642407
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-14 00:00:00.000000000 Z
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