@cloud-copilot/iam-data 0.18.202604031 → 0.18.202604101
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.
- package/data/actions/aws-marketplace.json +135 -0
- package/data/actions/bedrock-agentcore.json +196 -0
- package/data/actions/bedrock.json +209 -0
- package/data/actions/deadline.json +30 -0
- package/data/actions/ecs.json +66 -64
- package/data/actions/glue.json +8 -0
- package/data/actions/lightsail.json +16 -1
- package/data/actions/observabilityadmin.json +36 -12
- package/data/actions/s3files.json +394 -0
- package/data/actions/securitylake.json +1 -0
- package/data/actions/ses.json +144 -44
- package/data/actions/transform.json +9 -0
- package/data/actions/workspaces.json +48 -0
- package/data/conditionKeys/observabilityadmin.json +20 -0
- package/data/conditionKeys/s3files.json +27 -0
- package/data/resourceTypes/aws-marketplace.json +20 -0
- package/data/resourceTypes/bedrock-agentcore.json +8 -0
- package/data/resourceTypes/bedrock.json +14 -0
- package/data/resourceTypes/ecs.json +34 -34
- package/data/resourceTypes/lightsail.json +4 -1
- package/data/resourceTypes/s3files.json +16 -0
- package/data/serviceNames.json +1 -0
- package/data/services.json +1 -0
- package/package.json +2 -2
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
+
"capacity-provider": {
|
|
3
|
+
"key": "capacity-provider",
|
|
4
|
+
"arn": "arn:${Partition}:ecs:${Region}:${Account}:capacity-provider/${CapacityProviderName}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}",
|
|
7
|
+
"ecs:ResourceTag/${TagKey}"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
2
10
|
"cluster": {
|
|
3
11
|
"key": "cluster",
|
|
4
12
|
"arn": "arn:${Partition}:ecs:${Region}:${Account}:cluster/${ClusterName}",
|
|
@@ -15,32 +23,6 @@
|
|
|
15
23
|
"ecs:ResourceTag/${TagKey}"
|
|
16
24
|
]
|
|
17
25
|
},
|
|
18
|
-
"service": {
|
|
19
|
-
"key": "service",
|
|
20
|
-
"arn": "arn:${Partition}:ecs:${Region}:${Account}:service/${ClusterName}/${ServiceName}",
|
|
21
|
-
"conditionKeys": [
|
|
22
|
-
"aws:ResourceTag/${TagKey}",
|
|
23
|
-
"ecs:ResourceTag/${TagKey}"
|
|
24
|
-
]
|
|
25
|
-
},
|
|
26
|
-
"service-deployment": {
|
|
27
|
-
"key": "service-deployment",
|
|
28
|
-
"arn": "arn:${Partition}:ecs:${Region}:${Account}:service-deployment/${ClusterName}/${ServiceName}/${ServiceDeploymentId}",
|
|
29
|
-
"conditionKeys": [
|
|
30
|
-
"aws:ResourceTag/${TagKey}",
|
|
31
|
-
"ecs:cluster",
|
|
32
|
-
"ecs:service"
|
|
33
|
-
]
|
|
34
|
-
},
|
|
35
|
-
"service-revision": {
|
|
36
|
-
"key": "service-revision",
|
|
37
|
-
"arn": "arn:${Partition}:ecs:${Region}:${Account}:service-revision/${ClusterName}/${ServiceName}/${ServiceRevisionId}",
|
|
38
|
-
"conditionKeys": [
|
|
39
|
-
"aws:ResourceTag/${TagKey}",
|
|
40
|
-
"ecs:cluster",
|
|
41
|
-
"ecs:service"
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
26
|
"daemon": {
|
|
45
27
|
"key": "daemon",
|
|
46
28
|
"arn": "arn:${Partition}:ecs:${Region}:${Account}:daemon/${ClusterName}/${DaemonName}",
|
|
@@ -74,6 +56,32 @@
|
|
|
74
56
|
"aws:ResourceTag/${TagKey}"
|
|
75
57
|
]
|
|
76
58
|
},
|
|
59
|
+
"service": {
|
|
60
|
+
"key": "service",
|
|
61
|
+
"arn": "arn:${Partition}:ecs:${Region}:${Account}:service/${ClusterName}/${ServiceName}",
|
|
62
|
+
"conditionKeys": [
|
|
63
|
+
"aws:ResourceTag/${TagKey}",
|
|
64
|
+
"ecs:ResourceTag/${TagKey}"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
"service-deployment": {
|
|
68
|
+
"key": "service-deployment",
|
|
69
|
+
"arn": "arn:${Partition}:ecs:${Region}:${Account}:service-deployment/${ClusterName}/${ServiceName}/${ServiceDeploymentId}",
|
|
70
|
+
"conditionKeys": [
|
|
71
|
+
"aws:ResourceTag/${TagKey}",
|
|
72
|
+
"ecs:cluster",
|
|
73
|
+
"ecs:service"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"service-revision": {
|
|
77
|
+
"key": "service-revision",
|
|
78
|
+
"arn": "arn:${Partition}:ecs:${Region}:${Account}:service-revision/${ClusterName}/${ServiceName}/${ServiceRevisionId}",
|
|
79
|
+
"conditionKeys": [
|
|
80
|
+
"aws:ResourceTag/${TagKey}",
|
|
81
|
+
"ecs:cluster",
|
|
82
|
+
"ecs:service"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
77
85
|
"task": {
|
|
78
86
|
"key": "task",
|
|
79
87
|
"arn": "arn:${Partition}:ecs:${Region}:${Account}:task/${ClusterName}/${TaskId}",
|
|
@@ -90,14 +98,6 @@
|
|
|
90
98
|
"ecs:ResourceTag/${TagKey}"
|
|
91
99
|
]
|
|
92
100
|
},
|
|
93
|
-
"capacity-provider": {
|
|
94
|
-
"key": "capacity-provider",
|
|
95
|
-
"arn": "arn:${Partition}:ecs:${Region}:${Account}:capacity-provider/${CapacityProviderName}",
|
|
96
|
-
"conditionKeys": [
|
|
97
|
-
"aws:ResourceTag/${TagKey}",
|
|
98
|
-
"ecs:ResourceTag/${TagKey}"
|
|
99
|
-
]
|
|
100
|
-
},
|
|
101
101
|
"task-set": {
|
|
102
102
|
"key": "task-set",
|
|
103
103
|
"arn": "arn:${Partition}:ecs:${Region}:${Account}:task-set/${ClusterName}/${ServiceName}/${TaskSetId}",
|
|
@@ -83,7 +83,10 @@
|
|
|
83
83
|
},
|
|
84
84
|
"alarm": {
|
|
85
85
|
"key": "Alarm",
|
|
86
|
-
"arn": "arn:${Partition}:lightsail:${Region}:${Account}:Alarm/${Id}"
|
|
86
|
+
"arn": "arn:${Partition}:lightsail:${Region}:${Account}:Alarm/${Id}",
|
|
87
|
+
"conditionKeys": [
|
|
88
|
+
"aws:ResourceTag/${TagKey}"
|
|
89
|
+
]
|
|
87
90
|
},
|
|
88
91
|
"certificate": {
|
|
89
92
|
"key": "Certificate",
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file-system": {
|
|
3
|
+
"key": "file-system",
|
|
4
|
+
"arn": "arn:${Partition}:s3files:${Region}:${Account}:file-system/${FileSystemId}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
9
|
+
"access-point": {
|
|
10
|
+
"key": "access-point",
|
|
11
|
+
"arn": "arn:${Partition}:s3files:${Region}:${Account}:file-system/${FileSystemId}/access-point/${AccessPointId}",
|
|
12
|
+
"conditionKeys": [
|
|
13
|
+
"aws:ResourceTag/${TagKey}"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
package/data/serviceNames.json
CHANGED
|
@@ -351,6 +351,7 @@
|
|
|
351
351
|
"s3-object-lambda": "Amazon S3 Object Lambda",
|
|
352
352
|
"s3-outposts": "Amazon S3 on Outposts",
|
|
353
353
|
"s3express": "Amazon S3 Express",
|
|
354
|
+
"s3files": "Amazon S3 Files",
|
|
354
355
|
"s3tables": "Amazon S3 Tables",
|
|
355
356
|
"s3vectors": "Amazon S3 Vectors",
|
|
356
357
|
"sagemaker": "Amazon SageMaker",
|
package/data/services.json
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-copilot/iam-data",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.202604101",
|
|
4
4
|
"description": "AWS IAM Data",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/cloud-copilot/iam-data.git"
|
|
8
8
|
},
|
|
9
|
-
"updatedAt": "2026-04-
|
|
9
|
+
"updatedAt": "2026-04-10T05:28:44.067Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|