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