crc-pulp-file-client 20251104.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.
- crc_pulp_file_client-20251104.2/PKG-INFO +8013 -0
- crc_pulp_file_client-20251104.2/README.md +251 -0
- crc_pulp_file_client-20251104.2/crc_pulp_file_client.egg-info/PKG-INFO +8013 -0
- crc_pulp_file_client-20251104.2/crc_pulp_file_client.egg-info/SOURCES.txt +112 -0
- crc_pulp_file_client-20251104.2/crc_pulp_file_client.egg-info/dependency_links.txt +1 -0
- crc_pulp_file_client-20251104.2/crc_pulp_file_client.egg-info/requires.txt +4 -0
- crc_pulp_file_client-20251104.2/crc_pulp_file_client.egg-info/top_level.txt +1 -0
- crc_pulp_file_client-20251104.2/pulpcore/__init__.py +2 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/__init__.py +2 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/__init__.py +79 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/__init__.py +11 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/acs_file_api.py +3695 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/content_files_api.py +2088 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/distributions_file_api.py +4192 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/publications_file_api.py +2881 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/remotes_file_api.py +4220 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/repositories_file_api.py +4862 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api/repositories_file_versions_api.py +1670 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api_client.py +798 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/api_response.py +21 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/configuration.py +628 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/exceptions.py +200 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/__init__.py +56 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/async_operation_response.py +88 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/content_summary_response.py +92 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_alternate_content_source.py +101 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_alternate_content_source_response.py +116 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_content_response.py +137 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_distribution.py +118 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_distribution_response.py +142 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_publication.py +100 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_publication_response.py +120 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_remote.py +205 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_remote_response.py +199 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_remote_response_hidden_fields_inner.py +90 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_repository.py +121 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/file_file_repository_response.py +146 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/my_permissions_response.py +88 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/nested_role.py +93 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/nested_role_response.py +92 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/object_roles_response.py +96 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginated_repository_version_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginatedfile_file_alternate_content_source_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginatedfile_file_content_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginatedfile_file_distribution_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginatedfile_file_publication_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginatedfile_file_remote_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/paginatedfile_file_repository_response_list.py +112 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/patchedfile_file_alternate_content_source.py +101 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/patchedfile_file_distribution.py +118 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/patchedfile_file_remote.py +205 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/patchedfile_file_repository.py +121 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/policy_enum.py +39 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/repair.py +88 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/repository_add_remove_content.py +93 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/repository_sync_url.py +90 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/repository_version_response.py +125 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/set_label.py +103 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/set_label_response.py +103 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/task_group_operation_response.py +88 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/unset_label.py +96 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/models/unset_label_response.py +100 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/py.typed +0 -0
- crc_pulp_file_client-20251104.2/pulpcore/client/pulp_file/rest.py +258 -0
- crc_pulp_file_client-20251104.2/pyproject.toml +89 -0
- crc_pulp_file_client-20251104.2/setup.cfg +7 -0
- crc_pulp_file_client-20251104.2/setup.py +53 -0
- crc_pulp_file_client-20251104.2/test/test_acs_file_api.py +109 -0
- crc_pulp_file_client-20251104.2/test/test_async_operation_response.py +53 -0
- crc_pulp_file_client-20251104.2/test/test_content_files_api.py +67 -0
- crc_pulp_file_client-20251104.2/test/test_content_summary_response.py +69 -0
- crc_pulp_file_client-20251104.2/test/test_distributions_file_api.py +116 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_alternate_content_source.py +59 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_alternate_content_source_response.py +63 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_content_response.py +68 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_distribution.py +63 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_distribution_response.py +69 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_publication.py +55 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_publication_response.py +62 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_remote.py +78 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_remote_response.py +82 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_remote_response_hidden_fields_inner.py +55 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_repository.py +61 -0
- crc_pulp_file_client-20251104.2/test/test_file_file_repository_response.py +67 -0
- crc_pulp_file_client-20251104.2/test/test_my_permissions_response.py +57 -0
- crc_pulp_file_client-20251104.2/test/test_nested_role.py +59 -0
- crc_pulp_file_client-20251104.2/test/test_nested_role_response.py +59 -0
- crc_pulp_file_client-20251104.2/test/test_object_roles_response.py +71 -0
- crc_pulp_file_client-20251104.2/test/test_paginated_repository_version_response_list.py +79 -0
- crc_pulp_file_client-20251104.2/test/test_paginatedfile_file_alternate_content_source_response_list.py +81 -0
- crc_pulp_file_client-20251104.2/test/test_paginatedfile_file_content_response_list.py +93 -0
- crc_pulp_file_client-20251104.2/test/test_paginatedfile_file_distribution_response_list.py +93 -0
- crc_pulp_file_client-20251104.2/test/test_paginatedfile_file_publication_response_list.py +83 -0
- crc_pulp_file_client-20251104.2/test/test_paginatedfile_file_remote_response_list.py +119 -0
- crc_pulp_file_client-20251104.2/test/test_paginatedfile_file_repository_response_list.py +91 -0
- crc_pulp_file_client-20251104.2/test/test_patchedfile_file_alternate_content_source.py +57 -0
- crc_pulp_file_client-20251104.2/test/test_patchedfile_file_distribution.py +61 -0
- crc_pulp_file_client-20251104.2/test/test_patchedfile_file_remote.py +76 -0
- crc_pulp_file_client-20251104.2/test/test_patchedfile_file_repository.py +60 -0
- crc_pulp_file_client-20251104.2/test/test_policy_enum.py +34 -0
- crc_pulp_file_client-20251104.2/test/test_publications_file_api.py +88 -0
- crc_pulp_file_client-20251104.2/test/test_remotes_file_api.py +116 -0
- crc_pulp_file_client-20251104.2/test/test_repair.py +52 -0
- crc_pulp_file_client-20251104.2/test/test_repositories_file_api.py +130 -0
- crc_pulp_file_client-20251104.2/test/test_repositories_file_versions_api.py +59 -0
- crc_pulp_file_client-20251104.2/test/test_repository_add_remove_content.py +58 -0
- crc_pulp_file_client-20251104.2/test/test_repository_sync_url.py +53 -0
- crc_pulp_file_client-20251104.2/test/test_repository_version_response.py +69 -0
- crc_pulp_file_client-20251104.2/test/test_set_label.py +55 -0
- crc_pulp_file_client-20251104.2/test/test_set_label_response.py +55 -0
- crc_pulp_file_client-20251104.2/test/test_task_group_operation_response.py +53 -0
- crc_pulp_file_client-20251104.2/test/test_unset_label.py +53 -0
- crc_pulp_file_client-20251104.2/test/test_unset_label_response.py +54 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.