crc-pulpcore-client 20250828.3__tar.gz → 20250829.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of crc-pulpcore-client might be problematic. Click here for more details.

Files changed (826) hide show
  1. crc_pulpcore_client-20250829.2/PKG-INFO +25 -0
  2. crc_pulpcore_client-20250829.2/README.md +566 -0
  3. crc_pulpcore_client-20250829.2/crc_pulpcore_client.egg-info/PKG-INFO +25 -0
  4. crc_pulpcore_client-20250829.2/crc_pulpcore_client.egg-info/SOURCES.txt +466 -0
  5. crc_pulpcore_client-20250829.2/crc_pulpcore_client.egg-info/top_level.txt +1 -0
  6. crc_pulpcore_client-20250829.2/pulpcore/client/__init__.py +2 -0
  7. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/__init__.py +256 -0
  8. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/__init__.py +54 -0
  9. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/access_policies_api.py +1864 -0
  10. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/artifacts_api.py +1615 -0
  11. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/content_api.py +598 -0
  12. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/content_openpgp_publickey_api.py +1887 -0
  13. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/content_openpgp_publicsubkey_api.py +1518 -0
  14. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/content_openpgp_signature_api.py +1518 -0
  15. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/content_openpgp_userattribute_api.py +1518 -0
  16. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/content_openpgp_userid_api.py +1655 -0
  17. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/contentguards_api.py +667 -0
  18. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/contentguards_composite_api.py +3401 -0
  19. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/contentguards_content_redirect_api.py +3401 -0
  20. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/contentguards_header_api.py +3401 -0
  21. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/contentguards_rbac_api.py +3401 -0
  22. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/distributions_api.py +822 -0
  23. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/distributions_artifacts_api.py +1103 -0
  24. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/distributions_openpgp_api.py +2676 -0
  25. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/domains_api.py +3106 -0
  26. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/exporters_filesystem_api.py +2157 -0
  27. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/exporters_filesystem_exports_api.py +1288 -0
  28. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/exporters_pulp_api.py +2157 -0
  29. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/exporters_pulp_exports_api.py +1288 -0
  30. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/groups_api.py +3368 -0
  31. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/groups_roles_api.py +1496 -0
  32. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/groups_users_api.py +972 -0
  33. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/importers_pulp_api.py +2149 -0
  34. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/importers_pulp_import_check_api.py +350 -0
  35. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/importers_pulp_imports_api.py +1288 -0
  36. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/livez_api.py +329 -0
  37. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/login_api.py +897 -0
  38. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/orphans_api.py +319 -0
  39. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/orphans_cleanup_api.py +350 -0
  40. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/publications_api.py +765 -0
  41. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/remotes_api.py +850 -0
  42. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/repair_api.py +350 -0
  43. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/repositories_api.py +872 -0
  44. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/repositories_openpgp_keyring_api.py +4546 -0
  45. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/repositories_reclaim_space_api.py +350 -0
  46. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/repository_versions_api.py +764 -0
  47. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/roles_api.py +2269 -0
  48. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/signing_services_api.py +811 -0
  49. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/status_api.py +337 -0
  50. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/task_groups_api.py +1012 -0
  51. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/task_schedules_api.py +2114 -0
  52. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/tasks_api.py +4299 -0
  53. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/uploads_api.py +3346 -0
  54. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/upstream_pulps_api.py +4001 -0
  55. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/users_api.py +2373 -0
  56. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/users_roles_api.py +1496 -0
  57. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/vuln_report_api.py +977 -0
  58. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api/workers_api.py +1148 -0
  59. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/api_client.py +798 -0
  60. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/configuration.py +628 -0
  61. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/__init__.py +190 -0
  62. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/app_status_response.py +99 -0
  63. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/artifact_distribution_response.py +126 -0
  64. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/domain.py +114 -0
  65. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/domain_backend_migrator.py +91 -0
  66. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/domain_response.py +131 -0
  67. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/filesystem_exporter.py +94 -0
  68. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/filesystem_exporter_response.py +110 -0
  69. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/generic_remote_response.py +197 -0
  70. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/nested_open_pgp_public_subkey_response.py +102 -0
  71. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/nested_open_pgp_user_attribute_response.py +99 -0
  72. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/nested_open_pgp_user_id_response.py +98 -0
  73. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/object_roles_response.py +96 -0
  74. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/open_pgp_public_key_response.py +148 -0
  75. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/open_pgp_public_subkey_response.py +128 -0
  76. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/open_pgp_user_attribute_response.py +126 -0
  77. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/open_pgp_user_id_response.py +125 -0
  78. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_access_policy_response_list.py +102 -0
  79. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_artifact_distribution_response_list.py +102 -0
  80. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_artifact_response_list.py +102 -0
  81. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_composite_content_guard_response_list.py +102 -0
  82. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_content_guard_response_list.py +102 -0
  83. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_content_redirect_content_guard_response_list.py +102 -0
  84. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_distribution_response_list.py +102 -0
  85. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_domain_response_list.py +102 -0
  86. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_filesystem_export_response_list.py +102 -0
  87. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_filesystem_exporter_response_list.py +102 -0
  88. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_generic_remote_response_list.py +102 -0
  89. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_group_response_list.py +102 -0
  90. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_group_role_response_list.py +102 -0
  91. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_group_user_response_list.py +102 -0
  92. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_header_content_guard_response_list.py +102 -0
  93. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_import_response_list.py +102 -0
  94. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_multiple_artifact_content_response_list.py +102 -0
  95. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_distribution_response_list.py +102 -0
  96. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_keyring_response_list.py +102 -0
  97. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_public_key_response_list.py +102 -0
  98. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_public_subkey_response_list.py +102 -0
  99. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_signature_response_list.py +102 -0
  100. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_user_attribute_response_list.py +102 -0
  101. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_open_pgp_user_id_response_list.py +102 -0
  102. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_publication_response_list.py +102 -0
  103. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_pulp_export_response_list.py +102 -0
  104. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_pulp_exporter_response_list.py +102 -0
  105. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_pulp_importer_response_list.py +102 -0
  106. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_rbac_content_guard_response_list.py +102 -0
  107. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_repository_response_list.py +102 -0
  108. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_repository_version_response_list.py +102 -0
  109. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_role_response_list.py +102 -0
  110. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_signing_service_response_list.py +102 -0
  111. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_task_group_response_list.py +102 -0
  112. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_task_response_list.py +102 -0
  113. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_task_schedule_response_list.py +102 -0
  114. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_upload_response_list.py +102 -0
  115. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_upstream_pulp_response_list.py +102 -0
  116. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_user_response_list.py +102 -0
  117. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_user_role_response_list.py +102 -0
  118. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_vulnerability_report_response_list.py +102 -0
  119. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/paginated_worker_response_list.py +102 -0
  120. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/patched_domain.py +117 -0
  121. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/patched_filesystem_exporter.py +94 -0
  122. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/patched_upstream_pulp.py +147 -0
  123. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/pulp_import_check_response.py +102 -0
  124. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/purge.py +92 -0
  125. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/rbac_content_guard_response.py +132 -0
  126. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/repository_version_response.py +125 -0
  127. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/status_response.py +150 -0
  128. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/task_group_response.py +146 -0
  129. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/task_response.py +159 -0
  130. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/upload_detail_response.py +119 -0
  131. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/upstream_pulp.py +147 -0
  132. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/upstream_pulp_response.py +156 -0
  133. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/models/user_response.py +136 -0
  134. crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore/rest.py +258 -0
  135. crc_pulpcore_client-20250829.2/pyproject.toml +89 -0
  136. crc_pulpcore_client-20250829.2/setup.py +52 -0
  137. crc_pulpcore_client-20250829.2/test/test_access_policies_api.py +66 -0
  138. crc_pulpcore_client-20250829.2/test/test_access_policy.py +64 -0
  139. crc_pulpcore_client-20250829.2/test/test_access_policy_response.py +70 -0
  140. crc_pulpcore_client-20250829.2/test/test_app_status_response.py +56 -0
  141. crc_pulpcore_client-20250829.2/test/test_artifact_distribution_response.py +66 -0
  142. crc_pulpcore_client-20250829.2/test/test_artifact_response.py +64 -0
  143. crc_pulpcore_client-20250829.2/test/test_artifacts_api.py +60 -0
  144. crc_pulpcore_client-20250829.2/test/test_async_operation_response.py +53 -0
  145. crc_pulpcore_client-20250829.2/test/test_composite_content_guard.py +57 -0
  146. crc_pulpcore_client-20250829.2/test/test_composite_content_guard_response.py +61 -0
  147. crc_pulpcore_client-20250829.2/test/test_content_api.py +39 -0
  148. crc_pulpcore_client-20250829.2/test/test_content_guard_response.py +58 -0
  149. crc_pulpcore_client-20250829.2/test/test_content_openpgp_publickey_api.py +67 -0
  150. crc_pulpcore_client-20250829.2/test/test_content_openpgp_publicsubkey_api.py +60 -0
  151. crc_pulpcore_client-20250829.2/test/test_content_openpgp_signature_api.py +60 -0
  152. crc_pulpcore_client-20250829.2/test/test_content_openpgp_userattribute_api.py +60 -0
  153. crc_pulpcore_client-20250829.2/test/test_content_openpgp_userid_api.py +60 -0
  154. crc_pulpcore_client-20250829.2/test/test_content_redirect_content_guard.py +54 -0
  155. crc_pulpcore_client-20250829.2/test/test_content_redirect_content_guard_response.py +58 -0
  156. crc_pulpcore_client-20250829.2/test/test_content_settings_response.py +54 -0
  157. crc_pulpcore_client-20250829.2/test/test_content_summary_response.py +69 -0
  158. crc_pulpcore_client-20250829.2/test/test_contentguards_api.py +39 -0
  159. crc_pulpcore_client-20250829.2/test/test_contentguards_composite_api.py +102 -0
  160. crc_pulpcore_client-20250829.2/test/test_contentguards_content_redirect_api.py +102 -0
  161. crc_pulpcore_client-20250829.2/test/test_contentguards_header_api.py +102 -0
  162. crc_pulpcore_client-20250829.2/test/test_contentguards_rbac_api.py +102 -0
  163. crc_pulpcore_client-20250829.2/test/test_database_connection_response.py +53 -0
  164. crc_pulpcore_client-20250829.2/test/test_distribution_response.py +67 -0
  165. crc_pulpcore_client-20250829.2/test/test_distributions_api.py +39 -0
  166. crc_pulpcore_client-20250829.2/test/test_distributions_artifacts_api.py +46 -0
  167. crc_pulpcore_client-20250829.2/test/test_distributions_openpgp_api.py +88 -0
  168. crc_pulpcore_client-20250829.2/test/test_domain.py +63 -0
  169. crc_pulpcore_client-20250829.2/test/test_domain_backend_migrator.py +55 -0
  170. crc_pulpcore_client-20250829.2/test/test_domain_response.py +67 -0
  171. crc_pulpcore_client-20250829.2/test/test_domains_api.py +95 -0
  172. crc_pulpcore_client-20250829.2/test/test_evaluation_response.py +61 -0
  173. crc_pulpcore_client-20250829.2/test/test_exporters_filesystem_api.py +74 -0
  174. crc_pulpcore_client-20250829.2/test/test_exporters_filesystem_exports_api.py +60 -0
  175. crc_pulpcore_client-20250829.2/test/test_exporters_pulp_api.py +74 -0
  176. crc_pulpcore_client-20250829.2/test/test_exporters_pulp_exports_api.py +60 -0
  177. crc_pulpcore_client-20250829.2/test/test_filesystem_export.py +55 -0
  178. crc_pulpcore_client-20250829.2/test/test_filesystem_export_response.py +60 -0
  179. crc_pulpcore_client-20250829.2/test/test_filesystem_exporter.py +56 -0
  180. crc_pulpcore_client-20250829.2/test/test_filesystem_exporter_response.py +60 -0
  181. crc_pulpcore_client-20250829.2/test/test_generic_remote_response.py +82 -0
  182. crc_pulpcore_client-20250829.2/test/test_generic_remote_response_hidden_fields_inner.py +55 -0
  183. crc_pulpcore_client-20250829.2/test/test_generic_remote_response_policy_enum.py +34 -0
  184. crc_pulpcore_client-20250829.2/test/test_group.py +53 -0
  185. crc_pulpcore_client-20250829.2/test/test_group_progress_report_response.py +56 -0
  186. crc_pulpcore_client-20250829.2/test/test_group_response.py +56 -0
  187. crc_pulpcore_client-20250829.2/test/test_group_role.py +56 -0
  188. crc_pulpcore_client-20250829.2/test/test_group_role_response.py +64 -0
  189. crc_pulpcore_client-20250829.2/test/test_group_user.py +53 -0
  190. crc_pulpcore_client-20250829.2/test/test_group_user_response.py +55 -0
  191. crc_pulpcore_client-20250829.2/test/test_groups_api.py +102 -0
  192. crc_pulpcore_client-20250829.2/test/test_groups_roles_api.py +60 -0
  193. crc_pulpcore_client-20250829.2/test/test_groups_users_api.py +53 -0
  194. crc_pulpcore_client-20250829.2/test/test_header_content_guard.py +59 -0
  195. crc_pulpcore_client-20250829.2/test/test_header_content_guard_response.py +63 -0
  196. crc_pulpcore_client-20250829.2/test/test_import_response.py +59 -0
  197. crc_pulpcore_client-20250829.2/test/test_importers_pulp_api.py +74 -0
  198. crc_pulpcore_client-20250829.2/test/test_importers_pulp_import_check_api.py +39 -0
  199. crc_pulpcore_client-20250829.2/test/test_importers_pulp_imports_api.py +60 -0
  200. crc_pulpcore_client-20250829.2/test/test_livez_api.py +39 -0
  201. crc_pulpcore_client-20250829.2/test/test_login_api.py +50 -0
  202. crc_pulpcore_client-20250829.2/test/test_login_response.py +54 -0
  203. crc_pulpcore_client-20250829.2/test/test_method_enum.py +34 -0
  204. crc_pulpcore_client-20250829.2/test/test_minimal_task_response.py +62 -0
  205. crc_pulpcore_client-20250829.2/test/test_multiple_artifact_content_response.py +61 -0
  206. crc_pulpcore_client-20250829.2/test/test_my_permissions_response.py +57 -0
  207. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_public_subkey.py +55 -0
  208. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_public_subkey_response.py +65 -0
  209. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_signature.py +59 -0
  210. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_signature_response.py +60 -0
  211. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_user_attribute.py +53 -0
  212. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_user_attribute_response.py +63 -0
  213. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_user_id.py +53 -0
  214. crc_pulpcore_client-20250829.2/test/test_nested_open_pgp_user_id_response.py +63 -0
  215. crc_pulpcore_client-20250829.2/test/test_nested_role.py +59 -0
  216. crc_pulpcore_client-20250829.2/test/test_nested_role_response.py +59 -0
  217. crc_pulpcore_client-20250829.2/test/test_object_roles_response.py +71 -0
  218. crc_pulpcore_client-20250829.2/test/test_open_pgp_distribution.py +62 -0
  219. crc_pulpcore_client-20250829.2/test/test_open_pgp_distribution_response.py +68 -0
  220. crc_pulpcore_client-20250829.2/test/test_open_pgp_keyring.py +59 -0
  221. crc_pulpcore_client-20250829.2/test/test_open_pgp_keyring_response.py +65 -0
  222. crc_pulpcore_client-20250829.2/test/test_open_pgp_public_key_response.py +104 -0
  223. crc_pulpcore_client-20250829.2/test/test_open_pgp_public_subkey_response.py +74 -0
  224. crc_pulpcore_client-20250829.2/test/test_open_pgp_signature_response.py +69 -0
  225. crc_pulpcore_client-20250829.2/test/test_open_pgp_user_attribute_response.py +72 -0
  226. crc_pulpcore_client-20250829.2/test/test_open_pgp_user_id_response.py +72 -0
  227. crc_pulpcore_client-20250829.2/test/test_orphans_api.py +39 -0
  228. crc_pulpcore_client-20250829.2/test/test_orphans_cleanup.py +55 -0
  229. crc_pulpcore_client-20250829.2/test/test_orphans_cleanup_api.py +38 -0
  230. crc_pulpcore_client-20250829.2/test/test_paginated_access_policy_response_list.py +93 -0
  231. crc_pulpcore_client-20250829.2/test/test_paginated_artifact_distribution_response_list.py +87 -0
  232. crc_pulpcore_client-20250829.2/test/test_paginated_artifact_response_list.py +85 -0
  233. crc_pulpcore_client-20250829.2/test/test_paginated_composite_content_guard_response_list.py +79 -0
  234. crc_pulpcore_client-20250829.2/test/test_paginated_content_guard_response_list.py +73 -0
  235. crc_pulpcore_client-20250829.2/test/test_paginated_content_redirect_content_guard_response_list.py +73 -0
  236. crc_pulpcore_client-20250829.2/test/test_paginated_distribution_response_list.py +89 -0
  237. crc_pulpcore_client-20250829.2/test/test_paginated_domain_response_list.py +87 -0
  238. crc_pulpcore_client-20250829.2/test/test_paginated_filesystem_export_response_list.py +79 -0
  239. crc_pulpcore_client-20250829.2/test/test_paginated_filesystem_exporter_response_list.py +75 -0
  240. crc_pulpcore_client-20250829.2/test/test_paginated_generic_remote_response_list.py +119 -0
  241. crc_pulpcore_client-20250829.2/test/test_paginated_group_response_list.py +69 -0
  242. crc_pulpcore_client-20250829.2/test/test_paginated_group_role_response_list.py +85 -0
  243. crc_pulpcore_client-20250829.2/test/test_paginated_group_user_response_list.py +67 -0
  244. crc_pulpcore_client-20250829.2/test/test_paginated_header_content_guard_response_list.py +79 -0
  245. crc_pulpcore_client-20250829.2/test/test_paginated_import_response_list.py +73 -0
  246. crc_pulpcore_client-20250829.2/test/test_paginated_multiple_artifact_content_response_list.py +79 -0
  247. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_distribution_response_list.py +91 -0
  248. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_keyring_response_list.py +87 -0
  249. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_public_key_response_list.py +127 -0
  250. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_public_subkey_response_list.py +103 -0
  251. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_signature_response_list.py +93 -0
  252. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_user_attribute_response_list.py +101 -0
  253. crc_pulpcore_client-20250829.2/test/test_paginated_open_pgp_user_id_response_list.py +101 -0
  254. crc_pulpcore_client-20250829.2/test/test_paginated_publication_response_list.py +73 -0
  255. crc_pulpcore_client-20250829.2/test/test_paginated_pulp_export_response_list.py +83 -0
  256. crc_pulpcore_client-20250829.2/test/test_paginated_pulp_exporter_response_list.py +81 -0
  257. crc_pulpcore_client-20250829.2/test/test_paginated_pulp_importer_response_list.py +77 -0
  258. crc_pulpcore_client-20250829.2/test/test_paginated_rbac_content_guard_response_list.py +99 -0
  259. crc_pulpcore_client-20250829.2/test/test_paginated_repository_response_list.py +87 -0
  260. crc_pulpcore_client-20250829.2/test/test_paginated_repository_version_response_list.py +79 -0
  261. crc_pulpcore_client-20250829.2/test/test_paginated_role_response_list.py +81 -0
  262. crc_pulpcore_client-20250829.2/test/test_paginated_signing_service_response_list.py +77 -0
  263. crc_pulpcore_client-20250829.2/test/test_paginated_task_group_response_list.py +125 -0
  264. crc_pulpcore_client-20250829.2/test/test_paginated_task_response_list.py +127 -0
  265. crc_pulpcore_client-20250829.2/test/test_paginated_task_schedule_response_list.py +79 -0
  266. crc_pulpcore_client-20250829.2/test/test_paginated_upload_response_list.py +73 -0
  267. crc_pulpcore_client-20250829.2/test/test_paginated_upstream_pulp_response_list.py +99 -0
  268. crc_pulpcore_client-20250829.2/test/test_paginated_user_response_list.py +103 -0
  269. crc_pulpcore_client-20250829.2/test/test_paginated_user_role_response_list.py +85 -0
  270. crc_pulpcore_client-20250829.2/test/test_paginated_vulnerability_report_response_list.py +79 -0
  271. crc_pulpcore_client-20250829.2/test/test_paginated_worker_response_list.py +81 -0
  272. crc_pulpcore_client-20250829.2/test/test_patched_access_policy.py +61 -0
  273. crc_pulpcore_client-20250829.2/test/test_patched_composite_content_guard.py +56 -0
  274. crc_pulpcore_client-20250829.2/test/test_patched_content_redirect_content_guard.py +53 -0
  275. crc_pulpcore_client-20250829.2/test/test_patched_domain.py +60 -0
  276. crc_pulpcore_client-20250829.2/test/test_patched_filesystem_exporter.py +54 -0
  277. crc_pulpcore_client-20250829.2/test/test_patched_group.py +52 -0
  278. crc_pulpcore_client-20250829.2/test/test_patched_header_content_guard.py +56 -0
  279. crc_pulpcore_client-20250829.2/test/test_patched_open_pgp_distribution.py +60 -0
  280. crc_pulpcore_client-20250829.2/test/test_patched_open_pgp_keyring.py +58 -0
  281. crc_pulpcore_client-20250829.2/test/test_patched_pulp_exporter.py +57 -0
  282. crc_pulpcore_client-20250829.2/test/test_patched_pulp_importer.py +55 -0
  283. crc_pulpcore_client-20250829.2/test/test_patched_rbac_content_guard.py +53 -0
  284. crc_pulpcore_client-20250829.2/test/test_patched_role.py +56 -0
  285. crc_pulpcore_client-20250829.2/test/test_patched_task_cancel.py +52 -0
  286. crc_pulpcore_client-20250829.2/test/test_patched_upstream_pulp.py +63 -0
  287. crc_pulpcore_client-20250829.2/test/test_patched_user.py +58 -0
  288. crc_pulpcore_client-20250829.2/test/test_policy357_enum.py +34 -0
  289. crc_pulpcore_client-20250829.2/test/test_profile_artifact_response.py +57 -0
  290. crc_pulpcore_client-20250829.2/test/test_progress_report_response.py +57 -0
  291. crc_pulpcore_client-20250829.2/test/test_publication_response.py +57 -0
  292. crc_pulpcore_client-20250829.2/test/test_publications_api.py +39 -0
  293. crc_pulpcore_client-20250829.2/test/test_pulp_export.py +61 -0
  294. crc_pulpcore_client-20250829.2/test/test_pulp_export_response.py +62 -0
  295. crc_pulpcore_client-20250829.2/test/test_pulp_exporter.py +62 -0
  296. crc_pulpcore_client-20250829.2/test/test_pulp_exporter_response.py +66 -0
  297. crc_pulpcore_client-20250829.2/test/test_pulp_import.py +54 -0
  298. crc_pulpcore_client-20250829.2/test/test_pulp_import_check.py +54 -0
  299. crc_pulpcore_client-20250829.2/test/test_pulp_import_check_response.py +69 -0
  300. crc_pulpcore_client-20250829.2/test/test_pulp_importer.py +56 -0
  301. crc_pulpcore_client-20250829.2/test/test_pulp_importer_response.py +60 -0
  302. crc_pulpcore_client-20250829.2/test/test_purge.py +55 -0
  303. crc_pulpcore_client-20250829.2/test/test_rbac_content_guard.py +54 -0
  304. crc_pulpcore_client-20250829.2/test/test_rbac_content_guard_response.py +71 -0
  305. crc_pulpcore_client-20250829.2/test/test_reclaim_space.py +60 -0
  306. crc_pulpcore_client-20250829.2/test/test_redis_connection_response.py +53 -0
  307. crc_pulpcore_client-20250829.2/test/test_remotes_api.py +39 -0
  308. crc_pulpcore_client-20250829.2/test/test_repair.py +52 -0
  309. crc_pulpcore_client-20250829.2/test/test_repair_api.py +39 -0
  310. crc_pulpcore_client-20250829.2/test/test_repositories_api.py +39 -0
  311. crc_pulpcore_client-20250829.2/test/test_repositories_openpgp_keyring_api.py +123 -0
  312. crc_pulpcore_client-20250829.2/test/test_repositories_reclaim_space_api.py +38 -0
  313. crc_pulpcore_client-20250829.2/test/test_repository_add_remove_content.py +58 -0
  314. crc_pulpcore_client-20250829.2/test/test_repository_response.py +65 -0
  315. crc_pulpcore_client-20250829.2/test/test_repository_version_response.py +69 -0
  316. crc_pulpcore_client-20250829.2/test/test_repository_versions_api.py +39 -0
  317. crc_pulpcore_client-20250829.2/test/test_role.py +60 -0
  318. crc_pulpcore_client-20250829.2/test/test_role_response.py +65 -0
  319. crc_pulpcore_client-20250829.2/test/test_roles_api.py +74 -0
  320. crc_pulpcore_client-20250829.2/test/test_set_label.py +55 -0
  321. crc_pulpcore_client-20250829.2/test/test_set_label_response.py +55 -0
  322. crc_pulpcore_client-20250829.2/test/test_signing_service_response.py +63 -0
  323. crc_pulpcore_client-20250829.2/test/test_signing_services_api.py +46 -0
  324. crc_pulpcore_client-20250829.2/test/test_states_enum.py +34 -0
  325. crc_pulpcore_client-20250829.2/test/test_status_api.py +39 -0
  326. crc_pulpcore_client-20250829.2/test/test_status_response.py +133 -0
  327. crc_pulpcore_client-20250829.2/test/test_storage_class_enum.py +34 -0
  328. crc_pulpcore_client-20250829.2/test/test_storage_response.py +57 -0
  329. crc_pulpcore_client-20250829.2/test/test_task_group_operation_response.py +53 -0
  330. crc_pulpcore_client-20250829.2/test/test_task_group_response.py +85 -0
  331. crc_pulpcore_client-20250829.2/test/test_task_groups_api.py +53 -0
  332. crc_pulpcore_client-20250829.2/test/test_task_response.py +86 -0
  333. crc_pulpcore_client-20250829.2/test/test_task_schedule_response.py +63 -0
  334. crc_pulpcore_client-20250829.2/test/test_task_schedules_api.py +74 -0
  335. crc_pulpcore_client-20250829.2/test/test_tasks_api.py +102 -0
  336. crc_pulpcore_client-20250829.2/test/test_unset_label.py +53 -0
  337. crc_pulpcore_client-20250829.2/test/test_unset_label_response.py +54 -0
  338. crc_pulpcore_client-20250829.2/test/test_upload.py +53 -0
  339. crc_pulpcore_client-20250829.2/test/test_upload_chunk_response.py +53 -0
  340. crc_pulpcore_client-20250829.2/test/test_upload_commit.py +53 -0
  341. crc_pulpcore_client-20250829.2/test/test_upload_detail_response.py +63 -0
  342. crc_pulpcore_client-20250829.2/test/test_upload_response.py +58 -0
  343. crc_pulpcore_client-20250829.2/test/test_uploads_api.py +102 -0
  344. crc_pulpcore_client-20250829.2/test/test_upstream_pulp.py +66 -0
  345. crc_pulpcore_client-20250829.2/test/test_upstream_pulp_response.py +73 -0
  346. crc_pulpcore_client-20250829.2/test/test_upstream_pulps_api.py +109 -0
  347. crc_pulpcore_client-20250829.2/test/test_user.py +59 -0
  348. crc_pulpcore_client-20250829.2/test/test_user_group.py +53 -0
  349. crc_pulpcore_client-20250829.2/test/test_user_group_response.py +55 -0
  350. crc_pulpcore_client-20250829.2/test/test_user_response.py +73 -0
  351. crc_pulpcore_client-20250829.2/test/test_user_role.py +56 -0
  352. crc_pulpcore_client-20250829.2/test/test_user_role_response.py +64 -0
  353. crc_pulpcore_client-20250829.2/test/test_users_api.py +74 -0
  354. crc_pulpcore_client-20250829.2/test/test_users_roles_api.py +60 -0
  355. crc_pulpcore_client-20250829.2/test/test_version_response.py +61 -0
  356. crc_pulpcore_client-20250829.2/test/test_vuln_report_api.py +53 -0
  357. crc_pulpcore_client-20250829.2/test/test_vulnerability_report_response.py +61 -0
  358. crc_pulpcore_client-20250829.2/test/test_worker_response.py +61 -0
  359. crc_pulpcore_client-20250829.2/test/test_workers_api.py +46 -0
  360. crc_pulpcore_client-20250828.3/PKG-INFO +0 -25
  361. crc_pulpcore_client-20250828.3/README.md +0 -567
  362. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/__init__.py +0 -54
  363. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/access_policies_api.py +0 -1864
  364. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/artifacts_api.py +0 -1615
  365. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/content_api.py +0 -598
  366. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/content_openpgp_publickey_api.py +0 -1887
  367. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/content_openpgp_publicsubkey_api.py +0 -1518
  368. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/content_openpgp_signature_api.py +0 -1518
  369. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/content_openpgp_userattribute_api.py +0 -1518
  370. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/content_openpgp_userid_api.py +0 -1655
  371. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/contentguards_api.py +0 -667
  372. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/contentguards_composite_api.py +0 -3401
  373. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/contentguards_content_redirect_api.py +0 -3401
  374. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/contentguards_header_api.py +0 -3401
  375. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/contentguards_rbac_api.py +0 -3401
  376. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/distributions_api.py +0 -822
  377. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/distributions_artifacts_api.py +0 -1103
  378. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/distributions_openpgp_api.py +0 -2676
  379. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/domains_api.py +0 -3106
  380. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/exporters_filesystem_api.py +0 -2157
  381. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/exporters_filesystem_exports_api.py +0 -1288
  382. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/exporters_pulp_api.py +0 -2157
  383. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/exporters_pulp_exports_api.py +0 -1288
  384. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/groups_api.py +0 -3368
  385. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/groups_roles_api.py +0 -1496
  386. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/groups_users_api.py +0 -972
  387. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/importers_pulp_api.py +0 -2149
  388. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/importers_pulp_import_check_api.py +0 -350
  389. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/importers_pulp_imports_api.py +0 -1288
  390. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/livez_api.py +0 -329
  391. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/login_api.py +0 -897
  392. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/orphans_api.py +0 -319
  393. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/orphans_cleanup_api.py +0 -350
  394. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/publications_api.py +0 -765
  395. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/remotes_api.py +0 -850
  396. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/repair_api.py +0 -350
  397. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/repositories_api.py +0 -872
  398. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/repositories_openpgp_keyring_api.py +0 -4546
  399. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/repositories_reclaim_space_api.py +0 -350
  400. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/repository_versions_api.py +0 -764
  401. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/roles_api.py +0 -2269
  402. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/signing_services_api.py +0 -811
  403. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/status_api.py +0 -337
  404. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/task_groups_api.py +0 -1012
  405. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/task_schedules_api.py +0 -2114
  406. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/tasks_api.py +0 -4299
  407. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/uploads_api.py +0 -3346
  408. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/upstream_pulps_api.py +0 -4001
  409. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/users_api.py +0 -2373
  410. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/users_roles_api.py +0 -1496
  411. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/vuln_report_api.py +0 -977
  412. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api/workers_api.py +0 -1148
  413. crc_pulpcore_client-20250828.3/crc-pulpcore-client/api_client.py +0 -798
  414. crc_pulpcore_client-20250828.3/crc-pulpcore-client/configuration.py +0 -628
  415. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/__init__.py +0 -191
  416. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/api_app_status_response.py +0 -99
  417. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/artifact_distribution_response.py +0 -126
  418. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/content_app_status_response.py +0 -99
  419. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/domain.py +0 -114
  420. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/domain_backend_migrator.py +0 -91
  421. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/domain_response.py +0 -131
  422. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/filesystem_exporter.py +0 -94
  423. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/filesystem_exporter_response.py +0 -110
  424. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/generic_remote_response.py +0 -197
  425. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/nested_open_pgp_public_subkey_response.py +0 -102
  426. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/nested_open_pgp_user_attribute_response.py +0 -99
  427. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/nested_open_pgp_user_id_response.py +0 -98
  428. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/object_roles_response.py +0 -96
  429. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/open_pgp_public_key_response.py +0 -148
  430. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/open_pgp_public_subkey_response.py +0 -128
  431. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/open_pgp_user_attribute_response.py +0 -126
  432. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/open_pgp_user_id_response.py +0 -125
  433. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_access_policy_response_list.py +0 -102
  434. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_artifact_distribution_response_list.py +0 -102
  435. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_artifact_response_list.py +0 -102
  436. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_composite_content_guard_response_list.py +0 -102
  437. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_content_guard_response_list.py +0 -102
  438. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_content_redirect_content_guard_response_list.py +0 -102
  439. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_distribution_response_list.py +0 -102
  440. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_domain_response_list.py +0 -102
  441. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_filesystem_export_response_list.py +0 -102
  442. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_filesystem_exporter_response_list.py +0 -102
  443. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_generic_remote_response_list.py +0 -102
  444. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_group_response_list.py +0 -102
  445. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_group_role_response_list.py +0 -102
  446. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_group_user_response_list.py +0 -102
  447. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_header_content_guard_response_list.py +0 -102
  448. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_import_response_list.py +0 -102
  449. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_multiple_artifact_content_response_list.py +0 -102
  450. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_distribution_response_list.py +0 -102
  451. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_keyring_response_list.py +0 -102
  452. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_public_key_response_list.py +0 -102
  453. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_public_subkey_response_list.py +0 -102
  454. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_signature_response_list.py +0 -102
  455. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_user_attribute_response_list.py +0 -102
  456. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_open_pgp_user_id_response_list.py +0 -102
  457. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_publication_response_list.py +0 -102
  458. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_pulp_export_response_list.py +0 -102
  459. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_pulp_exporter_response_list.py +0 -102
  460. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_pulp_importer_response_list.py +0 -102
  461. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_rbac_content_guard_response_list.py +0 -102
  462. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_repository_response_list.py +0 -102
  463. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_repository_version_response_list.py +0 -102
  464. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_role_response_list.py +0 -102
  465. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_signing_service_response_list.py +0 -102
  466. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_task_group_response_list.py +0 -102
  467. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_task_response_list.py +0 -102
  468. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_task_schedule_response_list.py +0 -102
  469. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_upload_response_list.py +0 -102
  470. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_upstream_pulp_response_list.py +0 -102
  471. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_user_response_list.py +0 -102
  472. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_user_role_response_list.py +0 -102
  473. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_vulnerability_report_response_list.py +0 -102
  474. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/paginated_worker_response_list.py +0 -102
  475. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/patched_domain.py +0 -117
  476. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/patched_filesystem_exporter.py +0 -94
  477. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/patched_upstream_pulp.py +0 -147
  478. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/pulp_import_check_response.py +0 -102
  479. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/purge.py +0 -92
  480. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/rbac_content_guard_response.py +0 -132
  481. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/repository_version_response.py +0 -125
  482. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/status_response.py +0 -152
  483. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/task_group_response.py +0 -146
  484. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/task_response.py +0 -159
  485. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/upload_detail_response.py +0 -119
  486. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/upstream_pulp.py +0 -147
  487. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/upstream_pulp_response.py +0 -156
  488. crc_pulpcore_client-20250828.3/crc-pulpcore-client/models/user_response.py +0 -136
  489. crc_pulpcore_client-20250828.3/crc-pulpcore-client/rest.py +0 -258
  490. crc_pulpcore_client-20250828.3/crc_pulpcore_client.egg-info/PKG-INFO +0 -25
  491. crc_pulpcore_client-20250828.3/crc_pulpcore_client.egg-info/SOURCES.txt +0 -466
  492. crc_pulpcore_client-20250828.3/crc_pulpcore_client.egg-info/top_level.txt +0 -1
  493. crc_pulpcore_client-20250828.3/pyproject.toml +0 -89
  494. crc_pulpcore_client-20250828.3/setup.py +0 -52
  495. crc_pulpcore_client-20250828.3/test/test_access_policies_api.py +0 -66
  496. crc_pulpcore_client-20250828.3/test/test_access_policy.py +0 -64
  497. crc_pulpcore_client-20250828.3/test/test_access_policy_response.py +0 -70
  498. crc_pulpcore_client-20250828.3/test/test_api_app_status_response.py +0 -56
  499. crc_pulpcore_client-20250828.3/test/test_artifact_distribution_response.py +0 -66
  500. crc_pulpcore_client-20250828.3/test/test_artifact_response.py +0 -64
  501. crc_pulpcore_client-20250828.3/test/test_artifacts_api.py +0 -60
  502. crc_pulpcore_client-20250828.3/test/test_async_operation_response.py +0 -53
  503. crc_pulpcore_client-20250828.3/test/test_composite_content_guard.py +0 -57
  504. crc_pulpcore_client-20250828.3/test/test_composite_content_guard_response.py +0 -61
  505. crc_pulpcore_client-20250828.3/test/test_content_api.py +0 -39
  506. crc_pulpcore_client-20250828.3/test/test_content_app_status_response.py +0 -56
  507. crc_pulpcore_client-20250828.3/test/test_content_guard_response.py +0 -58
  508. crc_pulpcore_client-20250828.3/test/test_content_openpgp_publickey_api.py +0 -67
  509. crc_pulpcore_client-20250828.3/test/test_content_openpgp_publicsubkey_api.py +0 -60
  510. crc_pulpcore_client-20250828.3/test/test_content_openpgp_signature_api.py +0 -60
  511. crc_pulpcore_client-20250828.3/test/test_content_openpgp_userattribute_api.py +0 -60
  512. crc_pulpcore_client-20250828.3/test/test_content_openpgp_userid_api.py +0 -60
  513. crc_pulpcore_client-20250828.3/test/test_content_redirect_content_guard.py +0 -54
  514. crc_pulpcore_client-20250828.3/test/test_content_redirect_content_guard_response.py +0 -58
  515. crc_pulpcore_client-20250828.3/test/test_content_settings_response.py +0 -54
  516. crc_pulpcore_client-20250828.3/test/test_content_summary_response.py +0 -69
  517. crc_pulpcore_client-20250828.3/test/test_contentguards_api.py +0 -39
  518. crc_pulpcore_client-20250828.3/test/test_contentguards_composite_api.py +0 -102
  519. crc_pulpcore_client-20250828.3/test/test_contentguards_content_redirect_api.py +0 -102
  520. crc_pulpcore_client-20250828.3/test/test_contentguards_header_api.py +0 -102
  521. crc_pulpcore_client-20250828.3/test/test_contentguards_rbac_api.py +0 -102
  522. crc_pulpcore_client-20250828.3/test/test_database_connection_response.py +0 -53
  523. crc_pulpcore_client-20250828.3/test/test_distribution_response.py +0 -67
  524. crc_pulpcore_client-20250828.3/test/test_distributions_api.py +0 -39
  525. crc_pulpcore_client-20250828.3/test/test_distributions_artifacts_api.py +0 -46
  526. crc_pulpcore_client-20250828.3/test/test_distributions_openpgp_api.py +0 -88
  527. crc_pulpcore_client-20250828.3/test/test_domain.py +0 -63
  528. crc_pulpcore_client-20250828.3/test/test_domain_backend_migrator.py +0 -55
  529. crc_pulpcore_client-20250828.3/test/test_domain_response.py +0 -67
  530. crc_pulpcore_client-20250828.3/test/test_domains_api.py +0 -95
  531. crc_pulpcore_client-20250828.3/test/test_evaluation_response.py +0 -61
  532. crc_pulpcore_client-20250828.3/test/test_exporters_filesystem_api.py +0 -74
  533. crc_pulpcore_client-20250828.3/test/test_exporters_filesystem_exports_api.py +0 -60
  534. crc_pulpcore_client-20250828.3/test/test_exporters_pulp_api.py +0 -74
  535. crc_pulpcore_client-20250828.3/test/test_exporters_pulp_exports_api.py +0 -60
  536. crc_pulpcore_client-20250828.3/test/test_filesystem_export.py +0 -55
  537. crc_pulpcore_client-20250828.3/test/test_filesystem_export_response.py +0 -60
  538. crc_pulpcore_client-20250828.3/test/test_filesystem_exporter.py +0 -56
  539. crc_pulpcore_client-20250828.3/test/test_filesystem_exporter_response.py +0 -60
  540. crc_pulpcore_client-20250828.3/test/test_generic_remote_response.py +0 -82
  541. crc_pulpcore_client-20250828.3/test/test_generic_remote_response_hidden_fields_inner.py +0 -55
  542. crc_pulpcore_client-20250828.3/test/test_generic_remote_response_policy_enum.py +0 -34
  543. crc_pulpcore_client-20250828.3/test/test_group.py +0 -53
  544. crc_pulpcore_client-20250828.3/test/test_group_progress_report_response.py +0 -56
  545. crc_pulpcore_client-20250828.3/test/test_group_response.py +0 -56
  546. crc_pulpcore_client-20250828.3/test/test_group_role.py +0 -56
  547. crc_pulpcore_client-20250828.3/test/test_group_role_response.py +0 -64
  548. crc_pulpcore_client-20250828.3/test/test_group_user.py +0 -53
  549. crc_pulpcore_client-20250828.3/test/test_group_user_response.py +0 -55
  550. crc_pulpcore_client-20250828.3/test/test_groups_api.py +0 -102
  551. crc_pulpcore_client-20250828.3/test/test_groups_roles_api.py +0 -60
  552. crc_pulpcore_client-20250828.3/test/test_groups_users_api.py +0 -53
  553. crc_pulpcore_client-20250828.3/test/test_header_content_guard.py +0 -59
  554. crc_pulpcore_client-20250828.3/test/test_header_content_guard_response.py +0 -63
  555. crc_pulpcore_client-20250828.3/test/test_import_response.py +0 -59
  556. crc_pulpcore_client-20250828.3/test/test_importers_pulp_api.py +0 -74
  557. crc_pulpcore_client-20250828.3/test/test_importers_pulp_import_check_api.py +0 -39
  558. crc_pulpcore_client-20250828.3/test/test_importers_pulp_imports_api.py +0 -60
  559. crc_pulpcore_client-20250828.3/test/test_livez_api.py +0 -39
  560. crc_pulpcore_client-20250828.3/test/test_login_api.py +0 -50
  561. crc_pulpcore_client-20250828.3/test/test_login_response.py +0 -54
  562. crc_pulpcore_client-20250828.3/test/test_method_enum.py +0 -34
  563. crc_pulpcore_client-20250828.3/test/test_minimal_task_response.py +0 -62
  564. crc_pulpcore_client-20250828.3/test/test_multiple_artifact_content_response.py +0 -61
  565. crc_pulpcore_client-20250828.3/test/test_my_permissions_response.py +0 -57
  566. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_public_subkey.py +0 -55
  567. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_public_subkey_response.py +0 -65
  568. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_signature.py +0 -59
  569. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_signature_response.py +0 -60
  570. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_user_attribute.py +0 -53
  571. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_user_attribute_response.py +0 -63
  572. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_user_id.py +0 -53
  573. crc_pulpcore_client-20250828.3/test/test_nested_open_pgp_user_id_response.py +0 -63
  574. crc_pulpcore_client-20250828.3/test/test_nested_role.py +0 -59
  575. crc_pulpcore_client-20250828.3/test/test_nested_role_response.py +0 -59
  576. crc_pulpcore_client-20250828.3/test/test_object_roles_response.py +0 -71
  577. crc_pulpcore_client-20250828.3/test/test_open_pgp_distribution.py +0 -62
  578. crc_pulpcore_client-20250828.3/test/test_open_pgp_distribution_response.py +0 -68
  579. crc_pulpcore_client-20250828.3/test/test_open_pgp_keyring.py +0 -59
  580. crc_pulpcore_client-20250828.3/test/test_open_pgp_keyring_response.py +0 -65
  581. crc_pulpcore_client-20250828.3/test/test_open_pgp_public_key_response.py +0 -104
  582. crc_pulpcore_client-20250828.3/test/test_open_pgp_public_subkey_response.py +0 -74
  583. crc_pulpcore_client-20250828.3/test/test_open_pgp_signature_response.py +0 -69
  584. crc_pulpcore_client-20250828.3/test/test_open_pgp_user_attribute_response.py +0 -72
  585. crc_pulpcore_client-20250828.3/test/test_open_pgp_user_id_response.py +0 -72
  586. crc_pulpcore_client-20250828.3/test/test_orphans_api.py +0 -39
  587. crc_pulpcore_client-20250828.3/test/test_orphans_cleanup.py +0 -55
  588. crc_pulpcore_client-20250828.3/test/test_orphans_cleanup_api.py +0 -38
  589. crc_pulpcore_client-20250828.3/test/test_paginated_access_policy_response_list.py +0 -93
  590. crc_pulpcore_client-20250828.3/test/test_paginated_artifact_distribution_response_list.py +0 -87
  591. crc_pulpcore_client-20250828.3/test/test_paginated_artifact_response_list.py +0 -85
  592. crc_pulpcore_client-20250828.3/test/test_paginated_composite_content_guard_response_list.py +0 -79
  593. crc_pulpcore_client-20250828.3/test/test_paginated_content_guard_response_list.py +0 -73
  594. crc_pulpcore_client-20250828.3/test/test_paginated_content_redirect_content_guard_response_list.py +0 -73
  595. crc_pulpcore_client-20250828.3/test/test_paginated_distribution_response_list.py +0 -89
  596. crc_pulpcore_client-20250828.3/test/test_paginated_domain_response_list.py +0 -87
  597. crc_pulpcore_client-20250828.3/test/test_paginated_filesystem_export_response_list.py +0 -79
  598. crc_pulpcore_client-20250828.3/test/test_paginated_filesystem_exporter_response_list.py +0 -75
  599. crc_pulpcore_client-20250828.3/test/test_paginated_generic_remote_response_list.py +0 -119
  600. crc_pulpcore_client-20250828.3/test/test_paginated_group_response_list.py +0 -69
  601. crc_pulpcore_client-20250828.3/test/test_paginated_group_role_response_list.py +0 -85
  602. crc_pulpcore_client-20250828.3/test/test_paginated_group_user_response_list.py +0 -67
  603. crc_pulpcore_client-20250828.3/test/test_paginated_header_content_guard_response_list.py +0 -79
  604. crc_pulpcore_client-20250828.3/test/test_paginated_import_response_list.py +0 -73
  605. crc_pulpcore_client-20250828.3/test/test_paginated_multiple_artifact_content_response_list.py +0 -79
  606. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_distribution_response_list.py +0 -91
  607. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_keyring_response_list.py +0 -87
  608. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_public_key_response_list.py +0 -127
  609. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_public_subkey_response_list.py +0 -103
  610. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_signature_response_list.py +0 -93
  611. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_user_attribute_response_list.py +0 -101
  612. crc_pulpcore_client-20250828.3/test/test_paginated_open_pgp_user_id_response_list.py +0 -101
  613. crc_pulpcore_client-20250828.3/test/test_paginated_publication_response_list.py +0 -73
  614. crc_pulpcore_client-20250828.3/test/test_paginated_pulp_export_response_list.py +0 -83
  615. crc_pulpcore_client-20250828.3/test/test_paginated_pulp_exporter_response_list.py +0 -81
  616. crc_pulpcore_client-20250828.3/test/test_paginated_pulp_importer_response_list.py +0 -77
  617. crc_pulpcore_client-20250828.3/test/test_paginated_rbac_content_guard_response_list.py +0 -99
  618. crc_pulpcore_client-20250828.3/test/test_paginated_repository_response_list.py +0 -87
  619. crc_pulpcore_client-20250828.3/test/test_paginated_repository_version_response_list.py +0 -79
  620. crc_pulpcore_client-20250828.3/test/test_paginated_role_response_list.py +0 -81
  621. crc_pulpcore_client-20250828.3/test/test_paginated_signing_service_response_list.py +0 -77
  622. crc_pulpcore_client-20250828.3/test/test_paginated_task_group_response_list.py +0 -125
  623. crc_pulpcore_client-20250828.3/test/test_paginated_task_response_list.py +0 -127
  624. crc_pulpcore_client-20250828.3/test/test_paginated_task_schedule_response_list.py +0 -79
  625. crc_pulpcore_client-20250828.3/test/test_paginated_upload_response_list.py +0 -73
  626. crc_pulpcore_client-20250828.3/test/test_paginated_upstream_pulp_response_list.py +0 -99
  627. crc_pulpcore_client-20250828.3/test/test_paginated_user_response_list.py +0 -103
  628. crc_pulpcore_client-20250828.3/test/test_paginated_user_role_response_list.py +0 -85
  629. crc_pulpcore_client-20250828.3/test/test_paginated_vulnerability_report_response_list.py +0 -79
  630. crc_pulpcore_client-20250828.3/test/test_paginated_worker_response_list.py +0 -81
  631. crc_pulpcore_client-20250828.3/test/test_patched_access_policy.py +0 -61
  632. crc_pulpcore_client-20250828.3/test/test_patched_composite_content_guard.py +0 -56
  633. crc_pulpcore_client-20250828.3/test/test_patched_content_redirect_content_guard.py +0 -53
  634. crc_pulpcore_client-20250828.3/test/test_patched_domain.py +0 -60
  635. crc_pulpcore_client-20250828.3/test/test_patched_filesystem_exporter.py +0 -54
  636. crc_pulpcore_client-20250828.3/test/test_patched_group.py +0 -52
  637. crc_pulpcore_client-20250828.3/test/test_patched_header_content_guard.py +0 -56
  638. crc_pulpcore_client-20250828.3/test/test_patched_open_pgp_distribution.py +0 -60
  639. crc_pulpcore_client-20250828.3/test/test_patched_open_pgp_keyring.py +0 -58
  640. crc_pulpcore_client-20250828.3/test/test_patched_pulp_exporter.py +0 -57
  641. crc_pulpcore_client-20250828.3/test/test_patched_pulp_importer.py +0 -55
  642. crc_pulpcore_client-20250828.3/test/test_patched_rbac_content_guard.py +0 -53
  643. crc_pulpcore_client-20250828.3/test/test_patched_role.py +0 -56
  644. crc_pulpcore_client-20250828.3/test/test_patched_task_cancel.py +0 -52
  645. crc_pulpcore_client-20250828.3/test/test_patched_upstream_pulp.py +0 -63
  646. crc_pulpcore_client-20250828.3/test/test_patched_user.py +0 -58
  647. crc_pulpcore_client-20250828.3/test/test_policy357_enum.py +0 -34
  648. crc_pulpcore_client-20250828.3/test/test_profile_artifact_response.py +0 -57
  649. crc_pulpcore_client-20250828.3/test/test_progress_report_response.py +0 -57
  650. crc_pulpcore_client-20250828.3/test/test_publication_response.py +0 -57
  651. crc_pulpcore_client-20250828.3/test/test_publications_api.py +0 -39
  652. crc_pulpcore_client-20250828.3/test/test_pulp_export.py +0 -61
  653. crc_pulpcore_client-20250828.3/test/test_pulp_export_response.py +0 -62
  654. crc_pulpcore_client-20250828.3/test/test_pulp_exporter.py +0 -62
  655. crc_pulpcore_client-20250828.3/test/test_pulp_exporter_response.py +0 -66
  656. crc_pulpcore_client-20250828.3/test/test_pulp_import.py +0 -54
  657. crc_pulpcore_client-20250828.3/test/test_pulp_import_check.py +0 -54
  658. crc_pulpcore_client-20250828.3/test/test_pulp_import_check_response.py +0 -69
  659. crc_pulpcore_client-20250828.3/test/test_pulp_importer.py +0 -56
  660. crc_pulpcore_client-20250828.3/test/test_pulp_importer_response.py +0 -60
  661. crc_pulpcore_client-20250828.3/test/test_purge.py +0 -55
  662. crc_pulpcore_client-20250828.3/test/test_rbac_content_guard.py +0 -54
  663. crc_pulpcore_client-20250828.3/test/test_rbac_content_guard_response.py +0 -71
  664. crc_pulpcore_client-20250828.3/test/test_reclaim_space.py +0 -60
  665. crc_pulpcore_client-20250828.3/test/test_redis_connection_response.py +0 -53
  666. crc_pulpcore_client-20250828.3/test/test_remotes_api.py +0 -39
  667. crc_pulpcore_client-20250828.3/test/test_repair.py +0 -52
  668. crc_pulpcore_client-20250828.3/test/test_repair_api.py +0 -39
  669. crc_pulpcore_client-20250828.3/test/test_repositories_api.py +0 -39
  670. crc_pulpcore_client-20250828.3/test/test_repositories_openpgp_keyring_api.py +0 -123
  671. crc_pulpcore_client-20250828.3/test/test_repositories_reclaim_space_api.py +0 -38
  672. crc_pulpcore_client-20250828.3/test/test_repository_add_remove_content.py +0 -58
  673. crc_pulpcore_client-20250828.3/test/test_repository_response.py +0 -65
  674. crc_pulpcore_client-20250828.3/test/test_repository_version_response.py +0 -69
  675. crc_pulpcore_client-20250828.3/test/test_repository_versions_api.py +0 -39
  676. crc_pulpcore_client-20250828.3/test/test_role.py +0 -60
  677. crc_pulpcore_client-20250828.3/test/test_role_response.py +0 -65
  678. crc_pulpcore_client-20250828.3/test/test_roles_api.py +0 -74
  679. crc_pulpcore_client-20250828.3/test/test_set_label.py +0 -55
  680. crc_pulpcore_client-20250828.3/test/test_set_label_response.py +0 -55
  681. crc_pulpcore_client-20250828.3/test/test_signing_service_response.py +0 -63
  682. crc_pulpcore_client-20250828.3/test/test_signing_services_api.py +0 -46
  683. crc_pulpcore_client-20250828.3/test/test_states_enum.py +0 -34
  684. crc_pulpcore_client-20250828.3/test/test_status_api.py +0 -39
  685. crc_pulpcore_client-20250828.3/test/test_status_response.py +0 -143
  686. crc_pulpcore_client-20250828.3/test/test_storage_class_enum.py +0 -34
  687. crc_pulpcore_client-20250828.3/test/test_storage_response.py +0 -57
  688. crc_pulpcore_client-20250828.3/test/test_task_group_operation_response.py +0 -53
  689. crc_pulpcore_client-20250828.3/test/test_task_group_response.py +0 -85
  690. crc_pulpcore_client-20250828.3/test/test_task_groups_api.py +0 -53
  691. crc_pulpcore_client-20250828.3/test/test_task_response.py +0 -86
  692. crc_pulpcore_client-20250828.3/test/test_task_schedule_response.py +0 -63
  693. crc_pulpcore_client-20250828.3/test/test_task_schedules_api.py +0 -74
  694. crc_pulpcore_client-20250828.3/test/test_tasks_api.py +0 -102
  695. crc_pulpcore_client-20250828.3/test/test_unset_label.py +0 -53
  696. crc_pulpcore_client-20250828.3/test/test_unset_label_response.py +0 -54
  697. crc_pulpcore_client-20250828.3/test/test_upload.py +0 -53
  698. crc_pulpcore_client-20250828.3/test/test_upload_chunk_response.py +0 -53
  699. crc_pulpcore_client-20250828.3/test/test_upload_commit.py +0 -53
  700. crc_pulpcore_client-20250828.3/test/test_upload_detail_response.py +0 -63
  701. crc_pulpcore_client-20250828.3/test/test_upload_response.py +0 -58
  702. crc_pulpcore_client-20250828.3/test/test_uploads_api.py +0 -102
  703. crc_pulpcore_client-20250828.3/test/test_upstream_pulp.py +0 -66
  704. crc_pulpcore_client-20250828.3/test/test_upstream_pulp_response.py +0 -73
  705. crc_pulpcore_client-20250828.3/test/test_upstream_pulps_api.py +0 -109
  706. crc_pulpcore_client-20250828.3/test/test_user.py +0 -59
  707. crc_pulpcore_client-20250828.3/test/test_user_group.py +0 -53
  708. crc_pulpcore_client-20250828.3/test/test_user_group_response.py +0 -55
  709. crc_pulpcore_client-20250828.3/test/test_user_response.py +0 -73
  710. crc_pulpcore_client-20250828.3/test/test_user_role.py +0 -56
  711. crc_pulpcore_client-20250828.3/test/test_user_role_response.py +0 -64
  712. crc_pulpcore_client-20250828.3/test/test_users_api.py +0 -74
  713. crc_pulpcore_client-20250828.3/test/test_users_roles_api.py +0 -60
  714. crc_pulpcore_client-20250828.3/test/test_version_response.py +0 -61
  715. crc_pulpcore_client-20250828.3/test/test_vuln_report_api.py +0 -53
  716. crc_pulpcore_client-20250828.3/test/test_vulnerability_report_response.py +0 -61
  717. crc_pulpcore_client-20250828.3/test/test_worker_response.py +0 -61
  718. crc_pulpcore_client-20250828.3/test/test_workers_api.py +0 -46
  719. {crc_pulpcore_client-20250828.3 → crc_pulpcore_client-20250829.2}/crc_pulpcore_client.egg-info/dependency_links.txt +0 -0
  720. {crc_pulpcore_client-20250828.3 → crc_pulpcore_client-20250829.2}/crc_pulpcore_client.egg-info/requires.txt +0 -0
  721. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore}/__init__.py +0 -0
  722. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/api_response.py +0 -0
  723. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/exceptions.py +0 -0
  724. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/access_policy.py +0 -0
  725. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/access_policy_response.py +0 -0
  726. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/artifact_response.py +0 -0
  727. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/async_operation_response.py +0 -0
  728. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/composite_content_guard.py +0 -0
  729. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/composite_content_guard_response.py +0 -0
  730. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/content_guard_response.py +0 -0
  731. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/content_redirect_content_guard.py +0 -0
  732. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/content_redirect_content_guard_response.py +0 -0
  733. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/content_settings_response.py +0 -0
  734. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/content_summary_response.py +0 -0
  735. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/database_connection_response.py +0 -0
  736. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/distribution_response.py +0 -0
  737. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/evaluation_response.py +0 -0
  738. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/filesystem_export.py +0 -0
  739. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/filesystem_export_response.py +0 -0
  740. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/generic_remote_response_hidden_fields_inner.py +0 -0
  741. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/generic_remote_response_policy_enum.py +0 -0
  742. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group.py +0 -0
  743. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group_progress_report_response.py +0 -0
  744. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group_response.py +0 -0
  745. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group_role.py +0 -0
  746. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group_role_response.py +0 -0
  747. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group_user.py +0 -0
  748. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/group_user_response.py +0 -0
  749. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/header_content_guard.py +0 -0
  750. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/header_content_guard_response.py +0 -0
  751. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/import_response.py +0 -0
  752. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/login_response.py +0 -0
  753. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/method_enum.py +0 -0
  754. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/minimal_task_response.py +0 -0
  755. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/multiple_artifact_content_response.py +0 -0
  756. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/my_permissions_response.py +0 -0
  757. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_open_pgp_public_subkey.py +0 -0
  758. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_open_pgp_signature.py +0 -0
  759. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_open_pgp_signature_response.py +0 -0
  760. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_open_pgp_user_attribute.py +0 -0
  761. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_open_pgp_user_id.py +0 -0
  762. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_role.py +0 -0
  763. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/nested_role_response.py +0 -0
  764. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/open_pgp_distribution.py +0 -0
  765. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/open_pgp_distribution_response.py +0 -0
  766. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/open_pgp_keyring.py +0 -0
  767. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/open_pgp_keyring_response.py +0 -0
  768. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/open_pgp_signature_response.py +0 -0
  769. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/orphans_cleanup.py +0 -0
  770. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_access_policy.py +0 -0
  771. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_composite_content_guard.py +0 -0
  772. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_content_redirect_content_guard.py +0 -0
  773. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_group.py +0 -0
  774. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_header_content_guard.py +0 -0
  775. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_open_pgp_distribution.py +0 -0
  776. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_open_pgp_keyring.py +0 -0
  777. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_pulp_exporter.py +0 -0
  778. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_pulp_importer.py +0 -0
  779. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_rbac_content_guard.py +0 -0
  780. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_role.py +0 -0
  781. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_task_cancel.py +0 -0
  782. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/patched_user.py +0 -0
  783. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/policy357_enum.py +0 -0
  784. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/profile_artifact_response.py +0 -0
  785. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/progress_report_response.py +0 -0
  786. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/publication_response.py +0 -0
  787. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_export.py +0 -0
  788. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_export_response.py +0 -0
  789. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_exporter.py +0 -0
  790. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_exporter_response.py +0 -0
  791. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_import.py +0 -0
  792. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_import_check.py +0 -0
  793. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_importer.py +0 -0
  794. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/pulp_importer_response.py +0 -0
  795. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/rbac_content_guard.py +0 -0
  796. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/reclaim_space.py +0 -0
  797. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/redis_connection_response.py +0 -0
  798. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/repair.py +0 -0
  799. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/repository_add_remove_content.py +0 -0
  800. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/repository_response.py +0 -0
  801. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/role.py +0 -0
  802. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/role_response.py +0 -0
  803. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/set_label.py +0 -0
  804. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/set_label_response.py +0 -0
  805. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/signing_service_response.py +0 -0
  806. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/states_enum.py +0 -0
  807. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/storage_class_enum.py +0 -0
  808. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/storage_response.py +0 -0
  809. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/task_group_operation_response.py +0 -0
  810. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/task_schedule_response.py +0 -0
  811. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/unset_label.py +0 -0
  812. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/unset_label_response.py +0 -0
  813. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/upload.py +0 -0
  814. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/upload_chunk_response.py +0 -0
  815. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/upload_commit.py +0 -0
  816. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/upload_response.py +0 -0
  817. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/user.py +0 -0
  818. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/user_group.py +0 -0
  819. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/user_group_response.py +0 -0
  820. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/user_role.py +0 -0
  821. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/user_role_response.py +0 -0
  822. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/version_response.py +0 -0
  823. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/vulnerability_report_response.py +0 -0
  824. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/models/worker_response.py +0 -0
  825. {crc_pulpcore_client-20250828.3/crc-pulpcore-client → crc_pulpcore_client-20250829.2/pulpcore/client/pulpcore}/py.typed +0 -0
  826. {crc_pulpcore_client-20250828.3 → crc_pulpcore_client-20250829.2}/setup.cfg +0 -0
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: crc-pulpcore-client
3
+ Version: 20250829.2
4
+ Summary: Pulp 3 API
5
+ Home-page:
6
+ Author: Pulp Team
7
+ Author-email: pulp-list@redhat.com
8
+ License: GPLv2+
9
+ Keywords: pulp,pulpcore,client,Pulp 3 API
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil<2.10.0,>=2.8.1
13
+ Requires-Dist: pydantic>=2
14
+ Requires-Dist: typing-extensions>=4.7.1
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: keywords
20
+ Dynamic: license
21
+ Dynamic: requires-dist
22
+ Dynamic: summary
23
+
24
+ Fetch, Upload, Organize, and Distribute Software Packages
25
+
@@ -0,0 +1,566 @@
1
+ # crc-pulpcore-client
2
+ Fetch, Upload, Organize, and Distribute Software Packages
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: v3
7
+ - Package version: 20250829.2
8
+ - Generator version: 7.10.0
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+ For more information, please visit [https://pulpproject.org](https://pulpproject.org)
11
+
12
+ ## Requirements.
13
+
14
+ Python 3.8+
15
+
16
+ ## Installation & Usage
17
+ ### pip install
18
+
19
+ If the python package is hosted on a repository, you can install directly using:
20
+
21
+ ```sh
22
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
23
+ ```
24
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
25
+
26
+ Then import the package:
27
+ ```python
28
+ import pulpcore.client.pulpcore
29
+ ```
30
+
31
+ ### Setuptools
32
+
33
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
34
+
35
+ ```sh
36
+ python setup.py install --user
37
+ ```
38
+ (or `sudo python setup.py install` to install the package for all users)
39
+
40
+ Then import the package:
41
+ ```python
42
+ import pulpcore.client.pulpcore
43
+ ```
44
+
45
+ ### Tests
46
+
47
+ Execute `pytest` to run the tests.
48
+
49
+ ## Getting Started
50
+
51
+ Please follow the [installation procedure](#installation--usage) and then run the following:
52
+
53
+ ```python
54
+
55
+ import pulpcore.client.pulpcore
56
+ from pulpcore.client.pulpcore.rest import ApiException
57
+ from pprint import pprint
58
+
59
+ # Defining the host is optional and defaults to https://env-ephemeral-rpgqa8.apps.crc-eph.r9lp.p1.openshiftapps.com
60
+ # See configuration.py for a list of all supported configuration parameters.
61
+ configuration = pulpcore.client.pulpcore.Configuration(
62
+ host = "https://env-ephemeral-rpgqa8.apps.crc-eph.r9lp.p1.openshiftapps.com"
63
+ )
64
+
65
+ # The client must configure the authentication and authorization parameters
66
+ # in accordance with the API server security policy.
67
+ # Examples for each auth method are provided below, use the example that
68
+ # satisfies your auth use case.
69
+
70
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
71
+
72
+ # Configure HTTP basic authorization: basicAuth
73
+ configuration = pulpcore.client.pulpcore.Configuration(
74
+ username = os.environ["USERNAME"],
75
+ password = os.environ["PASSWORD"]
76
+ )
77
+
78
+ # Configure API key authorization: cookieAuth
79
+ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
80
+
81
+ # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
82
+ # configuration.api_key_prefix['cookieAuth'] = 'Bearer'
83
+
84
+
85
+ # Enter a context with an instance of the API client
86
+ with pulpcore.client.pulpcore.ApiClient(configuration) as api_client:
87
+ # Create an instance of the API class
88
+ api_instance = pulpcore.client.pulpcore.AccessPoliciesApi(api_client)
89
+ pulp_domain = 'pulp_domain_example' # str |
90
+ x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
91
+ customized = True # bool | Filter results where customized matches value (optional)
92
+ limit = 56 # int | Number of results to return per page. (optional)
93
+ offset = 56 # int | The initial index from which to return the results. (optional)
94
+ ordering = ['ordering_example'] # List[str] | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending) (optional)
95
+ prn__in = ['prn__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
96
+ pulp_href__in = ['pulp_href__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
97
+ pulp_id__in = ['pulp_id__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
98
+ q = 'q_example' # str | Filter results by using NOT, AND and OR operations on other filters (optional)
99
+ viewset_name = 'viewset_name_example' # str | Filter results where viewset_name matches value (optional)
100
+ viewset_name__contains = 'viewset_name__contains_example' # str | Filter results where viewset_name contains value (optional)
101
+ viewset_name__icontains = 'viewset_name__icontains_example' # str | Filter results where viewset_name contains value (optional)
102
+ viewset_name__iexact = 'viewset_name__iexact_example' # str | Filter results where viewset_name matches value (optional)
103
+ viewset_name__in = ['viewset_name__in_example'] # List[str] | Filter results where viewset_name is in a comma-separated list of values (optional)
104
+ viewset_name__iregex = 'viewset_name__iregex_example' # str | Filter results where viewset_name matches regex value (optional)
105
+ viewset_name__istartswith = 'viewset_name__istartswith_example' # str | Filter results where viewset_name starts with value (optional)
106
+ viewset_name__regex = 'viewset_name__regex_example' # str | Filter results where viewset_name matches regex value (optional)
107
+ viewset_name__startswith = 'viewset_name__startswith_example' # str | Filter results where viewset_name starts with value (optional)
108
+ fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
109
+ exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
110
+
111
+ try:
112
+ # List access policys
113
+ api_response = api_instance.list(pulp_domain, x_task_diagnostics=x_task_diagnostics, customized=customized, limit=limit, offset=offset, ordering=ordering, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, q=q, viewset_name=viewset_name, viewset_name__contains=viewset_name__contains, viewset_name__icontains=viewset_name__icontains, viewset_name__iexact=viewset_name__iexact, viewset_name__in=viewset_name__in, viewset_name__iregex=viewset_name__iregex, viewset_name__istartswith=viewset_name__istartswith, viewset_name__regex=viewset_name__regex, viewset_name__startswith=viewset_name__startswith, fields=fields, exclude_fields=exclude_fields)
114
+ print("The response of AccessPoliciesApi->list:\n")
115
+ pprint(api_response)
116
+ except ApiException as e:
117
+ print("Exception when calling AccessPoliciesApi->list: %s\n" % e)
118
+
119
+ ```
120
+
121
+ ## Documentation for API Endpoints
122
+
123
+ All URIs are relative to *https://env-ephemeral-rpgqa8.apps.crc-eph.r9lp.p1.openshiftapps.com*
124
+
125
+ Class | Method | HTTP request | Description
126
+ ------------ | ------------- | ------------- | -------------
127
+ *AccessPoliciesApi* | [**list**](docs/AccessPoliciesApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/access_policies/ | List access policys
128
+ *AccessPoliciesApi* | [**partial_update**](docs/AccessPoliciesApi.md#partial_update) | **PATCH** {access_policy_href} | Update an access policy
129
+ *AccessPoliciesApi* | [**read**](docs/AccessPoliciesApi.md#read) | **GET** {access_policy_href} | Inspect an access policy
130
+ *AccessPoliciesApi* | [**reset**](docs/AccessPoliciesApi.md#reset) | **POST** {access_policy_href}reset/ |
131
+ *AccessPoliciesApi* | [**update**](docs/AccessPoliciesApi.md#update) | **PUT** {access_policy_href} | Update an access policy
132
+ *ArtifactsApi* | [**create**](docs/ArtifactsApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/artifacts/ | Create an artifact
133
+ *ArtifactsApi* | [**delete**](docs/ArtifactsApi.md#delete) | **DELETE** {artifact_href} | Delete an artifact
134
+ *ArtifactsApi* | [**list**](docs/ArtifactsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/artifacts/ | List artifacts
135
+ *ArtifactsApi* | [**read**](docs/ArtifactsApi.md#read) | **GET** {artifact_href} | Inspect an artifact
136
+ *ContentApi* | [**list**](docs/ContentApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/ | List content
137
+ *ContentOpenpgpPublickeyApi* | [**create**](docs/ContentOpenpgpPublickeyApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/content/core/openpgp_publickey/ | Create an open pgp public key
138
+ *ContentOpenpgpPublickeyApi* | [**list**](docs/ContentOpenpgpPublickeyApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/core/openpgp_publickey/ | List open pgp public keys
139
+ *ContentOpenpgpPublickeyApi* | [**read**](docs/ContentOpenpgpPublickeyApi.md#read) | **GET** {open_p_g_p_public_key_href} | Inspect an open pgp public key
140
+ *ContentOpenpgpPublickeyApi* | [**set_label**](docs/ContentOpenpgpPublickeyApi.md#set_label) | **POST** {open_p_g_p_public_key_href}set_label/ | Set a label
141
+ *ContentOpenpgpPublickeyApi* | [**unset_label**](docs/ContentOpenpgpPublickeyApi.md#unset_label) | **POST** {open_p_g_p_public_key_href}unset_label/ | Unset a label
142
+ *ContentOpenpgpPublicsubkeyApi* | [**list**](docs/ContentOpenpgpPublicsubkeyApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/core/openpgp_publicsubkey/ | List open pgp public subkeys
143
+ *ContentOpenpgpPublicsubkeyApi* | [**read**](docs/ContentOpenpgpPublicsubkeyApi.md#read) | **GET** {open_p_g_p_public_subkey_href} | Inspect an open pgp public subkey
144
+ *ContentOpenpgpPublicsubkeyApi* | [**set_label**](docs/ContentOpenpgpPublicsubkeyApi.md#set_label) | **POST** {open_p_g_p_public_subkey_href}set_label/ | Set a label
145
+ *ContentOpenpgpPublicsubkeyApi* | [**unset_label**](docs/ContentOpenpgpPublicsubkeyApi.md#unset_label) | **POST** {open_p_g_p_public_subkey_href}unset_label/ | Unset a label
146
+ *ContentOpenpgpSignatureApi* | [**list**](docs/ContentOpenpgpSignatureApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/core/openpgp_signature/ | List open pgp signatures
147
+ *ContentOpenpgpSignatureApi* | [**read**](docs/ContentOpenpgpSignatureApi.md#read) | **GET** {open_p_g_p_signature_href} | Inspect an open pgp signature
148
+ *ContentOpenpgpSignatureApi* | [**set_label**](docs/ContentOpenpgpSignatureApi.md#set_label) | **POST** {open_p_g_p_signature_href}set_label/ | Set a label
149
+ *ContentOpenpgpSignatureApi* | [**unset_label**](docs/ContentOpenpgpSignatureApi.md#unset_label) | **POST** {open_p_g_p_signature_href}unset_label/ | Unset a label
150
+ *ContentOpenpgpUserattributeApi* | [**list**](docs/ContentOpenpgpUserattributeApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/core/openpgp_userattribute/ | List open pgp user attributes
151
+ *ContentOpenpgpUserattributeApi* | [**read**](docs/ContentOpenpgpUserattributeApi.md#read) | **GET** {open_p_g_p_user_attribute_href} | Inspect an open pgp user attribute
152
+ *ContentOpenpgpUserattributeApi* | [**set_label**](docs/ContentOpenpgpUserattributeApi.md#set_label) | **POST** {open_p_g_p_user_attribute_href}set_label/ | Set a label
153
+ *ContentOpenpgpUserattributeApi* | [**unset_label**](docs/ContentOpenpgpUserattributeApi.md#unset_label) | **POST** {open_p_g_p_user_attribute_href}unset_label/ | Unset a label
154
+ *ContentOpenpgpUseridApi* | [**list**](docs/ContentOpenpgpUseridApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/core/openpgp_userid/ | List open pgp user ids
155
+ *ContentOpenpgpUseridApi* | [**read**](docs/ContentOpenpgpUseridApi.md#read) | **GET** {open_p_g_p_user_i_d_href} | Inspect an open pgp user id
156
+ *ContentOpenpgpUseridApi* | [**set_label**](docs/ContentOpenpgpUseridApi.md#set_label) | **POST** {open_p_g_p_user_i_d_href}set_label/ | Set a label
157
+ *ContentOpenpgpUseridApi* | [**unset_label**](docs/ContentOpenpgpUseridApi.md#unset_label) | **POST** {open_p_g_p_user_i_d_href}unset_label/ | Unset a label
158
+ *ContentguardsApi* | [**list**](docs/ContentguardsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/contentguards/ | List content guards
159
+ *ContentguardsCompositeApi* | [**add_role**](docs/ContentguardsCompositeApi.md#add_role) | **POST** {composite_content_guard_href}add_role/ | Add a role
160
+ *ContentguardsCompositeApi* | [**create**](docs/ContentguardsCompositeApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/contentguards/core/composite/ | Create a composite content guard
161
+ *ContentguardsCompositeApi* | [**delete**](docs/ContentguardsCompositeApi.md#delete) | **DELETE** {composite_content_guard_href} | Delete a composite content guard
162
+ *ContentguardsCompositeApi* | [**list**](docs/ContentguardsCompositeApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/contentguards/core/composite/ | List composite content guards
163
+ *ContentguardsCompositeApi* | [**list_roles**](docs/ContentguardsCompositeApi.md#list_roles) | **GET** {composite_content_guard_href}list_roles/ | List roles
164
+ *ContentguardsCompositeApi* | [**my_permissions**](docs/ContentguardsCompositeApi.md#my_permissions) | **GET** {composite_content_guard_href}my_permissions/ | List user permissions
165
+ *ContentguardsCompositeApi* | [**partial_update**](docs/ContentguardsCompositeApi.md#partial_update) | **PATCH** {composite_content_guard_href} | Update a composite content guard
166
+ *ContentguardsCompositeApi* | [**read**](docs/ContentguardsCompositeApi.md#read) | **GET** {composite_content_guard_href} | Inspect a composite content guard
167
+ *ContentguardsCompositeApi* | [**remove_role**](docs/ContentguardsCompositeApi.md#remove_role) | **POST** {composite_content_guard_href}remove_role/ | Remove a role
168
+ *ContentguardsCompositeApi* | [**update**](docs/ContentguardsCompositeApi.md#update) | **PUT** {composite_content_guard_href} | Update a composite content guard
169
+ *ContentguardsContentRedirectApi* | [**add_role**](docs/ContentguardsContentRedirectApi.md#add_role) | **POST** {content_redirect_content_guard_href}add_role/ | Add a role
170
+ *ContentguardsContentRedirectApi* | [**create**](docs/ContentguardsContentRedirectApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/contentguards/core/content_redirect/ | Create a content redirect content guard
171
+ *ContentguardsContentRedirectApi* | [**delete**](docs/ContentguardsContentRedirectApi.md#delete) | **DELETE** {content_redirect_content_guard_href} | Delete a content redirect content guard
172
+ *ContentguardsContentRedirectApi* | [**list**](docs/ContentguardsContentRedirectApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/contentguards/core/content_redirect/ | List content redirect content guards
173
+ *ContentguardsContentRedirectApi* | [**list_roles**](docs/ContentguardsContentRedirectApi.md#list_roles) | **GET** {content_redirect_content_guard_href}list_roles/ | List roles
174
+ *ContentguardsContentRedirectApi* | [**my_permissions**](docs/ContentguardsContentRedirectApi.md#my_permissions) | **GET** {content_redirect_content_guard_href}my_permissions/ | List user permissions
175
+ *ContentguardsContentRedirectApi* | [**partial_update**](docs/ContentguardsContentRedirectApi.md#partial_update) | **PATCH** {content_redirect_content_guard_href} | Update a content redirect content guard
176
+ *ContentguardsContentRedirectApi* | [**read**](docs/ContentguardsContentRedirectApi.md#read) | **GET** {content_redirect_content_guard_href} | Inspect a content redirect content guard
177
+ *ContentguardsContentRedirectApi* | [**remove_role**](docs/ContentguardsContentRedirectApi.md#remove_role) | **POST** {content_redirect_content_guard_href}remove_role/ | Remove a role
178
+ *ContentguardsContentRedirectApi* | [**update**](docs/ContentguardsContentRedirectApi.md#update) | **PUT** {content_redirect_content_guard_href} | Update a content redirect content guard
179
+ *ContentguardsHeaderApi* | [**add_role**](docs/ContentguardsHeaderApi.md#add_role) | **POST** {header_content_guard_href}add_role/ | Add a role
180
+ *ContentguardsHeaderApi* | [**create**](docs/ContentguardsHeaderApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/contentguards/core/header/ | Create a header content guard
181
+ *ContentguardsHeaderApi* | [**delete**](docs/ContentguardsHeaderApi.md#delete) | **DELETE** {header_content_guard_href} | Delete a header content guard
182
+ *ContentguardsHeaderApi* | [**list**](docs/ContentguardsHeaderApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/contentguards/core/header/ | List header content guards
183
+ *ContentguardsHeaderApi* | [**list_roles**](docs/ContentguardsHeaderApi.md#list_roles) | **GET** {header_content_guard_href}list_roles/ | List roles
184
+ *ContentguardsHeaderApi* | [**my_permissions**](docs/ContentguardsHeaderApi.md#my_permissions) | **GET** {header_content_guard_href}my_permissions/ | List user permissions
185
+ *ContentguardsHeaderApi* | [**partial_update**](docs/ContentguardsHeaderApi.md#partial_update) | **PATCH** {header_content_guard_href} | Update a header content guard
186
+ *ContentguardsHeaderApi* | [**read**](docs/ContentguardsHeaderApi.md#read) | **GET** {header_content_guard_href} | Inspect a header content guard
187
+ *ContentguardsHeaderApi* | [**remove_role**](docs/ContentguardsHeaderApi.md#remove_role) | **POST** {header_content_guard_href}remove_role/ | Remove a role
188
+ *ContentguardsHeaderApi* | [**update**](docs/ContentguardsHeaderApi.md#update) | **PUT** {header_content_guard_href} | Update a header content guard
189
+ *ContentguardsRbacApi* | [**add_role**](docs/ContentguardsRbacApi.md#add_role) | **POST** {r_b_a_c_content_guard_href}add_role/ | Add a role
190
+ *ContentguardsRbacApi* | [**create**](docs/ContentguardsRbacApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/contentguards/core/rbac/ | Create a rbac content guard
191
+ *ContentguardsRbacApi* | [**delete**](docs/ContentguardsRbacApi.md#delete) | **DELETE** {r_b_a_c_content_guard_href} | Delete a rbac content guard
192
+ *ContentguardsRbacApi* | [**list**](docs/ContentguardsRbacApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/contentguards/core/rbac/ | List rbac content guards
193
+ *ContentguardsRbacApi* | [**list_roles**](docs/ContentguardsRbacApi.md#list_roles) | **GET** {r_b_a_c_content_guard_href}list_roles/ | List roles
194
+ *ContentguardsRbacApi* | [**my_permissions**](docs/ContentguardsRbacApi.md#my_permissions) | **GET** {r_b_a_c_content_guard_href}my_permissions/ | List user permissions
195
+ *ContentguardsRbacApi* | [**partial_update**](docs/ContentguardsRbacApi.md#partial_update) | **PATCH** {r_b_a_c_content_guard_href} | Update a rbac content guard
196
+ *ContentguardsRbacApi* | [**read**](docs/ContentguardsRbacApi.md#read) | **GET** {r_b_a_c_content_guard_href} | Inspect a rbac content guard
197
+ *ContentguardsRbacApi* | [**remove_role**](docs/ContentguardsRbacApi.md#remove_role) | **POST** {r_b_a_c_content_guard_href}remove_role/ | Remove a role
198
+ *ContentguardsRbacApi* | [**update**](docs/ContentguardsRbacApi.md#update) | **PUT** {r_b_a_c_content_guard_href} | Update a rbac content guard
199
+ *DistributionsApi* | [**list**](docs/DistributionsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/distributions/ | List distributions
200
+ *DistributionsArtifactsApi* | [**list**](docs/DistributionsArtifactsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/distributions/core/artifacts/ | List artifact distributions
201
+ *DistributionsArtifactsApi* | [**read**](docs/DistributionsArtifactsApi.md#read) | **GET** {artifact_distribution_href} | Inspect an artifact distribution
202
+ *DistributionsOpenpgpApi* | [**create**](docs/DistributionsOpenpgpApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/distributions/core/openpgp/ | Create an open pgp distribution
203
+ *DistributionsOpenpgpApi* | [**delete**](docs/DistributionsOpenpgpApi.md#delete) | **DELETE** {open_p_g_p_distribution_href} | Delete an open pgp distribution
204
+ *DistributionsOpenpgpApi* | [**list**](docs/DistributionsOpenpgpApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/distributions/core/openpgp/ | List open pgp distributions
205
+ *DistributionsOpenpgpApi* | [**partial_update**](docs/DistributionsOpenpgpApi.md#partial_update) | **PATCH** {open_p_g_p_distribution_href} | Update an open pgp distribution
206
+ *DistributionsOpenpgpApi* | [**read**](docs/DistributionsOpenpgpApi.md#read) | **GET** {open_p_g_p_distribution_href} | Inspect an open pgp distribution
207
+ *DistributionsOpenpgpApi* | [**set_label**](docs/DistributionsOpenpgpApi.md#set_label) | **POST** {open_p_g_p_distribution_href}set_label/ | Set a label
208
+ *DistributionsOpenpgpApi* | [**unset_label**](docs/DistributionsOpenpgpApi.md#unset_label) | **POST** {open_p_g_p_distribution_href}unset_label/ | Unset a label
209
+ *DistributionsOpenpgpApi* | [**update**](docs/DistributionsOpenpgpApi.md#update) | **PUT** {open_p_g_p_distribution_href} | Update an open pgp distribution
210
+ *DomainsApi* | [**create**](docs/DomainsApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/domains/ | Create a domain
211
+ *DomainsApi* | [**delete**](docs/DomainsApi.md#delete) | **DELETE** {domain_href} | Delete a domain
212
+ *DomainsApi* | [**list**](docs/DomainsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/domains/ | List domains
213
+ *DomainsApi* | [**migrate**](docs/DomainsApi.md#migrate) | **POST** /api/pulp/{pulp_domain}/api/v3/domains/migrate/ | Migrate storage backend
214
+ *DomainsApi* | [**partial_update**](docs/DomainsApi.md#partial_update) | **PATCH** {domain_href} | Update a domain
215
+ *DomainsApi* | [**read**](docs/DomainsApi.md#read) | **GET** {domain_href} | Inspect a domain
216
+ *DomainsApi* | [**set_label**](docs/DomainsApi.md#set_label) | **POST** {domain_href}set_label/ | Set a label
217
+ *DomainsApi* | [**unset_label**](docs/DomainsApi.md#unset_label) | **POST** {domain_href}unset_label/ | Unset a label
218
+ *DomainsApi* | [**update**](docs/DomainsApi.md#update) | **PUT** {domain_href} | Update a domain
219
+ *ExportersFilesystemApi* | [**create**](docs/ExportersFilesystemApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/exporters/core/filesystem/ | Create a filesystem exporter
220
+ *ExportersFilesystemApi* | [**delete**](docs/ExportersFilesystemApi.md#delete) | **DELETE** {filesystem_exporter_href} | Delete a filesystem exporter
221
+ *ExportersFilesystemApi* | [**list**](docs/ExportersFilesystemApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/exporters/core/filesystem/ | List filesystem exporters
222
+ *ExportersFilesystemApi* | [**partial_update**](docs/ExportersFilesystemApi.md#partial_update) | **PATCH** {filesystem_exporter_href} | Update a filesystem exporter
223
+ *ExportersFilesystemApi* | [**read**](docs/ExportersFilesystemApi.md#read) | **GET** {filesystem_exporter_href} | Inspect a filesystem exporter
224
+ *ExportersFilesystemApi* | [**update**](docs/ExportersFilesystemApi.md#update) | **PUT** {filesystem_exporter_href} | Update a filesystem exporter
225
+ *ExportersFilesystemExportsApi* | [**create**](docs/ExportersFilesystemExportsApi.md#create) | **POST** {filesystem_exporter_href}exports/ | Create a filesystem export
226
+ *ExportersFilesystemExportsApi* | [**delete**](docs/ExportersFilesystemExportsApi.md#delete) | **DELETE** {filesystem_filesystem_export_href} | Delete a filesystem export
227
+ *ExportersFilesystemExportsApi* | [**list**](docs/ExportersFilesystemExportsApi.md#list) | **GET** {filesystem_exporter_href}exports/ | List filesystem exports
228
+ *ExportersFilesystemExportsApi* | [**read**](docs/ExportersFilesystemExportsApi.md#read) | **GET** {filesystem_filesystem_export_href} | Inspect a filesystem export
229
+ *ExportersPulpApi* | [**create**](docs/ExportersPulpApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/exporters/core/pulp/ | Create a pulp exporter
230
+ *ExportersPulpApi* | [**delete**](docs/ExportersPulpApi.md#delete) | **DELETE** {pulp_exporter_href} | Delete a pulp exporter
231
+ *ExportersPulpApi* | [**list**](docs/ExportersPulpApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/exporters/core/pulp/ | List pulp exporters
232
+ *ExportersPulpApi* | [**partial_update**](docs/ExportersPulpApi.md#partial_update) | **PATCH** {pulp_exporter_href} | Update a pulp exporter
233
+ *ExportersPulpApi* | [**read**](docs/ExportersPulpApi.md#read) | **GET** {pulp_exporter_href} | Inspect a pulp exporter
234
+ *ExportersPulpApi* | [**update**](docs/ExportersPulpApi.md#update) | **PUT** {pulp_exporter_href} | Update a pulp exporter
235
+ *ExportersPulpExportsApi* | [**create**](docs/ExportersPulpExportsApi.md#create) | **POST** {pulp_exporter_href}exports/ | Create a pulp export
236
+ *ExportersPulpExportsApi* | [**delete**](docs/ExportersPulpExportsApi.md#delete) | **DELETE** {pulp_pulp_export_href} | Delete a pulp export
237
+ *ExportersPulpExportsApi* | [**list**](docs/ExportersPulpExportsApi.md#list) | **GET** {pulp_exporter_href}exports/ | List pulp exports
238
+ *ExportersPulpExportsApi* | [**read**](docs/ExportersPulpExportsApi.md#read) | **GET** {pulp_pulp_export_href} | Inspect a pulp export
239
+ *GroupsApi* | [**add_role**](docs/GroupsApi.md#add_role) | **POST** {group_href}add_role/ | Add a role
240
+ *GroupsApi* | [**create**](docs/GroupsApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/groups/ | Create a group
241
+ *GroupsApi* | [**delete**](docs/GroupsApi.md#delete) | **DELETE** {group_href} | Delete a group
242
+ *GroupsApi* | [**list**](docs/GroupsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/groups/ | List groups
243
+ *GroupsApi* | [**list_roles**](docs/GroupsApi.md#list_roles) | **GET** {group_href}list_roles/ | List roles
244
+ *GroupsApi* | [**my_permissions**](docs/GroupsApi.md#my_permissions) | **GET** {group_href}my_permissions/ | List user permissions
245
+ *GroupsApi* | [**partial_update**](docs/GroupsApi.md#partial_update) | **PATCH** {group_href} | Update a group
246
+ *GroupsApi* | [**read**](docs/GroupsApi.md#read) | **GET** {group_href} | Inspect a group
247
+ *GroupsApi* | [**remove_role**](docs/GroupsApi.md#remove_role) | **POST** {group_href}remove_role/ | Remove a role
248
+ *GroupsApi* | [**update**](docs/GroupsApi.md#update) | **PUT** {group_href} | Update a group
249
+ *GroupsRolesApi* | [**create**](docs/GroupsRolesApi.md#create) | **POST** {group_href}roles/ | Create a group role
250
+ *GroupsRolesApi* | [**delete**](docs/GroupsRolesApi.md#delete) | **DELETE** {groups_group_role_href} | Delete a group role
251
+ *GroupsRolesApi* | [**list**](docs/GroupsRolesApi.md#list) | **GET** {group_href}roles/ | List group roles
252
+ *GroupsRolesApi* | [**read**](docs/GroupsRolesApi.md#read) | **GET** {groups_group_role_href} | Inspect a group role
253
+ *GroupsUsersApi* | [**create**](docs/GroupsUsersApi.md#create) | **POST** {group_href}users/ | Create an user
254
+ *GroupsUsersApi* | [**delete**](docs/GroupsUsersApi.md#delete) | **DELETE** {groups_user_href} | Delete an user
255
+ *GroupsUsersApi* | [**list**](docs/GroupsUsersApi.md#list) | **GET** {group_href}users/ | List users
256
+ *ImportersPulpApi* | [**create**](docs/ImportersPulpApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/importers/core/pulp/ | Create a pulp importer
257
+ *ImportersPulpApi* | [**delete**](docs/ImportersPulpApi.md#delete) | **DELETE** {pulp_importer_href} | Delete a pulp importer
258
+ *ImportersPulpApi* | [**list**](docs/ImportersPulpApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/importers/core/pulp/ | List pulp importers
259
+ *ImportersPulpApi* | [**partial_update**](docs/ImportersPulpApi.md#partial_update) | **PATCH** {pulp_importer_href} | Update a pulp importer
260
+ *ImportersPulpApi* | [**read**](docs/ImportersPulpApi.md#read) | **GET** {pulp_importer_href} | Inspect a pulp importer
261
+ *ImportersPulpApi* | [**update**](docs/ImportersPulpApi.md#update) | **PUT** {pulp_importer_href} | Update a pulp importer
262
+ *ImportersPulpImportCheckApi* | [**pulp_import_check_post**](docs/ImportersPulpImportCheckApi.md#pulp_import_check_post) | **POST** /api/pulp/{pulp_domain}/api/v3/importers/core/pulp/import-check/ | Validate the parameters to be used for a PulpImport call
263
+ *ImportersPulpImportsApi* | [**create**](docs/ImportersPulpImportsApi.md#create) | **POST** {pulp_importer_href}imports/ | Create a pulp import
264
+ *ImportersPulpImportsApi* | [**delete**](docs/ImportersPulpImportsApi.md#delete) | **DELETE** {pulp_pulp_import_href} | Delete a pulp import
265
+ *ImportersPulpImportsApi* | [**list**](docs/ImportersPulpImportsApi.md#list) | **GET** {pulp_importer_href}imports/ | List pulp imports
266
+ *ImportersPulpImportsApi* | [**read**](docs/ImportersPulpImportsApi.md#read) | **GET** {pulp_pulp_import_href} | Inspect a pulp import
267
+ *LivezApi* | [**livez_read**](docs/LivezApi.md#livez_read) | **GET** /api/pulp/api/v3/livez/ | Inspect liveness of Pulp&#39;s REST API.
268
+ *LoginApi* | [**login**](docs/LoginApi.md#login) | **POST** /api/pulp/{pulp_domain}/api/v3/login/ |
269
+ *LoginApi* | [**login_read**](docs/LoginApi.md#login_read) | **GET** /api/pulp/{pulp_domain}/api/v3/login/ |
270
+ *LoginApi* | [**logout**](docs/LoginApi.md#logout) | **DELETE** /api/pulp/{pulp_domain}/api/v3/login/ |
271
+ *OrphansApi* | [**delete**](docs/OrphansApi.md#delete) | **DELETE** /api/pulp/{pulp_domain}/api/v3/orphans/ | Delete orphans
272
+ *OrphansCleanupApi* | [**cleanup**](docs/OrphansCleanupApi.md#cleanup) | **POST** /api/pulp/{pulp_domain}/api/v3/orphans/cleanup/ |
273
+ *PublicationsApi* | [**list**](docs/PublicationsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/publications/ | List publications
274
+ *RemotesApi* | [**list**](docs/RemotesApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/remotes/ | List remotes
275
+ *RepairApi* | [**post**](docs/RepairApi.md#post) | **POST** /api/pulp/{pulp_domain}/api/v3/repair/ | Repair Artifact Storage
276
+ *RepositoriesApi* | [**list**](docs/RepositoriesApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/repositories/ | List repositories
277
+ *RepositoriesOpenpgpKeyringApi* | [**add_role**](docs/RepositoriesOpenpgpKeyringApi.md#add_role) | **POST** {open_p_g_p_keyring_href}add_role/ | Add a role
278
+ *RepositoriesOpenpgpKeyringApi* | [**create**](docs/RepositoriesOpenpgpKeyringApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/repositories/core/openpgp_keyring/ | Create an open pgp keyring
279
+ *RepositoriesOpenpgpKeyringApi* | [**delete**](docs/RepositoriesOpenpgpKeyringApi.md#delete) | **DELETE** {open_p_g_p_keyring_href} | Delete an open pgp keyring
280
+ *RepositoriesOpenpgpKeyringApi* | [**list**](docs/RepositoriesOpenpgpKeyringApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/repositories/core/openpgp_keyring/ | List open pgp keyrings
281
+ *RepositoriesOpenpgpKeyringApi* | [**list_roles**](docs/RepositoriesOpenpgpKeyringApi.md#list_roles) | **GET** {open_p_g_p_keyring_href}list_roles/ | List roles
282
+ *RepositoriesOpenpgpKeyringApi* | [**modify**](docs/RepositoriesOpenpgpKeyringApi.md#modify) | **POST** {open_p_g_p_keyring_href}modify/ | Modify Repository Content
283
+ *RepositoriesOpenpgpKeyringApi* | [**my_permissions**](docs/RepositoriesOpenpgpKeyringApi.md#my_permissions) | **GET** {open_p_g_p_keyring_href}my_permissions/ | List user permissions
284
+ *RepositoriesOpenpgpKeyringApi* | [**partial_update**](docs/RepositoriesOpenpgpKeyringApi.md#partial_update) | **PATCH** {open_p_g_p_keyring_href} | Update an open pgp keyring
285
+ *RepositoriesOpenpgpKeyringApi* | [**read**](docs/RepositoriesOpenpgpKeyringApi.md#read) | **GET** {open_p_g_p_keyring_href} | Inspect an open pgp keyring
286
+ *RepositoriesOpenpgpKeyringApi* | [**remove_role**](docs/RepositoriesOpenpgpKeyringApi.md#remove_role) | **POST** {open_p_g_p_keyring_href}remove_role/ | Remove a role
287
+ *RepositoriesOpenpgpKeyringApi* | [**set_label**](docs/RepositoriesOpenpgpKeyringApi.md#set_label) | **POST** {open_p_g_p_keyring_href}set_label/ | Set a label
288
+ *RepositoriesOpenpgpKeyringApi* | [**unset_label**](docs/RepositoriesOpenpgpKeyringApi.md#unset_label) | **POST** {open_p_g_p_keyring_href}unset_label/ | Unset a label
289
+ *RepositoriesOpenpgpKeyringApi* | [**update**](docs/RepositoriesOpenpgpKeyringApi.md#update) | **PUT** {open_p_g_p_keyring_href} | Update an open pgp keyring
290
+ *RepositoriesReclaimSpaceApi* | [**reclaim**](docs/RepositoriesReclaimSpaceApi.md#reclaim) | **POST** /api/pulp/{pulp_domain}/api/v3/repositories/reclaim_space/ |
291
+ *RepositoryVersionsApi* | [**list**](docs/RepositoryVersionsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/repository_versions/ | List repository versions
292
+ *RolesApi* | [**create**](docs/RolesApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/roles/ | Create a role
293
+ *RolesApi* | [**delete**](docs/RolesApi.md#delete) | **DELETE** {role_href} | Delete a role
294
+ *RolesApi* | [**list**](docs/RolesApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/roles/ | List roles
295
+ *RolesApi* | [**partial_update**](docs/RolesApi.md#partial_update) | **PATCH** {role_href} | Update a role
296
+ *RolesApi* | [**read**](docs/RolesApi.md#read) | **GET** {role_href} | Inspect a role
297
+ *RolesApi* | [**update**](docs/RolesApi.md#update) | **PUT** {role_href} | Update a role
298
+ *SigningServicesApi* | [**list**](docs/SigningServicesApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/signing-services/ | List signing services
299
+ *SigningServicesApi* | [**read**](docs/SigningServicesApi.md#read) | **GET** {signing_service_href} | Inspect a signing service
300
+ *StatusApi* | [**status_read**](docs/StatusApi.md#status_read) | **GET** /api/pulp/api/v3/status/ | Inspect status of Pulp
301
+ *TaskGroupsApi* | [**list**](docs/TaskGroupsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/task-groups/ | List task groups
302
+ *TaskGroupsApi* | [**read**](docs/TaskGroupsApi.md#read) | **GET** {task_group_href} | Inspect a task group
303
+ *TaskGroupsApi* | [**task_groups_cancel**](docs/TaskGroupsApi.md#task_groups_cancel) | **PATCH** {task_group_href} | Cancel a task group
304
+ *TaskSchedulesApi* | [**add_role**](docs/TaskSchedulesApi.md#add_role) | **POST** {task_schedule_href}add_role/ | Add a role
305
+ *TaskSchedulesApi* | [**list**](docs/TaskSchedulesApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/task-schedules/ | List task schedules
306
+ *TaskSchedulesApi* | [**list_roles**](docs/TaskSchedulesApi.md#list_roles) | **GET** {task_schedule_href}list_roles/ | List roles
307
+ *TaskSchedulesApi* | [**my_permissions**](docs/TaskSchedulesApi.md#my_permissions) | **GET** {task_schedule_href}my_permissions/ | List user permissions
308
+ *TaskSchedulesApi* | [**read**](docs/TaskSchedulesApi.md#read) | **GET** {task_schedule_href} | Inspect a task schedule
309
+ *TaskSchedulesApi* | [**remove_role**](docs/TaskSchedulesApi.md#remove_role) | **POST** {task_schedule_href}remove_role/ | Remove a role
310
+ *TasksApi* | [**add_role**](docs/TasksApi.md#add_role) | **POST** {task_href}add_role/ | Add a role
311
+ *TasksApi* | [**delete**](docs/TasksApi.md#delete) | **DELETE** {task_href} | Delete a task
312
+ *TasksApi* | [**list**](docs/TasksApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/tasks/ | List tasks
313
+ *TasksApi* | [**list_roles**](docs/TasksApi.md#list_roles) | **GET** {task_href}list_roles/ | List roles
314
+ *TasksApi* | [**my_permissions**](docs/TasksApi.md#my_permissions) | **GET** {task_href}my_permissions/ | List user permissions
315
+ *TasksApi* | [**profile_artifacts**](docs/TasksApi.md#profile_artifacts) | **GET** {task_href}profile_artifacts/ | Fetch downloadable links for profile artifacts
316
+ *TasksApi* | [**purge**](docs/TasksApi.md#purge) | **POST** /api/pulp/{pulp_domain}/api/v3/tasks/purge/ | Purge Completed Tasks
317
+ *TasksApi* | [**read**](docs/TasksApi.md#read) | **GET** {task_href} | Inspect a task
318
+ *TasksApi* | [**remove_role**](docs/TasksApi.md#remove_role) | **POST** {task_href}remove_role/ | Remove a role
319
+ *TasksApi* | [**tasks_cancel**](docs/TasksApi.md#tasks_cancel) | **PATCH** {task_href} | Cancel a task
320
+ *UploadsApi* | [**add_role**](docs/UploadsApi.md#add_role) | **POST** {upload_href}add_role/ | Add a role
321
+ *UploadsApi* | [**commit**](docs/UploadsApi.md#commit) | **POST** {upload_href}commit/ | Finish an Upload
322
+ *UploadsApi* | [**create**](docs/UploadsApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/uploads/ | Create an upload
323
+ *UploadsApi* | [**delete**](docs/UploadsApi.md#delete) | **DELETE** {upload_href} | Delete an upload
324
+ *UploadsApi* | [**list**](docs/UploadsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/uploads/ | List uploads
325
+ *UploadsApi* | [**list_roles**](docs/UploadsApi.md#list_roles) | **GET** {upload_href}list_roles/ | List roles
326
+ *UploadsApi* | [**my_permissions**](docs/UploadsApi.md#my_permissions) | **GET** {upload_href}my_permissions/ | List user permissions
327
+ *UploadsApi* | [**read**](docs/UploadsApi.md#read) | **GET** {upload_href} | Inspect an upload
328
+ *UploadsApi* | [**remove_role**](docs/UploadsApi.md#remove_role) | **POST** {upload_href}remove_role/ | Remove a role
329
+ *UploadsApi* | [**update**](docs/UploadsApi.md#update) | **PUT** {upload_href} | Upload a file chunk
330
+ *UpstreamPulpsApi* | [**add_role**](docs/UpstreamPulpsApi.md#add_role) | **POST** {upstream_pulp_href}add_role/ | Add a role
331
+ *UpstreamPulpsApi* | [**create**](docs/UpstreamPulpsApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/upstream-pulps/ | Create an upstream pulp
332
+ *UpstreamPulpsApi* | [**delete**](docs/UpstreamPulpsApi.md#delete) | **DELETE** {upstream_pulp_href} | Delete an upstream pulp
333
+ *UpstreamPulpsApi* | [**list**](docs/UpstreamPulpsApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/upstream-pulps/ | List upstream pulps
334
+ *UpstreamPulpsApi* | [**list_roles**](docs/UpstreamPulpsApi.md#list_roles) | **GET** {upstream_pulp_href}list_roles/ | List roles
335
+ *UpstreamPulpsApi* | [**my_permissions**](docs/UpstreamPulpsApi.md#my_permissions) | **GET** {upstream_pulp_href}my_permissions/ | List user permissions
336
+ *UpstreamPulpsApi* | [**partial_update**](docs/UpstreamPulpsApi.md#partial_update) | **PATCH** {upstream_pulp_href} | Update an upstream pulp
337
+ *UpstreamPulpsApi* | [**read**](docs/UpstreamPulpsApi.md#read) | **GET** {upstream_pulp_href} | Inspect an upstream pulp
338
+ *UpstreamPulpsApi* | [**remove_role**](docs/UpstreamPulpsApi.md#remove_role) | **POST** {upstream_pulp_href}remove_role/ | Remove a role
339
+ *UpstreamPulpsApi* | [**replicate**](docs/UpstreamPulpsApi.md#replicate) | **POST** {upstream_pulp_href}replicate/ | Replicate
340
+ *UpstreamPulpsApi* | [**update**](docs/UpstreamPulpsApi.md#update) | **PUT** {upstream_pulp_href} | Update an upstream pulp
341
+ *UsersApi* | [**create**](docs/UsersApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/users/ | Create an user
342
+ *UsersApi* | [**delete**](docs/UsersApi.md#delete) | **DELETE** {auth_user_href} | Delete an user
343
+ *UsersApi* | [**list**](docs/UsersApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/users/ | List users
344
+ *UsersApi* | [**partial_update**](docs/UsersApi.md#partial_update) | **PATCH** {auth_user_href} | Update an user
345
+ *UsersApi* | [**read**](docs/UsersApi.md#read) | **GET** {auth_user_href} | Inspect an user
346
+ *UsersApi* | [**update**](docs/UsersApi.md#update) | **PUT** {auth_user_href} | Update an user
347
+ *UsersRolesApi* | [**create**](docs/UsersRolesApi.md#create) | **POST** {auth_user_href}roles/ | Create an user role
348
+ *UsersRolesApi* | [**delete**](docs/UsersRolesApi.md#delete) | **DELETE** {auth_users_user_role_href} | Delete an user role
349
+ *UsersRolesApi* | [**list**](docs/UsersRolesApi.md#list) | **GET** {auth_user_href}roles/ | List user roles
350
+ *UsersRolesApi* | [**read**](docs/UsersRolesApi.md#read) | **GET** {auth_users_user_role_href} | Inspect an user role
351
+ *VulnReportApi* | [**delete**](docs/VulnReportApi.md#delete) | **DELETE** {vulnerability_report_href} | Delete a vulnerability report
352
+ *VulnReportApi* | [**list**](docs/VulnReportApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/vuln_report/ | List vulnerability reports
353
+ *VulnReportApi* | [**read**](docs/VulnReportApi.md#read) | **GET** {vulnerability_report_href} | Inspect a vulnerability report
354
+ *WorkersApi* | [**list**](docs/WorkersApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/workers/ | List app statuss
355
+ *WorkersApi* | [**read**](docs/WorkersApi.md#read) | **GET** {worker_href} | Inspect an app status
356
+
357
+
358
+ ## Documentation For Models
359
+
360
+ - [AccessPolicy](docs/AccessPolicy.md)
361
+ - [AccessPolicyResponse](docs/AccessPolicyResponse.md)
362
+ - [AppStatusResponse](docs/AppStatusResponse.md)
363
+ - [ArtifactDistributionResponse](docs/ArtifactDistributionResponse.md)
364
+ - [ArtifactResponse](docs/ArtifactResponse.md)
365
+ - [AsyncOperationResponse](docs/AsyncOperationResponse.md)
366
+ - [CompositeContentGuard](docs/CompositeContentGuard.md)
367
+ - [CompositeContentGuardResponse](docs/CompositeContentGuardResponse.md)
368
+ - [ContentGuardResponse](docs/ContentGuardResponse.md)
369
+ - [ContentRedirectContentGuard](docs/ContentRedirectContentGuard.md)
370
+ - [ContentRedirectContentGuardResponse](docs/ContentRedirectContentGuardResponse.md)
371
+ - [ContentSettingsResponse](docs/ContentSettingsResponse.md)
372
+ - [ContentSummaryResponse](docs/ContentSummaryResponse.md)
373
+ - [DatabaseConnectionResponse](docs/DatabaseConnectionResponse.md)
374
+ - [DistributionResponse](docs/DistributionResponse.md)
375
+ - [Domain](docs/Domain.md)
376
+ - [DomainBackendMigrator](docs/DomainBackendMigrator.md)
377
+ - [DomainResponse](docs/DomainResponse.md)
378
+ - [EvaluationResponse](docs/EvaluationResponse.md)
379
+ - [FilesystemExport](docs/FilesystemExport.md)
380
+ - [FilesystemExportResponse](docs/FilesystemExportResponse.md)
381
+ - [FilesystemExporter](docs/FilesystemExporter.md)
382
+ - [FilesystemExporterResponse](docs/FilesystemExporterResponse.md)
383
+ - [GenericRemoteResponse](docs/GenericRemoteResponse.md)
384
+ - [GenericRemoteResponseHiddenFieldsInner](docs/GenericRemoteResponseHiddenFieldsInner.md)
385
+ - [GenericRemoteResponsePolicyEnum](docs/GenericRemoteResponsePolicyEnum.md)
386
+ - [Group](docs/Group.md)
387
+ - [GroupProgressReportResponse](docs/GroupProgressReportResponse.md)
388
+ - [GroupResponse](docs/GroupResponse.md)
389
+ - [GroupRole](docs/GroupRole.md)
390
+ - [GroupRoleResponse](docs/GroupRoleResponse.md)
391
+ - [GroupUser](docs/GroupUser.md)
392
+ - [GroupUserResponse](docs/GroupUserResponse.md)
393
+ - [HeaderContentGuard](docs/HeaderContentGuard.md)
394
+ - [HeaderContentGuardResponse](docs/HeaderContentGuardResponse.md)
395
+ - [ImportResponse](docs/ImportResponse.md)
396
+ - [LoginResponse](docs/LoginResponse.md)
397
+ - [MethodEnum](docs/MethodEnum.md)
398
+ - [MinimalTaskResponse](docs/MinimalTaskResponse.md)
399
+ - [MultipleArtifactContentResponse](docs/MultipleArtifactContentResponse.md)
400
+ - [MyPermissionsResponse](docs/MyPermissionsResponse.md)
401
+ - [NestedOpenPGPPublicSubkey](docs/NestedOpenPGPPublicSubkey.md)
402
+ - [NestedOpenPGPPublicSubkeyResponse](docs/NestedOpenPGPPublicSubkeyResponse.md)
403
+ - [NestedOpenPGPSignature](docs/NestedOpenPGPSignature.md)
404
+ - [NestedOpenPGPSignatureResponse](docs/NestedOpenPGPSignatureResponse.md)
405
+ - [NestedOpenPGPUserAttribute](docs/NestedOpenPGPUserAttribute.md)
406
+ - [NestedOpenPGPUserAttributeResponse](docs/NestedOpenPGPUserAttributeResponse.md)
407
+ - [NestedOpenPGPUserID](docs/NestedOpenPGPUserID.md)
408
+ - [NestedOpenPGPUserIDResponse](docs/NestedOpenPGPUserIDResponse.md)
409
+ - [NestedRole](docs/NestedRole.md)
410
+ - [NestedRoleResponse](docs/NestedRoleResponse.md)
411
+ - [ObjectRolesResponse](docs/ObjectRolesResponse.md)
412
+ - [OpenPGPDistribution](docs/OpenPGPDistribution.md)
413
+ - [OpenPGPDistributionResponse](docs/OpenPGPDistributionResponse.md)
414
+ - [OpenPGPKeyring](docs/OpenPGPKeyring.md)
415
+ - [OpenPGPKeyringResponse](docs/OpenPGPKeyringResponse.md)
416
+ - [OpenPGPPublicKeyResponse](docs/OpenPGPPublicKeyResponse.md)
417
+ - [OpenPGPPublicSubkeyResponse](docs/OpenPGPPublicSubkeyResponse.md)
418
+ - [OpenPGPSignatureResponse](docs/OpenPGPSignatureResponse.md)
419
+ - [OpenPGPUserAttributeResponse](docs/OpenPGPUserAttributeResponse.md)
420
+ - [OpenPGPUserIDResponse](docs/OpenPGPUserIDResponse.md)
421
+ - [OrphansCleanup](docs/OrphansCleanup.md)
422
+ - [PaginatedAccessPolicyResponseList](docs/PaginatedAccessPolicyResponseList.md)
423
+ - [PaginatedArtifactDistributionResponseList](docs/PaginatedArtifactDistributionResponseList.md)
424
+ - [PaginatedArtifactResponseList](docs/PaginatedArtifactResponseList.md)
425
+ - [PaginatedCompositeContentGuardResponseList](docs/PaginatedCompositeContentGuardResponseList.md)
426
+ - [PaginatedContentGuardResponseList](docs/PaginatedContentGuardResponseList.md)
427
+ - [PaginatedContentRedirectContentGuardResponseList](docs/PaginatedContentRedirectContentGuardResponseList.md)
428
+ - [PaginatedDistributionResponseList](docs/PaginatedDistributionResponseList.md)
429
+ - [PaginatedDomainResponseList](docs/PaginatedDomainResponseList.md)
430
+ - [PaginatedFilesystemExportResponseList](docs/PaginatedFilesystemExportResponseList.md)
431
+ - [PaginatedFilesystemExporterResponseList](docs/PaginatedFilesystemExporterResponseList.md)
432
+ - [PaginatedGenericRemoteResponseList](docs/PaginatedGenericRemoteResponseList.md)
433
+ - [PaginatedGroupResponseList](docs/PaginatedGroupResponseList.md)
434
+ - [PaginatedGroupRoleResponseList](docs/PaginatedGroupRoleResponseList.md)
435
+ - [PaginatedGroupUserResponseList](docs/PaginatedGroupUserResponseList.md)
436
+ - [PaginatedHeaderContentGuardResponseList](docs/PaginatedHeaderContentGuardResponseList.md)
437
+ - [PaginatedImportResponseList](docs/PaginatedImportResponseList.md)
438
+ - [PaginatedMultipleArtifactContentResponseList](docs/PaginatedMultipleArtifactContentResponseList.md)
439
+ - [PaginatedOpenPGPDistributionResponseList](docs/PaginatedOpenPGPDistributionResponseList.md)
440
+ - [PaginatedOpenPGPKeyringResponseList](docs/PaginatedOpenPGPKeyringResponseList.md)
441
+ - [PaginatedOpenPGPPublicKeyResponseList](docs/PaginatedOpenPGPPublicKeyResponseList.md)
442
+ - [PaginatedOpenPGPPublicSubkeyResponseList](docs/PaginatedOpenPGPPublicSubkeyResponseList.md)
443
+ - [PaginatedOpenPGPSignatureResponseList](docs/PaginatedOpenPGPSignatureResponseList.md)
444
+ - [PaginatedOpenPGPUserAttributeResponseList](docs/PaginatedOpenPGPUserAttributeResponseList.md)
445
+ - [PaginatedOpenPGPUserIDResponseList](docs/PaginatedOpenPGPUserIDResponseList.md)
446
+ - [PaginatedPublicationResponseList](docs/PaginatedPublicationResponseList.md)
447
+ - [PaginatedPulpExportResponseList](docs/PaginatedPulpExportResponseList.md)
448
+ - [PaginatedPulpExporterResponseList](docs/PaginatedPulpExporterResponseList.md)
449
+ - [PaginatedPulpImporterResponseList](docs/PaginatedPulpImporterResponseList.md)
450
+ - [PaginatedRBACContentGuardResponseList](docs/PaginatedRBACContentGuardResponseList.md)
451
+ - [PaginatedRepositoryResponseList](docs/PaginatedRepositoryResponseList.md)
452
+ - [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
453
+ - [PaginatedRoleResponseList](docs/PaginatedRoleResponseList.md)
454
+ - [PaginatedSigningServiceResponseList](docs/PaginatedSigningServiceResponseList.md)
455
+ - [PaginatedTaskGroupResponseList](docs/PaginatedTaskGroupResponseList.md)
456
+ - [PaginatedTaskResponseList](docs/PaginatedTaskResponseList.md)
457
+ - [PaginatedTaskScheduleResponseList](docs/PaginatedTaskScheduleResponseList.md)
458
+ - [PaginatedUploadResponseList](docs/PaginatedUploadResponseList.md)
459
+ - [PaginatedUpstreamPulpResponseList](docs/PaginatedUpstreamPulpResponseList.md)
460
+ - [PaginatedUserResponseList](docs/PaginatedUserResponseList.md)
461
+ - [PaginatedUserRoleResponseList](docs/PaginatedUserRoleResponseList.md)
462
+ - [PaginatedVulnerabilityReportResponseList](docs/PaginatedVulnerabilityReportResponseList.md)
463
+ - [PaginatedWorkerResponseList](docs/PaginatedWorkerResponseList.md)
464
+ - [PatchedAccessPolicy](docs/PatchedAccessPolicy.md)
465
+ - [PatchedCompositeContentGuard](docs/PatchedCompositeContentGuard.md)
466
+ - [PatchedContentRedirectContentGuard](docs/PatchedContentRedirectContentGuard.md)
467
+ - [PatchedDomain](docs/PatchedDomain.md)
468
+ - [PatchedFilesystemExporter](docs/PatchedFilesystemExporter.md)
469
+ - [PatchedGroup](docs/PatchedGroup.md)
470
+ - [PatchedHeaderContentGuard](docs/PatchedHeaderContentGuard.md)
471
+ - [PatchedOpenPGPDistribution](docs/PatchedOpenPGPDistribution.md)
472
+ - [PatchedOpenPGPKeyring](docs/PatchedOpenPGPKeyring.md)
473
+ - [PatchedPulpExporter](docs/PatchedPulpExporter.md)
474
+ - [PatchedPulpImporter](docs/PatchedPulpImporter.md)
475
+ - [PatchedRBACContentGuard](docs/PatchedRBACContentGuard.md)
476
+ - [PatchedRole](docs/PatchedRole.md)
477
+ - [PatchedTaskCancel](docs/PatchedTaskCancel.md)
478
+ - [PatchedUpstreamPulp](docs/PatchedUpstreamPulp.md)
479
+ - [PatchedUser](docs/PatchedUser.md)
480
+ - [Policy357Enum](docs/Policy357Enum.md)
481
+ - [ProfileArtifactResponse](docs/ProfileArtifactResponse.md)
482
+ - [ProgressReportResponse](docs/ProgressReportResponse.md)
483
+ - [PublicationResponse](docs/PublicationResponse.md)
484
+ - [PulpExport](docs/PulpExport.md)
485
+ - [PulpExportResponse](docs/PulpExportResponse.md)
486
+ - [PulpExporter](docs/PulpExporter.md)
487
+ - [PulpExporterResponse](docs/PulpExporterResponse.md)
488
+ - [PulpImport](docs/PulpImport.md)
489
+ - [PulpImportCheck](docs/PulpImportCheck.md)
490
+ - [PulpImportCheckResponse](docs/PulpImportCheckResponse.md)
491
+ - [PulpImporter](docs/PulpImporter.md)
492
+ - [PulpImporterResponse](docs/PulpImporterResponse.md)
493
+ - [Purge](docs/Purge.md)
494
+ - [RBACContentGuard](docs/RBACContentGuard.md)
495
+ - [RBACContentGuardResponse](docs/RBACContentGuardResponse.md)
496
+ - [ReclaimSpace](docs/ReclaimSpace.md)
497
+ - [RedisConnectionResponse](docs/RedisConnectionResponse.md)
498
+ - [Repair](docs/Repair.md)
499
+ - [RepositoryAddRemoveContent](docs/RepositoryAddRemoveContent.md)
500
+ - [RepositoryResponse](docs/RepositoryResponse.md)
501
+ - [RepositoryVersionResponse](docs/RepositoryVersionResponse.md)
502
+ - [Role](docs/Role.md)
503
+ - [RoleResponse](docs/RoleResponse.md)
504
+ - [SetLabel](docs/SetLabel.md)
505
+ - [SetLabelResponse](docs/SetLabelResponse.md)
506
+ - [SigningServiceResponse](docs/SigningServiceResponse.md)
507
+ - [StatesEnum](docs/StatesEnum.md)
508
+ - [StatusResponse](docs/StatusResponse.md)
509
+ - [StorageClassEnum](docs/StorageClassEnum.md)
510
+ - [StorageResponse](docs/StorageResponse.md)
511
+ - [TaskGroupOperationResponse](docs/TaskGroupOperationResponse.md)
512
+ - [TaskGroupResponse](docs/TaskGroupResponse.md)
513
+ - [TaskResponse](docs/TaskResponse.md)
514
+ - [TaskScheduleResponse](docs/TaskScheduleResponse.md)
515
+ - [UnsetLabel](docs/UnsetLabel.md)
516
+ - [UnsetLabelResponse](docs/UnsetLabelResponse.md)
517
+ - [Upload](docs/Upload.md)
518
+ - [UploadChunkResponse](docs/UploadChunkResponse.md)
519
+ - [UploadCommit](docs/UploadCommit.md)
520
+ - [UploadDetailResponse](docs/UploadDetailResponse.md)
521
+ - [UploadResponse](docs/UploadResponse.md)
522
+ - [UpstreamPulp](docs/UpstreamPulp.md)
523
+ - [UpstreamPulpResponse](docs/UpstreamPulpResponse.md)
524
+ - [User](docs/User.md)
525
+ - [UserGroup](docs/UserGroup.md)
526
+ - [UserGroupResponse](docs/UserGroupResponse.md)
527
+ - [UserResponse](docs/UserResponse.md)
528
+ - [UserRole](docs/UserRole.md)
529
+ - [UserRoleResponse](docs/UserRoleResponse.md)
530
+ - [VersionResponse](docs/VersionResponse.md)
531
+ - [VulnerabilityReportResponse](docs/VulnerabilityReportResponse.md)
532
+ - [WorkerResponse](docs/WorkerResponse.md)
533
+
534
+
535
+ <a id="documentation-for-authorization"></a>
536
+ ## Documentation For Authorization
537
+
538
+
539
+ Authentication schemes defined for the API:
540
+ <a id="basicAuth"></a>
541
+ ### basicAuth
542
+
543
+ - **Type**: HTTP basic authentication
544
+
545
+ <a id="cookieAuth"></a>
546
+ ### cookieAuth
547
+
548
+ - **Type**: API key
549
+ - **API key parameter name**: sessionid
550
+ - **Location**:
551
+
552
+ <a id="json_header_remote_authentication"></a>
553
+ ### json_header_remote_authentication
554
+
555
+ - **Type**: OAuth
556
+ - **Flow**: application
557
+ - **Authorization URL**:
558
+ - **Scopes**:
559
+ - **api.console**: grant_access_to_pulp
560
+
561
+
562
+ ## Author
563
+
564
+ pulp-list@redhat.com
565
+
566
+
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: crc-pulpcore-client
3
+ Version: 20250829.2
4
+ Summary: Pulp 3 API
5
+ Home-page:
6
+ Author: Pulp Team
7
+ Author-email: pulp-list@redhat.com
8
+ License: GPLv2+
9
+ Keywords: pulp,pulpcore,client,Pulp 3 API
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil<2.10.0,>=2.8.1
13
+ Requires-Dist: pydantic>=2
14
+ Requires-Dist: typing-extensions>=4.7.1
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: keywords
20
+ Dynamic: license
21
+ Dynamic: requires-dist
22
+ Dynamic: summary
23
+
24
+ Fetch, Upload, Organize, and Distribute Software Packages
25
+