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.

Files changed (114) hide show
  1. crc-pulp_file-client/__init__.py +2 -0
  2. crc-pulp_file-client/api/__init__.py +11 -0
  3. crc-pulp_file-client/api/acs_file_api.py +3689 -0
  4. crc-pulp_file-client/api/content_files_api.py +2088 -0
  5. crc-pulp_file-client/api/distributions_file_api.py +4186 -0
  6. crc-pulp_file-client/api/publications_file_api.py +2881 -0
  7. crc-pulp_file-client/api/remotes_file_api.py +4214 -0
  8. crc-pulp_file-client/api/repositories_file_api.py +4856 -0
  9. crc-pulp_file-client/api/repositories_file_versions_api.py +1670 -0
  10. crc-pulp_file-client/api_client.py +798 -0
  11. crc-pulp_file-client/api_response.py +21 -0
  12. crc-pulp_file-client/configuration.py +628 -0
  13. crc-pulp_file-client/exceptions.py +200 -0
  14. crc-pulp_file-client/models/__init__.py +56 -0
  15. crc-pulp_file-client/models/async_operation_response.py +88 -0
  16. crc-pulp_file-client/models/content_summary_response.py +92 -0
  17. crc-pulp_file-client/models/file_file_alternate_content_source.py +101 -0
  18. crc-pulp_file-client/models/file_file_alternate_content_source_response.py +116 -0
  19. crc-pulp_file-client/models/file_file_content_response.py +133 -0
  20. crc-pulp_file-client/models/file_file_distribution.py +118 -0
  21. crc-pulp_file-client/models/file_file_distribution_response.py +142 -0
  22. crc-pulp_file-client/models/file_file_publication.py +100 -0
  23. crc-pulp_file-client/models/file_file_publication_response.py +120 -0
  24. crc-pulp_file-client/models/file_file_remote.py +205 -0
  25. crc-pulp_file-client/models/file_file_remote_response.py +199 -0
  26. crc-pulp_file-client/models/file_file_remote_response_hidden_fields_inner.py +90 -0
  27. crc-pulp_file-client/models/file_file_repository.py +121 -0
  28. crc-pulp_file-client/models/file_file_repository_response.py +146 -0
  29. crc-pulp_file-client/models/my_permissions_response.py +88 -0
  30. crc-pulp_file-client/models/nested_role.py +93 -0
  31. crc-pulp_file-client/models/nested_role_response.py +92 -0
  32. crc-pulp_file-client/models/object_roles_response.py +96 -0
  33. crc-pulp_file-client/models/paginated_repository_version_response_list.py +112 -0
  34. crc-pulp_file-client/models/paginatedfile_file_alternate_content_source_response_list.py +112 -0
  35. crc-pulp_file-client/models/paginatedfile_file_content_response_list.py +112 -0
  36. crc-pulp_file-client/models/paginatedfile_file_distribution_response_list.py +112 -0
  37. crc-pulp_file-client/models/paginatedfile_file_publication_response_list.py +112 -0
  38. crc-pulp_file-client/models/paginatedfile_file_remote_response_list.py +112 -0
  39. crc-pulp_file-client/models/paginatedfile_file_repository_response_list.py +112 -0
  40. crc-pulp_file-client/models/patchedfile_file_alternate_content_source.py +101 -0
  41. crc-pulp_file-client/models/patchedfile_file_distribution.py +118 -0
  42. crc-pulp_file-client/models/patchedfile_file_remote.py +205 -0
  43. crc-pulp_file-client/models/patchedfile_file_repository.py +121 -0
  44. crc-pulp_file-client/models/policy_enum.py +39 -0
  45. crc-pulp_file-client/models/repair.py +88 -0
  46. crc-pulp_file-client/models/repository_add_remove_content.py +93 -0
  47. crc-pulp_file-client/models/repository_sync_url.py +90 -0
  48. crc-pulp_file-client/models/repository_version_response.py +121 -0
  49. crc-pulp_file-client/models/set_label.py +103 -0
  50. crc-pulp_file-client/models/set_label_response.py +103 -0
  51. crc-pulp_file-client/models/task_group_operation_response.py +88 -0
  52. crc-pulp_file-client/models/unset_label.py +96 -0
  53. crc-pulp_file-client/models/unset_label_response.py +100 -0
  54. crc-pulp_file-client/py.typed +0 -0
  55. crc-pulp_file-client/rest.py +258 -0
  56. crc_pulp_file_client-20250819.1.dist-info/METADATA +25 -0
  57. crc_pulp_file_client-20250819.1.dist-info/RECORD +114 -0
  58. crc_pulp_file_client-20250819.1.dist-info/WHEEL +5 -0
  59. crc_pulp_file_client-20250819.1.dist-info/top_level.txt +2 -0
  60. services-pulp_file-client/__init__.py +2 -0
  61. services-pulp_file-client/api/__init__.py +11 -0
  62. services-pulp_file-client/api/acs_file_api.py +3689 -0
  63. services-pulp_file-client/api/content_files_api.py +2088 -0
  64. services-pulp_file-client/api/distributions_file_api.py +4186 -0
  65. services-pulp_file-client/api/publications_file_api.py +2881 -0
  66. services-pulp_file-client/api/remotes_file_api.py +4214 -0
  67. services-pulp_file-client/api/repositories_file_api.py +4856 -0
  68. services-pulp_file-client/api/repositories_file_versions_api.py +1670 -0
  69. services-pulp_file-client/api_client.py +798 -0
  70. services-pulp_file-client/api_response.py +21 -0
  71. services-pulp_file-client/configuration.py +628 -0
  72. services-pulp_file-client/exceptions.py +200 -0
  73. services-pulp_file-client/models/__init__.py +56 -0
  74. services-pulp_file-client/models/async_operation_response.py +88 -0
  75. services-pulp_file-client/models/content_summary_response.py +92 -0
  76. services-pulp_file-client/models/file_file_alternate_content_source.py +101 -0
  77. services-pulp_file-client/models/file_file_alternate_content_source_response.py +116 -0
  78. services-pulp_file-client/models/file_file_content_response.py +133 -0
  79. services-pulp_file-client/models/file_file_distribution.py +118 -0
  80. services-pulp_file-client/models/file_file_distribution_response.py +142 -0
  81. services-pulp_file-client/models/file_file_publication.py +100 -0
  82. services-pulp_file-client/models/file_file_publication_response.py +120 -0
  83. services-pulp_file-client/models/file_file_remote.py +205 -0
  84. services-pulp_file-client/models/file_file_remote_response.py +199 -0
  85. services-pulp_file-client/models/file_file_remote_response_hidden_fields_inner.py +90 -0
  86. services-pulp_file-client/models/file_file_repository.py +121 -0
  87. services-pulp_file-client/models/file_file_repository_response.py +146 -0
  88. services-pulp_file-client/models/my_permissions_response.py +88 -0
  89. services-pulp_file-client/models/nested_role.py +93 -0
  90. services-pulp_file-client/models/nested_role_response.py +92 -0
  91. services-pulp_file-client/models/object_roles_response.py +96 -0
  92. services-pulp_file-client/models/paginated_repository_version_response_list.py +112 -0
  93. services-pulp_file-client/models/paginatedfile_file_alternate_content_source_response_list.py +112 -0
  94. services-pulp_file-client/models/paginatedfile_file_content_response_list.py +112 -0
  95. services-pulp_file-client/models/paginatedfile_file_distribution_response_list.py +112 -0
  96. services-pulp_file-client/models/paginatedfile_file_publication_response_list.py +112 -0
  97. services-pulp_file-client/models/paginatedfile_file_remote_response_list.py +112 -0
  98. services-pulp_file-client/models/paginatedfile_file_repository_response_list.py +112 -0
  99. services-pulp_file-client/models/patchedfile_file_alternate_content_source.py +101 -0
  100. services-pulp_file-client/models/patchedfile_file_distribution.py +118 -0
  101. services-pulp_file-client/models/patchedfile_file_remote.py +205 -0
  102. services-pulp_file-client/models/patchedfile_file_repository.py +121 -0
  103. services-pulp_file-client/models/policy_enum.py +39 -0
  104. services-pulp_file-client/models/repair.py +88 -0
  105. services-pulp_file-client/models/repository_add_remove_content.py +93 -0
  106. services-pulp_file-client/models/repository_sync_url.py +90 -0
  107. services-pulp_file-client/models/repository_version_response.py +121 -0
  108. services-pulp_file-client/models/set_label.py +103 -0
  109. services-pulp_file-client/models/set_label_response.py +103 -0
  110. services-pulp_file-client/models/task_group_operation_response.py +88 -0
  111. services-pulp_file-client/models/unset_label.py +96 -0
  112. services-pulp_file-client/models/unset_label_response.py +100 -0
  113. services-pulp_file-client/py.typed +0 -0
  114. services-pulp_file-client/rest.py +258 -0
@@ -0,0 +1,2 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
@@ -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
+