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,887 @@
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 AnsibleCollectionVersionResponse(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
+ 'pulp_href': 'str',
38
+ 'artifact': 'str',
39
+ 'pulp_created': 'datetime',
40
+ 'md5': 'str',
41
+ 'sha1': 'str',
42
+ 'sha224': 'str',
43
+ 'sha256': 'str',
44
+ 'sha384': 'str',
45
+ 'sha512': 'str',
46
+ 'id': 'str',
47
+ 'authors': 'list[str]',
48
+ 'contents': 'list[object]',
49
+ 'dependencies': 'object',
50
+ 'description': 'str',
51
+ 'docs_blob': 'object',
52
+ 'manifest': 'object',
53
+ 'files': 'object',
54
+ 'documentation': 'str',
55
+ 'homepage': 'str',
56
+ 'issues': 'str',
57
+ 'license': 'list[str]',
58
+ 'name': 'str',
59
+ 'namespace': 'str',
60
+ 'repository': 'str',
61
+ 'tags': 'list[AnsibleTagResponse]',
62
+ 'version': 'str',
63
+ 'requires_ansible': 'str'
64
+ }
65
+
66
+ attribute_map = {
67
+ 'pulp_href': 'pulp_href',
68
+ 'artifact': 'artifact',
69
+ 'pulp_created': 'pulp_created',
70
+ 'md5': 'md5',
71
+ 'sha1': 'sha1',
72
+ 'sha224': 'sha224',
73
+ 'sha256': 'sha256',
74
+ 'sha384': 'sha384',
75
+ 'sha512': 'sha512',
76
+ 'id': 'id',
77
+ 'authors': 'authors',
78
+ 'contents': 'contents',
79
+ 'dependencies': 'dependencies',
80
+ 'description': 'description',
81
+ 'docs_blob': 'docs_blob',
82
+ 'manifest': 'manifest',
83
+ 'files': 'files',
84
+ 'documentation': 'documentation',
85
+ 'homepage': 'homepage',
86
+ 'issues': 'issues',
87
+ 'license': 'license',
88
+ 'name': 'name',
89
+ 'namespace': 'namespace',
90
+ 'repository': 'repository',
91
+ 'tags': 'tags',
92
+ 'version': 'version',
93
+ 'requires_ansible': 'requires_ansible'
94
+ }
95
+
96
+ def __init__(self, pulp_href=None, artifact=None, pulp_created=None, md5=None, sha1=None, sha224=None, sha256=None, sha384=None, sha512=None, id=None, authors=None, contents=None, dependencies=None, description=None, docs_blob=None, manifest=None, files=None, documentation=None, homepage=None, issues=None, license=None, name=None, namespace=None, repository=None, tags=None, version=None, requires_ansible=None, local_vars_configuration=None): # noqa: E501
97
+ """AnsibleCollectionVersionResponse - a model defined in OpenAPI""" # noqa: E501
98
+ if local_vars_configuration is None:
99
+ local_vars_configuration = Configuration()
100
+ self.local_vars_configuration = local_vars_configuration
101
+
102
+ self._pulp_href = None
103
+ self._artifact = None
104
+ self._pulp_created = None
105
+ self._md5 = None
106
+ self._sha1 = None
107
+ self._sha224 = None
108
+ self._sha256 = None
109
+ self._sha384 = None
110
+ self._sha512 = None
111
+ self._id = None
112
+ self._authors = None
113
+ self._contents = None
114
+ self._dependencies = None
115
+ self._description = None
116
+ self._docs_blob = None
117
+ self._manifest = None
118
+ self._files = None
119
+ self._documentation = None
120
+ self._homepage = None
121
+ self._issues = None
122
+ self._license = None
123
+ self._name = None
124
+ self._namespace = None
125
+ self._repository = None
126
+ self._tags = None
127
+ self._version = None
128
+ self._requires_ansible = None
129
+ self.discriminator = None
130
+
131
+ if pulp_href is not None:
132
+ self.pulp_href = pulp_href
133
+ self.artifact = artifact
134
+ if pulp_created is not None:
135
+ self.pulp_created = pulp_created
136
+ if md5 is not None:
137
+ self.md5 = md5
138
+ if sha1 is not None:
139
+ self.sha1 = sha1
140
+ if sha224 is not None:
141
+ self.sha224 = sha224
142
+ if sha256 is not None:
143
+ self.sha256 = sha256
144
+ if sha384 is not None:
145
+ self.sha384 = sha384
146
+ if sha512 is not None:
147
+ self.sha512 = sha512
148
+ self.id = id
149
+ self.authors = authors
150
+ self.contents = contents
151
+ self.dependencies = dependencies
152
+ self.description = description
153
+ self.docs_blob = docs_blob
154
+ self.manifest = manifest
155
+ self.files = files
156
+ self.documentation = documentation
157
+ self.homepage = homepage
158
+ self.issues = issues
159
+ self.license = license
160
+ self.name = name
161
+ self.namespace = namespace
162
+ self.repository = repository
163
+ if tags is not None:
164
+ self.tags = tags
165
+ self.version = version
166
+ self.requires_ansible = requires_ansible
167
+
168
+ @property
169
+ def pulp_href(self):
170
+ """Gets the pulp_href of this AnsibleCollectionVersionResponse. # noqa: E501
171
+
172
+
173
+ :return: The pulp_href of this AnsibleCollectionVersionResponse. # noqa: E501
174
+ :rtype: str
175
+ """
176
+ return self._pulp_href
177
+
178
+ @pulp_href.setter
179
+ def pulp_href(self, pulp_href):
180
+ """Sets the pulp_href of this AnsibleCollectionVersionResponse.
181
+
182
+
183
+ :param pulp_href: The pulp_href of this AnsibleCollectionVersionResponse. # noqa: E501
184
+ :type: str
185
+ """
186
+
187
+ self._pulp_href = pulp_href
188
+
189
+ @property
190
+ def artifact(self):
191
+ """Gets the artifact of this AnsibleCollectionVersionResponse. # noqa: E501
192
+
193
+ Artifact file representing the physical content # noqa: E501
194
+
195
+ :return: The artifact of this AnsibleCollectionVersionResponse. # noqa: E501
196
+ :rtype: str
197
+ """
198
+ return self._artifact
199
+
200
+ @artifact.setter
201
+ def artifact(self, artifact):
202
+ """Sets the artifact of this AnsibleCollectionVersionResponse.
203
+
204
+ Artifact file representing the physical content # noqa: E501
205
+
206
+ :param artifact: The artifact of this AnsibleCollectionVersionResponse. # noqa: E501
207
+ :type: str
208
+ """
209
+ if self.local_vars_configuration.client_side_validation and artifact is None: # noqa: E501
210
+ raise ValueError("Invalid value for `artifact`, must not be `None`") # noqa: E501
211
+
212
+ self._artifact = artifact
213
+
214
+ @property
215
+ def pulp_created(self):
216
+ """Gets the pulp_created of this AnsibleCollectionVersionResponse. # noqa: E501
217
+
218
+ Timestamp of creation. # noqa: E501
219
+
220
+ :return: The pulp_created of this AnsibleCollectionVersionResponse. # noqa: E501
221
+ :rtype: datetime
222
+ """
223
+ return self._pulp_created
224
+
225
+ @pulp_created.setter
226
+ def pulp_created(self, pulp_created):
227
+ """Sets the pulp_created of this AnsibleCollectionVersionResponse.
228
+
229
+ Timestamp of creation. # noqa: E501
230
+
231
+ :param pulp_created: The pulp_created of this AnsibleCollectionVersionResponse. # noqa: E501
232
+ :type: datetime
233
+ """
234
+
235
+ self._pulp_created = pulp_created
236
+
237
+ @property
238
+ def md5(self):
239
+ """Gets the md5 of this AnsibleCollectionVersionResponse. # noqa: E501
240
+
241
+ The MD5 checksum if available. # noqa: E501
242
+
243
+ :return: The md5 of this AnsibleCollectionVersionResponse. # noqa: E501
244
+ :rtype: str
245
+ """
246
+ return self._md5
247
+
248
+ @md5.setter
249
+ def md5(self, md5):
250
+ """Sets the md5 of this AnsibleCollectionVersionResponse.
251
+
252
+ The MD5 checksum if available. # noqa: E501
253
+
254
+ :param md5: The md5 of this AnsibleCollectionVersionResponse. # noqa: E501
255
+ :type: str
256
+ """
257
+
258
+ self._md5 = md5
259
+
260
+ @property
261
+ def sha1(self):
262
+ """Gets the sha1 of this AnsibleCollectionVersionResponse. # noqa: E501
263
+
264
+ The SHA-1 checksum if available. # noqa: E501
265
+
266
+ :return: The sha1 of this AnsibleCollectionVersionResponse. # noqa: E501
267
+ :rtype: str
268
+ """
269
+ return self._sha1
270
+
271
+ @sha1.setter
272
+ def sha1(self, sha1):
273
+ """Sets the sha1 of this AnsibleCollectionVersionResponse.
274
+
275
+ The SHA-1 checksum if available. # noqa: E501
276
+
277
+ :param sha1: The sha1 of this AnsibleCollectionVersionResponse. # noqa: E501
278
+ :type: str
279
+ """
280
+
281
+ self._sha1 = sha1
282
+
283
+ @property
284
+ def sha224(self):
285
+ """Gets the sha224 of this AnsibleCollectionVersionResponse. # noqa: E501
286
+
287
+ The SHA-224 checksum if available. # noqa: E501
288
+
289
+ :return: The sha224 of this AnsibleCollectionVersionResponse. # noqa: E501
290
+ :rtype: str
291
+ """
292
+ return self._sha224
293
+
294
+ @sha224.setter
295
+ def sha224(self, sha224):
296
+ """Sets the sha224 of this AnsibleCollectionVersionResponse.
297
+
298
+ The SHA-224 checksum if available. # noqa: E501
299
+
300
+ :param sha224: The sha224 of this AnsibleCollectionVersionResponse. # noqa: E501
301
+ :type: str
302
+ """
303
+
304
+ self._sha224 = sha224
305
+
306
+ @property
307
+ def sha256(self):
308
+ """Gets the sha256 of this AnsibleCollectionVersionResponse. # noqa: E501
309
+
310
+ The SHA-256 checksum if available. # noqa: E501
311
+
312
+ :return: The sha256 of this AnsibleCollectionVersionResponse. # noqa: E501
313
+ :rtype: str
314
+ """
315
+ return self._sha256
316
+
317
+ @sha256.setter
318
+ def sha256(self, sha256):
319
+ """Sets the sha256 of this AnsibleCollectionVersionResponse.
320
+
321
+ The SHA-256 checksum if available. # noqa: E501
322
+
323
+ :param sha256: The sha256 of this AnsibleCollectionVersionResponse. # noqa: E501
324
+ :type: str
325
+ """
326
+
327
+ self._sha256 = sha256
328
+
329
+ @property
330
+ def sha384(self):
331
+ """Gets the sha384 of this AnsibleCollectionVersionResponse. # noqa: E501
332
+
333
+ The SHA-384 checksum if available. # noqa: E501
334
+
335
+ :return: The sha384 of this AnsibleCollectionVersionResponse. # noqa: E501
336
+ :rtype: str
337
+ """
338
+ return self._sha384
339
+
340
+ @sha384.setter
341
+ def sha384(self, sha384):
342
+ """Sets the sha384 of this AnsibleCollectionVersionResponse.
343
+
344
+ The SHA-384 checksum if available. # noqa: E501
345
+
346
+ :param sha384: The sha384 of this AnsibleCollectionVersionResponse. # noqa: E501
347
+ :type: str
348
+ """
349
+
350
+ self._sha384 = sha384
351
+
352
+ @property
353
+ def sha512(self):
354
+ """Gets the sha512 of this AnsibleCollectionVersionResponse. # noqa: E501
355
+
356
+ The SHA-512 checksum if available. # noqa: E501
357
+
358
+ :return: The sha512 of this AnsibleCollectionVersionResponse. # noqa: E501
359
+ :rtype: str
360
+ """
361
+ return self._sha512
362
+
363
+ @sha512.setter
364
+ def sha512(self, sha512):
365
+ """Sets the sha512 of this AnsibleCollectionVersionResponse.
366
+
367
+ The SHA-512 checksum if available. # noqa: E501
368
+
369
+ :param sha512: The sha512 of this AnsibleCollectionVersionResponse. # noqa: E501
370
+ :type: str
371
+ """
372
+
373
+ self._sha512 = sha512
374
+
375
+ @property
376
+ def id(self):
377
+ """Gets the id of this AnsibleCollectionVersionResponse. # noqa: E501
378
+
379
+ A collection identifier. # noqa: E501
380
+
381
+ :return: The id of this AnsibleCollectionVersionResponse. # noqa: E501
382
+ :rtype: str
383
+ """
384
+ return self._id
385
+
386
+ @id.setter
387
+ def id(self, id):
388
+ """Sets the id of this AnsibleCollectionVersionResponse.
389
+
390
+ A collection identifier. # noqa: E501
391
+
392
+ :param id: The id of this AnsibleCollectionVersionResponse. # noqa: E501
393
+ :type: str
394
+ """
395
+ if self.local_vars_configuration.client_side_validation and id is None: # noqa: E501
396
+ raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501
397
+
398
+ self._id = id
399
+
400
+ @property
401
+ def authors(self):
402
+ """Gets the authors of this AnsibleCollectionVersionResponse. # noqa: E501
403
+
404
+ A list of the CollectionVersion content's authors. # noqa: E501
405
+
406
+ :return: The authors of this AnsibleCollectionVersionResponse. # noqa: E501
407
+ :rtype: list[str]
408
+ """
409
+ return self._authors
410
+
411
+ @authors.setter
412
+ def authors(self, authors):
413
+ """Sets the authors of this AnsibleCollectionVersionResponse.
414
+
415
+ A list of the CollectionVersion content's authors. # noqa: E501
416
+
417
+ :param authors: The authors of this AnsibleCollectionVersionResponse. # noqa: E501
418
+ :type: list[str]
419
+ """
420
+ if self.local_vars_configuration.client_side_validation and authors is None: # noqa: E501
421
+ raise ValueError("Invalid value for `authors`, must not be `None`") # noqa: E501
422
+
423
+ self._authors = authors
424
+
425
+ @property
426
+ def contents(self):
427
+ """Gets the contents of this AnsibleCollectionVersionResponse. # noqa: E501
428
+
429
+ A JSON field with data about the contents. # noqa: E501
430
+
431
+ :return: The contents of this AnsibleCollectionVersionResponse. # noqa: E501
432
+ :rtype: list[object]
433
+ """
434
+ return self._contents
435
+
436
+ @contents.setter
437
+ def contents(self, contents):
438
+ """Sets the contents of this AnsibleCollectionVersionResponse.
439
+
440
+ A JSON field with data about the contents. # noqa: E501
441
+
442
+ :param contents: The contents of this AnsibleCollectionVersionResponse. # noqa: E501
443
+ :type: list[object]
444
+ """
445
+ if self.local_vars_configuration.client_side_validation and contents is None: # noqa: E501
446
+ raise ValueError("Invalid value for `contents`, must not be `None`") # noqa: E501
447
+
448
+ self._contents = contents
449
+
450
+ @property
451
+ def dependencies(self):
452
+ """Gets the dependencies of this AnsibleCollectionVersionResponse. # noqa: E501
453
+
454
+ A dict declaring Collections that this collection requires to be installed for it to be usable. # noqa: E501
455
+
456
+ :return: The dependencies of this AnsibleCollectionVersionResponse. # noqa: E501
457
+ :rtype: object
458
+ """
459
+ return self._dependencies
460
+
461
+ @dependencies.setter
462
+ def dependencies(self, dependencies):
463
+ """Sets the dependencies of this AnsibleCollectionVersionResponse.
464
+
465
+ A dict declaring Collections that this collection requires to be installed for it to be usable. # noqa: E501
466
+
467
+ :param dependencies: The dependencies of this AnsibleCollectionVersionResponse. # noqa: E501
468
+ :type: object
469
+ """
470
+ if self.local_vars_configuration.client_side_validation and dependencies is None: # noqa: E501
471
+ raise ValueError("Invalid value for `dependencies`, must not be `None`") # noqa: E501
472
+
473
+ self._dependencies = dependencies
474
+
475
+ @property
476
+ def description(self):
477
+ """Gets the description of this AnsibleCollectionVersionResponse. # noqa: E501
478
+
479
+ A short summary description of the collection. # noqa: E501
480
+
481
+ :return: The description of this AnsibleCollectionVersionResponse. # noqa: E501
482
+ :rtype: str
483
+ """
484
+ return self._description
485
+
486
+ @description.setter
487
+ def description(self, description):
488
+ """Sets the description of this AnsibleCollectionVersionResponse.
489
+
490
+ A short summary description of the collection. # noqa: E501
491
+
492
+ :param description: The description of this AnsibleCollectionVersionResponse. # noqa: E501
493
+ :type: str
494
+ """
495
+ if self.local_vars_configuration.client_side_validation and description is None: # noqa: E501
496
+ raise ValueError("Invalid value for `description`, must not be `None`") # noqa: E501
497
+
498
+ self._description = description
499
+
500
+ @property
501
+ def docs_blob(self):
502
+ """Gets the docs_blob of this AnsibleCollectionVersionResponse. # noqa: E501
503
+
504
+ A JSON field holding the various documentation blobs in the collection. # noqa: E501
505
+
506
+ :return: The docs_blob of this AnsibleCollectionVersionResponse. # noqa: E501
507
+ :rtype: object
508
+ """
509
+ return self._docs_blob
510
+
511
+ @docs_blob.setter
512
+ def docs_blob(self, docs_blob):
513
+ """Sets the docs_blob of this AnsibleCollectionVersionResponse.
514
+
515
+ A JSON field holding the various documentation blobs in the collection. # noqa: E501
516
+
517
+ :param docs_blob: The docs_blob of this AnsibleCollectionVersionResponse. # noqa: E501
518
+ :type: object
519
+ """
520
+ if self.local_vars_configuration.client_side_validation and docs_blob is None: # noqa: E501
521
+ raise ValueError("Invalid value for `docs_blob`, must not be `None`") # noqa: E501
522
+
523
+ self._docs_blob = docs_blob
524
+
525
+ @property
526
+ def manifest(self):
527
+ """Gets the manifest of this AnsibleCollectionVersionResponse. # noqa: E501
528
+
529
+ A JSON field holding MANIFEST.json data. # noqa: E501
530
+
531
+ :return: The manifest of this AnsibleCollectionVersionResponse. # noqa: E501
532
+ :rtype: object
533
+ """
534
+ return self._manifest
535
+
536
+ @manifest.setter
537
+ def manifest(self, manifest):
538
+ """Sets the manifest of this AnsibleCollectionVersionResponse.
539
+
540
+ A JSON field holding MANIFEST.json data. # noqa: E501
541
+
542
+ :param manifest: The manifest of this AnsibleCollectionVersionResponse. # noqa: E501
543
+ :type: object
544
+ """
545
+ if self.local_vars_configuration.client_side_validation and manifest is None: # noqa: E501
546
+ raise ValueError("Invalid value for `manifest`, must not be `None`") # noqa: E501
547
+
548
+ self._manifest = manifest
549
+
550
+ @property
551
+ def files(self):
552
+ """Gets the files of this AnsibleCollectionVersionResponse. # noqa: E501
553
+
554
+ A JSON field holding FILES.json data. # noqa: E501
555
+
556
+ :return: The files of this AnsibleCollectionVersionResponse. # noqa: E501
557
+ :rtype: object
558
+ """
559
+ return self._files
560
+
561
+ @files.setter
562
+ def files(self, files):
563
+ """Sets the files of this AnsibleCollectionVersionResponse.
564
+
565
+ A JSON field holding FILES.json data. # noqa: E501
566
+
567
+ :param files: The files of this AnsibleCollectionVersionResponse. # noqa: E501
568
+ :type: object
569
+ """
570
+ if self.local_vars_configuration.client_side_validation and files is None: # noqa: E501
571
+ raise ValueError("Invalid value for `files`, must not be `None`") # noqa: E501
572
+
573
+ self._files = files
574
+
575
+ @property
576
+ def documentation(self):
577
+ """Gets the documentation of this AnsibleCollectionVersionResponse. # noqa: E501
578
+
579
+ The URL to any online docs. # noqa: E501
580
+
581
+ :return: The documentation of this AnsibleCollectionVersionResponse. # noqa: E501
582
+ :rtype: str
583
+ """
584
+ return self._documentation
585
+
586
+ @documentation.setter
587
+ def documentation(self, documentation):
588
+ """Sets the documentation of this AnsibleCollectionVersionResponse.
589
+
590
+ The URL to any online docs. # noqa: E501
591
+
592
+ :param documentation: The documentation of this AnsibleCollectionVersionResponse. # noqa: E501
593
+ :type: str
594
+ """
595
+ if self.local_vars_configuration.client_side_validation and documentation is None: # noqa: E501
596
+ raise ValueError("Invalid value for `documentation`, must not be `None`") # noqa: E501
597
+ if (self.local_vars_configuration.client_side_validation and
598
+ documentation is not None and len(documentation) > 2000):
599
+ raise ValueError("Invalid value for `documentation`, length must be less than or equal to `2000`") # noqa: E501
600
+
601
+ self._documentation = documentation
602
+
603
+ @property
604
+ def homepage(self):
605
+ """Gets the homepage of this AnsibleCollectionVersionResponse. # noqa: E501
606
+
607
+ The URL to the homepage of the collection/project. # noqa: E501
608
+
609
+ :return: The homepage of this AnsibleCollectionVersionResponse. # noqa: E501
610
+ :rtype: str
611
+ """
612
+ return self._homepage
613
+
614
+ @homepage.setter
615
+ def homepage(self, homepage):
616
+ """Sets the homepage of this AnsibleCollectionVersionResponse.
617
+
618
+ The URL to the homepage of the collection/project. # noqa: E501
619
+
620
+ :param homepage: The homepage of this AnsibleCollectionVersionResponse. # noqa: E501
621
+ :type: str
622
+ """
623
+ if self.local_vars_configuration.client_side_validation and homepage is None: # noqa: E501
624
+ raise ValueError("Invalid value for `homepage`, must not be `None`") # noqa: E501
625
+ if (self.local_vars_configuration.client_side_validation and
626
+ homepage is not None and len(homepage) > 2000):
627
+ raise ValueError("Invalid value for `homepage`, length must be less than or equal to `2000`") # noqa: E501
628
+
629
+ self._homepage = homepage
630
+
631
+ @property
632
+ def issues(self):
633
+ """Gets the issues of this AnsibleCollectionVersionResponse. # noqa: E501
634
+
635
+ The URL to the collection issue tracker. # noqa: E501
636
+
637
+ :return: The issues of this AnsibleCollectionVersionResponse. # noqa: E501
638
+ :rtype: str
639
+ """
640
+ return self._issues
641
+
642
+ @issues.setter
643
+ def issues(self, issues):
644
+ """Sets the issues of this AnsibleCollectionVersionResponse.
645
+
646
+ The URL to the collection issue tracker. # noqa: E501
647
+
648
+ :param issues: The issues of this AnsibleCollectionVersionResponse. # noqa: E501
649
+ :type: str
650
+ """
651
+ if self.local_vars_configuration.client_side_validation and issues is None: # noqa: E501
652
+ raise ValueError("Invalid value for `issues`, must not be `None`") # noqa: E501
653
+ if (self.local_vars_configuration.client_side_validation and
654
+ issues is not None and len(issues) > 2000):
655
+ raise ValueError("Invalid value for `issues`, length must be less than or equal to `2000`") # noqa: E501
656
+
657
+ self._issues = issues
658
+
659
+ @property
660
+ def license(self):
661
+ """Gets the license of this AnsibleCollectionVersionResponse. # noqa: E501
662
+
663
+ A list of licenses for content inside of a collection. # noqa: E501
664
+
665
+ :return: The license of this AnsibleCollectionVersionResponse. # noqa: E501
666
+ :rtype: list[str]
667
+ """
668
+ return self._license
669
+
670
+ @license.setter
671
+ def license(self, license):
672
+ """Sets the license of this AnsibleCollectionVersionResponse.
673
+
674
+ A list of licenses for content inside of a collection. # noqa: E501
675
+
676
+ :param license: The license of this AnsibleCollectionVersionResponse. # noqa: E501
677
+ :type: list[str]
678
+ """
679
+ if self.local_vars_configuration.client_side_validation and license is None: # noqa: E501
680
+ raise ValueError("Invalid value for `license`, must not be `None`") # noqa: E501
681
+
682
+ self._license = license
683
+
684
+ @property
685
+ def name(self):
686
+ """Gets the name of this AnsibleCollectionVersionResponse. # noqa: E501
687
+
688
+ The name of the collection. # noqa: E501
689
+
690
+ :return: The name of this AnsibleCollectionVersionResponse. # noqa: E501
691
+ :rtype: str
692
+ """
693
+ return self._name
694
+
695
+ @name.setter
696
+ def name(self, name):
697
+ """Sets the name of this AnsibleCollectionVersionResponse.
698
+
699
+ The name of the collection. # noqa: E501
700
+
701
+ :param name: The name of this AnsibleCollectionVersionResponse. # noqa: E501
702
+ :type: str
703
+ """
704
+ if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
705
+ raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
706
+ if (self.local_vars_configuration.client_side_validation and
707
+ name is not None and len(name) > 64):
708
+ raise ValueError("Invalid value for `name`, length must be less than or equal to `64`") # noqa: E501
709
+
710
+ self._name = name
711
+
712
+ @property
713
+ def namespace(self):
714
+ """Gets the namespace of this AnsibleCollectionVersionResponse. # noqa: E501
715
+
716
+ The namespace of the collection. # noqa: E501
717
+
718
+ :return: The namespace of this AnsibleCollectionVersionResponse. # noqa: E501
719
+ :rtype: str
720
+ """
721
+ return self._namespace
722
+
723
+ @namespace.setter
724
+ def namespace(self, namespace):
725
+ """Sets the namespace of this AnsibleCollectionVersionResponse.
726
+
727
+ The namespace of the collection. # noqa: E501
728
+
729
+ :param namespace: The namespace of this AnsibleCollectionVersionResponse. # noqa: E501
730
+ :type: str
731
+ """
732
+ if self.local_vars_configuration.client_side_validation and namespace is None: # noqa: E501
733
+ raise ValueError("Invalid value for `namespace`, must not be `None`") # noqa: E501
734
+ if (self.local_vars_configuration.client_side_validation and
735
+ namespace is not None and len(namespace) > 64):
736
+ raise ValueError("Invalid value for `namespace`, length must be less than or equal to `64`") # noqa: E501
737
+
738
+ self._namespace = namespace
739
+
740
+ @property
741
+ def repository(self):
742
+ """Gets the repository of this AnsibleCollectionVersionResponse. # noqa: E501
743
+
744
+ The URL of the originating SCM repository. # noqa: E501
745
+
746
+ :return: The repository of this AnsibleCollectionVersionResponse. # noqa: E501
747
+ :rtype: str
748
+ """
749
+ return self._repository
750
+
751
+ @repository.setter
752
+ def repository(self, repository):
753
+ """Sets the repository of this AnsibleCollectionVersionResponse.
754
+
755
+ The URL of the originating SCM repository. # noqa: E501
756
+
757
+ :param repository: The repository of this AnsibleCollectionVersionResponse. # noqa: E501
758
+ :type: str
759
+ """
760
+ if self.local_vars_configuration.client_side_validation and repository is None: # noqa: E501
761
+ raise ValueError("Invalid value for `repository`, must not be `None`") # noqa: E501
762
+ if (self.local_vars_configuration.client_side_validation and
763
+ repository is not None and len(repository) > 2000):
764
+ raise ValueError("Invalid value for `repository`, length must be less than or equal to `2000`") # noqa: E501
765
+
766
+ self._repository = repository
767
+
768
+ @property
769
+ def tags(self):
770
+ """Gets the tags of this AnsibleCollectionVersionResponse. # noqa: E501
771
+
772
+
773
+ :return: The tags of this AnsibleCollectionVersionResponse. # noqa: E501
774
+ :rtype: list[AnsibleTagResponse]
775
+ """
776
+ return self._tags
777
+
778
+ @tags.setter
779
+ def tags(self, tags):
780
+ """Sets the tags of this AnsibleCollectionVersionResponse.
781
+
782
+
783
+ :param tags: The tags of this AnsibleCollectionVersionResponse. # noqa: E501
784
+ :type: list[AnsibleTagResponse]
785
+ """
786
+
787
+ self._tags = tags
788
+
789
+ @property
790
+ def version(self):
791
+ """Gets the version of this AnsibleCollectionVersionResponse. # noqa: E501
792
+
793
+ The version of the collection. # noqa: E501
794
+
795
+ :return: The version of this AnsibleCollectionVersionResponse. # noqa: E501
796
+ :rtype: str
797
+ """
798
+ return self._version
799
+
800
+ @version.setter
801
+ def version(self, version):
802
+ """Sets the version of this AnsibleCollectionVersionResponse.
803
+
804
+ The version of the collection. # noqa: E501
805
+
806
+ :param version: The version of this AnsibleCollectionVersionResponse. # noqa: E501
807
+ :type: str
808
+ """
809
+ if self.local_vars_configuration.client_side_validation and version is None: # noqa: E501
810
+ raise ValueError("Invalid value for `version`, must not be `None`") # noqa: E501
811
+ if (self.local_vars_configuration.client_side_validation and
812
+ version is not None and len(version) > 128):
813
+ raise ValueError("Invalid value for `version`, length must be less than or equal to `128`") # noqa: E501
814
+
815
+ self._version = version
816
+
817
+ @property
818
+ def requires_ansible(self):
819
+ """Gets the requires_ansible of this AnsibleCollectionVersionResponse. # noqa: E501
820
+
821
+ The version of Ansible required to use the collection. Multiple versions can be separated with a comma. # noqa: E501
822
+
823
+ :return: The requires_ansible of this AnsibleCollectionVersionResponse. # noqa: E501
824
+ :rtype: str
825
+ """
826
+ return self._requires_ansible
827
+
828
+ @requires_ansible.setter
829
+ def requires_ansible(self, requires_ansible):
830
+ """Sets the requires_ansible of this AnsibleCollectionVersionResponse.
831
+
832
+ The version of Ansible required to use the collection. Multiple versions can be separated with a comma. # noqa: E501
833
+
834
+ :param requires_ansible: The requires_ansible of this AnsibleCollectionVersionResponse. # noqa: E501
835
+ :type: str
836
+ """
837
+ if (self.local_vars_configuration.client_side_validation and
838
+ requires_ansible is not None and len(requires_ansible) > 255):
839
+ raise ValueError("Invalid value for `requires_ansible`, length must be less than or equal to `255`") # noqa: E501
840
+
841
+ self._requires_ansible = requires_ansible
842
+
843
+ def to_dict(self):
844
+ """Returns the model properties as a dict"""
845
+ result = {}
846
+
847
+ for attr, _ in six.iteritems(self.openapi_types):
848
+ value = getattr(self, attr)
849
+ if isinstance(value, list):
850
+ result[attr] = list(map(
851
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
852
+ value
853
+ ))
854
+ elif hasattr(value, "to_dict"):
855
+ result[attr] = value.to_dict()
856
+ elif isinstance(value, dict):
857
+ result[attr] = dict(map(
858
+ lambda item: (item[0], item[1].to_dict())
859
+ if hasattr(item[1], "to_dict") else item,
860
+ value.items()
861
+ ))
862
+ else:
863
+ result[attr] = value
864
+
865
+ return result
866
+
867
+ def to_str(self):
868
+ """Returns the string representation of the model"""
869
+ return pprint.pformat(self.to_dict())
870
+
871
+ def __repr__(self):
872
+ """For `print` and `pprint`"""
873
+ return self.to_str()
874
+
875
+ def __eq__(self, other):
876
+ """Returns true if both objects are equal"""
877
+ if not isinstance(other, AnsibleCollectionVersionResponse):
878
+ return False
879
+
880
+ return self.to_dict() == other.to_dict()
881
+
882
+ def __ne__(self, other):
883
+ """Returns true if both objects are not equal"""
884
+ if not isinstance(other, AnsibleCollectionVersionResponse):
885
+ return True
886
+
887
+ return self.to_dict() != other.to_dict()