crc-pulp-gem-client 20251111.1__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_gem_client-20251111.1/PKG-INFO +6742 -0
- crc_pulp_gem_client-20251111.1/README.md +238 -0
- crc_pulp_gem_client-20251111.1/crc_pulp_gem_client.egg-info/PKG-INFO +6742 -0
- crc_pulp_gem_client-20251111.1/crc_pulp_gem_client.egg-info/SOURCES.txt +100 -0
- crc_pulp_gem_client-20251111.1/crc_pulp_gem_client.egg-info/dependency_links.txt +1 -0
- crc_pulp_gem_client-20251111.1/crc_pulp_gem_client.egg-info/requires.txt +4 -0
- crc_pulp_gem_client-20251111.1/crc_pulp_gem_client.egg-info/top_level.txt +1 -0
- crc_pulp_gem_client-20251111.1/pulpcore/__init__.py +2 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/__init__.py +2 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/__init__.py +73 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/__init__.py +10 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/content_gem_api.py +1923 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/distributions_gem_api.py +4192 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/publications_gem_api.py +2881 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/remotes_gem_api.py +4220 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/repositories_gem_api.py +4862 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api/repositories_gem_versions_api.py +1670 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api_client.py +798 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/api_response.py +21 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/configuration.py +628 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/exceptions.py +200 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/__init__.py +51 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/async_operation_response.py +88 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/content_summary_response.py +92 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_content_response.py +145 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_distribution.py +123 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_distribution_response.py +147 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_publication.py +90 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_publication_response.py +107 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_remote.py +221 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_remote_response.py +215 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_remote_response_hidden_fields_inner.py +90 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_repository.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/gem_gem_repository_response.py +137 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/my_permissions_response.py +88 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/nested_role.py +93 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/nested_role_response.py +92 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/object_roles_response.py +96 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/paginated_repository_version_response_list.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/paginatedgem_gem_content_response_list.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/paginatedgem_gem_distribution_response_list.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/paginatedgem_gem_publication_response_list.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/paginatedgem_gem_remote_response_list.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/paginatedgem_gem_repository_response_list.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/patchedgem_gem_distribution.py +123 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/patchedgem_gem_remote.py +221 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/patchedgem_gem_repository.py +112 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/policy_enum.py +39 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/repair.py +88 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/repository_add_remove_content.py +93 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/repository_sync_url.py +90 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/repository_version_response.py +125 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/set_label.py +103 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/set_label_response.py +103 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/unset_label.py +96 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/models/unset_label_response.py +100 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/py.typed +0 -0
- crc_pulp_gem_client-20251111.1/pulpcore/client/pulp_gem/rest.py +258 -0
- crc_pulp_gem_client-20251111.1/pyproject.toml +89 -0
- crc_pulp_gem_client-20251111.1/setup.cfg +7 -0
- crc_pulp_gem_client-20251111.1/setup.py +53 -0
- crc_pulp_gem_client-20251111.1/test/test_async_operation_response.py +53 -0
- crc_pulp_gem_client-20251111.1/test/test_content_gem_api.py +67 -0
- crc_pulp_gem_client-20251111.1/test/test_content_summary_response.py +69 -0
- crc_pulp_gem_client-20251111.1/test/test_distributions_gem_api.py +116 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_content_response.py +71 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_distribution.py +63 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_distribution_response.py +69 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_publication.py +53 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_publication_response.py +57 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_remote.py +85 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_remote_response.py +89 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_remote_response_hidden_fields_inner.py +55 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_repository.py +59 -0
- crc_pulp_gem_client-20251111.1/test/test_gem_gem_repository_response.py +65 -0
- crc_pulp_gem_client-20251111.1/test/test_my_permissions_response.py +57 -0
- crc_pulp_gem_client-20251111.1/test/test_nested_role.py +59 -0
- crc_pulp_gem_client-20251111.1/test/test_nested_role_response.py +59 -0
- crc_pulp_gem_client-20251111.1/test/test_object_roles_response.py +71 -0
- crc_pulp_gem_client-20251111.1/test/test_paginated_repository_version_response_list.py +79 -0
- crc_pulp_gem_client-20251111.1/test/test_paginatedgem_gem_content_response_list.py +99 -0
- crc_pulp_gem_client-20251111.1/test/test_paginatedgem_gem_distribution_response_list.py +93 -0
- crc_pulp_gem_client-20251111.1/test/test_paginatedgem_gem_publication_response_list.py +73 -0
- crc_pulp_gem_client-20251111.1/test/test_paginatedgem_gem_remote_response_list.py +133 -0
- crc_pulp_gem_client-20251111.1/test/test_paginatedgem_gem_repository_response_list.py +87 -0
- crc_pulp_gem_client-20251111.1/test/test_patchedgem_gem_distribution.py +61 -0
- crc_pulp_gem_client-20251111.1/test/test_patchedgem_gem_remote.py +83 -0
- crc_pulp_gem_client-20251111.1/test/test_patchedgem_gem_repository.py +58 -0
- crc_pulp_gem_client-20251111.1/test/test_policy_enum.py +34 -0
- crc_pulp_gem_client-20251111.1/test/test_publications_gem_api.py +88 -0
- crc_pulp_gem_client-20251111.1/test/test_remotes_gem_api.py +116 -0
- crc_pulp_gem_client-20251111.1/test/test_repair.py +52 -0
- crc_pulp_gem_client-20251111.1/test/test_repositories_gem_api.py +130 -0
- crc_pulp_gem_client-20251111.1/test/test_repositories_gem_versions_api.py +59 -0
- crc_pulp_gem_client-20251111.1/test/test_repository_add_remove_content.py +58 -0
- crc_pulp_gem_client-20251111.1/test/test_repository_sync_url.py +53 -0
- crc_pulp_gem_client-20251111.1/test/test_repository_version_response.py +69 -0
- crc_pulp_gem_client-20251111.1/test/test_set_label.py +55 -0
- crc_pulp_gem_client-20251111.1/test/test_set_label_response.py +55 -0
- crc_pulp_gem_client-20251111.1/test/test_unset_label.py +53 -0
- crc_pulp_gem_client-20251111.1/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.