@cloud-copilot/iam-data 0.15.202511181 → 0.15.202511221
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/application-signals.json +8 -0
- package/data/actions/autoscaling.json +16 -0
- package/data/actions/backup.json +170 -2
- package/data/actions/bedrock-agentcore.json +2 -1
- package/data/actions/bedrock.json +31 -2
- package/data/actions/braket.json +62 -0
- package/data/actions/cloudformation.json +21 -0
- package/data/actions/cloudtrail.json +35 -8
- package/data/actions/cost-optimization-hub.json +8 -0
- package/data/actions/dms.json +27 -0
- package/data/actions/ecs.json +90 -0
- package/data/actions/glue.json +38 -1
- package/data/actions/guardduty.json +24 -0
- package/data/actions/iam.json +158 -5
- package/data/actions/identitystore.json +76 -27
- package/data/actions/imagebuilder.json +40 -0
- package/data/actions/invoicing.json +56 -0
- package/data/actions/kafka.json +57 -1
- package/data/actions/kinesisvideo.json +30 -0
- package/data/actions/lakeformation.json +16 -0
- package/data/actions/license-manager.json +217 -3
- package/data/actions/logs.json +98 -0
- package/data/actions/mgn.json +54 -1
- package/data/actions/notifications-contacts.json +2 -1
- package/data/actions/odb.json +22 -0
- package/data/actions/organizations.json +117 -0
- package/data/actions/partnercentral.json +307 -3
- package/data/actions/pricingplanmanager.json +66 -0
- package/data/actions/quicksight.json +9 -0
- package/data/actions/s3.json +65 -1
- package/data/actions/secretsmanager.json +42 -20
- package/data/actions/securityhub.json +30 -0
- package/data/actions/signin.json +16 -0
- package/data/actions/tag.json +8 -0
- package/data/conditionKeys/bedrock-agentcore.json +5 -0
- package/data/conditionKeys/bedrock.json +5 -0
- package/data/conditionKeys/dynamodb.json +21 -1
- package/data/conditionKeys/glue.json +1 -1
- package/data/conditionKeys/iam.json +20 -0
- package/data/conditionKeys/identitystore.json +26 -1
- package/data/conditionKeys/organizations.json +10 -0
- package/data/conditionKeys/partnercentral.json +7 -2
- package/data/conditionKeys/pricingplanmanager.json +1 -0
- package/data/conditionKeys/s3.json +5 -0
- package/data/conditionKeys/secretsmanager.json +15 -0
- package/data/conditionPatterns.json +1 -0
- package/data/resourceTypes/backup.json +7 -0
- package/data/resourceTypes/braket.json +7 -0
- package/data/resourceTypes/iam.json +7 -0
- package/data/resourceTypes/invoicing.json +7 -0
- package/data/resourceTypes/license-manager.json +14 -0
- package/data/resourceTypes/logs.json +7 -0
- package/data/resourceTypes/organizations.json +7 -0
- package/data/resourceTypes/partnercentral.json +21 -0
- package/data/resourceTypes/pricingplanmanager.json +6 -0
- package/data/resourceTypes/s3.json +11 -2
- package/data/resourceTypes/secretsmanager.json +2 -1
- package/data/serviceNames.json +2 -1
- package/data/services.json +1 -0
- package/package.json +2 -2
|
@@ -76,5 +76,12 @@
|
|
|
76
76
|
"aws:ResourceTag/${TagKey}",
|
|
77
77
|
"iam:ResourceTag/${TagKey}"
|
|
78
78
|
]
|
|
79
|
+
},
|
|
80
|
+
"delegation-request": {
|
|
81
|
+
"key": "delegation-request",
|
|
82
|
+
"arn": "arn:${Partition}:iam::${Account}:delegation-request/${DelegationRequestId}",
|
|
83
|
+
"conditionKeys": [
|
|
84
|
+
"iam:DelegationRequestOwner"
|
|
85
|
+
]
|
|
79
86
|
}
|
|
80
87
|
}
|
|
@@ -5,5 +5,12 @@
|
|
|
5
5
|
"conditionKeys": [
|
|
6
6
|
"aws:ResourceTag/${TagKey}"
|
|
7
7
|
]
|
|
8
|
+
},
|
|
9
|
+
"procurement-portal-preference": {
|
|
10
|
+
"key": "procurement-portal-preference",
|
|
11
|
+
"arn": "arn:${Partition}:invoicing::${Account}:procurement-portal-preference/${Identifier}",
|
|
12
|
+
"conditionKeys": [
|
|
13
|
+
"aws:ResourceTag/${TagKey}"
|
|
14
|
+
]
|
|
8
15
|
}
|
|
9
16
|
}
|
|
@@ -28,5 +28,19 @@
|
|
|
28
28
|
"aws:ResourceTag/${TagKey}",
|
|
29
29
|
"license-manager:ResourceTag/${TagKey}"
|
|
30
30
|
]
|
|
31
|
+
},
|
|
32
|
+
"license-asset-ruleset": {
|
|
33
|
+
"key": "license-asset-ruleset",
|
|
34
|
+
"arn": "arn:${Partition}:license-manager:${Region}:${Account}:license-asset-ruleset:${LicenseAssetRulesetId}",
|
|
35
|
+
"conditionKeys": [
|
|
36
|
+
"aws:ResourceTag/${TagKey}"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"license-asset-group": {
|
|
40
|
+
"key": "license-asset-group",
|
|
41
|
+
"arn": "arn:${Partition}:license-manager:${Region}:${Account}:license-asset-group:${LicenseAssetGroupId}",
|
|
42
|
+
"conditionKeys": [
|
|
43
|
+
"aws:ResourceTag/${TagKey}"
|
|
44
|
+
]
|
|
31
45
|
}
|
|
32
46
|
}
|
|
@@ -47,5 +47,12 @@
|
|
|
47
47
|
"conditionKeys": [
|
|
48
48
|
"aws:ResourceTag/${TagKey}"
|
|
49
49
|
]
|
|
50
|
+
},
|
|
51
|
+
"scheduled-query": {
|
|
52
|
+
"key": "scheduled-query",
|
|
53
|
+
"arn": "arn:${Partition}:logs:${Region}:${Account}:scheduled-query:${ScheduledQueryId}",
|
|
54
|
+
"conditionKeys": [
|
|
55
|
+
"aws:ResourceTag/${TagKey}"
|
|
56
|
+
]
|
|
50
57
|
}
|
|
51
58
|
}
|
|
@@ -45,5 +45,12 @@
|
|
|
45
45
|
"conditionKeys": [
|
|
46
46
|
"aws:ResourceTag/${TagKey}"
|
|
47
47
|
]
|
|
48
|
+
},
|
|
49
|
+
"responsibilitytransfer": {
|
|
50
|
+
"key": "responsibilitytransfer",
|
|
51
|
+
"arn": "arn:${Partition}:organizations::${Account}:transfer/o-${OrganizationId}/${TransferType}/${TransferDirection}/rt-${ResponsibilityTransferId}",
|
|
52
|
+
"conditionKeys": [
|
|
53
|
+
"aws:ResourceTag/${TagKey}"
|
|
54
|
+
]
|
|
48
55
|
}
|
|
49
56
|
}
|
|
@@ -36,5 +36,26 @@
|
|
|
36
36
|
"solution": {
|
|
37
37
|
"key": "Solution",
|
|
38
38
|
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/solution/${Identifier}"
|
|
39
|
+
},
|
|
40
|
+
"programmanagementaccount": {
|
|
41
|
+
"key": "ProgramManagementAccount",
|
|
42
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/program-management-account/${Identifier}",
|
|
43
|
+
"conditionKeys": [
|
|
44
|
+
"aws:ResourceTag/${TagKey}"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"relationship": {
|
|
48
|
+
"key": "Relationship",
|
|
49
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/program-management-account/${ProgramManagementAccountId}/relationship/${RelationshipId}",
|
|
50
|
+
"conditionKeys": [
|
|
51
|
+
"aws:ResourceTag/${TagKey}"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"channelhandshake": {
|
|
55
|
+
"key": "ChannelHandshake",
|
|
56
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/channel-handshake/${Identifier}",
|
|
57
|
+
"conditionKeys": [
|
|
58
|
+
"aws:ResourceTag/${TagKey}"
|
|
59
|
+
]
|
|
39
60
|
}
|
|
40
61
|
}
|
|
@@ -17,17 +17,26 @@
|
|
|
17
17
|
"aws:ResourceTag/${TagKey}",
|
|
18
18
|
"s3:AccessPointNetworkOrigin",
|
|
19
19
|
"s3:AccessPointTag/${TagKey}",
|
|
20
|
+
"s3:BucketTag/${TagKey}",
|
|
20
21
|
"s3:DataAccessPointAccount",
|
|
21
22
|
"s3:DataAccessPointArn"
|
|
22
23
|
]
|
|
23
24
|
},
|
|
24
25
|
"bucket": {
|
|
25
26
|
"key": "bucket",
|
|
26
|
-
"arn": "arn:${Partition}:s3:::${BucketName}"
|
|
27
|
+
"arn": "arn:${Partition}:s3:::${BucketName}",
|
|
28
|
+
"conditionKeys": [
|
|
29
|
+
"aws:ResourceTag/${TagKey}",
|
|
30
|
+
"s3:BucketTag/${TagKey}"
|
|
31
|
+
]
|
|
27
32
|
},
|
|
28
33
|
"object": {
|
|
29
34
|
"key": "object",
|
|
30
|
-
"arn": "arn:${Partition}:s3:::${BucketName}/${ObjectName}"
|
|
35
|
+
"arn": "arn:${Partition}:s3:::${BucketName}/${ObjectName}",
|
|
36
|
+
"conditionKeys": [
|
|
37
|
+
"aws:ResourceTag/${TagKey}",
|
|
38
|
+
"s3:BucketTag/${TagKey}"
|
|
39
|
+
]
|
|
31
40
|
},
|
|
32
41
|
"job": {
|
|
33
42
|
"key": "job",
|
package/data/serviceNames.json
CHANGED
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
"osis": "Amazon OpenSearch Ingestion",
|
|
288
288
|
"outposts": "AWS Outposts",
|
|
289
289
|
"panorama": "AWS Panorama",
|
|
290
|
-
"partnercentral": "AWS Partner Central
|
|
290
|
+
"partnercentral": "AWS Partner Central",
|
|
291
291
|
"partnercentral-account-management": "AWS Partner central account management",
|
|
292
292
|
"payment-cryptography": "AWS Payment Cryptography",
|
|
293
293
|
"payments": "AWS Payments",
|
|
@@ -299,6 +299,7 @@
|
|
|
299
299
|
"pipes": "Amazon EventBridge Pipes",
|
|
300
300
|
"polly": "Amazon Polly",
|
|
301
301
|
"pricing": "AWS Price List",
|
|
302
|
+
"pricingplanmanager": "AWS PricingPlanManager Service",
|
|
302
303
|
"private-networks": "AWS service providing managed private networks",
|
|
303
304
|
"profile": "Amazon Connect Customer Profiles",
|
|
304
305
|
"proton": "AWS Proton",
|
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.15.
|
|
3
|
+
"version": "0.15.202511221",
|
|
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": "2025-11-
|
|
9
|
+
"updatedAt": "2025-11-22T04:46:27.965Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|