pulp_ansible_client 0.7.6 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (477) 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_ansible/__init__.py +115 -0
  7. data/build/lib/pulpcore/client/pulp_ansible/api/__init__.py +28 -0
  8. data/build/lib/pulpcore/client/pulp_ansible/api/ansible_collections_api.py +316 -0
  9. data/build/lib/pulpcore/client/pulp_ansible/api/ansible_copy_api.py +156 -0
  10. data/build/lib/pulpcore/client/pulp_ansible/api/api_collections_api.py +294 -0
  11. data/build/lib/pulpcore/client/pulp_ansible/api/api_roles_api.py +172 -0
  12. data/build/lib/pulpcore/client/pulp_ansible/api/collection_import_api.py +167 -0
  13. data/build/lib/pulpcore/client/pulp_ansible/api/content_collection_versions_api.py +455 -0
  14. data/build/lib/pulpcore/client/pulp_ansible/api/content_roles_api.py +440 -0
  15. data/build/lib/pulpcore/client/pulp_ansible/api/distributions_ansible_api.py +830 -0
  16. data/build/lib/pulpcore/client/pulp_ansible/api/galaxy_detail_api.py +162 -0
  17. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_api_api.py +158 -0
  18. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_collections_api.py +474 -0
  19. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v2_versions_api.py +185 -0
  20. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_all_api.py +301 -0
  21. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_api.py +185 -0
  22. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api.py +189 -0
  23. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_versions_api.py +386 -0
  24. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_v3_api.py +162 -0
  25. data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_tags_api.py +168 -0
  26. data/build/lib/pulpcore/client/pulp_ansible/api/remotes_collection_api.py +840 -0
  27. data/build/lib/pulpcore/client/pulp_ansible/api/remotes_role_api.py +840 -0
  28. data/build/lib/pulpcore/client/pulp_ansible/api/repositories_ansible_api.py +1063 -0
  29. data/build/lib/pulpcore/client/pulp_ansible/api/repositories_ansible_versions_api.py +614 -0
  30. data/build/lib/pulpcore/client/pulp_ansible/api/versions_api.py +301 -0
  31. data/build/lib/pulpcore/client/pulp_ansible/api_client.py +667 -0
  32. data/build/lib/pulpcore/client/pulp_ansible/configuration.py +427 -0
  33. data/build/lib/pulpcore/client/pulp_ansible/exceptions.py +121 -0
  34. data/build/lib/pulpcore/client/pulp_ansible/models/__init__.py +78 -0
  35. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution.py +260 -0
  36. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution_response.py +342 -0
  37. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_repository.py +259 -0
  38. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_repository_response.py +365 -0
  39. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_remote.py +771 -0
  40. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_remote_response.py +718 -0
  41. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_response.py +153 -0
  42. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_version.py +639 -0
  43. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_version_response.py +887 -0
  44. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_repository_sync_url.py +179 -0
  45. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role.py +205 -0
  46. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role_remote.py +657 -0
  47. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role_remote_response.py +604 -0
  48. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role_response.py +259 -0
  49. data/build/lib/pulpcore/client/pulp_ansible/models/ansible_tag_response.py +123 -0
  50. data/build/lib/pulpcore/client/pulp_ansible/models/artifact_ref_response.py +176 -0
  51. data/build/lib/pulpcore/client/pulp_ansible/models/async_operation_response.py +124 -0
  52. data/build/lib/pulpcore/client/pulp_ansible/models/collection_import_detail_response.py +311 -0
  53. data/build/lib/pulpcore/client/pulp_ansible/models/collection_metadata_response.py +356 -0
  54. data/build/lib/pulpcore/client/pulp_ansible/models/collection_namespace_response.py +122 -0
  55. data/build/lib/pulpcore/client/pulp_ansible/models/collection_one_shot.py +236 -0
  56. data/build/lib/pulpcore/client/pulp_ansible/models/collection_ref_response.py +175 -0
  57. data/build/lib/pulpcore/client/pulp_ansible/models/collection_response.py +303 -0
  58. data/build/lib/pulpcore/client/pulp_ansible/models/collection_version_docs_response.py +122 -0
  59. data/build/lib/pulpcore/client/pulp_ansible/models/collection_version_response.py +441 -0
  60. data/build/lib/pulpcore/client/pulp_ansible/models/content_summary.py +176 -0
  61. data/build/lib/pulpcore/client/pulp_ansible/models/content_summary_response.py +176 -0
  62. data/build/lib/pulpcore/client/pulp_ansible/models/copy.py +124 -0
  63. data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_collection.py +203 -0
  64. data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_collection_response.py +307 -0
  65. data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_collection_version_response.py +253 -0
  66. data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_role_response.py +175 -0
  67. data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_role_version_response.py +148 -0
  68. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_response_list.py +173 -0
  69. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_links.py +195 -0
  70. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_meta.py +121 -0
  71. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_version_response_list.py +173 -0
  72. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_response_list.py +197 -0
  73. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_version_response_list.py +197 -0
  74. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_response_list.py +197 -0
  75. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_version_response_list.py +197 -0
  76. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_repository_version_response_list.py +197 -0
  77. data/build/lib/pulpcore/client/pulp_ansible/models/paginated_tag_response_list.py +197 -0
  78. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_distribution_response_list.py +197 -0
  79. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_repository_response_list.py +197 -0
  80. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_collection_remote_response_list.py +197 -0
  81. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_collection_response_list.py +197 -0
  82. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_response_list.py +197 -0
  83. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_role_remote_response_list.py +197 -0
  84. data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_role_response_list.py +197 -0
  85. data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_ansible_distribution.py +258 -0
  86. data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_ansible_repository.py +258 -0
  87. data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_collection_remote.py +769 -0
  88. data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_role_remote.py +655 -0
  89. data/build/lib/pulpcore/client/pulp_ansible/models/policy_enum.py +101 -0
  90. data/build/lib/pulpcore/client/pulp_ansible/models/repo_metadata_response.py +122 -0
  91. data/build/lib/pulpcore/client/pulp_ansible/models/repository_add_remove_content.py +179 -0
  92. data/build/lib/pulpcore/client/pulp_ansible/models/repository_version.py +123 -0
  93. data/build/lib/pulpcore/client/pulp_ansible/models/repository_version_response.py +257 -0
  94. data/build/lib/pulpcore/client/pulp_ansible/models/tag_response.py +121 -0
  95. data/build/lib/pulpcore/client/pulp_ansible/models/unpaginated_collection_version_response.py +385 -0
  96. data/build/lib/pulpcore/client/pulp_ansible/rest.py +292 -0
  97. data/dist/pulp_ansible-client-0.8.0.tar.gz +0 -0
  98. data/dist/pulp_ansible_client-0.8.0-py3-none-any.whl +0 -0
  99. data/docs/AnsibleAnsibleDistribution.md +3 -1
  100. data/docs/AnsibleAnsibleDistributionResponse.md +3 -1
  101. data/docs/AnsibleAnsibleRepository.md +2 -0
  102. data/docs/AnsibleAnsibleRepositoryResponse.md +2 -0
  103. data/docs/AnsibleCollectionRemote.md +3 -1
  104. data/docs/AnsibleCollectionRemoteResponse.md +3 -1
  105. data/docs/AnsibleCollectionVersionResponse.md +4 -4
  106. data/docs/AnsibleRoleResponse.md +4 -4
  107. data/docs/PatchedansibleAnsibleDistribution.md +3 -1
  108. data/docs/PatchedansibleAnsibleRepository.md +2 -0
  109. data/docs/PatchedansibleCollectionRemote.md +3 -1
  110. data/docs/RepositoryAddRemoveContent.md +2 -2
  111. data/docs/RepositoryVersionResponse.md +2 -0
  112. data/lib/pulp_ansible_client/api/ansible_collections_api.rb +1 -1
  113. data/lib/pulp_ansible_client/api/ansible_copy_api.rb +1 -1
  114. data/lib/pulp_ansible_client/api/api_collections_api.rb +1 -1
  115. data/lib/pulp_ansible_client/api/api_roles_api.rb +1 -1
  116. data/lib/pulp_ansible_client/api/collection_import_api.rb +1 -1
  117. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +1 -1
  118. data/lib/pulp_ansible_client/api/content_roles_api.rb +1 -1
  119. data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +1 -1
  120. data/lib/pulp_ansible_client/api/galaxy_detail_api.rb +1 -1
  121. data/lib/pulp_ansible_client/api/pulp_ansible_api_api.rb +1 -1
  122. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb +1 -1
  123. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v2_versions_api.rb +1 -1
  124. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_all_api.rb +1 -1
  125. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_collections_api.rb +1 -1
  126. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api.rb +1 -1
  127. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_versions_api.rb +1 -1
  128. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_v3_api.rb +1 -1
  129. data/lib/pulp_ansible_client/api/pulp_ansible_tags_api.rb +1 -1
  130. data/lib/pulp_ansible_client/api/remotes_collection_api.rb +1 -1
  131. data/lib/pulp_ansible_client/api/remotes_role_api.rb +1 -1
  132. data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +1 -1
  133. data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +1 -1
  134. data/lib/pulp_ansible_client/api/versions_api.rb +1 -1
  135. data/lib/pulp_ansible_client/api_client.rb +12 -13
  136. data/lib/pulp_ansible_client/api_error.rb +1 -1
  137. data/lib/pulp_ansible_client/configuration.rb +1 -9
  138. data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +15 -6
  139. data/lib/pulp_ansible_client/models/ansible_ansible_distribution_response.rb +14 -5
  140. data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +28 -2
  141. data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +28 -2
  142. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +19 -6
  143. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +19 -6
  144. data/lib/pulp_ansible_client/models/ansible_collection_response.rb +1 -1
  145. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +1 -1
  146. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +15 -15
  147. data/lib/pulp_ansible_client/models/ansible_repository_sync_url.rb +1 -1
  148. data/lib/pulp_ansible_client/models/ansible_role.rb +1 -1
  149. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +1 -1
  150. data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +1 -1
  151. data/lib/pulp_ansible_client/models/ansible_role_response.rb +15 -15
  152. data/lib/pulp_ansible_client/models/ansible_tag_response.rb +1 -1
  153. data/lib/pulp_ansible_client/models/artifact_ref_response.rb +1 -1
  154. data/lib/pulp_ansible_client/models/async_operation_response.rb +1 -1
  155. data/lib/pulp_ansible_client/models/collection_import_detail_response.rb +1 -1
  156. data/lib/pulp_ansible_client/models/collection_metadata_response.rb +1 -1
  157. data/lib/pulp_ansible_client/models/collection_namespace_response.rb +1 -1
  158. data/lib/pulp_ansible_client/models/collection_one_shot.rb +1 -1
  159. data/lib/pulp_ansible_client/models/collection_ref_response.rb +1 -1
  160. data/lib/pulp_ansible_client/models/collection_response.rb +1 -1
  161. data/lib/pulp_ansible_client/models/collection_version_docs_response.rb +1 -1
  162. data/lib/pulp_ansible_client/models/collection_version_response.rb +1 -1
  163. data/lib/pulp_ansible_client/models/content_summary.rb +1 -1
  164. data/lib/pulp_ansible_client/models/content_summary_response.rb +1 -1
  165. data/lib/pulp_ansible_client/models/copy.rb +1 -1
  166. data/lib/pulp_ansible_client/models/galaxy_collection.rb +1 -1
  167. data/lib/pulp_ansible_client/models/galaxy_collection_response.rb +1 -1
  168. data/lib/pulp_ansible_client/models/galaxy_collection_version_response.rb +1 -1
  169. data/lib/pulp_ansible_client/models/galaxy_role_response.rb +1 -1
  170. data/lib/pulp_ansible_client/models/galaxy_role_version_response.rb +1 -1
  171. data/lib/pulp_ansible_client/models/paginated_collection_response_list.rb +1 -1
  172. data/lib/pulp_ansible_client/models/paginated_collection_response_list_links.rb +1 -1
  173. data/lib/pulp_ansible_client/models/paginated_collection_response_list_meta.rb +1 -1
  174. data/lib/pulp_ansible_client/models/paginated_collection_version_response_list.rb +1 -1
  175. data/lib/pulp_ansible_client/models/paginated_galaxy_collection_response_list.rb +1 -1
  176. data/lib/pulp_ansible_client/models/paginated_galaxy_collection_version_response_list.rb +1 -1
  177. data/lib/pulp_ansible_client/models/paginated_galaxy_role_response_list.rb +1 -1
  178. data/lib/pulp_ansible_client/models/paginated_galaxy_role_version_response_list.rb +1 -1
  179. data/lib/pulp_ansible_client/models/paginated_repository_version_response_list.rb +1 -1
  180. data/lib/pulp_ansible_client/models/paginated_tag_response_list.rb +1 -1
  181. data/lib/pulp_ansible_client/models/paginatedansible_ansible_distribution_response_list.rb +1 -1
  182. data/lib/pulp_ansible_client/models/paginatedansible_ansible_repository_response_list.rb +1 -1
  183. data/lib/pulp_ansible_client/models/paginatedansible_collection_remote_response_list.rb +1 -1
  184. data/lib/pulp_ansible_client/models/paginatedansible_collection_response_list.rb +1 -1
  185. data/lib/pulp_ansible_client/models/paginatedansible_collection_version_response_list.rb +1 -1
  186. data/lib/pulp_ansible_client/models/paginatedansible_role_remote_response_list.rb +1 -1
  187. data/lib/pulp_ansible_client/models/paginatedansible_role_response_list.rb +1 -1
  188. data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +15 -6
  189. data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +28 -2
  190. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +19 -6
  191. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +1 -1
  192. data/lib/pulp_ansible_client/models/policy_enum.rb +1 -1
  193. data/lib/pulp_ansible_client/models/repo_metadata_response.rb +1 -1
  194. data/lib/pulp_ansible_client/models/repository_add_remove_content.rb +3 -3
  195. data/lib/pulp_ansible_client/models/repository_version.rb +1 -1
  196. data/lib/pulp_ansible_client/models/repository_version_response.rb +11 -2
  197. data/lib/pulp_ansible_client/models/tag_response.rb +1 -1
  198. data/lib/pulp_ansible_client/models/unpaginated_collection_version_response.rb +1 -1
  199. data/lib/pulp_ansible_client/version.rb +2 -2
  200. data/lib/pulp_ansible_client.rb +1 -1
  201. data/pulp_ansible_client.egg-info/PKG-INFO +15 -0
  202. data/pulp_ansible_client.egg-info/SOURCES.txt +185 -0
  203. data/pulp_ansible_client.egg-info/dependency_links.txt +1 -0
  204. data/pulp_ansible_client.egg-info/requires.txt +4 -0
  205. data/pulp_ansible_client.egg-info/top_level.txt +1 -0
  206. data/pulp_ansible_client.gemspec +2 -2
  207. data/pulpcore/__init__.py +2 -0
  208. data/pulpcore/client/__init__.py +2 -0
  209. data/pulpcore/client/pulp_ansible/__init__.py +115 -0
  210. data/pulpcore/client/pulp_ansible/api/__init__.py +28 -0
  211. data/pulpcore/client/pulp_ansible/api/ansible_collections_api.py +316 -0
  212. data/pulpcore/client/pulp_ansible/api/ansible_copy_api.py +156 -0
  213. data/pulpcore/client/pulp_ansible/api/api_collections_api.py +294 -0
  214. data/pulpcore/client/pulp_ansible/api/api_roles_api.py +172 -0
  215. data/pulpcore/client/pulp_ansible/api/collection_import_api.py +167 -0
  216. data/pulpcore/client/pulp_ansible/api/content_collection_versions_api.py +455 -0
  217. data/pulpcore/client/pulp_ansible/api/content_roles_api.py +440 -0
  218. data/pulpcore/client/pulp_ansible/api/distributions_ansible_api.py +830 -0
  219. data/pulpcore/client/pulp_ansible/api/galaxy_detail_api.py +162 -0
  220. data/pulpcore/client/pulp_ansible/api/pulp_ansible_api_api.py +158 -0
  221. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_collections_api.py +474 -0
  222. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v2_versions_api.py +185 -0
  223. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_all_api.py +301 -0
  224. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_api.py +185 -0
  225. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api.py +189 -0
  226. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_versions_api.py +386 -0
  227. data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_v3_api.py +162 -0
  228. data/pulpcore/client/pulp_ansible/api/pulp_ansible_tags_api.py +168 -0
  229. data/pulpcore/client/pulp_ansible/api/remotes_collection_api.py +840 -0
  230. data/pulpcore/client/pulp_ansible/api/remotes_role_api.py +840 -0
  231. data/pulpcore/client/pulp_ansible/api/repositories_ansible_api.py +1063 -0
  232. data/pulpcore/client/pulp_ansible/api/repositories_ansible_versions_api.py +614 -0
  233. data/pulpcore/client/pulp_ansible/api/versions_api.py +301 -0
  234. data/pulpcore/client/pulp_ansible/api_client.py +667 -0
  235. data/pulpcore/client/pulp_ansible/configuration.py +427 -0
  236. data/pulpcore/client/pulp_ansible/exceptions.py +121 -0
  237. data/pulpcore/client/pulp_ansible/models/__init__.py +78 -0
  238. data/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution.py +260 -0
  239. data/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution_response.py +342 -0
  240. data/pulpcore/client/pulp_ansible/models/ansible_ansible_repository.py +259 -0
  241. data/pulpcore/client/pulp_ansible/models/ansible_ansible_repository_response.py +365 -0
  242. data/pulpcore/client/pulp_ansible/models/ansible_collection_remote.py +771 -0
  243. data/pulpcore/client/pulp_ansible/models/ansible_collection_remote_response.py +718 -0
  244. data/pulpcore/client/pulp_ansible/models/ansible_collection_response.py +153 -0
  245. data/pulpcore/client/pulp_ansible/models/ansible_collection_version.py +639 -0
  246. data/pulpcore/client/pulp_ansible/models/ansible_collection_version_response.py +887 -0
  247. data/pulpcore/client/pulp_ansible/models/ansible_repository_sync_url.py +179 -0
  248. data/pulpcore/client/pulp_ansible/models/ansible_role.py +205 -0
  249. data/pulpcore/client/pulp_ansible/models/ansible_role_remote.py +657 -0
  250. data/pulpcore/client/pulp_ansible/models/ansible_role_remote_response.py +604 -0
  251. data/pulpcore/client/pulp_ansible/models/ansible_role_response.py +259 -0
  252. data/pulpcore/client/pulp_ansible/models/ansible_tag_response.py +123 -0
  253. data/pulpcore/client/pulp_ansible/models/artifact_ref_response.py +176 -0
  254. data/pulpcore/client/pulp_ansible/models/async_operation_response.py +124 -0
  255. data/pulpcore/client/pulp_ansible/models/collection_import_detail_response.py +311 -0
  256. data/pulpcore/client/pulp_ansible/models/collection_metadata_response.py +356 -0
  257. data/pulpcore/client/pulp_ansible/models/collection_namespace_response.py +122 -0
  258. data/pulpcore/client/pulp_ansible/models/collection_one_shot.py +236 -0
  259. data/pulpcore/client/pulp_ansible/models/collection_ref_response.py +175 -0
  260. data/pulpcore/client/pulp_ansible/models/collection_response.py +303 -0
  261. data/pulpcore/client/pulp_ansible/models/collection_version_docs_response.py +122 -0
  262. data/pulpcore/client/pulp_ansible/models/collection_version_response.py +441 -0
  263. data/pulpcore/client/pulp_ansible/models/content_summary.py +176 -0
  264. data/pulpcore/client/pulp_ansible/models/content_summary_response.py +176 -0
  265. data/pulpcore/client/pulp_ansible/models/copy.py +124 -0
  266. data/pulpcore/client/pulp_ansible/models/galaxy_collection.py +203 -0
  267. data/pulpcore/client/pulp_ansible/models/galaxy_collection_response.py +307 -0
  268. data/pulpcore/client/pulp_ansible/models/galaxy_collection_version_response.py +253 -0
  269. data/pulpcore/client/pulp_ansible/models/galaxy_role_response.py +175 -0
  270. data/pulpcore/client/pulp_ansible/models/galaxy_role_version_response.py +148 -0
  271. data/pulpcore/client/pulp_ansible/models/paginated_collection_response_list.py +173 -0
  272. data/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_links.py +195 -0
  273. data/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_meta.py +121 -0
  274. data/pulpcore/client/pulp_ansible/models/paginated_collection_version_response_list.py +173 -0
  275. data/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_response_list.py +197 -0
  276. data/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_version_response_list.py +197 -0
  277. data/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_response_list.py +197 -0
  278. data/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_version_response_list.py +197 -0
  279. data/pulpcore/client/pulp_ansible/models/paginated_repository_version_response_list.py +197 -0
  280. data/pulpcore/client/pulp_ansible/models/paginated_tag_response_list.py +197 -0
  281. data/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_distribution_response_list.py +197 -0
  282. data/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_repository_response_list.py +197 -0
  283. data/pulpcore/client/pulp_ansible/models/paginatedansible_collection_remote_response_list.py +197 -0
  284. data/pulpcore/client/pulp_ansible/models/paginatedansible_collection_response_list.py +197 -0
  285. data/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_response_list.py +197 -0
  286. data/pulpcore/client/pulp_ansible/models/paginatedansible_role_remote_response_list.py +197 -0
  287. data/pulpcore/client/pulp_ansible/models/paginatedansible_role_response_list.py +197 -0
  288. data/pulpcore/client/pulp_ansible/models/patchedansible_ansible_distribution.py +258 -0
  289. data/pulpcore/client/pulp_ansible/models/patchedansible_ansible_repository.py +258 -0
  290. data/pulpcore/client/pulp_ansible/models/patchedansible_collection_remote.py +769 -0
  291. data/pulpcore/client/pulp_ansible/models/patchedansible_role_remote.py +655 -0
  292. data/pulpcore/client/pulp_ansible/models/policy_enum.py +101 -0
  293. data/pulpcore/client/pulp_ansible/models/repo_metadata_response.py +122 -0
  294. data/pulpcore/client/pulp_ansible/models/repository_add_remove_content.py +179 -0
  295. data/pulpcore/client/pulp_ansible/models/repository_version.py +123 -0
  296. data/pulpcore/client/pulp_ansible/models/repository_version_response.py +257 -0
  297. data/pulpcore/client/pulp_ansible/models/tag_response.py +121 -0
  298. data/pulpcore/client/pulp_ansible/models/unpaginated_collection_version_response.py +385 -0
  299. data/pulpcore/client/pulp_ansible/rest.py +292 -0
  300. data/requirements.txt +6 -0
  301. data/setup.cfg +2 -0
  302. data/setup.py +42 -0
  303. data/spec/api/ansible_collections_api_spec.rb +1 -1
  304. data/spec/api/ansible_copy_api_spec.rb +1 -1
  305. data/spec/api/api_collections_api_spec.rb +1 -1
  306. data/spec/api/api_roles_api_spec.rb +1 -1
  307. data/spec/api/collection_import_api_spec.rb +1 -1
  308. data/spec/api/content_collection_versions_api_spec.rb +1 -1
  309. data/spec/api/content_roles_api_spec.rb +1 -1
  310. data/spec/api/distributions_ansible_api_spec.rb +1 -1
  311. data/spec/api/galaxy_detail_api_spec.rb +1 -1
  312. data/spec/api/pulp_ansible_api_api_spec.rb +1 -1
  313. data/spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb +1 -1
  314. data/spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb +1 -1
  315. data/spec/api/pulp_ansible_galaxy_api_v3_all_api_spec.rb +1 -1
  316. data/spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb +1 -1
  317. data/spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb +1 -1
  318. data/spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb +1 -1
  319. data/spec/api/pulp_ansible_galaxy_v3_api_spec.rb +1 -1
  320. data/spec/api/pulp_ansible_tags_api_spec.rb +1 -1
  321. data/spec/api/remotes_collection_api_spec.rb +1 -1
  322. data/spec/api/remotes_role_api_spec.rb +1 -1
  323. data/spec/api/repositories_ansible_api_spec.rb +1 -1
  324. data/spec/api/repositories_ansible_versions_api_spec.rb +1 -1
  325. data/spec/api/versions_api_spec.rb +1 -1
  326. data/spec/api_client_spec.rb +2 -2
  327. data/spec/configuration_spec.rb +1 -1
  328. data/spec/models/ansible_ansible_distribution_response_spec.rb +7 -1
  329. data/spec/models/ansible_ansible_distribution_spec.rb +7 -1
  330. data/spec/models/ansible_ansible_repository_response_spec.rb +7 -1
  331. data/spec/models/ansible_ansible_repository_spec.rb +7 -1
  332. data/spec/models/ansible_collection_remote_response_spec.rb +7 -1
  333. data/spec/models/ansible_collection_remote_spec.rb +7 -1
  334. data/spec/models/ansible_collection_response_spec.rb +1 -1
  335. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  336. data/spec/models/ansible_collection_version_spec.rb +1 -1
  337. data/spec/models/ansible_repository_sync_url_spec.rb +1 -1
  338. data/spec/models/ansible_role_remote_response_spec.rb +1 -1
  339. data/spec/models/ansible_role_remote_spec.rb +1 -1
  340. data/spec/models/ansible_role_response_spec.rb +3 -3
  341. data/spec/models/ansible_role_spec.rb +1 -1
  342. data/spec/models/ansible_tag_response_spec.rb +1 -1
  343. data/spec/models/artifact_ref_response_spec.rb +1 -1
  344. data/spec/models/async_operation_response_spec.rb +1 -1
  345. data/spec/models/collection_import_detail_response_spec.rb +1 -1
  346. data/spec/models/collection_metadata_response_spec.rb +1 -1
  347. data/spec/models/collection_namespace_response_spec.rb +1 -1
  348. data/spec/models/collection_one_shot_spec.rb +1 -1
  349. data/spec/models/collection_ref_response_spec.rb +1 -1
  350. data/spec/models/collection_response_spec.rb +1 -1
  351. data/spec/models/collection_version_docs_response_spec.rb +1 -1
  352. data/spec/models/collection_version_response_spec.rb +1 -1
  353. data/spec/models/content_summary_response_spec.rb +1 -1
  354. data/spec/models/content_summary_spec.rb +1 -1
  355. data/spec/models/copy_spec.rb +1 -1
  356. data/spec/models/galaxy_collection_response_spec.rb +1 -1
  357. data/spec/models/galaxy_collection_spec.rb +1 -1
  358. data/spec/models/galaxy_collection_version_response_spec.rb +1 -1
  359. data/spec/models/galaxy_role_response_spec.rb +1 -1
  360. data/spec/models/galaxy_role_version_response_spec.rb +1 -1
  361. data/spec/models/paginated_collection_response_list_links_spec.rb +1 -1
  362. data/spec/models/paginated_collection_response_list_meta_spec.rb +1 -1
  363. data/spec/models/paginated_collection_response_list_spec.rb +1 -1
  364. data/spec/models/paginated_collection_version_response_list_spec.rb +1 -1
  365. data/spec/models/paginated_galaxy_collection_response_list_spec.rb +1 -1
  366. data/spec/models/paginated_galaxy_collection_version_response_list_spec.rb +1 -1
  367. data/spec/models/paginated_galaxy_role_response_list_spec.rb +1 -1
  368. data/spec/models/paginated_galaxy_role_version_response_list_spec.rb +1 -1
  369. data/spec/models/paginated_repository_version_response_list_spec.rb +1 -1
  370. data/spec/models/paginated_tag_response_list_spec.rb +1 -1
  371. data/spec/models/paginatedansible_ansible_distribution_response_list_spec.rb +1 -1
  372. data/spec/models/paginatedansible_ansible_repository_response_list_spec.rb +1 -1
  373. data/spec/models/paginatedansible_collection_remote_response_list_spec.rb +1 -1
  374. data/spec/models/paginatedansible_collection_response_list_spec.rb +1 -1
  375. data/spec/models/paginatedansible_collection_version_response_list_spec.rb +1 -1
  376. data/spec/models/paginatedansible_role_remote_response_list_spec.rb +1 -1
  377. data/spec/models/paginatedansible_role_response_list_spec.rb +1 -1
  378. data/spec/models/patchedansible_ansible_distribution_spec.rb +7 -1
  379. data/spec/models/patchedansible_ansible_repository_spec.rb +7 -1
  380. data/spec/models/patchedansible_collection_remote_spec.rb +7 -1
  381. data/spec/models/patchedansible_role_remote_spec.rb +1 -1
  382. data/spec/models/policy_enum_spec.rb +1 -1
  383. data/spec/models/repo_metadata_response_spec.rb +1 -1
  384. data/spec/models/repository_add_remove_content_spec.rb +1 -1
  385. data/spec/models/repository_version_response_spec.rb +7 -1
  386. data/spec/models/repository_version_spec.rb +1 -1
  387. data/spec/models/tag_response_spec.rb +1 -1
  388. data/spec/models/unpaginated_collection_version_response_spec.rb +1 -1
  389. data/spec/spec_helper.rb +1 -1
  390. data/test/__init__.py +0 -0
  391. data/test/test_ansible_ansible_distribution.py +60 -0
  392. data/test/test_ansible_ansible_distribution_response.py +63 -0
  393. data/test/test_ansible_ansible_repository.py +59 -0
  394. data/test/test_ansible_ansible_repository_response.py +63 -0
  395. data/test/test_ansible_collection_remote.py +80 -0
  396. data/test/test_ansible_collection_remote_response.py +78 -0
  397. data/test/test_ansible_collection_response.py +56 -0
  398. data/test/test_ansible_collection_version.py +99 -0
  399. data/test/test_ansible_collection_version_response.py +111 -0
  400. data/test/test_ansible_collections_api.py +48 -0
  401. data/test/test_ansible_copy_api.py +41 -0
  402. data/test/test_ansible_repository_sync_url.py +55 -0
  403. data/test/test_ansible_role.py +60 -0
  404. data/test/test_ansible_role_remote.py +76 -0
  405. data/test/test_ansible_role_remote_response.py +74 -0
  406. data/test/test_ansible_role_response.py +62 -0
  407. data/test/test_ansible_tag_response.py +53 -0
  408. data/test/test_api_collections_api.py +46 -0
  409. data/test/test_api_roles_api.py +40 -0
  410. data/test/test_artifact_ref_response.py +58 -0
  411. data/test/test_async_operation_response.py +54 -0
  412. data/test/test_collection_import_api.py +41 -0
  413. data/test/test_collection_import_detail_response.py +68 -0
  414. data/test/test_collection_metadata_response.py +71 -0
  415. data/test/test_collection_namespace_response.py +54 -0
  416. data/test/test_collection_one_shot.py +58 -0
  417. data/test/test_collection_ref_response.py +57 -0
  418. data/test/test_collection_response.py +60 -0
  419. data/test/test_collection_version_docs_response.py +54 -0
  420. data/test/test_collection_version_response.py +67 -0
  421. data/test/test_content_collection_versions_api.py +55 -0
  422. data/test/test_content_roles_api.py +55 -0
  423. data/test/test_content_summary.py +70 -0
  424. data/test/test_content_summary_response.py +70 -0
  425. data/test/test_copy.py +54 -0
  426. data/test/test_distributions_ansible_api.py +76 -0
  427. data/test/test_galaxy_collection.py +60 -0
  428. data/test/test_galaxy_collection_response.py +64 -0
  429. data/test/test_galaxy_collection_version_response.py +92 -0
  430. data/test/test_galaxy_detail_api.py +40 -0
  431. data/test/test_galaxy_role_response.py +57 -0
  432. data/test/test_galaxy_role_version_response.py +55 -0
  433. data/test/test_paginated_collection_response_list.py +70 -0
  434. data/test/test_paginated_collection_response_list_links.py +56 -0
  435. data/test/test_paginated_collection_response_list_meta.py +53 -0
  436. data/test/test_paginated_collection_version_response_list.py +75 -0
  437. data/test/test_paginated_galaxy_collection_response_list.py +66 -0
  438. data/test/test_paginated_galaxy_collection_version_response_list.py +80 -0
  439. data/test/test_paginated_galaxy_role_response_list.py +61 -0
  440. data/test/test_paginated_galaxy_role_version_response_list.py +60 -0
  441. data/test/test_paginated_repository_version_response_list.py +64 -0
  442. data/test/test_paginated_tag_response_list.py +59 -0
  443. data/test/test_paginatedansible_ansible_distribution_response_list.py +67 -0
  444. data/test/test_paginatedansible_ansible_repository_response_list.py +68 -0
  445. data/test/test_paginatedansible_collection_remote_response_list.py +82 -0
  446. data/test/test_paginatedansible_collection_response_list.py +60 -0
  447. data/test/test_paginatedansible_collection_version_response_list.py +94 -0
  448. data/test/test_paginatedansible_role_remote_response_list.py +78 -0
  449. data/test/test_paginatedansible_role_response_list.py +64 -0
  450. data/test/test_patchedansible_ansible_distribution.py +58 -0
  451. data/test/test_patchedansible_ansible_repository.py +58 -0
  452. data/test/test_patchedansible_collection_remote.py +78 -0
  453. data/test/test_patchedansible_role_remote.py +74 -0
  454. data/test/test_policy_enum.py +52 -0
  455. data/test/test_pulp_ansible_api_api.py +40 -0
  456. data/test/test_pulp_ansible_galaxy_api_collections_api.py +52 -0
  457. data/test/test_pulp_ansible_galaxy_api_v2_versions_api.py +40 -0
  458. data/test/test_pulp_ansible_galaxy_api_v3_all_api.py +46 -0
  459. data/test/test_pulp_ansible_galaxy_api_v3_collections_api.py +41 -0
  460. data/test/test_pulp_ansible_galaxy_api_v3_collections_docs_blob_api.py +40 -0
  461. data/test/test_pulp_ansible_galaxy_api_v3_versions_api.py +46 -0
  462. data/test/test_pulp_ansible_galaxy_v3_api.py +40 -0
  463. data/test/test_pulp_ansible_tags_api.py +41 -0
  464. data/test/test_remotes_collection_api.py +76 -0
  465. data/test/test_remotes_role_api.py +76 -0
  466. data/test/test_repo_metadata_response.py +54 -0
  467. data/test/test_repositories_ansible_api.py +89 -0
  468. data/test/test_repositories_ansible_versions_api.py +61 -0
  469. data/test/test_repository_add_remove_content.py +59 -0
  470. data/test/test_repository_version.py +53 -0
  471. data/test/test_repository_version_response.py +58 -0
  472. data/test/test_tag_response.py +53 -0
  473. data/test/test_unpaginated_collection_version_response.py +65 -0
  474. data/test/test_versions_api.py +46 -0
  475. data/test-requirements.txt +3 -0
  476. data/tox.ini +9 -0
  477. metadata +354 -77
@@ -0,0 +1,427 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
7
+
8
+ The version of the OpenAPI document: v3
9
+ Contact: pulp-list@redhat.com
10
+ Generated by: https://openapi-generator.tech
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import copy
17
+ import logging
18
+ import multiprocessing
19
+ import sys
20
+ import urllib3
21
+
22
+ import six
23
+ from six.moves import http_client as httplib
24
+
25
+
26
+ class Configuration(object):
27
+ """NOTE: This class is auto generated by OpenAPI Generator
28
+
29
+ Ref: https://openapi-generator.tech
30
+ Do not edit the class manually.
31
+
32
+ :param host: Base url
33
+ :param api_key: Dict to store API key(s).
34
+ Each entry in the dict specifies an API key.
35
+ The dict key is the name of the security scheme in the OAS specification.
36
+ The dict value is the API key secret.
37
+ :param api_key_prefix: Dict to store API prefix (e.g. Bearer)
38
+ The dict key is the name of the security scheme in the OAS specification.
39
+ The dict value is an API key prefix when generating the auth data.
40
+ :param username: Username for HTTP basic authentication
41
+ :param password: Password for HTTP basic authentication
42
+ :param discard_unknown_keys: Boolean value indicating whether to discard
43
+ unknown properties. A server may send a response that includes additional
44
+ properties that are not known by the client in the following scenarios:
45
+ 1. The OpenAPI document is incomplete, i.e. it does not match the server
46
+ implementation.
47
+ 2. The client was generated using an older version of the OpenAPI document
48
+ and the server has been upgraded since then.
49
+ If a schema in the OpenAPI document defines the additionalProperties attribute,
50
+ then all undeclared properties received by the server are injected into the
51
+ additional properties map. In that case, there are undeclared properties, and
52
+ nothing to discard.
53
+
54
+ :Example:
55
+
56
+ API Key Authentication Example.
57
+ Given the following security scheme in the OpenAPI specification:
58
+ components:
59
+ securitySchemes:
60
+ cookieAuth: # name for the security scheme
61
+ type: apiKey
62
+ in: cookie
63
+ name: JSESSIONID # cookie name
64
+
65
+ You can programmatically set the cookie:
66
+
67
+ conf = pulpcore.client.pulp_ansible.Configuration(
68
+ api_key={'cookieAuth': 'abc123'}
69
+ api_key_prefix={'cookieAuth': 'JSESSIONID'}
70
+ )
71
+
72
+ The following cookie will be added to the HTTP request:
73
+ Cookie: JSESSIONID abc123
74
+
75
+ HTTP Basic Authentication Example.
76
+ Given the following security scheme in the OpenAPI specification:
77
+ components:
78
+ securitySchemes:
79
+ http_basic_auth:
80
+ type: http
81
+ scheme: basic
82
+
83
+ Configure API client with HTTP basic authentication:
84
+
85
+ conf = pulpcore.client.pulp_ansible.Configuration(
86
+ username='the-user',
87
+ password='the-password',
88
+ )
89
+
90
+ """
91
+
92
+ _default = None
93
+
94
+ def __init__(self, host="http://pulp",
95
+ api_key=None, api_key_prefix=None,
96
+ username=None, password=None,
97
+ discard_unknown_keys=False,
98
+ ):
99
+ """Constructor
100
+ """
101
+ self.host = host
102
+ """Default Base url
103
+ """
104
+ self.temp_folder_path = None
105
+ """Temp file folder for downloading files
106
+ """
107
+ # Authentication Settings
108
+ self.api_key = {}
109
+ if api_key:
110
+ self.api_key = api_key
111
+ """dict to store API key(s)
112
+ """
113
+ self.api_key_prefix = {}
114
+ if api_key_prefix:
115
+ self.api_key_prefix = api_key_prefix
116
+ """dict to store API prefix (e.g. Bearer)
117
+ """
118
+ self.refresh_api_key_hook = None
119
+ """function hook to refresh API key if expired
120
+ """
121
+ self.username = username
122
+ """Username for HTTP basic authentication
123
+ """
124
+ self.password = password
125
+ """Password for HTTP basic authentication
126
+ """
127
+ self.discard_unknown_keys = discard_unknown_keys
128
+ self.logger = {}
129
+ """Logging Settings
130
+ """
131
+ self.logger["package_logger"] = logging.getLogger("pulpcore.client.pulp_ansible")
132
+ self.logger["urllib3_logger"] = logging.getLogger("urllib3")
133
+ self.logger_format = '%(asctime)s %(levelname)s %(message)s'
134
+ """Log format
135
+ """
136
+ self.logger_stream_handler = None
137
+ """Log stream handler
138
+ """
139
+ self.logger_file_handler = None
140
+ """Log file handler
141
+ """
142
+ self.logger_file = None
143
+ """Debug file location
144
+ """
145
+ self.debug = False
146
+ """Debug switch
147
+ """
148
+
149
+ self.verify_ssl = True
150
+ """SSL/TLS verification
151
+ Set this to false to skip verifying SSL certificate when calling API
152
+ from https server.
153
+ """
154
+ self.ssl_ca_cert = None
155
+ """Set this to customize the certificate file to verify the peer.
156
+ """
157
+ self.cert_file = None
158
+ """client certificate file
159
+ """
160
+ self.key_file = None
161
+ """client key file
162
+ """
163
+ self.assert_hostname = None
164
+ """Set this to True/False to enable/disable SSL hostname verification.
165
+ """
166
+
167
+ self.connection_pool_maxsize = multiprocessing.cpu_count() * 5
168
+ """urllib3 connection pool's maximum number of connections saved
169
+ per pool. urllib3 uses 1 connection as default value, but this is
170
+ not the best value when you are making a lot of possibly parallel
171
+ requests to the same host, which is often the case here.
172
+ cpu_count * 5 is used as default value to increase performance.
173
+ """
174
+
175
+ self.proxy = None
176
+ """Proxy URL
177
+ """
178
+ self.proxy_headers = None
179
+ """Proxy headers
180
+ """
181
+ self.safe_chars_for_path_param = '/'
182
+ """Safe chars for path_param
183
+ """
184
+ self.retries = None
185
+ """Adding retries to override urllib3 default value 3
186
+ """
187
+ # Disable client side validation
188
+ self.client_side_validation = True
189
+
190
+ def __deepcopy__(self, memo):
191
+ cls = self.__class__
192
+ result = cls.__new__(cls)
193
+ memo[id(self)] = result
194
+ for k, v in self.__dict__.items():
195
+ if k not in ('logger', 'logger_file_handler'):
196
+ setattr(result, k, copy.deepcopy(v, memo))
197
+ # shallow copy of loggers
198
+ result.logger = copy.copy(self.logger)
199
+ # use setters to configure loggers
200
+ result.logger_file = self.logger_file
201
+ result.debug = self.debug
202
+ return result
203
+
204
+ def __setattr__(self, name, value):
205
+ object.__setattr__(self, name, value)
206
+
207
+ @classmethod
208
+ def set_default(cls, default):
209
+ """Set default instance of configuration.
210
+
211
+ It stores default configuration, which can be
212
+ returned by get_default_copy method.
213
+
214
+ :param default: object of Configuration
215
+ """
216
+ cls._default = copy.deepcopy(default)
217
+
218
+ @classmethod
219
+ def get_default_copy(cls):
220
+ """Return new instance of configuration.
221
+
222
+ This method returns newly created, based on default constructor,
223
+ object of Configuration class or returns a copy of default
224
+ configuration passed by the set_default method.
225
+
226
+ :return: The configuration object.
227
+ """
228
+ if cls._default is not None:
229
+ return copy.deepcopy(cls._default)
230
+ return Configuration()
231
+
232
+ @property
233
+ def logger_file(self):
234
+ """The logger file.
235
+
236
+ If the logger_file is None, then add stream handler and remove file
237
+ handler. Otherwise, add file handler and remove stream handler.
238
+
239
+ :param value: The logger_file path.
240
+ :type: str
241
+ """
242
+ return self.__logger_file
243
+
244
+ @logger_file.setter
245
+ def logger_file(self, value):
246
+ """The logger file.
247
+
248
+ If the logger_file is None, then add stream handler and remove file
249
+ handler. Otherwise, add file handler and remove stream handler.
250
+
251
+ :param value: The logger_file path.
252
+ :type: str
253
+ """
254
+ self.__logger_file = value
255
+ if self.__logger_file:
256
+ # If set logging file,
257
+ # then add file handler and remove stream handler.
258
+ self.logger_file_handler = logging.FileHandler(self.__logger_file)
259
+ self.logger_file_handler.setFormatter(self.logger_formatter)
260
+ for _, logger in six.iteritems(self.logger):
261
+ logger.addHandler(self.logger_file_handler)
262
+
263
+ @property
264
+ def debug(self):
265
+ """Debug status
266
+
267
+ :param value: The debug status, True or False.
268
+ :type: bool
269
+ """
270
+ return self.__debug
271
+
272
+ @debug.setter
273
+ def debug(self, value):
274
+ """Debug status
275
+
276
+ :param value: The debug status, True or False.
277
+ :type: bool
278
+ """
279
+ self.__debug = value
280
+ if self.__debug:
281
+ # if debug status is True, turn on debug logging
282
+ for _, logger in six.iteritems(self.logger):
283
+ logger.setLevel(logging.DEBUG)
284
+ # turn on httplib debug
285
+ httplib.HTTPConnection.debuglevel = 1
286
+ else:
287
+ # if debug status is False, turn off debug logging,
288
+ # setting log level to default `logging.WARNING`
289
+ for _, logger in six.iteritems(self.logger):
290
+ logger.setLevel(logging.WARNING)
291
+ # turn off httplib debug
292
+ httplib.HTTPConnection.debuglevel = 0
293
+
294
+ @property
295
+ def logger_format(self):
296
+ """The logger format.
297
+
298
+ The logger_formatter will be updated when sets logger_format.
299
+
300
+ :param value: The format string.
301
+ :type: str
302
+ """
303
+ return self.__logger_format
304
+
305
+ @logger_format.setter
306
+ def logger_format(self, value):
307
+ """The logger format.
308
+
309
+ The logger_formatter will be updated when sets logger_format.
310
+
311
+ :param value: The format string.
312
+ :type: str
313
+ """
314
+ self.__logger_format = value
315
+ self.logger_formatter = logging.Formatter(self.__logger_format)
316
+
317
+ def get_api_key_with_prefix(self, identifier):
318
+ """Gets API key (with prefix if set).
319
+
320
+ :param identifier: The identifier of apiKey.
321
+ :return: The token for api key authentication.
322
+ """
323
+ if self.refresh_api_key_hook is not None:
324
+ self.refresh_api_key_hook(self)
325
+ key = self.api_key.get(identifier)
326
+ if key:
327
+ prefix = self.api_key_prefix.get(identifier)
328
+ if prefix:
329
+ return "%s %s" % (prefix, key)
330
+ else:
331
+ return key
332
+
333
+ def get_basic_auth_token(self):
334
+ """Gets HTTP basic authentication header (string).
335
+
336
+ :return: The token for basic HTTP authentication.
337
+ """
338
+ username = ""
339
+ if self.username is not None:
340
+ username = self.username
341
+ password = ""
342
+ if self.password is not None:
343
+ password = self.password
344
+ return urllib3.util.make_headers(
345
+ basic_auth=username + ':' + password
346
+ ).get('authorization')
347
+
348
+ def auth_settings(self):
349
+ """Gets Auth Settings dict for api client.
350
+
351
+ :return: The Auth Settings information dict.
352
+ """
353
+ auth = {}
354
+ if self.username is not None and self.password is not None:
355
+ auth['basicAuth'] = {
356
+ 'type': 'basic',
357
+ 'in': 'header',
358
+ 'key': 'Authorization',
359
+ 'value': self.get_basic_auth_token()
360
+ }
361
+ if 'Session' in self.api_key:
362
+ auth['cookieAuth'] = {
363
+ 'type': 'api_key',
364
+ 'in': 'cookie',
365
+ 'key': 'Session',
366
+ 'value': self.get_api_key_with_prefix('Session')
367
+ }
368
+ return auth
369
+
370
+ def to_debug_report(self):
371
+ """Gets the essential information for debugging.
372
+
373
+ :return: The report for debugging.
374
+ """
375
+ return "Python SDK Debug Report:\n"\
376
+ "OS: {env}\n"\
377
+ "Python Version: {pyversion}\n"\
378
+ "Version of the API: v3\n"\
379
+ "SDK Package Version: 0.8.0".\
380
+ format(env=sys.platform, pyversion=sys.version)
381
+
382
+ def get_host_settings(self):
383
+ """Gets an array of host settings
384
+
385
+ :return: An array of host settings
386
+ """
387
+ return [
388
+ {
389
+ 'url': "http://pulp/",
390
+ 'description': "No description provided",
391
+ }
392
+ ]
393
+
394
+ def get_host_from_settings(self, index, variables=None):
395
+ """Gets host URL based on the index and variables
396
+ :param index: array index of the host settings
397
+ :param variables: hash of variable and the corresponding value
398
+ :return: URL based on host settings
399
+ """
400
+ variables = {} if variables is None else variables
401
+ servers = self.get_host_settings()
402
+
403
+ try:
404
+ server = servers[index]
405
+ except IndexError:
406
+ raise ValueError(
407
+ "Invalid index {0} when selecting the host settings. "
408
+ "Must be less than {1}".format(index, len(servers)))
409
+
410
+ url = server['url']
411
+
412
+ # go through variables and replace placeholders
413
+ for variable_name, variable in server['variables'].items():
414
+ used_value = variables.get(
415
+ variable_name, variable['default_value'])
416
+
417
+ if 'enum_values' in variable \
418
+ and used_value not in variable['enum_values']:
419
+ raise ValueError(
420
+ "The variable `{0}` in the host URL has invalid value "
421
+ "{1}. Must be {2}.".format(
422
+ variable_name, variables[variable_name],
423
+ variable['enum_values']))
424
+
425
+ url = url.replace("{" + variable_name + "}", used_value)
426
+
427
+ return url
@@ -0,0 +1,121 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
7
+
8
+ The version of the OpenAPI document: v3
9
+ Contact: pulp-list@redhat.com
10
+ Generated by: https://openapi-generator.tech
11
+ """
12
+
13
+
14
+ import six
15
+
16
+
17
+ class OpenApiException(Exception):
18
+ """The base exception class for all OpenAPIExceptions"""
19
+
20
+
21
+ class ApiTypeError(OpenApiException, TypeError):
22
+ def __init__(self, msg, path_to_item=None, valid_classes=None,
23
+ key_type=None):
24
+ """ Raises an exception for TypeErrors
25
+
26
+ Args:
27
+ msg (str): the exception message
28
+
29
+ Keyword Args:
30
+ path_to_item (list): a list of keys an indices to get to the
31
+ current_item
32
+ None if unset
33
+ valid_classes (tuple): the primitive classes that current item
34
+ should be an instance of
35
+ None if unset
36
+ key_type (bool): False if our value is a value in a dict
37
+ True if it is a key in a dict
38
+ False if our item is an item in a list
39
+ None if unset
40
+ """
41
+ self.path_to_item = path_to_item
42
+ self.valid_classes = valid_classes
43
+ self.key_type = key_type
44
+ full_msg = msg
45
+ if path_to_item:
46
+ full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
47
+ super(ApiTypeError, self).__init__(full_msg)
48
+
49
+
50
+ class ApiValueError(OpenApiException, ValueError):
51
+ def __init__(self, msg, path_to_item=None):
52
+ """
53
+ Args:
54
+ msg (str): the exception message
55
+
56
+ Keyword Args:
57
+ path_to_item (list) the path to the exception in the
58
+ received_data dict. None if unset
59
+ """
60
+
61
+ self.path_to_item = path_to_item
62
+ full_msg = msg
63
+ if path_to_item:
64
+ full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
65
+ super(ApiValueError, self).__init__(full_msg)
66
+
67
+
68
+ class ApiKeyError(OpenApiException, KeyError):
69
+ def __init__(self, msg, path_to_item=None):
70
+ """
71
+ Args:
72
+ msg (str): the exception message
73
+
74
+ Keyword Args:
75
+ path_to_item (None/list) the path to the exception in the
76
+ received_data dict
77
+ """
78
+ self.path_to_item = path_to_item
79
+ full_msg = msg
80
+ if path_to_item:
81
+ full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
82
+ super(ApiKeyError, self).__init__(full_msg)
83
+
84
+
85
+ class ApiException(OpenApiException):
86
+
87
+ def __init__(self, status=None, reason=None, http_resp=None):
88
+ if http_resp:
89
+ self.status = http_resp.status
90
+ self.reason = http_resp.reason
91
+ self.body = http_resp.data
92
+ self.headers = http_resp.getheaders()
93
+ else:
94
+ self.status = status
95
+ self.reason = reason
96
+ self.body = None
97
+ self.headers = None
98
+
99
+ def __str__(self):
100
+ """Custom error messages for exception"""
101
+ error_message = "({0})\n"\
102
+ "Reason: {1}\n".format(self.status, self.reason)
103
+ if self.headers:
104
+ error_message += "HTTP response headers: {0}\n".format(
105
+ self.headers)
106
+
107
+ if self.body:
108
+ error_message += "HTTP response body: {0}\n".format(self.body)
109
+
110
+ return error_message
111
+
112
+
113
+ def render_path(path_to_item):
114
+ """Returns a string representation of a path"""
115
+ result = ""
116
+ for pth in path_to_item:
117
+ if isinstance(pth, six.integer_types):
118
+ result += "[{0}]".format(pth)
119
+ else:
120
+ result += "['{0}']".format(pth)
121
+ return result
@@ -0,0 +1,78 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+ """
5
+ Pulp 3 API
6
+
7
+ Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
8
+
9
+ The version of the OpenAPI document: v3
10
+ Contact: pulp-list@redhat.com
11
+ Generated by: https://openapi-generator.tech
12
+ """
13
+
14
+
15
+ from __future__ import absolute_import
16
+
17
+ # import models into model package
18
+ from pulpcore.client.pulp_ansible.models.ansible_ansible_distribution import AnsibleAnsibleDistribution
19
+ from pulpcore.client.pulp_ansible.models.ansible_ansible_distribution_response import AnsibleAnsibleDistributionResponse
20
+ from pulpcore.client.pulp_ansible.models.ansible_ansible_repository import AnsibleAnsibleRepository
21
+ from pulpcore.client.pulp_ansible.models.ansible_ansible_repository_response import AnsibleAnsibleRepositoryResponse
22
+ from pulpcore.client.pulp_ansible.models.ansible_collection_remote import AnsibleCollectionRemote
23
+ from pulpcore.client.pulp_ansible.models.ansible_collection_remote_response import AnsibleCollectionRemoteResponse
24
+ from pulpcore.client.pulp_ansible.models.ansible_collection_response import AnsibleCollectionResponse
25
+ from pulpcore.client.pulp_ansible.models.ansible_collection_version import AnsibleCollectionVersion
26
+ from pulpcore.client.pulp_ansible.models.ansible_collection_version_response import AnsibleCollectionVersionResponse
27
+ from pulpcore.client.pulp_ansible.models.ansible_repository_sync_url import AnsibleRepositorySyncURL
28
+ from pulpcore.client.pulp_ansible.models.ansible_role import AnsibleRole
29
+ from pulpcore.client.pulp_ansible.models.ansible_role_remote import AnsibleRoleRemote
30
+ from pulpcore.client.pulp_ansible.models.ansible_role_remote_response import AnsibleRoleRemoteResponse
31
+ from pulpcore.client.pulp_ansible.models.ansible_role_response import AnsibleRoleResponse
32
+ from pulpcore.client.pulp_ansible.models.ansible_tag_response import AnsibleTagResponse
33
+ from pulpcore.client.pulp_ansible.models.artifact_ref_response import ArtifactRefResponse
34
+ from pulpcore.client.pulp_ansible.models.async_operation_response import AsyncOperationResponse
35
+ from pulpcore.client.pulp_ansible.models.collection_import_detail_response import CollectionImportDetailResponse
36
+ from pulpcore.client.pulp_ansible.models.collection_metadata_response import CollectionMetadataResponse
37
+ from pulpcore.client.pulp_ansible.models.collection_namespace_response import CollectionNamespaceResponse
38
+ from pulpcore.client.pulp_ansible.models.collection_one_shot import CollectionOneShot
39
+ from pulpcore.client.pulp_ansible.models.collection_ref_response import CollectionRefResponse
40
+ from pulpcore.client.pulp_ansible.models.collection_response import CollectionResponse
41
+ from pulpcore.client.pulp_ansible.models.collection_version_docs_response import CollectionVersionDocsResponse
42
+ from pulpcore.client.pulp_ansible.models.collection_version_response import CollectionVersionResponse
43
+ from pulpcore.client.pulp_ansible.models.content_summary import ContentSummary
44
+ from pulpcore.client.pulp_ansible.models.content_summary_response import ContentSummaryResponse
45
+ from pulpcore.client.pulp_ansible.models.copy import Copy
46
+ from pulpcore.client.pulp_ansible.models.galaxy_collection import GalaxyCollection
47
+ from pulpcore.client.pulp_ansible.models.galaxy_collection_response import GalaxyCollectionResponse
48
+ from pulpcore.client.pulp_ansible.models.galaxy_collection_version_response import GalaxyCollectionVersionResponse
49
+ from pulpcore.client.pulp_ansible.models.galaxy_role_response import GalaxyRoleResponse
50
+ from pulpcore.client.pulp_ansible.models.galaxy_role_version_response import GalaxyRoleVersionResponse
51
+ from pulpcore.client.pulp_ansible.models.paginated_collection_response_list import PaginatedCollectionResponseList
52
+ from pulpcore.client.pulp_ansible.models.paginated_collection_response_list_links import PaginatedCollectionResponseListLinks
53
+ from pulpcore.client.pulp_ansible.models.paginated_collection_response_list_meta import PaginatedCollectionResponseListMeta
54
+ from pulpcore.client.pulp_ansible.models.paginated_collection_version_response_list import PaginatedCollectionVersionResponseList
55
+ from pulpcore.client.pulp_ansible.models.paginated_galaxy_collection_response_list import PaginatedGalaxyCollectionResponseList
56
+ from pulpcore.client.pulp_ansible.models.paginated_galaxy_collection_version_response_list import PaginatedGalaxyCollectionVersionResponseList
57
+ from pulpcore.client.pulp_ansible.models.paginated_galaxy_role_response_list import PaginatedGalaxyRoleResponseList
58
+ from pulpcore.client.pulp_ansible.models.paginated_galaxy_role_version_response_list import PaginatedGalaxyRoleVersionResponseList
59
+ from pulpcore.client.pulp_ansible.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
60
+ from pulpcore.client.pulp_ansible.models.paginated_tag_response_list import PaginatedTagResponseList
61
+ from pulpcore.client.pulp_ansible.models.paginatedansible_ansible_distribution_response_list import PaginatedansibleAnsibleDistributionResponseList
62
+ from pulpcore.client.pulp_ansible.models.paginatedansible_ansible_repository_response_list import PaginatedansibleAnsibleRepositoryResponseList
63
+ from pulpcore.client.pulp_ansible.models.paginatedansible_collection_remote_response_list import PaginatedansibleCollectionRemoteResponseList
64
+ from pulpcore.client.pulp_ansible.models.paginatedansible_collection_response_list import PaginatedansibleCollectionResponseList
65
+ from pulpcore.client.pulp_ansible.models.paginatedansible_collection_version_response_list import PaginatedansibleCollectionVersionResponseList
66
+ from pulpcore.client.pulp_ansible.models.paginatedansible_role_remote_response_list import PaginatedansibleRoleRemoteResponseList
67
+ from pulpcore.client.pulp_ansible.models.paginatedansible_role_response_list import PaginatedansibleRoleResponseList
68
+ from pulpcore.client.pulp_ansible.models.patchedansible_ansible_distribution import PatchedansibleAnsibleDistribution
69
+ from pulpcore.client.pulp_ansible.models.patchedansible_ansible_repository import PatchedansibleAnsibleRepository
70
+ from pulpcore.client.pulp_ansible.models.patchedansible_collection_remote import PatchedansibleCollectionRemote
71
+ from pulpcore.client.pulp_ansible.models.patchedansible_role_remote import PatchedansibleRoleRemote
72
+ from pulpcore.client.pulp_ansible.models.policy_enum import PolicyEnum
73
+ from pulpcore.client.pulp_ansible.models.repo_metadata_response import RepoMetadataResponse
74
+ from pulpcore.client.pulp_ansible.models.repository_add_remove_content import RepositoryAddRemoveContent
75
+ from pulpcore.client.pulp_ansible.models.repository_version import RepositoryVersion
76
+ from pulpcore.client.pulp_ansible.models.repository_version_response import RepositoryVersionResponse
77
+ from pulpcore.client.pulp_ansible.models.tag_response import TagResponse
78
+ from pulpcore.client.pulp_ansible.models.unpaginated_collection_version_response import UnpaginatedCollectionVersionResponse