arnmatch 2026.1.1__py3-none-any.whl → 2026.1.2__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.
- arnmatch/__init__.py +2 -1
- {arnmatch-2026.1.1.dist-info → arnmatch-2026.1.2.dist-info}/METADATA +11 -8
- arnmatch-2026.1.2.dist-info/RECORD +6 -0
- arnmatch-2026.1.1.dist-info/RECORD +0 -6
- {arnmatch-2026.1.1.dist-info → arnmatch-2026.1.2.dist-info}/WHEEL +0 -0
- {arnmatch-2026.1.1.dist-info → arnmatch-2026.1.2.dist-info}/entry_points.txt +0 -0
arnmatch/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""ARN pattern matching using regex patterns."""
|
|
2
2
|
|
|
3
|
-
__version__ = "2026.01.
|
|
3
|
+
__version__ = "2026.01.2"
|
|
4
4
|
|
|
5
5
|
import sys
|
|
6
6
|
from dataclasses import dataclass
|
|
@@ -132,6 +132,7 @@ def main() -> None:
|
|
|
132
132
|
try:
|
|
133
133
|
result = arnmatch(arn)
|
|
134
134
|
print(f"aws_service: {result.aws_service}")
|
|
135
|
+
print(f"aws_sdk_services: {','.join(result.aws_sdk_services)}")
|
|
135
136
|
print(f"aws_region: {result.aws_region}")
|
|
136
137
|
print(f"aws_account: {result.aws_account}")
|
|
137
138
|
print(f"resource_type: {result.resource_type}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arnmatch
|
|
3
|
-
Version: 2026.1.
|
|
3
|
+
Version: 2026.1.2
|
|
4
4
|
Summary: Parse AWS ARNs into structured data (2000+ resource types)
|
|
5
5
|
Author-email: Andrey Gubarev <andrey@andreygubarev.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -37,6 +37,7 @@ pip install arnmatch
|
|
|
37
37
|
```bash
|
|
38
38
|
$ uvx arnmatch "arn:aws:lambda:us-east-1:123456789012:function:my-function"
|
|
39
39
|
aws_service: lambda
|
|
40
|
+
aws_sdk_services: lambda
|
|
40
41
|
aws_region: us-east-1
|
|
41
42
|
aws_account: 123456789012
|
|
42
43
|
resource_type: function
|
|
@@ -52,13 +53,14 @@ from arnmatch import arnmatch
|
|
|
52
53
|
arn = "arn:aws:lambda:us-east-1:123456789012:function:my-function"
|
|
53
54
|
result = arnmatch(arn)
|
|
54
55
|
|
|
55
|
-
print(result.aws_service)
|
|
56
|
-
print(result.
|
|
57
|
-
print(result.
|
|
58
|
-
print(result.
|
|
59
|
-
print(result.
|
|
60
|
-
print(result.
|
|
61
|
-
print(result.
|
|
56
|
+
print(result.aws_service) # lambda
|
|
57
|
+
print(result.aws_sdk_services) # ['lambda']
|
|
58
|
+
print(result.aws_region) # us-east-1
|
|
59
|
+
print(result.aws_account) # 123456789012
|
|
60
|
+
print(result.resource_type) # function
|
|
61
|
+
print(result.resource_id) # my-function
|
|
62
|
+
print(result.resource_name) # my-function
|
|
63
|
+
print(result.attributes) # {'Partition': 'aws', 'Region': 'us-east-1', ...}
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
## API Reference
|
|
@@ -89,6 +91,7 @@ Properties:
|
|
|
89
91
|
|----------|-------------|
|
|
90
92
|
| `resource_id` | Resource identifier (prefers groups ending in `Id`, falls back to `Name`, then last group) |
|
|
91
93
|
| `resource_name` | Resource name (prefers groups ending in `Name`, falls back to `resource_id`) |
|
|
94
|
+
| `aws_sdk_services` | List of boto3 client names for this service (e.g., `['elb', 'elbv2']` for elasticloadbalancing) |
|
|
92
95
|
|
|
93
96
|
### `ARNError`
|
|
94
97
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
arnmatch/__init__.py,sha256=QLhY7NjxUUehy0i756GrXAAJApXal4p9UxRZJ-bO20s,4478
|
|
2
|
+
arnmatch/arn_patterns.py,sha256=-vBbH31MbM_0XVQSc0Aq4LY3R1rfTSq1-720GfIsahA,365211
|
|
3
|
+
arnmatch-2026.1.2.dist-info/METADATA,sha256=1JIAeD3WhalwItj-d0aVrIRvOIQ5XAWQFK_PpvzQvjs,3353
|
|
4
|
+
arnmatch-2026.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
5
|
+
arnmatch-2026.1.2.dist-info/entry_points.txt,sha256=k4tR_yh3Rodi-BfwVhc_6TktgYhE7BfMy6s0Zzq6EFk,43
|
|
6
|
+
arnmatch-2026.1.2.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
arnmatch/__init__.py,sha256=j33qDq8OmmAe8OWjsDUXNF3uYGDcDYbTfdUQ-aIey6I,4406
|
|
2
|
-
arnmatch/arn_patterns.py,sha256=-vBbH31MbM_0XVQSc0Aq4LY3R1rfTSq1-720GfIsahA,365211
|
|
3
|
-
arnmatch-2026.1.1.dist-info/METADATA,sha256=KY9Bw7gbH2k3Y4cczgWzYLrlcH4s0O287HXwUuzRzEo,3149
|
|
4
|
-
arnmatch-2026.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
5
|
-
arnmatch-2026.1.1.dist-info/entry_points.txt,sha256=k4tR_yh3Rodi-BfwVhc_6TktgYhE7BfMy6s0Zzq6EFk,43
|
|
6
|
-
arnmatch-2026.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|