maleo-managers 0.0.12__tar.gz → 0.0.14__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.
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/PKG-INFO +1 -1
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/maleo_managers.egg-info/PKG-INFO +1 -1
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/pyproject.toml +1 -1
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/config.py +3 -3
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/key.py +4 -3
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/LICENSE +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/README.md +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/maleo_managers.egg-info/SOURCES.txt +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/maleo_managers.egg-info/dependency_links.txt +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/maleo_managers.egg-info/requires.txt +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/maleo_managers.egg-info/top_level.txt +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/setup.cfg +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/__init__.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/client/__init__.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/client/config.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/client/http.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/client/maleo/__init__.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/client/maleo/config.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/credential.py +0 -0
- {maleo_managers-0.0.12 → maleo_managers-0.0.14}/src/service.py +0 -0
@@ -5,7 +5,7 @@ from maleo.database.config import (
|
|
5
5
|
ConfigsT as DatabaseConfigsT,
|
6
6
|
ConfigsMixin as DatabaseConfigMixin,
|
7
7
|
)
|
8
|
-
from maleo.dtos.settings import
|
8
|
+
from maleo.dtos.settings import ServiceSettingsT
|
9
9
|
from maleo.google.pubsub import (
|
10
10
|
ConfigT as PubSubConfigT,
|
11
11
|
ConfigMixin as PubSubConfigMixin,
|
@@ -33,10 +33,10 @@ class Config(
|
|
33
33
|
ConfigT = TypeVar("ConfigT", bound=Config)
|
34
34
|
|
35
35
|
|
36
|
-
class ConfigManager(Generic[ConfigT]):
|
36
|
+
class ConfigManager(Generic[ServiceSettingsT, ConfigT]):
|
37
37
|
def __init__(
|
38
38
|
self,
|
39
|
-
settings:
|
39
|
+
settings: ServiceSettingsT,
|
40
40
|
secret_manager: GoogleSecretManager,
|
41
41
|
config_cls: Type[ConfigT],
|
42
42
|
operation_id: OptionalUUID = None,
|
@@ -1,13 +1,14 @@
|
|
1
|
-
from
|
1
|
+
from typing import Generic
|
2
|
+
from maleo.dtos.settings import ServiceSettingsT
|
2
3
|
from maleo.google.secret import Format, GoogleSecretManager
|
3
4
|
from maleo.dtos.key.rsa import Complete
|
4
5
|
from maleo.types.base.uuid import OptionalUUID
|
5
6
|
|
6
7
|
|
7
|
-
class RSAKeyManager:
|
8
|
+
class RSAKeyManager(Generic[ServiceSettingsT]):
|
8
9
|
def __init__(
|
9
10
|
self,
|
10
|
-
settings:
|
11
|
+
settings: ServiceSettingsT,
|
11
12
|
secret_manager: GoogleSecretManager,
|
12
13
|
operation_id: OptionalUUID = None,
|
13
14
|
) -> None:
|
File without changes
|
File without changes
|
File without changes
|
{maleo_managers-0.0.12 → maleo_managers-0.0.14}/maleo_managers.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|