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