ominfra 0.0.0.dev433__py3-none-any.whl → 0.0.0.dev501__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 ominfra might be problematic. Click here for more details.
- ominfra/README.md +26 -0
- ominfra/__about__.py +5 -2
- ominfra/clouds/aws/instancetypes/cache.json.gz +0 -0
- ominfra/clouds/aws/journald2aws/main.py +1 -1
- ominfra/clouds/aws/models/{base.py → base/__init__.py} +6 -0
- ominfra/clouds/aws/models/base/_dataclasses.py +721 -0
- ominfra/clouds/aws/models/gen/cli.py +2 -1
- ominfra/clouds/aws/models/gen/gen.py +16 -7
- ominfra/clouds/aws/models/services/{ec2.py → ec2/__init__.py} +123 -1
- ominfra/clouds/aws/models/services/ec2/_dataclasses.py +30654 -0
- ominfra/clouds/aws/models/services/{lambda_.py → lambda_/__init__.py} +139 -1
- ominfra/clouds/aws/models/services/lambda_/_dataclasses.py +4182 -0
- ominfra/clouds/aws/models/services/{rds.py → rds/__init__.py} +244 -78
- ominfra/clouds/aws/models/services/rds/_dataclasses.py +8231 -0
- ominfra/clouds/aws/models/services/{s3.py → s3/__init__.py} +9 -1
- ominfra/clouds/aws/models/services/s3/_dataclasses.py +5014 -0
- ominfra/manage/bootstrap_.py +1 -1
- ominfra/manage/main.py +1 -2
- ominfra/manage/targets/bestpython.sh +1 -1
- ominfra/scripts/journald2aws.py +748 -71
- ominfra/scripts/manage.py +824 -99
- ominfra/scripts/supervisor.py +925 -123
- ominfra/supervisor/main.py +1 -1
- {ominfra-0.0.0.dev433.dist-info → ominfra-0.0.0.dev501.dist-info}/METADATA +7 -5
- {ominfra-0.0.0.dev433.dist-info → ominfra-0.0.0.dev501.dist-info}/RECORD +29 -23
- {ominfra-0.0.0.dev433.dist-info → ominfra-0.0.0.dev501.dist-info}/WHEEL +0 -0
- {ominfra-0.0.0.dev433.dist-info → ominfra-0.0.0.dev501.dist-info}/entry_points.txt +0 -0
- {ominfra-0.0.0.dev433.dist-info → ominfra-0.0.0.dev501.dist-info}/licenses/LICENSE +0 -0
- {ominfra-0.0.0.dev433.dist-info → ominfra-0.0.0.dev501.dist-info}/top_level.txt +0 -0
ominfra/manage/bootstrap_.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# ruff: noqa: UP006 UP007 UP045
|
|
2
2
|
from omlish.lite.inject import Injector
|
|
3
3
|
from omlish.lite.inject import inj
|
|
4
|
-
from omlish.logs.standard import configure_standard_logging
|
|
4
|
+
from omlish.logs.std.standard import configure_standard_logging
|
|
5
5
|
|
|
6
6
|
from .bootstrap import MainBootstrap
|
|
7
7
|
from .inject import bind_main
|
ominfra/manage/main.py
CHANGED
|
@@ -8,7 +8,6 @@ import asyncio
|
|
|
8
8
|
import dataclasses as dc
|
|
9
9
|
import json
|
|
10
10
|
import os.path
|
|
11
|
-
import sys
|
|
12
11
|
import typing as ta
|
|
13
12
|
|
|
14
13
|
from omdev.home.paths import get_home_paths
|
|
@@ -150,7 +149,7 @@ class MainCli(ArgparseCli):
|
|
|
150
149
|
|
|
151
150
|
|
|
152
151
|
def _main() -> None:
|
|
153
|
-
|
|
152
|
+
raise SystemExit(asyncio.run(MainCli().async_cli_run()))
|
|
154
153
|
|
|
155
154
|
|
|
156
155
|
if __name__ == '__main__':
|