crc-pulp-file-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-pulp-file-client might be problematic. Click here for more details.
- crc-pulp_file-client/__init__.py +2 -0
- crc-pulp_file-client/api/__init__.py +11 -0
- crc-pulp_file-client/api/acs_file_api.py +3689 -0
- crc-pulp_file-client/api/content_files_api.py +2088 -0
- crc-pulp_file-client/api/distributions_file_api.py +4186 -0
- crc-pulp_file-client/api/publications_file_api.py +2881 -0
- crc-pulp_file-client/api/remotes_file_api.py +4214 -0
- crc-pulp_file-client/api/repositories_file_api.py +4856 -0
- crc-pulp_file-client/api/repositories_file_versions_api.py +1670 -0
- crc-pulp_file-client/api_client.py +798 -0
- crc-pulp_file-client/api_response.py +21 -0
- crc-pulp_file-client/configuration.py +628 -0
- crc-pulp_file-client/exceptions.py +200 -0
- crc-pulp_file-client/models/__init__.py +56 -0
- crc-pulp_file-client/models/async_operation_response.py +88 -0
- crc-pulp_file-client/models/content_summary_response.py +92 -0
- crc-pulp_file-client/models/file_file_alternate_content_source.py +101 -0
- crc-pulp_file-client/models/file_file_alternate_content_source_response.py +116 -0
- crc-pulp_file-client/models/file_file_content_response.py +133 -0
- crc-pulp_file-client/models/file_file_distribution.py +118 -0
- crc-pulp_file-client/models/file_file_distribution_response.py +142 -0
- crc-pulp_file-client/models/file_file_publication.py +100 -0
- crc-pulp_file-client/models/file_file_publication_response.py +120 -0
- crc-pulp_file-client/models/file_file_remote.py +205 -0
- crc-pulp_file-client/models/file_file_remote_response.py +199 -0
- crc-pulp_file-client/models/file_file_remote_response_hidden_fields_inner.py +90 -0
- crc-pulp_file-client/models/file_file_repository.py +121 -0
- crc-pulp_file-client/models/file_file_repository_response.py +146 -0
- crc-pulp_file-client/models/my_permissions_response.py +88 -0
- crc-pulp_file-client/models/nested_role.py +93 -0
- crc-pulp_file-client/models/nested_role_response.py +92 -0
- crc-pulp_file-client/models/object_roles_response.py +96 -0
- crc-pulp_file-client/models/paginated_repository_version_response_list.py +112 -0
- crc-pulp_file-client/models/paginatedfile_file_alternate_content_source_response_list.py +112 -0
- crc-pulp_file-client/models/paginatedfile_file_content_response_list.py +112 -0
- crc-pulp_file-client/models/paginatedfile_file_distribution_response_list.py +112 -0
- crc-pulp_file-client/models/paginatedfile_file_publication_response_list.py +112 -0
- crc-pulp_file-client/models/paginatedfile_file_remote_response_list.py +112 -0
- crc-pulp_file-client/models/paginatedfile_file_repository_response_list.py +112 -0
- crc-pulp_file-client/models/patchedfile_file_alternate_content_source.py +101 -0
- crc-pulp_file-client/models/patchedfile_file_distribution.py +118 -0
- crc-pulp_file-client/models/patchedfile_file_remote.py +205 -0
- crc-pulp_file-client/models/patchedfile_file_repository.py +121 -0
- crc-pulp_file-client/models/policy_enum.py +39 -0
- crc-pulp_file-client/models/repair.py +88 -0
- crc-pulp_file-client/models/repository_add_remove_content.py +93 -0
- crc-pulp_file-client/models/repository_sync_url.py +90 -0
- crc-pulp_file-client/models/repository_version_response.py +121 -0
- crc-pulp_file-client/models/set_label.py +103 -0
- crc-pulp_file-client/models/set_label_response.py +103 -0
- crc-pulp_file-client/models/task_group_operation_response.py +88 -0
- crc-pulp_file-client/models/unset_label.py +96 -0
- crc-pulp_file-client/models/unset_label_response.py +100 -0
- crc-pulp_file-client/py.typed +0 -0
- crc-pulp_file-client/rest.py +258 -0
- crc_pulp_file_client-20250819.1.dist-info/METADATA +25 -0
- crc_pulp_file_client-20250819.1.dist-info/RECORD +114 -0
- crc_pulp_file_client-20250819.1.dist-info/WHEEL +5 -0
- crc_pulp_file_client-20250819.1.dist-info/top_level.txt +2 -0
- services-pulp_file-client/__init__.py +2 -0
- services-pulp_file-client/api/__init__.py +11 -0
- services-pulp_file-client/api/acs_file_api.py +3689 -0
- services-pulp_file-client/api/content_files_api.py +2088 -0
- services-pulp_file-client/api/distributions_file_api.py +4186 -0
- services-pulp_file-client/api/publications_file_api.py +2881 -0
- services-pulp_file-client/api/remotes_file_api.py +4214 -0
- services-pulp_file-client/api/repositories_file_api.py +4856 -0
- services-pulp_file-client/api/repositories_file_versions_api.py +1670 -0
- services-pulp_file-client/api_client.py +798 -0
- services-pulp_file-client/api_response.py +21 -0
- services-pulp_file-client/configuration.py +628 -0
- services-pulp_file-client/exceptions.py +200 -0
- services-pulp_file-client/models/__init__.py +56 -0
- services-pulp_file-client/models/async_operation_response.py +88 -0
- services-pulp_file-client/models/content_summary_response.py +92 -0
- services-pulp_file-client/models/file_file_alternate_content_source.py +101 -0
- services-pulp_file-client/models/file_file_alternate_content_source_response.py +116 -0
- services-pulp_file-client/models/file_file_content_response.py +133 -0
- services-pulp_file-client/models/file_file_distribution.py +118 -0
- services-pulp_file-client/models/file_file_distribution_response.py +142 -0
- services-pulp_file-client/models/file_file_publication.py +100 -0
- services-pulp_file-client/models/file_file_publication_response.py +120 -0
- services-pulp_file-client/models/file_file_remote.py +205 -0
- services-pulp_file-client/models/file_file_remote_response.py +199 -0
- services-pulp_file-client/models/file_file_remote_response_hidden_fields_inner.py +90 -0
- services-pulp_file-client/models/file_file_repository.py +121 -0
- services-pulp_file-client/models/file_file_repository_response.py +146 -0
- services-pulp_file-client/models/my_permissions_response.py +88 -0
- services-pulp_file-client/models/nested_role.py +93 -0
- services-pulp_file-client/models/nested_role_response.py +92 -0
- services-pulp_file-client/models/object_roles_response.py +96 -0
- services-pulp_file-client/models/paginated_repository_version_response_list.py +112 -0
- services-pulp_file-client/models/paginatedfile_file_alternate_content_source_response_list.py +112 -0
- services-pulp_file-client/models/paginatedfile_file_content_response_list.py +112 -0
- services-pulp_file-client/models/paginatedfile_file_distribution_response_list.py +112 -0
- services-pulp_file-client/models/paginatedfile_file_publication_response_list.py +112 -0
- services-pulp_file-client/models/paginatedfile_file_remote_response_list.py +112 -0
- services-pulp_file-client/models/paginatedfile_file_repository_response_list.py +112 -0
- services-pulp_file-client/models/patchedfile_file_alternate_content_source.py +101 -0
- services-pulp_file-client/models/patchedfile_file_distribution.py +118 -0
- services-pulp_file-client/models/patchedfile_file_remote.py +205 -0
- services-pulp_file-client/models/patchedfile_file_repository.py +121 -0
- services-pulp_file-client/models/policy_enum.py +39 -0
- services-pulp_file-client/models/repair.py +88 -0
- services-pulp_file-client/models/repository_add_remove_content.py +93 -0
- services-pulp_file-client/models/repository_sync_url.py +90 -0
- services-pulp_file-client/models/repository_version_response.py +121 -0
- services-pulp_file-client/models/set_label.py +103 -0
- services-pulp_file-client/models/set_label_response.py +103 -0
- services-pulp_file-client/models/task_group_operation_response.py +88 -0
- services-pulp_file-client/models/unset_label.py +96 -0
- services-pulp_file-client/models/unset_label_response.py +100 -0
- services-pulp_file-client/py.typed +0 -0
- services-pulp_file-client/rest.py +258 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from crc-pulp_file-client.api.acs_file_api import AcsFileApi
|
|
5
|
+
from crc-pulp_file-client.api.content_files_api import ContentFilesApi
|
|
6
|
+
from crc-pulp_file-client.api.distributions_file_api import DistributionsFileApi
|
|
7
|
+
from crc-pulp_file-client.api.publications_file_api import PublicationsFileApi
|
|
8
|
+
from crc-pulp_file-client.api.remotes_file_api import RemotesFileApi
|
|
9
|
+
from crc-pulp_file-client.api.repositories_file_api import RepositoriesFileApi
|
|
10
|
+
from crc-pulp_file-client.api.repositories_file_versions_api import RepositoriesFileVersionsApi
|
|
11
|
+
|