pilot-platform-common 2.7.0__tar.gz → 2.8.0__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.
Files changed (58) hide show
  1. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/PKG-INFO +1 -1
  2. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/__init__.py +1 -1
  3. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/geid/__init__.py +1 -1
  4. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/geid/geid_client.py +1 -1
  5. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/jwt_handler/JWTHandler.py +1 -1
  6. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/jwt_handler/__init__.py +1 -1
  7. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/jwt_handler/jwt_handler_exception.py +1 -1
  8. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/jwt_handler/models.py +1 -1
  9. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/logging/__init__.py +1 -1
  10. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/logging/formatter.py +1 -1
  11. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/logging/logger.py +1 -1
  12. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/logging/logging.py +1 -1
  13. {pilot_platform_common-2.7.0/tests → pilot_platform_common-2.8.0/common/models}/__init__.py +1 -1
  14. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/models/config_center_policy.py +1 -1
  15. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/models/service_id_generator.py +1 -1
  16. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/object_storage_adaptor/__init__.py +1 -1
  17. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/object_storage_adaptor/base_client.py +1 -1
  18. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/object_storage_adaptor/boto3_admin_client.py +1 -1
  19. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/object_storage_adaptor/boto3_client.py +1 -1
  20. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/object_storage_adaptor/minio_policy_client.py +1 -1
  21. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/permissions/__init__.py +1 -1
  22. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/permissions/exceptions.py +1 -1
  23. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/permissions/permissions.py +1 -1
  24. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/permissions/permissions_manager.py +1 -1
  25. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/permissions/schemas.py +1 -1
  26. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/project/__init__.py +1 -1
  27. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/project/project_client.py +3 -1
  28. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/project/project_exceptions.py +1 -1
  29. {pilot_platform_common-2.7.0/common/models → pilot_platform_common-2.8.0/common/services}/__init__.py +1 -1
  30. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/services/auth_client.py +1 -1
  31. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/vault/__init__.py +1 -1
  32. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/vault/vault_client.py +1 -1
  33. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/common/vault/vault_exception.py +1 -1
  34. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/pilot_platform_common.egg-info/PKG-INFO +1 -1
  35. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/pyproject.toml +1 -1
  36. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/setup.py +2 -2
  37. {pilot_platform_common-2.7.0/tests/fixtures → pilot_platform_common-2.8.0/tests}/__init__.py +1 -1
  38. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/conftest.py +1 -1
  39. {pilot_platform_common-2.7.0/common/services → pilot_platform_common-2.8.0/tests/fixtures}/__init__.py +1 -1
  40. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/fixtures/fake.py +1 -1
  41. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/fixtures/metadata.py +1 -1
  42. pilot_platform_common-2.8.0/tests/permissions/__init__.py +3 -0
  43. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/permissions/test_auth_client.py +1 -1
  44. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/permissions/test_permissions.py +1 -1
  45. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/permissions/test_permissions_manager.py +1 -1
  46. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/test_formatter.py +1 -1
  47. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/test_geid_client.py +1 -1
  48. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/test_jwt_handler.py +1 -1
  49. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/test_logging.py +1 -1
  50. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/test_project_client.py +1 -1
  51. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/tests/test_vault_client.py +1 -1
  52. pilot_platform_common-2.7.0/tests/permissions/__init__.py +0 -3
  53. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/README.md +0 -0
  54. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/pilot_platform_common.egg-info/SOURCES.txt +0 -0
  55. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/pilot_platform_common.egg-info/dependency_links.txt +0 -0
  56. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/pilot_platform_common.egg-info/requires.txt +0 -0
  57. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/pilot_platform_common.egg-info/top_level.txt +0 -0
  58. {pilot_platform_common-2.7.0 → pilot_platform_common-2.8.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pilot-platform-common
3
- Version: 2.7.0
3
+ Version: 2.8.0
4
4
  Summary: Generates entity ID and connects with Vault (secret engine) to retrieve credentials
5
5
  Author: Indoc Systems
6
6
  Author-email: etaylor@indocresearch.org
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
  from typing import Any
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,3 +1,3 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -62,6 +62,7 @@ class ProjectObject:
62
62
  is_discoverable=None,
63
63
  state=None,
64
64
  notify_users=None,
65
+ initiator_username=None,
65
66
  ):
66
67
  await self.project_client.connect_redis()
67
68
  data = {
@@ -74,6 +75,7 @@ class ProjectObject:
74
75
  'is_discoverable': is_discoverable,
75
76
  'state': state,
76
77
  'notify_users': notify_users,
78
+ 'initiator_username': initiator_username,
77
79
  }
78
80
  # remove blank items
79
81
  data = {k: v for k, v in data.items() if v is not None}
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,3 +1,3 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pilot-platform-common
3
- Version: 2.7.0
3
+ Version: 2.8.0
4
4
  Summary: Generates entity ID and connects with Vault (secret engine) to retrieve credentials
5
5
  Author: Indoc Systems
6
6
  Author-email: etaylor@indocresearch.org
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "common"
3
- version = "2.7.0"
3
+ version = "2.8.0"
4
4
  description = ""
5
5
  authors = ["Indoc Systems"]
6
6
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -11,7 +11,7 @@ long_description = (this_directory / 'README.md').read_text()
11
11
 
12
12
  setuptools.setup(
13
13
  name='pilot-platform-common',
14
- version='2.7.0',
14
+ version='2.8.0',
15
15
  author='Indoc Systems',
16
16
  author_email='etaylor@indocresearch.org',
17
17
  description='Generates entity ID and connects with Vault (secret engine) to retrieve credentials',
@@ -1,3 +1,3 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,3 +1,3 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -0,0 +1,3 @@
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
+ #
3
+ # Contact Indoc Systems for any questions regarding the use of this source code.
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
1
+ # Copyright (C) 2023-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2022-2024 Indoc Systems
1
+ # Copyright (C) 2022-2025 Indoc Systems
2
2
  #
3
3
  # Contact Indoc Systems for any questions regarding the use of this source code.
4
4
 
@@ -1,3 +0,0 @@
1
- # Copyright (C) 2023-2024 Indoc Systems
2
- #
3
- # Contact Indoc Systems for any questions regarding the use of this source code.