crc-pulpcore-client 20250819.1__py3-none-any.whl
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/__init__.py +2 -0
- crc-pulpcore-client/api/__init__.py +53 -0
- crc-pulpcore-client/api/access_policies_api.py +1864 -0
- crc-pulpcore-client/api/artifacts_api.py +1615 -0
- crc-pulpcore-client/api/content_api.py +598 -0
- crc-pulpcore-client/api/content_openpgp_publickey_api.py +1887 -0
- crc-pulpcore-client/api/content_openpgp_publicsubkey_api.py +1518 -0
- crc-pulpcore-client/api/content_openpgp_signature_api.py +1518 -0
- crc-pulpcore-client/api/content_openpgp_userattribute_api.py +1518 -0
- crc-pulpcore-client/api/content_openpgp_userid_api.py +1655 -0
- crc-pulpcore-client/api/contentguards_api.py +667 -0
- crc-pulpcore-client/api/contentguards_composite_api.py +3401 -0
- crc-pulpcore-client/api/contentguards_content_redirect_api.py +3401 -0
- crc-pulpcore-client/api/contentguards_header_api.py +3401 -0
- crc-pulpcore-client/api/contentguards_rbac_api.py +3401 -0
- crc-pulpcore-client/api/distributions_api.py +822 -0
- crc-pulpcore-client/api/distributions_artifacts_api.py +1103 -0
- crc-pulpcore-client/api/distributions_openpgp_api.py +2676 -0
- crc-pulpcore-client/api/domains_api.py +3106 -0
- crc-pulpcore-client/api/exporters_filesystem_api.py +2157 -0
- crc-pulpcore-client/api/exporters_filesystem_exports_api.py +1288 -0
- crc-pulpcore-client/api/exporters_pulp_api.py +2157 -0
- crc-pulpcore-client/api/exporters_pulp_exports_api.py +1288 -0
- crc-pulpcore-client/api/groups_api.py +3368 -0
- crc-pulpcore-client/api/groups_roles_api.py +1496 -0
- crc-pulpcore-client/api/groups_users_api.py +972 -0
- crc-pulpcore-client/api/importers_pulp_api.py +2149 -0
- crc-pulpcore-client/api/importers_pulp_import_check_api.py +350 -0
- crc-pulpcore-client/api/importers_pulp_imports_api.py +1288 -0
- crc-pulpcore-client/api/livez_api.py +329 -0
- crc-pulpcore-client/api/login_api.py +897 -0
- crc-pulpcore-client/api/orphans_api.py +319 -0
- crc-pulpcore-client/api/orphans_cleanup_api.py +350 -0
- crc-pulpcore-client/api/publications_api.py +765 -0
- crc-pulpcore-client/api/remotes_api.py +850 -0
- crc-pulpcore-client/api/repair_api.py +350 -0
- crc-pulpcore-client/api/repositories_api.py +872 -0
- crc-pulpcore-client/api/repositories_openpgp_keyring_api.py +4546 -0
- crc-pulpcore-client/api/repositories_reclaim_space_api.py +350 -0
- crc-pulpcore-client/api/repository_versions_api.py +764 -0
- crc-pulpcore-client/api/roles_api.py +2269 -0
- crc-pulpcore-client/api/signing_services_api.py +811 -0
- crc-pulpcore-client/api/status_api.py +337 -0
- crc-pulpcore-client/api/task_groups_api.py +1012 -0
- crc-pulpcore-client/api/task_schedules_api.py +2114 -0
- crc-pulpcore-client/api/tasks_api.py +4299 -0
- crc-pulpcore-client/api/uploads_api.py +3346 -0
- crc-pulpcore-client/api/upstream_pulps_api.py +4001 -0
- crc-pulpcore-client/api/users_api.py +2373 -0
- crc-pulpcore-client/api/users_roles_api.py +1496 -0
- crc-pulpcore-client/api/workers_api.py +1148 -0
- crc-pulpcore-client/api_client.py +798 -0
- crc-pulpcore-client/api_response.py +21 -0
- crc-pulpcore-client/configuration.py +628 -0
- crc-pulpcore-client/exceptions.py +200 -0
- crc-pulpcore-client/models/__init__.py +189 -0
- crc-pulpcore-client/models/access_policy.py +94 -0
- crc-pulpcore-client/models/access_policy_response.py +119 -0
- crc-pulpcore-client/models/api_app_status_response.py +99 -0
- crc-pulpcore-client/models/artifact_distribution_response.py +126 -0
- crc-pulpcore-client/models/artifact_response.py +149 -0
- crc-pulpcore-client/models/async_operation_response.py +88 -0
- crc-pulpcore-client/models/composite_content_guard.py +98 -0
- crc-pulpcore-client/models/composite_content_guard_response.py +114 -0
- crc-pulpcore-client/models/content_app_status_response.py +99 -0
- crc-pulpcore-client/models/content_guard_response.py +112 -0
- crc-pulpcore-client/models/content_redirect_content_guard.py +96 -0
- crc-pulpcore-client/models/content_redirect_content_guard_response.py +112 -0
- crc-pulpcore-client/models/content_settings_response.py +95 -0
- crc-pulpcore-client/models/content_summary_response.py +92 -0
- crc-pulpcore-client/models/database_connection_response.py +88 -0
- crc-pulpcore-client/models/distribution_response.py +133 -0
- crc-pulpcore-client/models/domain.py +114 -0
- crc-pulpcore-client/models/domain_backend_migrator.py +91 -0
- crc-pulpcore-client/models/domain_response.py +131 -0
- crc-pulpcore-client/models/evaluation_response.py +92 -0
- crc-pulpcore-client/models/filesystem_export.py +99 -0
- crc-pulpcore-client/models/filesystem_export_response.py +118 -0
- crc-pulpcore-client/models/filesystem_exporter.py +94 -0
- crc-pulpcore-client/models/filesystem_exporter_response.py +110 -0
- crc-pulpcore-client/models/generic_remote_response.py +199 -0
- crc-pulpcore-client/models/generic_remote_response_hidden_fields_inner.py +90 -0
- crc-pulpcore-client/models/generic_remote_response_policy_enum.py +39 -0
- crc-pulpcore-client/models/group.py +89 -0
- crc-pulpcore-client/models/group_progress_report_response.py +111 -0
- crc-pulpcore-client/models/group_response.py +101 -0
- crc-pulpcore-client/models/group_role.py +110 -0
- crc-pulpcore-client/models/group_role_response.py +134 -0
- crc-pulpcore-client/models/group_user.py +89 -0
- crc-pulpcore-client/models/group_user_response.py +97 -0
- crc-pulpcore-client/models/header_content_guard.py +107 -0
- crc-pulpcore-client/models/header_content_guard_response.py +123 -0
- crc-pulpcore-client/models/import_response.py +107 -0
- crc-pulpcore-client/models/login_response.py +98 -0
- crc-pulpcore-client/models/method_enum.py +39 -0
- crc-pulpcore-client/models/minimal_task_response.py +125 -0
- crc-pulpcore-client/models/multiple_artifact_content_response.py +107 -0
- crc-pulpcore-client/models/my_permissions_response.py +88 -0
- crc-pulpcore-client/models/nested_open_pgp_public_subkey.py +92 -0
- crc-pulpcore-client/models/nested_open_pgp_public_subkey_response.py +104 -0
- crc-pulpcore-client/models/nested_open_pgp_signature.py +120 -0
- crc-pulpcore-client/models/nested_open_pgp_signature_response.py +124 -0
- crc-pulpcore-client/models/nested_open_pgp_user_attribute.py +89 -0
- crc-pulpcore-client/models/nested_open_pgp_user_attribute_response.py +101 -0
- crc-pulpcore-client/models/nested_open_pgp_user_id.py +89 -0
- crc-pulpcore-client/models/nested_open_pgp_user_id_response.py +100 -0
- crc-pulpcore-client/models/nested_role.py +93 -0
- crc-pulpcore-client/models/nested_role_response.py +92 -0
- crc-pulpcore-client/models/object_roles_response.py +96 -0
- crc-pulpcore-client/models/open_pgp_distribution.py +116 -0
- crc-pulpcore-client/models/open_pgp_distribution_response.py +140 -0
- crc-pulpcore-client/models/open_pgp_keyring.py +112 -0
- crc-pulpcore-client/models/open_pgp_keyring_response.py +137 -0
- crc-pulpcore-client/models/open_pgp_public_key_response.py +150 -0
- crc-pulpcore-client/models/open_pgp_public_subkey_response.py +126 -0
- crc-pulpcore-client/models/open_pgp_signature_response.py +146 -0
- crc-pulpcore-client/models/open_pgp_user_attribute_response.py +124 -0
- crc-pulpcore-client/models/open_pgp_user_id_response.py +123 -0
- crc-pulpcore-client/models/orphans_cleanup.py +96 -0
- crc-pulpcore-client/models/paginated_access_policy_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_artifact_distribution_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_artifact_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_composite_content_guard_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_content_guard_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_content_redirect_content_guard_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_distribution_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_domain_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_filesystem_export_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_filesystem_exporter_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_generic_remote_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_group_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_group_role_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_group_user_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_header_content_guard_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_import_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_multiple_artifact_content_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_distribution_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_keyring_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_public_key_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_public_subkey_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_signature_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_user_attribute_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_open_pgp_user_id_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_publication_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_pulp_export_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_pulp_exporter_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_pulp_importer_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_rbac_content_guard_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_repository_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_repository_version_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_role_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_signing_service_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_task_group_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_task_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_task_schedule_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_upload_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_upstream_pulp_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_user_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_user_role_response_list.py +112 -0
- crc-pulpcore-client/models/paginated_worker_response_list.py +112 -0
- crc-pulpcore-client/models/patched_access_policy.py +94 -0
- crc-pulpcore-client/models/patched_composite_content_guard.py +98 -0
- crc-pulpcore-client/models/patched_content_redirect_content_guard.py +96 -0
- crc-pulpcore-client/models/patched_domain.py +117 -0
- crc-pulpcore-client/models/patched_filesystem_exporter.py +94 -0
- crc-pulpcore-client/models/patched_group.py +89 -0
- crc-pulpcore-client/models/patched_header_content_guard.py +107 -0
- crc-pulpcore-client/models/patched_open_pgp_distribution.py +116 -0
- crc-pulpcore-client/models/patched_open_pgp_keyring.py +112 -0
- crc-pulpcore-client/models/patched_pulp_exporter.py +100 -0
- crc-pulpcore-client/models/patched_pulp_importer.py +91 -0
- crc-pulpcore-client/models/patched_rbac_content_guard.py +96 -0
- crc-pulpcore-client/models/patched_role.py +98 -0
- crc-pulpcore-client/models/patched_task_cancel.py +89 -0
- crc-pulpcore-client/models/patched_upstream_pulp.py +147 -0
- crc-pulpcore-client/models/patched_user.py +106 -0
- crc-pulpcore-client/models/policy357_enum.py +39 -0
- crc-pulpcore-client/models/profile_artifact_response.py +88 -0
- crc-pulpcore-client/models/progress_report_response.py +115 -0
- crc-pulpcore-client/models/publication_response.py +107 -0
- crc-pulpcore-client/models/pulp_export.py +104 -0
- crc-pulpcore-client/models/pulp_export_response.py +126 -0
- crc-pulpcore-client/models/pulp_exporter.py +100 -0
- crc-pulpcore-client/models/pulp_exporter_response.py +116 -0
- crc-pulpcore-client/models/pulp_import.py +93 -0
- crc-pulpcore-client/models/pulp_import_check.py +93 -0
- crc-pulpcore-client/models/pulp_import_check_response.py +102 -0
- crc-pulpcore-client/models/pulp_importer.py +91 -0
- crc-pulpcore-client/models/pulp_importer_response.py +107 -0
- crc-pulpcore-client/models/purge.py +92 -0
- crc-pulpcore-client/models/rbac_content_guard.py +96 -0
- crc-pulpcore-client/models/rbac_content_guard_response.py +136 -0
- crc-pulpcore-client/models/reclaim_space.py +90 -0
- crc-pulpcore-client/models/redis_connection_response.py +88 -0
- crc-pulpcore-client/models/repair.py +88 -0
- crc-pulpcore-client/models/repository_add_remove_content.py +93 -0
- crc-pulpcore-client/models/repository_response.py +137 -0
- crc-pulpcore-client/models/repository_version_response.py +121 -0
- crc-pulpcore-client/models/role.py +98 -0
- crc-pulpcore-client/models/role_response.py +118 -0
- crc-pulpcore-client/models/set_label.py +103 -0
- crc-pulpcore-client/models/set_label_response.py +103 -0
- crc-pulpcore-client/models/signing_service_response.py +111 -0
- crc-pulpcore-client/models/states_enum.py +40 -0
- crc-pulpcore-client/models/status_response.py +152 -0
- crc-pulpcore-client/models/storage_class_enum.py +40 -0
- crc-pulpcore-client/models/storage_response.py +108 -0
- crc-pulpcore-client/models/task_group_operation_response.py +88 -0
- crc-pulpcore-client/models/task_group_response.py +150 -0
- crc-pulpcore-client/models/task_response.py +167 -0
- crc-pulpcore-client/models/task_schedule_response.py +127 -0
- crc-pulpcore-client/models/unset_label.py +96 -0
- crc-pulpcore-client/models/unset_label_response.py +100 -0
- crc-pulpcore-client/models/upload.py +88 -0
- crc-pulpcore-client/models/upload_chunk_response.py +94 -0
- crc-pulpcore-client/models/upload_commit.py +89 -0
- crc-pulpcore-client/models/upload_detail_response.py +121 -0
- crc-pulpcore-client/models/upload_response.py +109 -0
- crc-pulpcore-client/models/upstream_pulp.py +147 -0
- crc-pulpcore-client/models/upstream_pulp_response.py +158 -0
- crc-pulpcore-client/models/user.py +106 -0
- crc-pulpcore-client/models/user_group.py +89 -0
- crc-pulpcore-client/models/user_group_response.py +97 -0
- crc-pulpcore-client/models/user_response.py +140 -0
- crc-pulpcore-client/models/user_role.py +110 -0
- crc-pulpcore-client/models/user_role_response.py +134 -0
- crc-pulpcore-client/models/version_response.py +96 -0
- crc-pulpcore-client/models/worker_response.py +119 -0
- crc-pulpcore-client/py.typed +0 -0
- crc-pulpcore-client/rest.py +258 -0
- crc_pulpcore_client-20250819.1.dist-info/METADATA +25 -0
- crc_pulpcore_client-20250819.1.dist-info/RECORD +464 -0
- crc_pulpcore_client-20250819.1.dist-info/WHEEL +5 -0
- crc_pulpcore_client-20250819.1.dist-info/top_level.txt +2 -0
- services-pulpcore-client/__init__.py +2 -0
- services-pulpcore-client/api/__init__.py +53 -0
- services-pulpcore-client/api/access_policies_api.py +1864 -0
- services-pulpcore-client/api/artifacts_api.py +1615 -0
- services-pulpcore-client/api/content_api.py +598 -0
- services-pulpcore-client/api/content_openpgp_publickey_api.py +1887 -0
- services-pulpcore-client/api/content_openpgp_publicsubkey_api.py +1518 -0
- services-pulpcore-client/api/content_openpgp_signature_api.py +1518 -0
- services-pulpcore-client/api/content_openpgp_userattribute_api.py +1518 -0
- services-pulpcore-client/api/content_openpgp_userid_api.py +1655 -0
- services-pulpcore-client/api/contentguards_api.py +667 -0
- services-pulpcore-client/api/contentguards_composite_api.py +3401 -0
- services-pulpcore-client/api/contentguards_content_redirect_api.py +3401 -0
- services-pulpcore-client/api/contentguards_header_api.py +3401 -0
- services-pulpcore-client/api/contentguards_rbac_api.py +3401 -0
- services-pulpcore-client/api/distributions_api.py +822 -0
- services-pulpcore-client/api/distributions_artifacts_api.py +1103 -0
- services-pulpcore-client/api/distributions_openpgp_api.py +2676 -0
- services-pulpcore-client/api/domains_api.py +3106 -0
- services-pulpcore-client/api/exporters_filesystem_api.py +2157 -0
- services-pulpcore-client/api/exporters_filesystem_exports_api.py +1288 -0
- services-pulpcore-client/api/exporters_pulp_api.py +2157 -0
- services-pulpcore-client/api/exporters_pulp_exports_api.py +1288 -0
- services-pulpcore-client/api/groups_api.py +3368 -0
- services-pulpcore-client/api/groups_roles_api.py +1496 -0
- services-pulpcore-client/api/groups_users_api.py +972 -0
- services-pulpcore-client/api/importers_pulp_api.py +2149 -0
- services-pulpcore-client/api/importers_pulp_import_check_api.py +350 -0
- services-pulpcore-client/api/importers_pulp_imports_api.py +1288 -0
- services-pulpcore-client/api/livez_api.py +329 -0
- services-pulpcore-client/api/login_api.py +897 -0
- services-pulpcore-client/api/orphans_api.py +319 -0
- services-pulpcore-client/api/orphans_cleanup_api.py +350 -0
- services-pulpcore-client/api/publications_api.py +765 -0
- services-pulpcore-client/api/remotes_api.py +850 -0
- services-pulpcore-client/api/repair_api.py +350 -0
- services-pulpcore-client/api/repositories_api.py +872 -0
- services-pulpcore-client/api/repositories_openpgp_keyring_api.py +4546 -0
- services-pulpcore-client/api/repositories_reclaim_space_api.py +350 -0
- services-pulpcore-client/api/repository_versions_api.py +764 -0
- services-pulpcore-client/api/roles_api.py +2269 -0
- services-pulpcore-client/api/signing_services_api.py +811 -0
- services-pulpcore-client/api/status_api.py +337 -0
- services-pulpcore-client/api/task_groups_api.py +1012 -0
- services-pulpcore-client/api/task_schedules_api.py +2114 -0
- services-pulpcore-client/api/tasks_api.py +4299 -0
- services-pulpcore-client/api/uploads_api.py +3346 -0
- services-pulpcore-client/api/upstream_pulps_api.py +4001 -0
- services-pulpcore-client/api/users_api.py +2373 -0
- services-pulpcore-client/api/users_roles_api.py +1496 -0
- services-pulpcore-client/api/workers_api.py +1148 -0
- services-pulpcore-client/api_client.py +798 -0
- services-pulpcore-client/api_response.py +21 -0
- services-pulpcore-client/configuration.py +628 -0
- services-pulpcore-client/exceptions.py +200 -0
- services-pulpcore-client/models/__init__.py +189 -0
- services-pulpcore-client/models/access_policy.py +94 -0
- services-pulpcore-client/models/access_policy_response.py +119 -0
- services-pulpcore-client/models/api_app_status_response.py +99 -0
- services-pulpcore-client/models/artifact_distribution_response.py +126 -0
- services-pulpcore-client/models/artifact_response.py +149 -0
- services-pulpcore-client/models/async_operation_response.py +88 -0
- services-pulpcore-client/models/composite_content_guard.py +98 -0
- services-pulpcore-client/models/composite_content_guard_response.py +114 -0
- services-pulpcore-client/models/content_app_status_response.py +99 -0
- services-pulpcore-client/models/content_guard_response.py +112 -0
- services-pulpcore-client/models/content_redirect_content_guard.py +96 -0
- services-pulpcore-client/models/content_redirect_content_guard_response.py +112 -0
- services-pulpcore-client/models/content_settings_response.py +95 -0
- services-pulpcore-client/models/content_summary_response.py +92 -0
- services-pulpcore-client/models/database_connection_response.py +88 -0
- services-pulpcore-client/models/distribution_response.py +133 -0
- services-pulpcore-client/models/domain.py +114 -0
- services-pulpcore-client/models/domain_backend_migrator.py +91 -0
- services-pulpcore-client/models/domain_response.py +131 -0
- services-pulpcore-client/models/evaluation_response.py +92 -0
- services-pulpcore-client/models/filesystem_export.py +99 -0
- services-pulpcore-client/models/filesystem_export_response.py +118 -0
- services-pulpcore-client/models/filesystem_exporter.py +94 -0
- services-pulpcore-client/models/filesystem_exporter_response.py +110 -0
- services-pulpcore-client/models/generic_remote_response.py +199 -0
- services-pulpcore-client/models/generic_remote_response_hidden_fields_inner.py +90 -0
- services-pulpcore-client/models/generic_remote_response_policy_enum.py +39 -0
- services-pulpcore-client/models/group.py +89 -0
- services-pulpcore-client/models/group_progress_report_response.py +111 -0
- services-pulpcore-client/models/group_response.py +101 -0
- services-pulpcore-client/models/group_role.py +110 -0
- services-pulpcore-client/models/group_role_response.py +134 -0
- services-pulpcore-client/models/group_user.py +89 -0
- services-pulpcore-client/models/group_user_response.py +97 -0
- services-pulpcore-client/models/header_content_guard.py +107 -0
- services-pulpcore-client/models/header_content_guard_response.py +123 -0
- services-pulpcore-client/models/import_response.py +107 -0
- services-pulpcore-client/models/login_response.py +98 -0
- services-pulpcore-client/models/method_enum.py +39 -0
- services-pulpcore-client/models/minimal_task_response.py +125 -0
- services-pulpcore-client/models/multiple_artifact_content_response.py +107 -0
- services-pulpcore-client/models/my_permissions_response.py +88 -0
- services-pulpcore-client/models/nested_open_pgp_public_subkey.py +92 -0
- services-pulpcore-client/models/nested_open_pgp_public_subkey_response.py +104 -0
- services-pulpcore-client/models/nested_open_pgp_signature.py +120 -0
- services-pulpcore-client/models/nested_open_pgp_signature_response.py +124 -0
- services-pulpcore-client/models/nested_open_pgp_user_attribute.py +89 -0
- services-pulpcore-client/models/nested_open_pgp_user_attribute_response.py +101 -0
- services-pulpcore-client/models/nested_open_pgp_user_id.py +89 -0
- services-pulpcore-client/models/nested_open_pgp_user_id_response.py +100 -0
- services-pulpcore-client/models/nested_role.py +93 -0
- services-pulpcore-client/models/nested_role_response.py +92 -0
- services-pulpcore-client/models/object_roles_response.py +96 -0
- services-pulpcore-client/models/open_pgp_distribution.py +116 -0
- services-pulpcore-client/models/open_pgp_distribution_response.py +140 -0
- services-pulpcore-client/models/open_pgp_keyring.py +112 -0
- services-pulpcore-client/models/open_pgp_keyring_response.py +137 -0
- services-pulpcore-client/models/open_pgp_public_key_response.py +150 -0
- services-pulpcore-client/models/open_pgp_public_subkey_response.py +126 -0
- services-pulpcore-client/models/open_pgp_signature_response.py +146 -0
- services-pulpcore-client/models/open_pgp_user_attribute_response.py +124 -0
- services-pulpcore-client/models/open_pgp_user_id_response.py +123 -0
- services-pulpcore-client/models/orphans_cleanup.py +96 -0
- services-pulpcore-client/models/paginated_access_policy_response_list.py +112 -0
- services-pulpcore-client/models/paginated_artifact_distribution_response_list.py +112 -0
- services-pulpcore-client/models/paginated_artifact_response_list.py +112 -0
- services-pulpcore-client/models/paginated_composite_content_guard_response_list.py +112 -0
- services-pulpcore-client/models/paginated_content_guard_response_list.py +112 -0
- services-pulpcore-client/models/paginated_content_redirect_content_guard_response_list.py +112 -0
- services-pulpcore-client/models/paginated_distribution_response_list.py +112 -0
- services-pulpcore-client/models/paginated_domain_response_list.py +112 -0
- services-pulpcore-client/models/paginated_filesystem_export_response_list.py +112 -0
- services-pulpcore-client/models/paginated_filesystem_exporter_response_list.py +112 -0
- services-pulpcore-client/models/paginated_generic_remote_response_list.py +112 -0
- services-pulpcore-client/models/paginated_group_response_list.py +112 -0
- services-pulpcore-client/models/paginated_group_role_response_list.py +112 -0
- services-pulpcore-client/models/paginated_group_user_response_list.py +112 -0
- services-pulpcore-client/models/paginated_header_content_guard_response_list.py +112 -0
- services-pulpcore-client/models/paginated_import_response_list.py +112 -0
- services-pulpcore-client/models/paginated_multiple_artifact_content_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_distribution_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_keyring_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_public_key_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_public_subkey_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_signature_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_user_attribute_response_list.py +112 -0
- services-pulpcore-client/models/paginated_open_pgp_user_id_response_list.py +112 -0
- services-pulpcore-client/models/paginated_publication_response_list.py +112 -0
- services-pulpcore-client/models/paginated_pulp_export_response_list.py +112 -0
- services-pulpcore-client/models/paginated_pulp_exporter_response_list.py +112 -0
- services-pulpcore-client/models/paginated_pulp_importer_response_list.py +112 -0
- services-pulpcore-client/models/paginated_rbac_content_guard_response_list.py +112 -0
- services-pulpcore-client/models/paginated_repository_response_list.py +112 -0
- services-pulpcore-client/models/paginated_repository_version_response_list.py +112 -0
- services-pulpcore-client/models/paginated_role_response_list.py +112 -0
- services-pulpcore-client/models/paginated_signing_service_response_list.py +112 -0
- services-pulpcore-client/models/paginated_task_group_response_list.py +112 -0
- services-pulpcore-client/models/paginated_task_response_list.py +112 -0
- services-pulpcore-client/models/paginated_task_schedule_response_list.py +112 -0
- services-pulpcore-client/models/paginated_upload_response_list.py +112 -0
- services-pulpcore-client/models/paginated_upstream_pulp_response_list.py +112 -0
- services-pulpcore-client/models/paginated_user_response_list.py +112 -0
- services-pulpcore-client/models/paginated_user_role_response_list.py +112 -0
- services-pulpcore-client/models/paginated_worker_response_list.py +112 -0
- services-pulpcore-client/models/patched_access_policy.py +94 -0
- services-pulpcore-client/models/patched_composite_content_guard.py +98 -0
- services-pulpcore-client/models/patched_content_redirect_content_guard.py +96 -0
- services-pulpcore-client/models/patched_domain.py +117 -0
- services-pulpcore-client/models/patched_filesystem_exporter.py +94 -0
- services-pulpcore-client/models/patched_group.py +89 -0
- services-pulpcore-client/models/patched_header_content_guard.py +107 -0
- services-pulpcore-client/models/patched_open_pgp_distribution.py +116 -0
- services-pulpcore-client/models/patched_open_pgp_keyring.py +112 -0
- services-pulpcore-client/models/patched_pulp_exporter.py +100 -0
- services-pulpcore-client/models/patched_pulp_importer.py +91 -0
- services-pulpcore-client/models/patched_rbac_content_guard.py +96 -0
- services-pulpcore-client/models/patched_role.py +98 -0
- services-pulpcore-client/models/patched_task_cancel.py +89 -0
- services-pulpcore-client/models/patched_upstream_pulp.py +147 -0
- services-pulpcore-client/models/patched_user.py +106 -0
- services-pulpcore-client/models/policy357_enum.py +39 -0
- services-pulpcore-client/models/profile_artifact_response.py +88 -0
- services-pulpcore-client/models/progress_report_response.py +115 -0
- services-pulpcore-client/models/publication_response.py +107 -0
- services-pulpcore-client/models/pulp_export.py +104 -0
- services-pulpcore-client/models/pulp_export_response.py +126 -0
- services-pulpcore-client/models/pulp_exporter.py +100 -0
- services-pulpcore-client/models/pulp_exporter_response.py +116 -0
- services-pulpcore-client/models/pulp_import.py +93 -0
- services-pulpcore-client/models/pulp_import_check.py +93 -0
- services-pulpcore-client/models/pulp_import_check_response.py +102 -0
- services-pulpcore-client/models/pulp_importer.py +91 -0
- services-pulpcore-client/models/pulp_importer_response.py +107 -0
- services-pulpcore-client/models/purge.py +92 -0
- services-pulpcore-client/models/rbac_content_guard.py +96 -0
- services-pulpcore-client/models/rbac_content_guard_response.py +136 -0
- services-pulpcore-client/models/reclaim_space.py +90 -0
- services-pulpcore-client/models/redis_connection_response.py +88 -0
- services-pulpcore-client/models/repair.py +88 -0
- services-pulpcore-client/models/repository_add_remove_content.py +93 -0
- services-pulpcore-client/models/repository_response.py +137 -0
- services-pulpcore-client/models/repository_version_response.py +121 -0
- services-pulpcore-client/models/role.py +98 -0
- services-pulpcore-client/models/role_response.py +118 -0
- services-pulpcore-client/models/set_label.py +103 -0
- services-pulpcore-client/models/set_label_response.py +103 -0
- services-pulpcore-client/models/signing_service_response.py +111 -0
- services-pulpcore-client/models/states_enum.py +40 -0
- services-pulpcore-client/models/status_response.py +152 -0
- services-pulpcore-client/models/storage_class_enum.py +40 -0
- services-pulpcore-client/models/storage_response.py +108 -0
- services-pulpcore-client/models/task_group_operation_response.py +88 -0
- services-pulpcore-client/models/task_group_response.py +150 -0
- services-pulpcore-client/models/task_response.py +167 -0
- services-pulpcore-client/models/task_schedule_response.py +127 -0
- services-pulpcore-client/models/unset_label.py +96 -0
- services-pulpcore-client/models/unset_label_response.py +100 -0
- services-pulpcore-client/models/upload.py +88 -0
- services-pulpcore-client/models/upload_chunk_response.py +94 -0
- services-pulpcore-client/models/upload_commit.py +89 -0
- services-pulpcore-client/models/upload_detail_response.py +121 -0
- services-pulpcore-client/models/upload_response.py +109 -0
- services-pulpcore-client/models/upstream_pulp.py +147 -0
- services-pulpcore-client/models/upstream_pulp_response.py +158 -0
- services-pulpcore-client/models/user.py +106 -0
- services-pulpcore-client/models/user_group.py +89 -0
- services-pulpcore-client/models/user_group_response.py +97 -0
- services-pulpcore-client/models/user_response.py +140 -0
- services-pulpcore-client/models/user_role.py +110 -0
- services-pulpcore-client/models/user_role_response.py +134 -0
- services-pulpcore-client/models/version_response.py +96 -0
- services-pulpcore-client/models/worker_response.py +119 -0
- services-pulpcore-client/py.typed +0 -0
- services-pulpcore-client/rest.py +258 -0
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Pulp 3 API
|
|
5
|
+
|
|
6
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v3
|
|
9
|
+
Contact: pulp-list@redhat.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
from typing import Any, Optional
|
|
16
|
+
from typing_extensions import Self
|
|
17
|
+
|
|
18
|
+
class OpenApiException(Exception):
|
|
19
|
+
"""The base exception class for all OpenAPIExceptions"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class ApiTypeError(OpenApiException, TypeError):
|
|
23
|
+
def __init__(self, msg, path_to_item=None, valid_classes=None,
|
|
24
|
+
key_type=None) -> None:
|
|
25
|
+
""" Raises an exception for TypeErrors
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
msg (str): the exception message
|
|
29
|
+
|
|
30
|
+
Keyword Args:
|
|
31
|
+
path_to_item (list): a list of keys an indices to get to the
|
|
32
|
+
current_item
|
|
33
|
+
None if unset
|
|
34
|
+
valid_classes (tuple): the primitive classes that current item
|
|
35
|
+
should be an instance of
|
|
36
|
+
None if unset
|
|
37
|
+
key_type (bool): False if our value is a value in a dict
|
|
38
|
+
True if it is a key in a dict
|
|
39
|
+
False if our item is an item in a list
|
|
40
|
+
None if unset
|
|
41
|
+
"""
|
|
42
|
+
self.path_to_item = path_to_item
|
|
43
|
+
self.valid_classes = valid_classes
|
|
44
|
+
self.key_type = key_type
|
|
45
|
+
full_msg = msg
|
|
46
|
+
if path_to_item:
|
|
47
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
48
|
+
super(ApiTypeError, self).__init__(full_msg)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class ApiValueError(OpenApiException, ValueError):
|
|
52
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
|
53
|
+
"""
|
|
54
|
+
Args:
|
|
55
|
+
msg (str): the exception message
|
|
56
|
+
|
|
57
|
+
Keyword Args:
|
|
58
|
+
path_to_item (list) the path to the exception in the
|
|
59
|
+
received_data dict. None if unset
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
self.path_to_item = path_to_item
|
|
63
|
+
full_msg = msg
|
|
64
|
+
if path_to_item:
|
|
65
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
66
|
+
super(ApiValueError, self).__init__(full_msg)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class ApiAttributeError(OpenApiException, AttributeError):
|
|
70
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
|
71
|
+
"""
|
|
72
|
+
Raised when an attribute reference or assignment fails.
|
|
73
|
+
|
|
74
|
+
Args:
|
|
75
|
+
msg (str): the exception message
|
|
76
|
+
|
|
77
|
+
Keyword Args:
|
|
78
|
+
path_to_item (None/list) the path to the exception in the
|
|
79
|
+
received_data dict
|
|
80
|
+
"""
|
|
81
|
+
self.path_to_item = path_to_item
|
|
82
|
+
full_msg = msg
|
|
83
|
+
if path_to_item:
|
|
84
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
85
|
+
super(ApiAttributeError, self).__init__(full_msg)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class ApiKeyError(OpenApiException, KeyError):
|
|
89
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
|
90
|
+
"""
|
|
91
|
+
Args:
|
|
92
|
+
msg (str): the exception message
|
|
93
|
+
|
|
94
|
+
Keyword Args:
|
|
95
|
+
path_to_item (None/list) the path to the exception in the
|
|
96
|
+
received_data dict
|
|
97
|
+
"""
|
|
98
|
+
self.path_to_item = path_to_item
|
|
99
|
+
full_msg = msg
|
|
100
|
+
if path_to_item:
|
|
101
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
102
|
+
super(ApiKeyError, self).__init__(full_msg)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class ApiException(OpenApiException):
|
|
106
|
+
|
|
107
|
+
def __init__(
|
|
108
|
+
self,
|
|
109
|
+
status=None,
|
|
110
|
+
reason=None,
|
|
111
|
+
http_resp=None,
|
|
112
|
+
*,
|
|
113
|
+
body: Optional[str] = None,
|
|
114
|
+
data: Optional[Any] = None,
|
|
115
|
+
) -> None:
|
|
116
|
+
self.status = status
|
|
117
|
+
self.reason = reason
|
|
118
|
+
self.body = body
|
|
119
|
+
self.data = data
|
|
120
|
+
self.headers = None
|
|
121
|
+
|
|
122
|
+
if http_resp:
|
|
123
|
+
if self.status is None:
|
|
124
|
+
self.status = http_resp.status
|
|
125
|
+
if self.reason is None:
|
|
126
|
+
self.reason = http_resp.reason
|
|
127
|
+
if self.body is None:
|
|
128
|
+
try:
|
|
129
|
+
self.body = http_resp.data.decode('utf-8')
|
|
130
|
+
except Exception:
|
|
131
|
+
pass
|
|
132
|
+
self.headers = http_resp.getheaders()
|
|
133
|
+
|
|
134
|
+
@classmethod
|
|
135
|
+
def from_response(
|
|
136
|
+
cls,
|
|
137
|
+
*,
|
|
138
|
+
http_resp,
|
|
139
|
+
body: Optional[str],
|
|
140
|
+
data: Optional[Any],
|
|
141
|
+
) -> Self:
|
|
142
|
+
if http_resp.status == 400:
|
|
143
|
+
raise BadRequestException(http_resp=http_resp, body=body, data=data)
|
|
144
|
+
|
|
145
|
+
if http_resp.status == 401:
|
|
146
|
+
raise UnauthorizedException(http_resp=http_resp, body=body, data=data)
|
|
147
|
+
|
|
148
|
+
if http_resp.status == 403:
|
|
149
|
+
raise ForbiddenException(http_resp=http_resp, body=body, data=data)
|
|
150
|
+
|
|
151
|
+
if http_resp.status == 404:
|
|
152
|
+
raise NotFoundException(http_resp=http_resp, body=body, data=data)
|
|
153
|
+
|
|
154
|
+
if 500 <= http_resp.status <= 599:
|
|
155
|
+
raise ServiceException(http_resp=http_resp, body=body, data=data)
|
|
156
|
+
raise ApiException(http_resp=http_resp, body=body, data=data)
|
|
157
|
+
|
|
158
|
+
def __str__(self):
|
|
159
|
+
"""Custom error messages for exception"""
|
|
160
|
+
error_message = "({0})\n"\
|
|
161
|
+
"Reason: {1}\n".format(self.status, self.reason)
|
|
162
|
+
if self.headers:
|
|
163
|
+
error_message += "HTTP response headers: {0}\n".format(
|
|
164
|
+
self.headers)
|
|
165
|
+
|
|
166
|
+
if self.data or self.body:
|
|
167
|
+
error_message += "HTTP response body: {0}\n".format(self.data or self.body)
|
|
168
|
+
|
|
169
|
+
return error_message
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
class BadRequestException(ApiException):
|
|
173
|
+
pass
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class NotFoundException(ApiException):
|
|
177
|
+
pass
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
class UnauthorizedException(ApiException):
|
|
181
|
+
pass
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
class ForbiddenException(ApiException):
|
|
185
|
+
pass
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
class ServiceException(ApiException):
|
|
189
|
+
pass
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
def render_path(path_to_item):
|
|
193
|
+
"""Returns a string representation of a path"""
|
|
194
|
+
result = ""
|
|
195
|
+
for pth in path_to_item:
|
|
196
|
+
if isinstance(pth, int):
|
|
197
|
+
result += "[{0}]".format(pth)
|
|
198
|
+
else:
|
|
199
|
+
result += "['{0}']".format(pth)
|
|
200
|
+
return result
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
"""
|
|
5
|
+
Pulp 3 API
|
|
6
|
+
|
|
7
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
8
|
+
|
|
9
|
+
The version of the OpenAPI document: v3
|
|
10
|
+
Contact: pulp-list@redhat.com
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# import models into model package
|
|
18
|
+
from services-pulpcore-client.models.access_policy import AccessPolicy
|
|
19
|
+
from services-pulpcore-client.models.access_policy_response import AccessPolicyResponse
|
|
20
|
+
from services-pulpcore-client.models.api_app_status_response import ApiAppStatusResponse
|
|
21
|
+
from services-pulpcore-client.models.artifact_distribution_response import ArtifactDistributionResponse
|
|
22
|
+
from services-pulpcore-client.models.artifact_response import ArtifactResponse
|
|
23
|
+
from services-pulpcore-client.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from services-pulpcore-client.models.composite_content_guard import CompositeContentGuard
|
|
25
|
+
from services-pulpcore-client.models.composite_content_guard_response import CompositeContentGuardResponse
|
|
26
|
+
from services-pulpcore-client.models.content_app_status_response import ContentAppStatusResponse
|
|
27
|
+
from services-pulpcore-client.models.content_guard_response import ContentGuardResponse
|
|
28
|
+
from services-pulpcore-client.models.content_redirect_content_guard import ContentRedirectContentGuard
|
|
29
|
+
from services-pulpcore-client.models.content_redirect_content_guard_response import ContentRedirectContentGuardResponse
|
|
30
|
+
from services-pulpcore-client.models.content_settings_response import ContentSettingsResponse
|
|
31
|
+
from services-pulpcore-client.models.content_summary_response import ContentSummaryResponse
|
|
32
|
+
from services-pulpcore-client.models.database_connection_response import DatabaseConnectionResponse
|
|
33
|
+
from services-pulpcore-client.models.distribution_response import DistributionResponse
|
|
34
|
+
from services-pulpcore-client.models.domain import Domain
|
|
35
|
+
from services-pulpcore-client.models.domain_backend_migrator import DomainBackendMigrator
|
|
36
|
+
from services-pulpcore-client.models.domain_response import DomainResponse
|
|
37
|
+
from services-pulpcore-client.models.evaluation_response import EvaluationResponse
|
|
38
|
+
from services-pulpcore-client.models.filesystem_export import FilesystemExport
|
|
39
|
+
from services-pulpcore-client.models.filesystem_export_response import FilesystemExportResponse
|
|
40
|
+
from services-pulpcore-client.models.filesystem_exporter import FilesystemExporter
|
|
41
|
+
from services-pulpcore-client.models.filesystem_exporter_response import FilesystemExporterResponse
|
|
42
|
+
from services-pulpcore-client.models.generic_remote_response import GenericRemoteResponse
|
|
43
|
+
from services-pulpcore-client.models.generic_remote_response_hidden_fields_inner import GenericRemoteResponseHiddenFieldsInner
|
|
44
|
+
from services-pulpcore-client.models.generic_remote_response_policy_enum import GenericRemoteResponsePolicyEnum
|
|
45
|
+
from services-pulpcore-client.models.group import Group
|
|
46
|
+
from services-pulpcore-client.models.group_progress_report_response import GroupProgressReportResponse
|
|
47
|
+
from services-pulpcore-client.models.group_response import GroupResponse
|
|
48
|
+
from services-pulpcore-client.models.group_role import GroupRole
|
|
49
|
+
from services-pulpcore-client.models.group_role_response import GroupRoleResponse
|
|
50
|
+
from services-pulpcore-client.models.group_user import GroupUser
|
|
51
|
+
from services-pulpcore-client.models.group_user_response import GroupUserResponse
|
|
52
|
+
from services-pulpcore-client.models.header_content_guard import HeaderContentGuard
|
|
53
|
+
from services-pulpcore-client.models.header_content_guard_response import HeaderContentGuardResponse
|
|
54
|
+
from services-pulpcore-client.models.import_response import ImportResponse
|
|
55
|
+
from services-pulpcore-client.models.login_response import LoginResponse
|
|
56
|
+
from services-pulpcore-client.models.method_enum import MethodEnum
|
|
57
|
+
from services-pulpcore-client.models.minimal_task_response import MinimalTaskResponse
|
|
58
|
+
from services-pulpcore-client.models.multiple_artifact_content_response import MultipleArtifactContentResponse
|
|
59
|
+
from services-pulpcore-client.models.my_permissions_response import MyPermissionsResponse
|
|
60
|
+
from services-pulpcore-client.models.nested_open_pgp_public_subkey import NestedOpenPGPPublicSubkey
|
|
61
|
+
from services-pulpcore-client.models.nested_open_pgp_public_subkey_response import NestedOpenPGPPublicSubkeyResponse
|
|
62
|
+
from services-pulpcore-client.models.nested_open_pgp_signature import NestedOpenPGPSignature
|
|
63
|
+
from services-pulpcore-client.models.nested_open_pgp_signature_response import NestedOpenPGPSignatureResponse
|
|
64
|
+
from services-pulpcore-client.models.nested_open_pgp_user_attribute import NestedOpenPGPUserAttribute
|
|
65
|
+
from services-pulpcore-client.models.nested_open_pgp_user_attribute_response import NestedOpenPGPUserAttributeResponse
|
|
66
|
+
from services-pulpcore-client.models.nested_open_pgp_user_id import NestedOpenPGPUserID
|
|
67
|
+
from services-pulpcore-client.models.nested_open_pgp_user_id_response import NestedOpenPGPUserIDResponse
|
|
68
|
+
from services-pulpcore-client.models.nested_role import NestedRole
|
|
69
|
+
from services-pulpcore-client.models.nested_role_response import NestedRoleResponse
|
|
70
|
+
from services-pulpcore-client.models.object_roles_response import ObjectRolesResponse
|
|
71
|
+
from services-pulpcore-client.models.open_pgp_distribution import OpenPGPDistribution
|
|
72
|
+
from services-pulpcore-client.models.open_pgp_distribution_response import OpenPGPDistributionResponse
|
|
73
|
+
from services-pulpcore-client.models.open_pgp_keyring import OpenPGPKeyring
|
|
74
|
+
from services-pulpcore-client.models.open_pgp_keyring_response import OpenPGPKeyringResponse
|
|
75
|
+
from services-pulpcore-client.models.open_pgp_public_key_response import OpenPGPPublicKeyResponse
|
|
76
|
+
from services-pulpcore-client.models.open_pgp_public_subkey_response import OpenPGPPublicSubkeyResponse
|
|
77
|
+
from services-pulpcore-client.models.open_pgp_signature_response import OpenPGPSignatureResponse
|
|
78
|
+
from services-pulpcore-client.models.open_pgp_user_attribute_response import OpenPGPUserAttributeResponse
|
|
79
|
+
from services-pulpcore-client.models.open_pgp_user_id_response import OpenPGPUserIDResponse
|
|
80
|
+
from services-pulpcore-client.models.orphans_cleanup import OrphansCleanup
|
|
81
|
+
from services-pulpcore-client.models.paginated_access_policy_response_list import PaginatedAccessPolicyResponseList
|
|
82
|
+
from services-pulpcore-client.models.paginated_artifact_distribution_response_list import PaginatedArtifactDistributionResponseList
|
|
83
|
+
from services-pulpcore-client.models.paginated_artifact_response_list import PaginatedArtifactResponseList
|
|
84
|
+
from services-pulpcore-client.models.paginated_composite_content_guard_response_list import PaginatedCompositeContentGuardResponseList
|
|
85
|
+
from services-pulpcore-client.models.paginated_content_guard_response_list import PaginatedContentGuardResponseList
|
|
86
|
+
from services-pulpcore-client.models.paginated_content_redirect_content_guard_response_list import PaginatedContentRedirectContentGuardResponseList
|
|
87
|
+
from services-pulpcore-client.models.paginated_distribution_response_list import PaginatedDistributionResponseList
|
|
88
|
+
from services-pulpcore-client.models.paginated_domain_response_list import PaginatedDomainResponseList
|
|
89
|
+
from services-pulpcore-client.models.paginated_filesystem_export_response_list import PaginatedFilesystemExportResponseList
|
|
90
|
+
from services-pulpcore-client.models.paginated_filesystem_exporter_response_list import PaginatedFilesystemExporterResponseList
|
|
91
|
+
from services-pulpcore-client.models.paginated_generic_remote_response_list import PaginatedGenericRemoteResponseList
|
|
92
|
+
from services-pulpcore-client.models.paginated_group_response_list import PaginatedGroupResponseList
|
|
93
|
+
from services-pulpcore-client.models.paginated_group_role_response_list import PaginatedGroupRoleResponseList
|
|
94
|
+
from services-pulpcore-client.models.paginated_group_user_response_list import PaginatedGroupUserResponseList
|
|
95
|
+
from services-pulpcore-client.models.paginated_header_content_guard_response_list import PaginatedHeaderContentGuardResponseList
|
|
96
|
+
from services-pulpcore-client.models.paginated_import_response_list import PaginatedImportResponseList
|
|
97
|
+
from services-pulpcore-client.models.paginated_multiple_artifact_content_response_list import PaginatedMultipleArtifactContentResponseList
|
|
98
|
+
from services-pulpcore-client.models.paginated_open_pgp_distribution_response_list import PaginatedOpenPGPDistributionResponseList
|
|
99
|
+
from services-pulpcore-client.models.paginated_open_pgp_keyring_response_list import PaginatedOpenPGPKeyringResponseList
|
|
100
|
+
from services-pulpcore-client.models.paginated_open_pgp_public_key_response_list import PaginatedOpenPGPPublicKeyResponseList
|
|
101
|
+
from services-pulpcore-client.models.paginated_open_pgp_public_subkey_response_list import PaginatedOpenPGPPublicSubkeyResponseList
|
|
102
|
+
from services-pulpcore-client.models.paginated_open_pgp_signature_response_list import PaginatedOpenPGPSignatureResponseList
|
|
103
|
+
from services-pulpcore-client.models.paginated_open_pgp_user_attribute_response_list import PaginatedOpenPGPUserAttributeResponseList
|
|
104
|
+
from services-pulpcore-client.models.paginated_open_pgp_user_id_response_list import PaginatedOpenPGPUserIDResponseList
|
|
105
|
+
from services-pulpcore-client.models.paginated_publication_response_list import PaginatedPublicationResponseList
|
|
106
|
+
from services-pulpcore-client.models.paginated_pulp_export_response_list import PaginatedPulpExportResponseList
|
|
107
|
+
from services-pulpcore-client.models.paginated_pulp_exporter_response_list import PaginatedPulpExporterResponseList
|
|
108
|
+
from services-pulpcore-client.models.paginated_pulp_importer_response_list import PaginatedPulpImporterResponseList
|
|
109
|
+
from services-pulpcore-client.models.paginated_rbac_content_guard_response_list import PaginatedRBACContentGuardResponseList
|
|
110
|
+
from services-pulpcore-client.models.paginated_repository_response_list import PaginatedRepositoryResponseList
|
|
111
|
+
from services-pulpcore-client.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
|
|
112
|
+
from services-pulpcore-client.models.paginated_role_response_list import PaginatedRoleResponseList
|
|
113
|
+
from services-pulpcore-client.models.paginated_signing_service_response_list import PaginatedSigningServiceResponseList
|
|
114
|
+
from services-pulpcore-client.models.paginated_task_group_response_list import PaginatedTaskGroupResponseList
|
|
115
|
+
from services-pulpcore-client.models.paginated_task_response_list import PaginatedTaskResponseList
|
|
116
|
+
from services-pulpcore-client.models.paginated_task_schedule_response_list import PaginatedTaskScheduleResponseList
|
|
117
|
+
from services-pulpcore-client.models.paginated_upload_response_list import PaginatedUploadResponseList
|
|
118
|
+
from services-pulpcore-client.models.paginated_upstream_pulp_response_list import PaginatedUpstreamPulpResponseList
|
|
119
|
+
from services-pulpcore-client.models.paginated_user_response_list import PaginatedUserResponseList
|
|
120
|
+
from services-pulpcore-client.models.paginated_user_role_response_list import PaginatedUserRoleResponseList
|
|
121
|
+
from services-pulpcore-client.models.paginated_worker_response_list import PaginatedWorkerResponseList
|
|
122
|
+
from services-pulpcore-client.models.patched_access_policy import PatchedAccessPolicy
|
|
123
|
+
from services-pulpcore-client.models.patched_composite_content_guard import PatchedCompositeContentGuard
|
|
124
|
+
from services-pulpcore-client.models.patched_content_redirect_content_guard import PatchedContentRedirectContentGuard
|
|
125
|
+
from services-pulpcore-client.models.patched_domain import PatchedDomain
|
|
126
|
+
from services-pulpcore-client.models.patched_filesystem_exporter import PatchedFilesystemExporter
|
|
127
|
+
from services-pulpcore-client.models.patched_group import PatchedGroup
|
|
128
|
+
from services-pulpcore-client.models.patched_header_content_guard import PatchedHeaderContentGuard
|
|
129
|
+
from services-pulpcore-client.models.patched_open_pgp_distribution import PatchedOpenPGPDistribution
|
|
130
|
+
from services-pulpcore-client.models.patched_open_pgp_keyring import PatchedOpenPGPKeyring
|
|
131
|
+
from services-pulpcore-client.models.patched_pulp_exporter import PatchedPulpExporter
|
|
132
|
+
from services-pulpcore-client.models.patched_pulp_importer import PatchedPulpImporter
|
|
133
|
+
from services-pulpcore-client.models.patched_rbac_content_guard import PatchedRBACContentGuard
|
|
134
|
+
from services-pulpcore-client.models.patched_role import PatchedRole
|
|
135
|
+
from services-pulpcore-client.models.patched_task_cancel import PatchedTaskCancel
|
|
136
|
+
from services-pulpcore-client.models.patched_upstream_pulp import PatchedUpstreamPulp
|
|
137
|
+
from services-pulpcore-client.models.patched_user import PatchedUser
|
|
138
|
+
from services-pulpcore-client.models.policy357_enum import Policy357Enum
|
|
139
|
+
from services-pulpcore-client.models.profile_artifact_response import ProfileArtifactResponse
|
|
140
|
+
from services-pulpcore-client.models.progress_report_response import ProgressReportResponse
|
|
141
|
+
from services-pulpcore-client.models.publication_response import PublicationResponse
|
|
142
|
+
from services-pulpcore-client.models.pulp_export import PulpExport
|
|
143
|
+
from services-pulpcore-client.models.pulp_export_response import PulpExportResponse
|
|
144
|
+
from services-pulpcore-client.models.pulp_exporter import PulpExporter
|
|
145
|
+
from services-pulpcore-client.models.pulp_exporter_response import PulpExporterResponse
|
|
146
|
+
from services-pulpcore-client.models.pulp_import import PulpImport
|
|
147
|
+
from services-pulpcore-client.models.pulp_import_check import PulpImportCheck
|
|
148
|
+
from services-pulpcore-client.models.pulp_import_check_response import PulpImportCheckResponse
|
|
149
|
+
from services-pulpcore-client.models.pulp_importer import PulpImporter
|
|
150
|
+
from services-pulpcore-client.models.pulp_importer_response import PulpImporterResponse
|
|
151
|
+
from services-pulpcore-client.models.purge import Purge
|
|
152
|
+
from services-pulpcore-client.models.rbac_content_guard import RBACContentGuard
|
|
153
|
+
from services-pulpcore-client.models.rbac_content_guard_response import RBACContentGuardResponse
|
|
154
|
+
from services-pulpcore-client.models.reclaim_space import ReclaimSpace
|
|
155
|
+
from services-pulpcore-client.models.redis_connection_response import RedisConnectionResponse
|
|
156
|
+
from services-pulpcore-client.models.repair import Repair
|
|
157
|
+
from services-pulpcore-client.models.repository_add_remove_content import RepositoryAddRemoveContent
|
|
158
|
+
from services-pulpcore-client.models.repository_response import RepositoryResponse
|
|
159
|
+
from services-pulpcore-client.models.repository_version_response import RepositoryVersionResponse
|
|
160
|
+
from services-pulpcore-client.models.role import Role
|
|
161
|
+
from services-pulpcore-client.models.role_response import RoleResponse
|
|
162
|
+
from services-pulpcore-client.models.set_label import SetLabel
|
|
163
|
+
from services-pulpcore-client.models.set_label_response import SetLabelResponse
|
|
164
|
+
from services-pulpcore-client.models.signing_service_response import SigningServiceResponse
|
|
165
|
+
from services-pulpcore-client.models.states_enum import StatesEnum
|
|
166
|
+
from services-pulpcore-client.models.status_response import StatusResponse
|
|
167
|
+
from services-pulpcore-client.models.storage_class_enum import StorageClassEnum
|
|
168
|
+
from services-pulpcore-client.models.storage_response import StorageResponse
|
|
169
|
+
from services-pulpcore-client.models.task_group_operation_response import TaskGroupOperationResponse
|
|
170
|
+
from services-pulpcore-client.models.task_group_response import TaskGroupResponse
|
|
171
|
+
from services-pulpcore-client.models.task_response import TaskResponse
|
|
172
|
+
from services-pulpcore-client.models.task_schedule_response import TaskScheduleResponse
|
|
173
|
+
from services-pulpcore-client.models.unset_label import UnsetLabel
|
|
174
|
+
from services-pulpcore-client.models.unset_label_response import UnsetLabelResponse
|
|
175
|
+
from services-pulpcore-client.models.upload import Upload
|
|
176
|
+
from services-pulpcore-client.models.upload_chunk_response import UploadChunkResponse
|
|
177
|
+
from services-pulpcore-client.models.upload_commit import UploadCommit
|
|
178
|
+
from services-pulpcore-client.models.upload_detail_response import UploadDetailResponse
|
|
179
|
+
from services-pulpcore-client.models.upload_response import UploadResponse
|
|
180
|
+
from services-pulpcore-client.models.upstream_pulp import UpstreamPulp
|
|
181
|
+
from services-pulpcore-client.models.upstream_pulp_response import UpstreamPulpResponse
|
|
182
|
+
from services-pulpcore-client.models.user import User
|
|
183
|
+
from services-pulpcore-client.models.user_group import UserGroup
|
|
184
|
+
from services-pulpcore-client.models.user_group_response import UserGroupResponse
|
|
185
|
+
from services-pulpcore-client.models.user_response import UserResponse
|
|
186
|
+
from services-pulpcore-client.models.user_role import UserRole
|
|
187
|
+
from services-pulpcore-client.models.user_role_response import UserRoleResponse
|
|
188
|
+
from services-pulpcore-client.models.version_response import VersionResponse
|
|
189
|
+
from services-pulpcore-client.models.worker_response import WorkerResponse
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Pulp 3 API
|
|
5
|
+
|
|
6
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v3
|
|
9
|
+
Contact: pulp-list@redhat.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class AccessPolicy(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
Serializer for AccessPolicy.
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
permissions_assignment: Optional[List[Dict[str, Any]]] = Field(default=None, description="List of callables that define the new permissions to be created for new objects.This is deprecated. Use `creation_hooks` instead.")
|
|
31
|
+
creation_hooks: Optional[List[Dict[str, Any]]] = Field(default=None, description="List of callables that may associate user roles for new objects.")
|
|
32
|
+
statements: List[Dict[str, Any]] = Field(description="List of policy statements defining the policy.")
|
|
33
|
+
queryset_scoping: Optional[Dict[str, Any]] = Field(default=None, description="A callable for performing queryset scoping. See plugin documentation for valid callables. Set to blank to turn off queryset scoping.")
|
|
34
|
+
__properties: ClassVar[List[str]] = ["permissions_assignment", "creation_hooks", "statements", "queryset_scoping"]
|
|
35
|
+
|
|
36
|
+
model_config = ConfigDict(
|
|
37
|
+
populate_by_name=True,
|
|
38
|
+
validate_assignment=True,
|
|
39
|
+
protected_namespaces=(),
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def to_str(self) -> str:
|
|
44
|
+
"""Returns the string representation of the model using alias"""
|
|
45
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
46
|
+
|
|
47
|
+
def to_json(self) -> str:
|
|
48
|
+
"""Returns the JSON representation of the model using alias"""
|
|
49
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
50
|
+
return json.dumps(self.to_dict())
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
54
|
+
"""Create an instance of AccessPolicy from a JSON string"""
|
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
|
56
|
+
|
|
57
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
58
|
+
"""Return the dictionary representation of the model using alias.
|
|
59
|
+
|
|
60
|
+
This has the following differences from calling pydantic's
|
|
61
|
+
`self.model_dump(by_alias=True)`:
|
|
62
|
+
|
|
63
|
+
* `None` is only added to the output dict for nullable fields that
|
|
64
|
+
were set at model initialization. Other fields with value `None`
|
|
65
|
+
are ignored.
|
|
66
|
+
"""
|
|
67
|
+
excluded_fields: Set[str] = set([
|
|
68
|
+
])
|
|
69
|
+
|
|
70
|
+
_dict = self.model_dump(
|
|
71
|
+
by_alias=True,
|
|
72
|
+
exclude=excluded_fields,
|
|
73
|
+
exclude_none=True,
|
|
74
|
+
)
|
|
75
|
+
return _dict
|
|
76
|
+
|
|
77
|
+
@classmethod
|
|
78
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
79
|
+
"""Create an instance of AccessPolicy from a dict"""
|
|
80
|
+
if obj is None:
|
|
81
|
+
return None
|
|
82
|
+
|
|
83
|
+
if not isinstance(obj, dict):
|
|
84
|
+
return cls.model_validate(obj)
|
|
85
|
+
|
|
86
|
+
_obj = cls.model_validate({
|
|
87
|
+
"permissions_assignment": obj.get("permissions_assignment"),
|
|
88
|
+
"creation_hooks": obj.get("creation_hooks"),
|
|
89
|
+
"statements": obj.get("statements"),
|
|
90
|
+
"queryset_scoping": obj.get("queryset_scoping")
|
|
91
|
+
})
|
|
92
|
+
return _obj
|
|
93
|
+
|
|
94
|
+
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Pulp 3 API
|
|
5
|
+
|
|
6
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v3
|
|
9
|
+
Contact: pulp-list@redhat.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from datetime import datetime
|
|
22
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
|
23
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
24
|
+
from typing import Optional, Set
|
|
25
|
+
from typing_extensions import Self
|
|
26
|
+
|
|
27
|
+
class AccessPolicyResponse(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
Serializer for AccessPolicy.
|
|
30
|
+
""" # noqa: E501
|
|
31
|
+
pulp_href: Optional[StrictStr] = None
|
|
32
|
+
prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
|
|
33
|
+
pulp_created: Optional[datetime] = Field(default=None, description="Timestamp of creation.")
|
|
34
|
+
pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.")
|
|
35
|
+
permissions_assignment: Optional[List[Dict[str, Any]]] = Field(default=None, description="List of callables that define the new permissions to be created for new objects.This is deprecated. Use `creation_hooks` instead.")
|
|
36
|
+
creation_hooks: Optional[List[Dict[str, Any]]] = Field(default=None, description="List of callables that may associate user roles for new objects.")
|
|
37
|
+
statements: List[Dict[str, Any]] = Field(description="List of policy statements defining the policy.")
|
|
38
|
+
viewset_name: Optional[StrictStr] = Field(default=None, description="The name of ViewSet this AccessPolicy authorizes.")
|
|
39
|
+
customized: Optional[StrictBool] = Field(default=None, description="True if the AccessPolicy has been user-modified. False otherwise.")
|
|
40
|
+
queryset_scoping: Optional[Dict[str, Any]] = Field(default=None, description="A callable for performing queryset scoping. See plugin documentation for valid callables. Set to blank to turn off queryset scoping.")
|
|
41
|
+
__properties: ClassVar[List[str]] = ["pulp_href", "prn", "pulp_created", "pulp_last_updated", "permissions_assignment", "creation_hooks", "statements", "viewset_name", "customized", "queryset_scoping"]
|
|
42
|
+
|
|
43
|
+
model_config = ConfigDict(
|
|
44
|
+
populate_by_name=True,
|
|
45
|
+
validate_assignment=True,
|
|
46
|
+
protected_namespaces=(),
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def to_str(self) -> str:
|
|
51
|
+
"""Returns the string representation of the model using alias"""
|
|
52
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
53
|
+
|
|
54
|
+
def to_json(self) -> str:
|
|
55
|
+
"""Returns the JSON representation of the model using alias"""
|
|
56
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
57
|
+
return json.dumps(self.to_dict())
|
|
58
|
+
|
|
59
|
+
@classmethod
|
|
60
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
61
|
+
"""Create an instance of AccessPolicyResponse from a JSON string"""
|
|
62
|
+
return cls.from_dict(json.loads(json_str))
|
|
63
|
+
|
|
64
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
65
|
+
"""Return the dictionary representation of the model using alias.
|
|
66
|
+
|
|
67
|
+
This has the following differences from calling pydantic's
|
|
68
|
+
`self.model_dump(by_alias=True)`:
|
|
69
|
+
|
|
70
|
+
* `None` is only added to the output dict for nullable fields that
|
|
71
|
+
were set at model initialization. Other fields with value `None`
|
|
72
|
+
are ignored.
|
|
73
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
74
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
75
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
76
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
77
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
78
|
+
* OpenAPI `readOnly` fields are excluded.
|
|
79
|
+
"""
|
|
80
|
+
excluded_fields: Set[str] = set([
|
|
81
|
+
"pulp_href",
|
|
82
|
+
"prn",
|
|
83
|
+
"pulp_created",
|
|
84
|
+
"pulp_last_updated",
|
|
85
|
+
"viewset_name",
|
|
86
|
+
"customized",
|
|
87
|
+
])
|
|
88
|
+
|
|
89
|
+
_dict = self.model_dump(
|
|
90
|
+
by_alias=True,
|
|
91
|
+
exclude=excluded_fields,
|
|
92
|
+
exclude_none=True,
|
|
93
|
+
)
|
|
94
|
+
return _dict
|
|
95
|
+
|
|
96
|
+
@classmethod
|
|
97
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
98
|
+
"""Create an instance of AccessPolicyResponse from a dict"""
|
|
99
|
+
if obj is None:
|
|
100
|
+
return None
|
|
101
|
+
|
|
102
|
+
if not isinstance(obj, dict):
|
|
103
|
+
return cls.model_validate(obj)
|
|
104
|
+
|
|
105
|
+
_obj = cls.model_validate({
|
|
106
|
+
"pulp_href": obj.get("pulp_href"),
|
|
107
|
+
"prn": obj.get("prn"),
|
|
108
|
+
"pulp_created": obj.get("pulp_created"),
|
|
109
|
+
"pulp_last_updated": obj.get("pulp_last_updated"),
|
|
110
|
+
"permissions_assignment": obj.get("permissions_assignment"),
|
|
111
|
+
"creation_hooks": obj.get("creation_hooks"),
|
|
112
|
+
"statements": obj.get("statements"),
|
|
113
|
+
"viewset_name": obj.get("viewset_name"),
|
|
114
|
+
"customized": obj.get("customized"),
|
|
115
|
+
"queryset_scoping": obj.get("queryset_scoping")
|
|
116
|
+
})
|
|
117
|
+
return _obj
|
|
118
|
+
|
|
119
|
+
|