ominfra 0.0.0.dev417__py3-none-any.whl → 0.0.0.dev419__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.
- ominfra/clouds/aws/models/services/ec2.py +2 -0
- ominfra/scripts/journald2aws.py +2 -2
- ominfra/scripts/manage.py +2 -2
- ominfra/scripts/supervisor.py +2 -2
- {ominfra-0.0.0.dev417.dist-info → ominfra-0.0.0.dev419.dist-info}/METADATA +3 -3
- {ominfra-0.0.0.dev417.dist-info → ominfra-0.0.0.dev419.dist-info}/RECORD +10 -10
- {ominfra-0.0.0.dev417.dist-info → ominfra-0.0.0.dev419.dist-info}/WHEEL +0 -0
- {ominfra-0.0.0.dev417.dist-info → ominfra-0.0.0.dev419.dist-info}/entry_points.txt +0 -0
- {ominfra-0.0.0.dev417.dist-info → ominfra-0.0.0.dev419.dist-info}/licenses/LICENSE +0 -0
- {ominfra-0.0.0.dev417.dist-info → ominfra-0.0.0.dev419.dist-info}/top_level.txt +0 -0
@@ -1598,11 +1598,13 @@ class RouteOrigin(_enum.Enum):
|
|
1598
1598
|
CREATE_ROUTE_TABLE = 'CreateRouteTable'
|
1599
1599
|
CREATE_ROUTE = 'CreateRoute'
|
1600
1600
|
ENABLE_VGW_ROUTE_PROPAGATION = 'EnableVgwRoutePropagation'
|
1601
|
+
ADVERTISEMENT = 'Advertisement'
|
1601
1602
|
|
1602
1603
|
|
1603
1604
|
class RouteState(_enum.Enum):
|
1604
1605
|
ACTIVE = 'active'
|
1605
1606
|
BLACKHOLE = 'blackhole'
|
1607
|
+
FILTERED = 'filtered'
|
1606
1608
|
|
1607
1609
|
|
1608
1610
|
class RouteTableAssociationStateCode(_enum.Enum):
|
ominfra/scripts/journald2aws.py
CHANGED
@@ -63,8 +63,8 @@ ConfigMap = ta.Mapping[str, ta.Any]
|
|
63
63
|
IniSectionSettingsMap = ta.Mapping[str, ta.Mapping[str, ta.Union[str, ta.Sequence[str]]]] # ta.TypeAlias
|
64
64
|
|
65
65
|
# ../../../../omlish/formats/toml/parser.py
|
66
|
-
TomlParseFloat = ta.Callable[[str], ta.Any]
|
67
|
-
TomlKey = ta.Tuple[str, ...]
|
66
|
+
TomlParseFloat = ta.Callable[[str], ta.Any] # ta.TypeAlias
|
67
|
+
TomlKey = ta.Tuple[str, ...] # ta.TypeAlias
|
68
68
|
TomlPos = int # ta.TypeAlias
|
69
69
|
|
70
70
|
# ../../../../omlish/lite/cached.py
|
ominfra/scripts/manage.py
CHANGED
@@ -86,8 +86,8 @@ ConfigMap = ta.Mapping[str, ta.Any]
|
|
86
86
|
IniSectionSettingsMap = ta.Mapping[str, ta.Mapping[str, ta.Union[str, ta.Sequence[str]]]] # ta.TypeAlias
|
87
87
|
|
88
88
|
# ../../omlish/formats/toml/parser.py
|
89
|
-
TomlParseFloat = ta.Callable[[str], ta.Any]
|
90
|
-
TomlKey = ta.Tuple[str, ...]
|
89
|
+
TomlParseFloat = ta.Callable[[str], ta.Any] # ta.TypeAlias
|
90
|
+
TomlKey = ta.Tuple[str, ...] # ta.TypeAlias
|
91
91
|
TomlPos = int # ta.TypeAlias
|
92
92
|
|
93
93
|
# ../../omlish/lite/cached.py
|
ominfra/scripts/supervisor.py
CHANGED
@@ -112,8 +112,8 @@ ConfigMap = ta.Mapping[str, ta.Any]
|
|
112
112
|
IniSectionSettingsMap = ta.Mapping[str, ta.Mapping[str, ta.Union[str, ta.Sequence[str]]]] # ta.TypeAlias
|
113
113
|
|
114
114
|
# ../../omlish/formats/toml/parser.py
|
115
|
-
TomlParseFloat = ta.Callable[[str], ta.Any]
|
116
|
-
TomlKey = ta.Tuple[str, ...]
|
115
|
+
TomlParseFloat = ta.Callable[[str], ta.Any] # ta.TypeAlias
|
116
|
+
TomlKey = ta.Tuple[str, ...] # ta.TypeAlias
|
117
117
|
TomlPos = int # ta.TypeAlias
|
118
118
|
|
119
119
|
# ../../omlish/lite/cached.py
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ominfra
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev419
|
4
4
|
Summary: ominfra
|
5
5
|
Author: wrmsr
|
6
6
|
License-Expression: BSD-3-Clause
|
@@ -14,8 +14,8 @@ Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Requires-Python: >=3.13
|
15
15
|
Description-Content-Type: text/markdown
|
16
16
|
License-File: LICENSE
|
17
|
-
Requires-Dist: omdev==0.0.0.
|
18
|
-
Requires-Dist: omlish==0.0.0.
|
17
|
+
Requires-Dist: omdev==0.0.0.dev419
|
18
|
+
Requires-Dist: omlish==0.0.0.dev419
|
19
19
|
Provides-Extra: all
|
20
20
|
Requires-Dist: paramiko~=4.0; extra == "all"
|
21
21
|
Requires-Dist: asyncssh~=2.21; extra == "all"
|
@@ -30,7 +30,7 @@ ominfra/clouds/aws/models/gen/__main__.py,sha256=Jsrv3P7LX2Cg08W7ByZfZ1JQT4lgLDP
|
|
30
30
|
ominfra/clouds/aws/models/gen/cli.py,sha256=vcI8_-BOv4f-s_TFAqvnyzvBexZ_9y5akiUEGfioCqA,3857
|
31
31
|
ominfra/clouds/aws/models/gen/gen.py,sha256=4pftOlyEIxDDoe73c5Z7NaJ1uhFsTBnMwmS1nlDiLOE,15903
|
32
32
|
ominfra/clouds/aws/models/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
ominfra/clouds/aws/models/services/ec2.py,sha256=
|
33
|
+
ominfra/clouds/aws/models/services/ec2.py,sha256=tB6NW2B6RLM1x_0sKkeofn008_jdbVx6n5CSdDDZ5WA,278507
|
34
34
|
ominfra/clouds/aws/models/services/lambda_.py,sha256=dp2I4ZVDb6Dci15XcjPPURUElyzH8cwhM911J_HM7Qo,25823
|
35
35
|
ominfra/clouds/aws/models/services/rds.py,sha256=cYjqdM3Sm3F0qpxinA8A8ofXi_HZflK3epu_sog7LzQ,59759
|
36
36
|
ominfra/clouds/aws/models/services/s3.py,sha256=aWbl4YtAiQyBfcNgerNxfWBIHZsbpFlT66JdRBYnQ9c,51426
|
@@ -112,9 +112,9 @@ ominfra/manage/targets/connection.py,sha256=Ut-R_PvQN9tPBacZD0ODmLIYvLsgS51qvOGr
|
|
112
112
|
ominfra/manage/targets/inject.py,sha256=3M4wBkxtvymq_yhiotHlTN8iydELMjVCndyp9Bq-4eo,1572
|
113
113
|
ominfra/manage/targets/targets.py,sha256=WmasYmL6xfAI7F0XvDhScFdBVxkqPkmo_gRgABmmkGA,1891
|
114
114
|
ominfra/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
|
-
ominfra/scripts/journald2aws.py,sha256=
|
116
|
-
ominfra/scripts/manage.py,sha256=
|
117
|
-
ominfra/scripts/supervisor.py,sha256=
|
115
|
+
ominfra/scripts/journald2aws.py,sha256=RlrTK5M3XoqzWU7v01J67rl-qZq6_mOWlRay7k0gzWE,174194
|
116
|
+
ominfra/scripts/manage.py,sha256=idIB084_Z3DAMMLw_gDVASiDy9worQUaD2lpfiOQzH4,397099
|
117
|
+
ominfra/scripts/supervisor.py,sha256=YUx_3RmUqkWFQ8PswnZukIESfZKvS6PUSZI43siErjc,306712
|
118
118
|
ominfra/supervisor/LICENSE.txt,sha256=ZrHY15PVR98y26Yg6iQfa-SXnUaYTDhrUsPVcEO5OKM,1874
|
119
119
|
ominfra/supervisor/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
120
120
|
ominfra/supervisor/__main__.py,sha256=I0yFw-C08OOiZ3BF6lF1Oiv789EQXu-_j6whDhQUTEA,66
|
@@ -156,9 +156,9 @@ ominfra/tailscale/api.py,sha256=XASv9C_CWI-u-yX5jVzhJrkJhlwQRkYQWQQG1uJwAd8,1375
|
|
156
156
|
ominfra/tailscale/cli.py,sha256=zRV7-tKB7kBah1oTVZlol-vwx1FBlnfzYAPGkeU5jX4,3543
|
157
157
|
ominfra/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
158
|
ominfra/tools/listresources.py,sha256=ePmo7cUAiBZARkM_3K4GKYZXxV73An_aioS1m-AAJis,6181
|
159
|
-
ominfra-0.0.0.
|
160
|
-
ominfra-0.0.0.
|
161
|
-
ominfra-0.0.0.
|
162
|
-
ominfra-0.0.0.
|
163
|
-
ominfra-0.0.0.
|
164
|
-
ominfra-0.0.0.
|
159
|
+
ominfra-0.0.0.dev419.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
160
|
+
ominfra-0.0.0.dev419.dist-info/METADATA,sha256=_MF-bcjeroJZV__3nW9PWxMtdLRWur9gKw29toOTmyo,2377
|
161
|
+
ominfra-0.0.0.dev419.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
162
|
+
ominfra-0.0.0.dev419.dist-info/entry_points.txt,sha256=kgecQ2MgGrM9qK744BoKS3tMesaC3yjLnl9pa5CRczg,37
|
163
|
+
ominfra-0.0.0.dev419.dist-info/top_level.txt,sha256=E-b2OHkk_AOBLXHYZQ2EOFKl-_6uOGd8EjeG-Zy6h_w,8
|
164
|
+
ominfra-0.0.0.dev419.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|