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,771 @@
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 AnsibleCollectionRemote(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
+ 'name': 'str',
38
+ 'url': 'str',
39
+ 'ca_cert': 'str',
40
+ 'client_cert': 'str',
41
+ 'client_key': 'str',
42
+ 'tls_validation': 'bool',
43
+ 'proxy_url': 'str',
44
+ 'proxy_username': 'str',
45
+ 'proxy_password': 'str',
46
+ 'username': 'str',
47
+ 'password': 'str',
48
+ 'pulp_labels': 'object',
49
+ 'download_concurrency': 'int',
50
+ 'policy': 'PolicyEnum',
51
+ 'total_timeout': 'float',
52
+ 'connect_timeout': 'float',
53
+ 'sock_connect_timeout': 'float',
54
+ 'sock_read_timeout': 'float',
55
+ 'headers': 'list[object]',
56
+ 'rate_limit': 'int',
57
+ 'requirements_file': 'str',
58
+ 'auth_url': 'str',
59
+ 'token': 'str',
60
+ 'sync_dependencies': 'bool'
61
+ }
62
+
63
+ attribute_map = {
64
+ 'name': 'name',
65
+ 'url': 'url',
66
+ 'ca_cert': 'ca_cert',
67
+ 'client_cert': 'client_cert',
68
+ 'client_key': 'client_key',
69
+ 'tls_validation': 'tls_validation',
70
+ 'proxy_url': 'proxy_url',
71
+ 'proxy_username': 'proxy_username',
72
+ 'proxy_password': 'proxy_password',
73
+ 'username': 'username',
74
+ 'password': 'password',
75
+ 'pulp_labels': 'pulp_labels',
76
+ 'download_concurrency': 'download_concurrency',
77
+ 'policy': 'policy',
78
+ 'total_timeout': 'total_timeout',
79
+ 'connect_timeout': 'connect_timeout',
80
+ 'sock_connect_timeout': 'sock_connect_timeout',
81
+ 'sock_read_timeout': 'sock_read_timeout',
82
+ 'headers': 'headers',
83
+ 'rate_limit': 'rate_limit',
84
+ 'requirements_file': 'requirements_file',
85
+ 'auth_url': 'auth_url',
86
+ 'token': 'token',
87
+ 'sync_dependencies': 'sync_dependencies'
88
+ }
89
+
90
+ def __init__(self, name=None, url=None, ca_cert=None, client_cert=None, client_key=None, tls_validation=None, proxy_url=None, proxy_username=None, proxy_password=None, username=None, password=None, pulp_labels=None, download_concurrency=None, policy=None, total_timeout=None, connect_timeout=None, sock_connect_timeout=None, sock_read_timeout=None, headers=None, rate_limit=None, requirements_file=None, auth_url=None, token=None, sync_dependencies=True, local_vars_configuration=None): # noqa: E501
91
+ """AnsibleCollectionRemote - a model defined in OpenAPI""" # noqa: E501
92
+ if local_vars_configuration is None:
93
+ local_vars_configuration = Configuration()
94
+ self.local_vars_configuration = local_vars_configuration
95
+
96
+ self._name = None
97
+ self._url = None
98
+ self._ca_cert = None
99
+ self._client_cert = None
100
+ self._client_key = None
101
+ self._tls_validation = None
102
+ self._proxy_url = None
103
+ self._proxy_username = None
104
+ self._proxy_password = None
105
+ self._username = None
106
+ self._password = None
107
+ self._pulp_labels = None
108
+ self._download_concurrency = None
109
+ self._policy = None
110
+ self._total_timeout = None
111
+ self._connect_timeout = None
112
+ self._sock_connect_timeout = None
113
+ self._sock_read_timeout = None
114
+ self._headers = None
115
+ self._rate_limit = None
116
+ self._requirements_file = None
117
+ self._auth_url = None
118
+ self._token = None
119
+ self._sync_dependencies = None
120
+ self.discriminator = None
121
+
122
+ self.name = name
123
+ self.url = url
124
+ self.ca_cert = ca_cert
125
+ self.client_cert = client_cert
126
+ self.client_key = client_key
127
+ if tls_validation is not None:
128
+ self.tls_validation = tls_validation
129
+ self.proxy_url = proxy_url
130
+ self.proxy_username = proxy_username
131
+ self.proxy_password = proxy_password
132
+ self.username = username
133
+ self.password = password
134
+ if pulp_labels is not None:
135
+ self.pulp_labels = pulp_labels
136
+ if download_concurrency is not None:
137
+ self.download_concurrency = download_concurrency
138
+ if policy is not None:
139
+ self.policy = policy
140
+ self.total_timeout = total_timeout
141
+ self.connect_timeout = connect_timeout
142
+ self.sock_connect_timeout = sock_connect_timeout
143
+ self.sock_read_timeout = sock_read_timeout
144
+ if headers is not None:
145
+ self.headers = headers
146
+ self.rate_limit = rate_limit
147
+ self.requirements_file = requirements_file
148
+ self.auth_url = auth_url
149
+ self.token = token
150
+ self.sync_dependencies = sync_dependencies
151
+
152
+ @property
153
+ def name(self):
154
+ """Gets the name of this AnsibleCollectionRemote. # noqa: E501
155
+
156
+ A unique name for this remote. # noqa: E501
157
+
158
+ :return: The name of this AnsibleCollectionRemote. # noqa: E501
159
+ :rtype: str
160
+ """
161
+ return self._name
162
+
163
+ @name.setter
164
+ def name(self, name):
165
+ """Sets the name of this AnsibleCollectionRemote.
166
+
167
+ A unique name for this remote. # noqa: E501
168
+
169
+ :param name: The name of this AnsibleCollectionRemote. # noqa: E501
170
+ :type: str
171
+ """
172
+ if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
173
+ raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
174
+
175
+ self._name = name
176
+
177
+ @property
178
+ def url(self):
179
+ """Gets the url of this AnsibleCollectionRemote. # noqa: E501
180
+
181
+ The URL of an external content source. # noqa: E501
182
+
183
+ :return: The url of this AnsibleCollectionRemote. # noqa: E501
184
+ :rtype: str
185
+ """
186
+ return self._url
187
+
188
+ @url.setter
189
+ def url(self, url):
190
+ """Sets the url of this AnsibleCollectionRemote.
191
+
192
+ The URL of an external content source. # noqa: E501
193
+
194
+ :param url: The url of this AnsibleCollectionRemote. # noqa: E501
195
+ :type: str
196
+ """
197
+ if self.local_vars_configuration.client_side_validation and url is None: # noqa: E501
198
+ raise ValueError("Invalid value for `url`, must not be `None`") # noqa: E501
199
+
200
+ self._url = url
201
+
202
+ @property
203
+ def ca_cert(self):
204
+ """Gets the ca_cert of this AnsibleCollectionRemote. # noqa: E501
205
+
206
+ A PEM encoded CA certificate used to validate the server certificate presented by the remote server. # noqa: E501
207
+
208
+ :return: The ca_cert of this AnsibleCollectionRemote. # noqa: E501
209
+ :rtype: str
210
+ """
211
+ return self._ca_cert
212
+
213
+ @ca_cert.setter
214
+ def ca_cert(self, ca_cert):
215
+ """Sets the ca_cert of this AnsibleCollectionRemote.
216
+
217
+ A PEM encoded CA certificate used to validate the server certificate presented by the remote server. # noqa: E501
218
+
219
+ :param ca_cert: The ca_cert of this AnsibleCollectionRemote. # noqa: E501
220
+ :type: str
221
+ """
222
+
223
+ self._ca_cert = ca_cert
224
+
225
+ @property
226
+ def client_cert(self):
227
+ """Gets the client_cert of this AnsibleCollectionRemote. # noqa: E501
228
+
229
+ A PEM encoded client certificate used for authentication. # noqa: E501
230
+
231
+ :return: The client_cert of this AnsibleCollectionRemote. # noqa: E501
232
+ :rtype: str
233
+ """
234
+ return self._client_cert
235
+
236
+ @client_cert.setter
237
+ def client_cert(self, client_cert):
238
+ """Sets the client_cert of this AnsibleCollectionRemote.
239
+
240
+ A PEM encoded client certificate used for authentication. # noqa: E501
241
+
242
+ :param client_cert: The client_cert of this AnsibleCollectionRemote. # noqa: E501
243
+ :type: str
244
+ """
245
+
246
+ self._client_cert = client_cert
247
+
248
+ @property
249
+ def client_key(self):
250
+ """Gets the client_key of this AnsibleCollectionRemote. # noqa: E501
251
+
252
+ A PEM encoded private key used for authentication. # noqa: E501
253
+
254
+ :return: The client_key of this AnsibleCollectionRemote. # noqa: E501
255
+ :rtype: str
256
+ """
257
+ return self._client_key
258
+
259
+ @client_key.setter
260
+ def client_key(self, client_key):
261
+ """Sets the client_key of this AnsibleCollectionRemote.
262
+
263
+ A PEM encoded private key used for authentication. # noqa: E501
264
+
265
+ :param client_key: The client_key of this AnsibleCollectionRemote. # noqa: E501
266
+ :type: str
267
+ """
268
+
269
+ self._client_key = client_key
270
+
271
+ @property
272
+ def tls_validation(self):
273
+ """Gets the tls_validation of this AnsibleCollectionRemote. # noqa: E501
274
+
275
+ If True, TLS peer validation must be performed. # noqa: E501
276
+
277
+ :return: The tls_validation of this AnsibleCollectionRemote. # noqa: E501
278
+ :rtype: bool
279
+ """
280
+ return self._tls_validation
281
+
282
+ @tls_validation.setter
283
+ def tls_validation(self, tls_validation):
284
+ """Sets the tls_validation of this AnsibleCollectionRemote.
285
+
286
+ If True, TLS peer validation must be performed. # noqa: E501
287
+
288
+ :param tls_validation: The tls_validation of this AnsibleCollectionRemote. # noqa: E501
289
+ :type: bool
290
+ """
291
+
292
+ self._tls_validation = tls_validation
293
+
294
+ @property
295
+ def proxy_url(self):
296
+ """Gets the proxy_url of this AnsibleCollectionRemote. # noqa: E501
297
+
298
+ The proxy URL. Format: scheme://host:port # noqa: E501
299
+
300
+ :return: The proxy_url of this AnsibleCollectionRemote. # noqa: E501
301
+ :rtype: str
302
+ """
303
+ return self._proxy_url
304
+
305
+ @proxy_url.setter
306
+ def proxy_url(self, proxy_url):
307
+ """Sets the proxy_url of this AnsibleCollectionRemote.
308
+
309
+ The proxy URL. Format: scheme://host:port # noqa: E501
310
+
311
+ :param proxy_url: The proxy_url of this AnsibleCollectionRemote. # noqa: E501
312
+ :type: str
313
+ """
314
+
315
+ self._proxy_url = proxy_url
316
+
317
+ @property
318
+ def proxy_username(self):
319
+ """Gets the proxy_username of this AnsibleCollectionRemote. # noqa: E501
320
+
321
+ The username to authenticte to the proxy. # noqa: E501
322
+
323
+ :return: The proxy_username of this AnsibleCollectionRemote. # noqa: E501
324
+ :rtype: str
325
+ """
326
+ return self._proxy_username
327
+
328
+ @proxy_username.setter
329
+ def proxy_username(self, proxy_username):
330
+ """Sets the proxy_username of this AnsibleCollectionRemote.
331
+
332
+ The username to authenticte to the proxy. # noqa: E501
333
+
334
+ :param proxy_username: The proxy_username of this AnsibleCollectionRemote. # noqa: E501
335
+ :type: str
336
+ """
337
+
338
+ self._proxy_username = proxy_username
339
+
340
+ @property
341
+ def proxy_password(self):
342
+ """Gets the proxy_password of this AnsibleCollectionRemote. # noqa: E501
343
+
344
+ The password to authenticte to the proxy. # noqa: E501
345
+
346
+ :return: The proxy_password of this AnsibleCollectionRemote. # noqa: E501
347
+ :rtype: str
348
+ """
349
+ return self._proxy_password
350
+
351
+ @proxy_password.setter
352
+ def proxy_password(self, proxy_password):
353
+ """Sets the proxy_password of this AnsibleCollectionRemote.
354
+
355
+ The password to authenticte to the proxy. # noqa: E501
356
+
357
+ :param proxy_password: The proxy_password of this AnsibleCollectionRemote. # noqa: E501
358
+ :type: str
359
+ """
360
+
361
+ self._proxy_password = proxy_password
362
+
363
+ @property
364
+ def username(self):
365
+ """Gets the username of this AnsibleCollectionRemote. # noqa: E501
366
+
367
+ The username to be used for authentication when syncing. # noqa: E501
368
+
369
+ :return: The username of this AnsibleCollectionRemote. # noqa: E501
370
+ :rtype: str
371
+ """
372
+ return self._username
373
+
374
+ @username.setter
375
+ def username(self, username):
376
+ """Sets the username of this AnsibleCollectionRemote.
377
+
378
+ The username to be used for authentication when syncing. # noqa: E501
379
+
380
+ :param username: The username of this AnsibleCollectionRemote. # noqa: E501
381
+ :type: str
382
+ """
383
+
384
+ self._username = username
385
+
386
+ @property
387
+ def password(self):
388
+ """Gets the password of this AnsibleCollectionRemote. # noqa: E501
389
+
390
+ The password to be used for authentication when syncing. # noqa: E501
391
+
392
+ :return: The password of this AnsibleCollectionRemote. # noqa: E501
393
+ :rtype: str
394
+ """
395
+ return self._password
396
+
397
+ @password.setter
398
+ def password(self, password):
399
+ """Sets the password of this AnsibleCollectionRemote.
400
+
401
+ The password to be used for authentication when syncing. # noqa: E501
402
+
403
+ :param password: The password of this AnsibleCollectionRemote. # noqa: E501
404
+ :type: str
405
+ """
406
+
407
+ self._password = password
408
+
409
+ @property
410
+ def pulp_labels(self):
411
+ """Gets the pulp_labels of this AnsibleCollectionRemote. # noqa: E501
412
+
413
+
414
+ :return: The pulp_labels of this AnsibleCollectionRemote. # noqa: E501
415
+ :rtype: object
416
+ """
417
+ return self._pulp_labels
418
+
419
+ @pulp_labels.setter
420
+ def pulp_labels(self, pulp_labels):
421
+ """Sets the pulp_labels of this AnsibleCollectionRemote.
422
+
423
+
424
+ :param pulp_labels: The pulp_labels of this AnsibleCollectionRemote. # noqa: E501
425
+ :type: object
426
+ """
427
+
428
+ self._pulp_labels = pulp_labels
429
+
430
+ @property
431
+ def download_concurrency(self):
432
+ """Gets the download_concurrency of this AnsibleCollectionRemote. # noqa: E501
433
+
434
+ Total number of simultaneous connections. # noqa: E501
435
+
436
+ :return: The download_concurrency of this AnsibleCollectionRemote. # noqa: E501
437
+ :rtype: int
438
+ """
439
+ return self._download_concurrency
440
+
441
+ @download_concurrency.setter
442
+ def download_concurrency(self, download_concurrency):
443
+ """Sets the download_concurrency of this AnsibleCollectionRemote.
444
+
445
+ Total number of simultaneous connections. # noqa: E501
446
+
447
+ :param download_concurrency: The download_concurrency of this AnsibleCollectionRemote. # noqa: E501
448
+ :type: int
449
+ """
450
+ if (self.local_vars_configuration.client_side_validation and
451
+ download_concurrency is not None and download_concurrency < 1): # noqa: E501
452
+ raise ValueError("Invalid value for `download_concurrency`, must be a value greater than or equal to `1`") # noqa: E501
453
+
454
+ self._download_concurrency = download_concurrency
455
+
456
+ @property
457
+ def policy(self):
458
+ """Gets the policy of this AnsibleCollectionRemote. # noqa: E501
459
+
460
+ The policy to use when downloading content. # noqa: E501
461
+
462
+ :return: The policy of this AnsibleCollectionRemote. # noqa: E501
463
+ :rtype: PolicyEnum
464
+ """
465
+ return self._policy
466
+
467
+ @policy.setter
468
+ def policy(self, policy):
469
+ """Sets the policy of this AnsibleCollectionRemote.
470
+
471
+ The policy to use when downloading content. # noqa: E501
472
+
473
+ :param policy: The policy of this AnsibleCollectionRemote. # noqa: E501
474
+ :type: PolicyEnum
475
+ """
476
+
477
+ self._policy = policy
478
+
479
+ @property
480
+ def total_timeout(self):
481
+ """Gets the total_timeout of this AnsibleCollectionRemote. # noqa: E501
482
+
483
+ aiohttp.ClientTimeout.total (q.v.) for download-connections. # noqa: E501
484
+
485
+ :return: The total_timeout of this AnsibleCollectionRemote. # noqa: E501
486
+ :rtype: float
487
+ """
488
+ return self._total_timeout
489
+
490
+ @total_timeout.setter
491
+ def total_timeout(self, total_timeout):
492
+ """Sets the total_timeout of this AnsibleCollectionRemote.
493
+
494
+ aiohttp.ClientTimeout.total (q.v.) for download-connections. # noqa: E501
495
+
496
+ :param total_timeout: The total_timeout of this AnsibleCollectionRemote. # noqa: E501
497
+ :type: float
498
+ """
499
+ if (self.local_vars_configuration.client_side_validation and
500
+ total_timeout is not None and total_timeout < 0.0): # noqa: E501
501
+ raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
502
+
503
+ self._total_timeout = total_timeout
504
+
505
+ @property
506
+ def connect_timeout(self):
507
+ """Gets the connect_timeout of this AnsibleCollectionRemote. # noqa: E501
508
+
509
+ aiohttp.ClientTimeout.connect (q.v.) for download-connections. # noqa: E501
510
+
511
+ :return: The connect_timeout of this AnsibleCollectionRemote. # noqa: E501
512
+ :rtype: float
513
+ """
514
+ return self._connect_timeout
515
+
516
+ @connect_timeout.setter
517
+ def connect_timeout(self, connect_timeout):
518
+ """Sets the connect_timeout of this AnsibleCollectionRemote.
519
+
520
+ aiohttp.ClientTimeout.connect (q.v.) for download-connections. # noqa: E501
521
+
522
+ :param connect_timeout: The connect_timeout of this AnsibleCollectionRemote. # noqa: E501
523
+ :type: float
524
+ """
525
+ if (self.local_vars_configuration.client_side_validation and
526
+ connect_timeout is not None and connect_timeout < 0.0): # noqa: E501
527
+ raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
528
+
529
+ self._connect_timeout = connect_timeout
530
+
531
+ @property
532
+ def sock_connect_timeout(self):
533
+ """Gets the sock_connect_timeout of this AnsibleCollectionRemote. # noqa: E501
534
+
535
+ aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. # noqa: E501
536
+
537
+ :return: The sock_connect_timeout of this AnsibleCollectionRemote. # noqa: E501
538
+ :rtype: float
539
+ """
540
+ return self._sock_connect_timeout
541
+
542
+ @sock_connect_timeout.setter
543
+ def sock_connect_timeout(self, sock_connect_timeout):
544
+ """Sets the sock_connect_timeout of this AnsibleCollectionRemote.
545
+
546
+ aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. # noqa: E501
547
+
548
+ :param sock_connect_timeout: The sock_connect_timeout of this AnsibleCollectionRemote. # noqa: E501
549
+ :type: float
550
+ """
551
+ if (self.local_vars_configuration.client_side_validation and
552
+ sock_connect_timeout is not None and sock_connect_timeout < 0.0): # noqa: E501
553
+ raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
554
+
555
+ self._sock_connect_timeout = sock_connect_timeout
556
+
557
+ @property
558
+ def sock_read_timeout(self):
559
+ """Gets the sock_read_timeout of this AnsibleCollectionRemote. # noqa: E501
560
+
561
+ aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. # noqa: E501
562
+
563
+ :return: The sock_read_timeout of this AnsibleCollectionRemote. # noqa: E501
564
+ :rtype: float
565
+ """
566
+ return self._sock_read_timeout
567
+
568
+ @sock_read_timeout.setter
569
+ def sock_read_timeout(self, sock_read_timeout):
570
+ """Sets the sock_read_timeout of this AnsibleCollectionRemote.
571
+
572
+ aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. # noqa: E501
573
+
574
+ :param sock_read_timeout: The sock_read_timeout of this AnsibleCollectionRemote. # noqa: E501
575
+ :type: float
576
+ """
577
+ if (self.local_vars_configuration.client_side_validation and
578
+ sock_read_timeout is not None and sock_read_timeout < 0.0): # noqa: E501
579
+ raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
580
+
581
+ self._sock_read_timeout = sock_read_timeout
582
+
583
+ @property
584
+ def headers(self):
585
+ """Gets the headers of this AnsibleCollectionRemote. # noqa: E501
586
+
587
+ Headers for aiohttp.Clientsession # noqa: E501
588
+
589
+ :return: The headers of this AnsibleCollectionRemote. # noqa: E501
590
+ :rtype: list[object]
591
+ """
592
+ return self._headers
593
+
594
+ @headers.setter
595
+ def headers(self, headers):
596
+ """Sets the headers of this AnsibleCollectionRemote.
597
+
598
+ Headers for aiohttp.Clientsession # noqa: E501
599
+
600
+ :param headers: The headers of this AnsibleCollectionRemote. # noqa: E501
601
+ :type: list[object]
602
+ """
603
+
604
+ self._headers = headers
605
+
606
+ @property
607
+ def rate_limit(self):
608
+ """Gets the rate_limit of this AnsibleCollectionRemote. # noqa: E501
609
+
610
+ Limits total download rate in requests per second # noqa: E501
611
+
612
+ :return: The rate_limit of this AnsibleCollectionRemote. # noqa: E501
613
+ :rtype: int
614
+ """
615
+ return self._rate_limit
616
+
617
+ @rate_limit.setter
618
+ def rate_limit(self, rate_limit):
619
+ """Sets the rate_limit of this AnsibleCollectionRemote.
620
+
621
+ Limits total download rate in requests per second # noqa: E501
622
+
623
+ :param rate_limit: The rate_limit of this AnsibleCollectionRemote. # noqa: E501
624
+ :type: int
625
+ """
626
+
627
+ self._rate_limit = rate_limit
628
+
629
+ @property
630
+ def requirements_file(self):
631
+ """Gets the requirements_file of this AnsibleCollectionRemote. # noqa: E501
632
+
633
+ The string version of Collection requirements yaml. # noqa: E501
634
+
635
+ :return: The requirements_file of this AnsibleCollectionRemote. # noqa: E501
636
+ :rtype: str
637
+ """
638
+ return self._requirements_file
639
+
640
+ @requirements_file.setter
641
+ def requirements_file(self, requirements_file):
642
+ """Sets the requirements_file of this AnsibleCollectionRemote.
643
+
644
+ The string version of Collection requirements yaml. # noqa: E501
645
+
646
+ :param requirements_file: The requirements_file of this AnsibleCollectionRemote. # noqa: E501
647
+ :type: str
648
+ """
649
+
650
+ self._requirements_file = requirements_file
651
+
652
+ @property
653
+ def auth_url(self):
654
+ """Gets the auth_url of this AnsibleCollectionRemote. # noqa: E501
655
+
656
+ The URL to receive a session token from, e.g. used with Automation Hub. # noqa: E501
657
+
658
+ :return: The auth_url of this AnsibleCollectionRemote. # noqa: E501
659
+ :rtype: str
660
+ """
661
+ return self._auth_url
662
+
663
+ @auth_url.setter
664
+ def auth_url(self, auth_url):
665
+ """Sets the auth_url of this AnsibleCollectionRemote.
666
+
667
+ The URL to receive a session token from, e.g. used with Automation Hub. # noqa: E501
668
+
669
+ :param auth_url: The auth_url of this AnsibleCollectionRemote. # noqa: E501
670
+ :type: str
671
+ """
672
+ if (self.local_vars_configuration.client_side_validation and
673
+ auth_url is not None and len(auth_url) > 255):
674
+ raise ValueError("Invalid value for `auth_url`, length must be less than or equal to `255`") # noqa: E501
675
+
676
+ self._auth_url = auth_url
677
+
678
+ @property
679
+ def token(self):
680
+ """Gets the token of this AnsibleCollectionRemote. # noqa: E501
681
+
682
+ The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details # noqa: E501
683
+
684
+ :return: The token of this AnsibleCollectionRemote. # noqa: E501
685
+ :rtype: str
686
+ """
687
+ return self._token
688
+
689
+ @token.setter
690
+ def token(self, token):
691
+ """Sets the token of this AnsibleCollectionRemote.
692
+
693
+ The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details # noqa: E501
694
+
695
+ :param token: The token of this AnsibleCollectionRemote. # noqa: E501
696
+ :type: str
697
+ """
698
+ if (self.local_vars_configuration.client_side_validation and
699
+ token is not None and len(token) > 2000):
700
+ raise ValueError("Invalid value for `token`, length must be less than or equal to `2000`") # noqa: E501
701
+
702
+ self._token = token
703
+
704
+ @property
705
+ def sync_dependencies(self):
706
+ """Gets the sync_dependencies of this AnsibleCollectionRemote. # noqa: E501
707
+
708
+ Sync dependencies for collections specified via requirements file # noqa: E501
709
+
710
+ :return: The sync_dependencies of this AnsibleCollectionRemote. # noqa: E501
711
+ :rtype: bool
712
+ """
713
+ return self._sync_dependencies
714
+
715
+ @sync_dependencies.setter
716
+ def sync_dependencies(self, sync_dependencies):
717
+ """Sets the sync_dependencies of this AnsibleCollectionRemote.
718
+
719
+ Sync dependencies for collections specified via requirements file # noqa: E501
720
+
721
+ :param sync_dependencies: The sync_dependencies of this AnsibleCollectionRemote. # noqa: E501
722
+ :type: bool
723
+ """
724
+
725
+ self._sync_dependencies = sync_dependencies
726
+
727
+ def to_dict(self):
728
+ """Returns the model properties as a dict"""
729
+ result = {}
730
+
731
+ for attr, _ in six.iteritems(self.openapi_types):
732
+ value = getattr(self, attr)
733
+ if isinstance(value, list):
734
+ result[attr] = list(map(
735
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
736
+ value
737
+ ))
738
+ elif hasattr(value, "to_dict"):
739
+ result[attr] = value.to_dict()
740
+ elif isinstance(value, dict):
741
+ result[attr] = dict(map(
742
+ lambda item: (item[0], item[1].to_dict())
743
+ if hasattr(item[1], "to_dict") else item,
744
+ value.items()
745
+ ))
746
+ else:
747
+ result[attr] = value
748
+
749
+ return result
750
+
751
+ def to_str(self):
752
+ """Returns the string representation of the model"""
753
+ return pprint.pformat(self.to_dict())
754
+
755
+ def __repr__(self):
756
+ """For `print` and `pprint`"""
757
+ return self.to_str()
758
+
759
+ def __eq__(self, other):
760
+ """Returns true if both objects are equal"""
761
+ if not isinstance(other, AnsibleCollectionRemote):
762
+ return False
763
+
764
+ return self.to_dict() == other.to_dict()
765
+
766
+ def __ne__(self, other):
767
+ """Returns true if both objects are not equal"""
768
+ if not isinstance(other, AnsibleCollectionRemote):
769
+ return True
770
+
771
+ return self.to_dict() != other.to_dict()