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,311 @@
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 pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from pulpcore.client.pulp_ansible.configuration import Configuration
20
+
21
+
22
+ class CollectionImportDetailResponse(object):
23
+ """NOTE: This class is auto generated by OpenAPI Generator.
24
+ Ref: https://openapi-generator.tech
25
+
26
+ Do not edit the class manually.
27
+ """
28
+
29
+ """
30
+ Attributes:
31
+ openapi_types (dict): The key is attribute name
32
+ and the value is attribute type.
33
+ attribute_map (dict): The key is attribute name
34
+ and the value is json key in definition.
35
+ """
36
+ openapi_types = {
37
+ 'id': 'str',
38
+ 'state': 'str',
39
+ 'created_at': 'datetime',
40
+ 'updated_at': 'datetime',
41
+ 'started_at': 'datetime',
42
+ 'finished_at': 'datetime',
43
+ 'error': 'object',
44
+ 'messages': 'object'
45
+ }
46
+
47
+ attribute_map = {
48
+ 'id': 'id',
49
+ 'state': 'state',
50
+ 'created_at': 'created_at',
51
+ 'updated_at': 'updated_at',
52
+ 'started_at': 'started_at',
53
+ 'finished_at': 'finished_at',
54
+ 'error': 'error',
55
+ 'messages': 'messages'
56
+ }
57
+
58
+ def __init__(self, id=None, state=None, created_at=None, updated_at=None, started_at=None, finished_at=None, error=None, messages=None, local_vars_configuration=None): # noqa: E501
59
+ """CollectionImportDetailResponse - a model defined in OpenAPI""" # noqa: E501
60
+ if local_vars_configuration is None:
61
+ local_vars_configuration = Configuration()
62
+ self.local_vars_configuration = local_vars_configuration
63
+
64
+ self._id = None
65
+ self._state = None
66
+ self._created_at = None
67
+ self._updated_at = None
68
+ self._started_at = None
69
+ self._finished_at = None
70
+ self._error = None
71
+ self._messages = None
72
+ self.discriminator = None
73
+
74
+ self.id = id
75
+ self.state = state
76
+ self.created_at = created_at
77
+ self.updated_at = updated_at
78
+ self.started_at = started_at
79
+ self.finished_at = finished_at
80
+ self.error = error
81
+ self.messages = messages
82
+
83
+ @property
84
+ def id(self):
85
+ """Gets the id of this CollectionImportDetailResponse. # noqa: E501
86
+
87
+
88
+ :return: The id of this CollectionImportDetailResponse. # noqa: E501
89
+ :rtype: str
90
+ """
91
+ return self._id
92
+
93
+ @id.setter
94
+ def id(self, id):
95
+ """Sets the id of this CollectionImportDetailResponse.
96
+
97
+
98
+ :param id: The id of this CollectionImportDetailResponse. # noqa: E501
99
+ :type: str
100
+ """
101
+ if self.local_vars_configuration.client_side_validation and id is None: # noqa: E501
102
+ raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501
103
+
104
+ self._id = id
105
+
106
+ @property
107
+ def state(self):
108
+ """Gets the state of this CollectionImportDetailResponse. # noqa: E501
109
+
110
+
111
+ :return: The state of this CollectionImportDetailResponse. # noqa: E501
112
+ :rtype: str
113
+ """
114
+ return self._state
115
+
116
+ @state.setter
117
+ def state(self, state):
118
+ """Sets the state of this CollectionImportDetailResponse.
119
+
120
+
121
+ :param state: The state of this CollectionImportDetailResponse. # noqa: E501
122
+ :type: str
123
+ """
124
+ if self.local_vars_configuration.client_side_validation and state is None: # noqa: E501
125
+ raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501
126
+
127
+ self._state = state
128
+
129
+ @property
130
+ def created_at(self):
131
+ """Gets the created_at of this CollectionImportDetailResponse. # noqa: E501
132
+
133
+
134
+ :return: The created_at of this CollectionImportDetailResponse. # noqa: E501
135
+ :rtype: datetime
136
+ """
137
+ return self._created_at
138
+
139
+ @created_at.setter
140
+ def created_at(self, created_at):
141
+ """Sets the created_at of this CollectionImportDetailResponse.
142
+
143
+
144
+ :param created_at: The created_at of this CollectionImportDetailResponse. # noqa: E501
145
+ :type: datetime
146
+ """
147
+ if self.local_vars_configuration.client_side_validation and created_at is None: # noqa: E501
148
+ raise ValueError("Invalid value for `created_at`, must not be `None`") # noqa: E501
149
+
150
+ self._created_at = created_at
151
+
152
+ @property
153
+ def updated_at(self):
154
+ """Gets the updated_at of this CollectionImportDetailResponse. # noqa: E501
155
+
156
+
157
+ :return: The updated_at of this CollectionImportDetailResponse. # noqa: E501
158
+ :rtype: datetime
159
+ """
160
+ return self._updated_at
161
+
162
+ @updated_at.setter
163
+ def updated_at(self, updated_at):
164
+ """Sets the updated_at of this CollectionImportDetailResponse.
165
+
166
+
167
+ :param updated_at: The updated_at of this CollectionImportDetailResponse. # noqa: E501
168
+ :type: datetime
169
+ """
170
+ if self.local_vars_configuration.client_side_validation and updated_at is None: # noqa: E501
171
+ raise ValueError("Invalid value for `updated_at`, must not be `None`") # noqa: E501
172
+
173
+ self._updated_at = updated_at
174
+
175
+ @property
176
+ def started_at(self):
177
+ """Gets the started_at of this CollectionImportDetailResponse. # noqa: E501
178
+
179
+
180
+ :return: The started_at of this CollectionImportDetailResponse. # noqa: E501
181
+ :rtype: datetime
182
+ """
183
+ return self._started_at
184
+
185
+ @started_at.setter
186
+ def started_at(self, started_at):
187
+ """Sets the started_at of this CollectionImportDetailResponse.
188
+
189
+
190
+ :param started_at: The started_at of this CollectionImportDetailResponse. # noqa: E501
191
+ :type: datetime
192
+ """
193
+ if self.local_vars_configuration.client_side_validation and started_at is None: # noqa: E501
194
+ raise ValueError("Invalid value for `started_at`, must not be `None`") # noqa: E501
195
+
196
+ self._started_at = started_at
197
+
198
+ @property
199
+ def finished_at(self):
200
+ """Gets the finished_at of this CollectionImportDetailResponse. # noqa: E501
201
+
202
+
203
+ :return: The finished_at of this CollectionImportDetailResponse. # noqa: E501
204
+ :rtype: datetime
205
+ """
206
+ return self._finished_at
207
+
208
+ @finished_at.setter
209
+ def finished_at(self, finished_at):
210
+ """Sets the finished_at of this CollectionImportDetailResponse.
211
+
212
+
213
+ :param finished_at: The finished_at of this CollectionImportDetailResponse. # noqa: E501
214
+ :type: datetime
215
+ """
216
+ if self.local_vars_configuration.client_side_validation and finished_at is None: # noqa: E501
217
+ raise ValueError("Invalid value for `finished_at`, must not be `None`") # noqa: E501
218
+
219
+ self._finished_at = finished_at
220
+
221
+ @property
222
+ def error(self):
223
+ """Gets the error of this CollectionImportDetailResponse. # noqa: E501
224
+
225
+
226
+ :return: The error of this CollectionImportDetailResponse. # noqa: E501
227
+ :rtype: object
228
+ """
229
+ return self._error
230
+
231
+ @error.setter
232
+ def error(self, error):
233
+ """Sets the error of this CollectionImportDetailResponse.
234
+
235
+
236
+ :param error: The error of this CollectionImportDetailResponse. # noqa: E501
237
+ :type: object
238
+ """
239
+ if self.local_vars_configuration.client_side_validation and error is None: # noqa: E501
240
+ raise ValueError("Invalid value for `error`, must not be `None`") # noqa: E501
241
+
242
+ self._error = error
243
+
244
+ @property
245
+ def messages(self):
246
+ """Gets the messages of this CollectionImportDetailResponse. # noqa: E501
247
+
248
+
249
+ :return: The messages of this CollectionImportDetailResponse. # noqa: E501
250
+ :rtype: object
251
+ """
252
+ return self._messages
253
+
254
+ @messages.setter
255
+ def messages(self, messages):
256
+ """Sets the messages of this CollectionImportDetailResponse.
257
+
258
+
259
+ :param messages: The messages of this CollectionImportDetailResponse. # noqa: E501
260
+ :type: object
261
+ """
262
+ if self.local_vars_configuration.client_side_validation and messages is None: # noqa: E501
263
+ raise ValueError("Invalid value for `messages`, must not be `None`") # noqa: E501
264
+
265
+ self._messages = messages
266
+
267
+ def to_dict(self):
268
+ """Returns the model properties as a dict"""
269
+ result = {}
270
+
271
+ for attr, _ in six.iteritems(self.openapi_types):
272
+ value = getattr(self, attr)
273
+ if isinstance(value, list):
274
+ result[attr] = list(map(
275
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
276
+ value
277
+ ))
278
+ elif hasattr(value, "to_dict"):
279
+ result[attr] = value.to_dict()
280
+ elif isinstance(value, dict):
281
+ result[attr] = dict(map(
282
+ lambda item: (item[0], item[1].to_dict())
283
+ if hasattr(item[1], "to_dict") else item,
284
+ value.items()
285
+ ))
286
+ else:
287
+ result[attr] = value
288
+
289
+ return result
290
+
291
+ def to_str(self):
292
+ """Returns the string representation of the model"""
293
+ return pprint.pformat(self.to_dict())
294
+
295
+ def __repr__(self):
296
+ """For `print` and `pprint`"""
297
+ return self.to_str()
298
+
299
+ def __eq__(self, other):
300
+ """Returns true if both objects are equal"""
301
+ if not isinstance(other, CollectionImportDetailResponse):
302
+ return False
303
+
304
+ return self.to_dict() == other.to_dict()
305
+
306
+ def __ne__(self, other):
307
+ """Returns true if both objects are not equal"""
308
+ if not isinstance(other, CollectionImportDetailResponse):
309
+ return True
310
+
311
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,356 @@
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 pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from pulpcore.client.pulp_ansible.configuration import Configuration
20
+
21
+
22
+ class CollectionMetadataResponse(object):
23
+ """NOTE: This class is auto generated by OpenAPI Generator.
24
+ Ref: https://openapi-generator.tech
25
+
26
+ Do not edit the class manually.
27
+ """
28
+
29
+ """
30
+ Attributes:
31
+ openapi_types (dict): The key is attribute name
32
+ and the value is attribute type.
33
+ attribute_map (dict): The key is attribute name
34
+ and the value is json key in definition.
35
+ """
36
+ openapi_types = {
37
+ 'authors': 'list[str]',
38
+ 'contents': 'object',
39
+ 'dependencies': 'object',
40
+ 'description': 'str',
41
+ 'documentation': 'str',
42
+ 'homepage': 'str',
43
+ 'issues': 'str',
44
+ 'license': 'list[str]',
45
+ 'repository': 'str',
46
+ 'tags': 'list[str]'
47
+ }
48
+
49
+ attribute_map = {
50
+ 'authors': 'authors',
51
+ 'contents': 'contents',
52
+ 'dependencies': 'dependencies',
53
+ 'description': 'description',
54
+ 'documentation': 'documentation',
55
+ 'homepage': 'homepage',
56
+ 'issues': 'issues',
57
+ 'license': 'license',
58
+ 'repository': 'repository',
59
+ 'tags': 'tags'
60
+ }
61
+
62
+ def __init__(self, authors=None, contents=None, dependencies=None, description=None, documentation=None, homepage=None, issues=None, license=None, repository=None, tags=None, local_vars_configuration=None): # noqa: E501
63
+ """CollectionMetadataResponse - a model defined in OpenAPI""" # noqa: E501
64
+ if local_vars_configuration is None:
65
+ local_vars_configuration = Configuration()
66
+ self.local_vars_configuration = local_vars_configuration
67
+
68
+ self._authors = None
69
+ self._contents = None
70
+ self._dependencies = None
71
+ self._description = None
72
+ self._documentation = None
73
+ self._homepage = None
74
+ self._issues = None
75
+ self._license = None
76
+ self._repository = None
77
+ self._tags = None
78
+ self.discriminator = None
79
+
80
+ if authors is not None:
81
+ self.authors = authors
82
+ if contents is not None:
83
+ self.contents = contents
84
+ if dependencies is not None:
85
+ self.dependencies = dependencies
86
+ if description is not None:
87
+ self.description = description
88
+ if documentation is not None:
89
+ self.documentation = documentation
90
+ if homepage is not None:
91
+ self.homepage = homepage
92
+ if issues is not None:
93
+ self.issues = issues
94
+ if license is not None:
95
+ self.license = license
96
+ if repository is not None:
97
+ self.repository = repository
98
+ self.tags = tags
99
+
100
+ @property
101
+ def authors(self):
102
+ """Gets the authors of this CollectionMetadataResponse. # noqa: E501
103
+
104
+
105
+ :return: The authors of this CollectionMetadataResponse. # noqa: E501
106
+ :rtype: list[str]
107
+ """
108
+ return self._authors
109
+
110
+ @authors.setter
111
+ def authors(self, authors):
112
+ """Sets the authors of this CollectionMetadataResponse.
113
+
114
+
115
+ :param authors: The authors of this CollectionMetadataResponse. # noqa: E501
116
+ :type: list[str]
117
+ """
118
+
119
+ self._authors = authors
120
+
121
+ @property
122
+ def contents(self):
123
+ """Gets the contents of this CollectionMetadataResponse. # noqa: E501
124
+
125
+
126
+ :return: The contents of this CollectionMetadataResponse. # noqa: E501
127
+ :rtype: object
128
+ """
129
+ return self._contents
130
+
131
+ @contents.setter
132
+ def contents(self, contents):
133
+ """Sets the contents of this CollectionMetadataResponse.
134
+
135
+
136
+ :param contents: The contents of this CollectionMetadataResponse. # noqa: E501
137
+ :type: object
138
+ """
139
+
140
+ self._contents = contents
141
+
142
+ @property
143
+ def dependencies(self):
144
+ """Gets the dependencies of this CollectionMetadataResponse. # noqa: E501
145
+
146
+
147
+ :return: The dependencies of this CollectionMetadataResponse. # noqa: E501
148
+ :rtype: object
149
+ """
150
+ return self._dependencies
151
+
152
+ @dependencies.setter
153
+ def dependencies(self, dependencies):
154
+ """Sets the dependencies of this CollectionMetadataResponse.
155
+
156
+
157
+ :param dependencies: The dependencies of this CollectionMetadataResponse. # noqa: E501
158
+ :type: object
159
+ """
160
+
161
+ self._dependencies = dependencies
162
+
163
+ @property
164
+ def description(self):
165
+ """Gets the description of this CollectionMetadataResponse. # noqa: E501
166
+
167
+
168
+ :return: The description of this CollectionMetadataResponse. # noqa: E501
169
+ :rtype: str
170
+ """
171
+ return self._description
172
+
173
+ @description.setter
174
+ def description(self, description):
175
+ """Sets the description of this CollectionMetadataResponse.
176
+
177
+
178
+ :param description: The description of this CollectionMetadataResponse. # noqa: E501
179
+ :type: str
180
+ """
181
+
182
+ self._description = description
183
+
184
+ @property
185
+ def documentation(self):
186
+ """Gets the documentation of this CollectionMetadataResponse. # noqa: E501
187
+
188
+
189
+ :return: The documentation of this CollectionMetadataResponse. # noqa: E501
190
+ :rtype: str
191
+ """
192
+ return self._documentation
193
+
194
+ @documentation.setter
195
+ def documentation(self, documentation):
196
+ """Sets the documentation of this CollectionMetadataResponse.
197
+
198
+
199
+ :param documentation: The documentation of this CollectionMetadataResponse. # noqa: E501
200
+ :type: str
201
+ """
202
+
203
+ self._documentation = documentation
204
+
205
+ @property
206
+ def homepage(self):
207
+ """Gets the homepage of this CollectionMetadataResponse. # noqa: E501
208
+
209
+
210
+ :return: The homepage of this CollectionMetadataResponse. # noqa: E501
211
+ :rtype: str
212
+ """
213
+ return self._homepage
214
+
215
+ @homepage.setter
216
+ def homepage(self, homepage):
217
+ """Sets the homepage of this CollectionMetadataResponse.
218
+
219
+
220
+ :param homepage: The homepage of this CollectionMetadataResponse. # noqa: E501
221
+ :type: str
222
+ """
223
+
224
+ self._homepage = homepage
225
+
226
+ @property
227
+ def issues(self):
228
+ """Gets the issues of this CollectionMetadataResponse. # noqa: E501
229
+
230
+
231
+ :return: The issues of this CollectionMetadataResponse. # noqa: E501
232
+ :rtype: str
233
+ """
234
+ return self._issues
235
+
236
+ @issues.setter
237
+ def issues(self, issues):
238
+ """Sets the issues of this CollectionMetadataResponse.
239
+
240
+
241
+ :param issues: The issues of this CollectionMetadataResponse. # noqa: E501
242
+ :type: str
243
+ """
244
+
245
+ self._issues = issues
246
+
247
+ @property
248
+ def license(self):
249
+ """Gets the license of this CollectionMetadataResponse. # noqa: E501
250
+
251
+
252
+ :return: The license of this CollectionMetadataResponse. # noqa: E501
253
+ :rtype: list[str]
254
+ """
255
+ return self._license
256
+
257
+ @license.setter
258
+ def license(self, license):
259
+ """Sets the license of this CollectionMetadataResponse.
260
+
261
+
262
+ :param license: The license of this CollectionMetadataResponse. # noqa: E501
263
+ :type: list[str]
264
+ """
265
+
266
+ self._license = license
267
+
268
+ @property
269
+ def repository(self):
270
+ """Gets the repository of this CollectionMetadataResponse. # noqa: E501
271
+
272
+
273
+ :return: The repository of this CollectionMetadataResponse. # noqa: E501
274
+ :rtype: str
275
+ """
276
+ return self._repository
277
+
278
+ @repository.setter
279
+ def repository(self, repository):
280
+ """Sets the repository of this CollectionMetadataResponse.
281
+
282
+
283
+ :param repository: The repository of this CollectionMetadataResponse. # noqa: E501
284
+ :type: str
285
+ """
286
+
287
+ self._repository = repository
288
+
289
+ @property
290
+ def tags(self):
291
+ """Gets the tags of this CollectionMetadataResponse. # noqa: E501
292
+
293
+
294
+ :return: The tags of this CollectionMetadataResponse. # noqa: E501
295
+ :rtype: list[str]
296
+ """
297
+ return self._tags
298
+
299
+ @tags.setter
300
+ def tags(self, tags):
301
+ """Sets the tags of this CollectionMetadataResponse.
302
+
303
+
304
+ :param tags: The tags of this CollectionMetadataResponse. # noqa: E501
305
+ :type: list[str]
306
+ """
307
+ if self.local_vars_configuration.client_side_validation and tags is None: # noqa: E501
308
+ raise ValueError("Invalid value for `tags`, must not be `None`") # noqa: E501
309
+
310
+ self._tags = tags
311
+
312
+ def to_dict(self):
313
+ """Returns the model properties as a dict"""
314
+ result = {}
315
+
316
+ for attr, _ in six.iteritems(self.openapi_types):
317
+ value = getattr(self, attr)
318
+ if isinstance(value, list):
319
+ result[attr] = list(map(
320
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
321
+ value
322
+ ))
323
+ elif hasattr(value, "to_dict"):
324
+ result[attr] = value.to_dict()
325
+ elif isinstance(value, dict):
326
+ result[attr] = dict(map(
327
+ lambda item: (item[0], item[1].to_dict())
328
+ if hasattr(item[1], "to_dict") else item,
329
+ value.items()
330
+ ))
331
+ else:
332
+ result[attr] = value
333
+
334
+ return result
335
+
336
+ def to_str(self):
337
+ """Returns the string representation of the model"""
338
+ return pprint.pformat(self.to_dict())
339
+
340
+ def __repr__(self):
341
+ """For `print` and `pprint`"""
342
+ return self.to_str()
343
+
344
+ def __eq__(self, other):
345
+ """Returns true if both objects are equal"""
346
+ if not isinstance(other, CollectionMetadataResponse):
347
+ return False
348
+
349
+ return self.to_dict() == other.to_dict()
350
+
351
+ def __ne__(self, other):
352
+ """Returns true if both objects are not equal"""
353
+ if not isinstance(other, CollectionMetadataResponse):
354
+ return True
355
+
356
+ return self.to_dict() != other.to_dict()