@cloud-copilot/iam-data 0.15.202602101 → 0.15.202602121
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/bcm-pricing-calculator.json +44 -4
- package/data/actions/kafka.json +57 -0
- package/data/actions/securityagent.json +4 -25
- package/data/actions/signin.json +28 -2
- package/data/actions/workspaces.json +10 -3
- package/data/resourceTypes/bcm-pricing-calculator.json +9 -3
- package/data/resourceTypes/signin.json +10 -1
- package/package.json +2 -2
|
@@ -19,7 +19,10 @@
|
|
|
19
19
|
"description": "Grants permission to create a new bill scenario",
|
|
20
20
|
"accessLevel": "Write",
|
|
21
21
|
"resourceTypes": [],
|
|
22
|
-
"conditionKeys": [
|
|
22
|
+
"conditionKeys": [
|
|
23
|
+
"aws:RequestTag/${TagKey}",
|
|
24
|
+
"aws:TagKeys"
|
|
25
|
+
],
|
|
23
26
|
"dependentActions": []
|
|
24
27
|
},
|
|
25
28
|
"createbillscenariocommitmentmodification": {
|
|
@@ -57,7 +60,10 @@
|
|
|
57
60
|
"description": "Grants permission to create a new Workload estimate",
|
|
58
61
|
"accessLevel": "Write",
|
|
59
62
|
"resourceTypes": [],
|
|
60
|
-
"conditionKeys": [
|
|
63
|
+
"conditionKeys": [
|
|
64
|
+
"aws:RequestTag/${TagKey}",
|
|
65
|
+
"aws:TagKeys"
|
|
66
|
+
],
|
|
61
67
|
"dependentActions": []
|
|
62
68
|
},
|
|
63
69
|
"createworkloadestimateusage": {
|
|
@@ -359,7 +365,24 @@
|
|
|
359
365
|
"name": "TagResource",
|
|
360
366
|
"description": "Grants permission to add a tag to a resource",
|
|
361
367
|
"accessLevel": "Tagging",
|
|
362
|
-
"resourceTypes": [
|
|
368
|
+
"resourceTypes": [
|
|
369
|
+
{
|
|
370
|
+
"name": "bill-scenario",
|
|
371
|
+
"required": false,
|
|
372
|
+
"conditionKeys": [
|
|
373
|
+
"aws:ResourceTag/${TagKey}"
|
|
374
|
+
],
|
|
375
|
+
"dependentActions": []
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"name": "workload-estimate",
|
|
379
|
+
"required": false,
|
|
380
|
+
"conditionKeys": [
|
|
381
|
+
"aws:ResourceTag/${TagKey}"
|
|
382
|
+
],
|
|
383
|
+
"dependentActions": []
|
|
384
|
+
}
|
|
385
|
+
],
|
|
363
386
|
"conditionKeys": [
|
|
364
387
|
"aws:RequestTag/${TagKey}",
|
|
365
388
|
"aws:TagKeys"
|
|
@@ -370,7 +393,24 @@
|
|
|
370
393
|
"name": "UntagResource",
|
|
371
394
|
"description": "Grants permission to remove a tag from a resource",
|
|
372
395
|
"accessLevel": "Tagging",
|
|
373
|
-
"resourceTypes": [
|
|
396
|
+
"resourceTypes": [
|
|
397
|
+
{
|
|
398
|
+
"name": "bill-scenario",
|
|
399
|
+
"required": false,
|
|
400
|
+
"conditionKeys": [
|
|
401
|
+
"aws:ResourceTag/${TagKey}"
|
|
402
|
+
],
|
|
403
|
+
"dependentActions": []
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "workload-estimate",
|
|
407
|
+
"required": false,
|
|
408
|
+
"conditionKeys": [
|
|
409
|
+
"aws:ResourceTag/${TagKey}"
|
|
410
|
+
],
|
|
411
|
+
"dependentActions": []
|
|
412
|
+
}
|
|
413
|
+
],
|
|
374
414
|
"conditionKeys": [
|
|
375
415
|
"aws:TagKeys"
|
|
376
416
|
],
|
package/data/actions/kafka.json
CHANGED
|
@@ -136,6 +136,24 @@
|
|
|
136
136
|
],
|
|
137
137
|
"dependentActions": []
|
|
138
138
|
},
|
|
139
|
+
"createtopic": {
|
|
140
|
+
"name": "CreateTopic",
|
|
141
|
+
"description": "Grants permission to create a Kafka topic in an MSK cluster",
|
|
142
|
+
"accessLevel": "Write",
|
|
143
|
+
"resourceTypes": [
|
|
144
|
+
{
|
|
145
|
+
"name": "topic",
|
|
146
|
+
"required": true,
|
|
147
|
+
"conditionKeys": [],
|
|
148
|
+
"dependentActions": []
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"conditionKeys": [],
|
|
152
|
+
"dependentActions": [
|
|
153
|
+
"kafka-cluster:Connect",
|
|
154
|
+
"kafka-cluster:CreateTopic"
|
|
155
|
+
]
|
|
156
|
+
},
|
|
139
157
|
"createvpcconnection": {
|
|
140
158
|
"name": "CreateVpcConnection",
|
|
141
159
|
"description": "Grants permission to create a MSK VPC connection",
|
|
@@ -235,6 +253,25 @@
|
|
|
235
253
|
"conditionKeys": [],
|
|
236
254
|
"dependentActions": []
|
|
237
255
|
},
|
|
256
|
+
"deletetopic": {
|
|
257
|
+
"name": "DeleteTopic",
|
|
258
|
+
"description": "Grants permission to delete a Kafka topic from an MSK cluster",
|
|
259
|
+
"accessLevel": "Write",
|
|
260
|
+
"resourceTypes": [
|
|
261
|
+
{
|
|
262
|
+
"name": "topic",
|
|
263
|
+
"required": true,
|
|
264
|
+
"conditionKeys": [],
|
|
265
|
+
"dependentActions": []
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
"conditionKeys": [],
|
|
269
|
+
"dependentActions": [
|
|
270
|
+
"kafka-cluster:Connect",
|
|
271
|
+
"kafka-cluster:DeleteTopic",
|
|
272
|
+
"kafka-cluster:DescribeTopic"
|
|
273
|
+
]
|
|
274
|
+
},
|
|
238
275
|
"deletevpcconnection": {
|
|
239
276
|
"name": "DeleteVpcConnection",
|
|
240
277
|
"description": "Grants permission to delete a MSK VPC connection",
|
|
@@ -889,5 +926,25 @@
|
|
|
889
926
|
],
|
|
890
927
|
"conditionKeys": [],
|
|
891
928
|
"dependentActions": []
|
|
929
|
+
},
|
|
930
|
+
"updatetopic": {
|
|
931
|
+
"name": "UpdateTopic",
|
|
932
|
+
"description": "Grants permission to update the configuration of a Kafka topic in an MSK cluster",
|
|
933
|
+
"accessLevel": "Write",
|
|
934
|
+
"resourceTypes": [
|
|
935
|
+
{
|
|
936
|
+
"name": "topic",
|
|
937
|
+
"required": true,
|
|
938
|
+
"conditionKeys": [],
|
|
939
|
+
"dependentActions": []
|
|
940
|
+
}
|
|
941
|
+
],
|
|
942
|
+
"conditionKeys": [],
|
|
943
|
+
"dependentActions": [
|
|
944
|
+
"kafka-cluster:AlterTopic",
|
|
945
|
+
"kafka-cluster:AlterTopicDynamicConfiguration",
|
|
946
|
+
"kafka-cluster:Connect",
|
|
947
|
+
"kafka-cluster:DescribeTopic"
|
|
948
|
+
]
|
|
892
949
|
}
|
|
893
950
|
}
|
|
@@ -213,14 +213,7 @@
|
|
|
213
213
|
"name": "CreateAgentSpace",
|
|
214
214
|
"description": "Grants permission to create an agent space record",
|
|
215
215
|
"accessLevel": "Write",
|
|
216
|
-
"resourceTypes": [
|
|
217
|
-
{
|
|
218
|
-
"name": "Application",
|
|
219
|
-
"required": true,
|
|
220
|
-
"conditionKeys": [],
|
|
221
|
-
"dependentActions": []
|
|
222
|
-
}
|
|
223
|
-
],
|
|
216
|
+
"resourceTypes": [],
|
|
224
217
|
"conditionKeys": [],
|
|
225
218
|
"dependentActions": []
|
|
226
219
|
},
|
|
@@ -301,7 +294,7 @@
|
|
|
301
294
|
"accessLevel": "Write",
|
|
302
295
|
"resourceTypes": [
|
|
303
296
|
{
|
|
304
|
-
"name": "
|
|
297
|
+
"name": "AgentSpace",
|
|
305
298
|
"required": true,
|
|
306
299
|
"conditionKeys": [],
|
|
307
300
|
"dependentActions": []
|
|
@@ -659,14 +652,7 @@
|
|
|
659
652
|
"name": "GetLoginSessionCredentials",
|
|
660
653
|
"description": "Grants permission to retrieve credentials for a one time login session",
|
|
661
654
|
"accessLevel": "Read",
|
|
662
|
-
"resourceTypes": [
|
|
663
|
-
{
|
|
664
|
-
"name": "Application",
|
|
665
|
-
"required": true,
|
|
666
|
-
"conditionKeys": [],
|
|
667
|
-
"dependentActions": []
|
|
668
|
-
}
|
|
669
|
-
],
|
|
655
|
+
"resourceTypes": [],
|
|
670
656
|
"conditionKeys": [],
|
|
671
657
|
"dependentActions": []
|
|
672
658
|
},
|
|
@@ -689,14 +675,7 @@
|
|
|
689
675
|
"name": "HandleOneTimeLoginSession",
|
|
690
676
|
"description": "Grants permission to process and invalidate a one time login session",
|
|
691
677
|
"accessLevel": "Write",
|
|
692
|
-
"resourceTypes": [
|
|
693
|
-
{
|
|
694
|
-
"name": "Application",
|
|
695
|
-
"required": true,
|
|
696
|
-
"conditionKeys": [],
|
|
697
|
-
"dependentActions": []
|
|
698
|
-
}
|
|
699
|
-
],
|
|
678
|
+
"resourceTypes": [],
|
|
700
679
|
"conditionKeys": [],
|
|
701
680
|
"dependentActions": []
|
|
702
681
|
},
|
package/data/actions/signin.json
CHANGED
|
@@ -3,7 +3,20 @@
|
|
|
3
3
|
"name": "AuthorizeOAuth2Access",
|
|
4
4
|
"description": "Grants permission to authenticate through a browser and obtain an OAuth 2.0 authorization code for credential exchange",
|
|
5
5
|
"accessLevel": "Read",
|
|
6
|
-
"resourceTypes": [
|
|
6
|
+
"resourceTypes": [
|
|
7
|
+
{
|
|
8
|
+
"name": "oauth2-public-client-localhost",
|
|
9
|
+
"required": true,
|
|
10
|
+
"conditionKeys": [],
|
|
11
|
+
"dependentActions": []
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "oauth2-public-client-remote",
|
|
15
|
+
"required": true,
|
|
16
|
+
"conditionKeys": [],
|
|
17
|
+
"dependentActions": []
|
|
18
|
+
}
|
|
19
|
+
],
|
|
7
20
|
"conditionKeys": [],
|
|
8
21
|
"dependentActions": []
|
|
9
22
|
},
|
|
@@ -11,7 +24,20 @@
|
|
|
11
24
|
"name": "CreateOAuth2Token",
|
|
12
25
|
"description": "Grants permission to exchange an authorization code for OAuth 2.0 access token and refresh token that can be used to access AWS services from developer tools and applications",
|
|
13
26
|
"accessLevel": "Read",
|
|
14
|
-
"resourceTypes": [
|
|
27
|
+
"resourceTypes": [
|
|
28
|
+
{
|
|
29
|
+
"name": "oauth2-public-client-localhost",
|
|
30
|
+
"required": true,
|
|
31
|
+
"conditionKeys": [],
|
|
32
|
+
"dependentActions": []
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "oauth2-public-client-remote",
|
|
36
|
+
"required": true,
|
|
37
|
+
"conditionKeys": [],
|
|
38
|
+
"dependentActions": []
|
|
39
|
+
}
|
|
40
|
+
],
|
|
15
41
|
"conditionKeys": [],
|
|
16
42
|
"dependentActions": []
|
|
17
43
|
},
|
|
@@ -275,19 +275,26 @@
|
|
|
275
275
|
{
|
|
276
276
|
"name": "directoryid",
|
|
277
277
|
"required": true,
|
|
278
|
-
"conditionKeys": [
|
|
278
|
+
"conditionKeys": [
|
|
279
|
+
"aws:ResourceTag/${TagKey}"
|
|
280
|
+
],
|
|
279
281
|
"dependentActions": []
|
|
280
282
|
},
|
|
281
283
|
{
|
|
282
284
|
"name": "workspacebundle",
|
|
283
285
|
"required": true,
|
|
284
|
-
"conditionKeys": [
|
|
286
|
+
"conditionKeys": [
|
|
287
|
+
"aws:ResourceTag/${TagKey}"
|
|
288
|
+
],
|
|
285
289
|
"dependentActions": []
|
|
286
290
|
},
|
|
287
291
|
{
|
|
288
292
|
"name": "workspaceid",
|
|
289
293
|
"required": true,
|
|
290
|
-
"conditionKeys": [
|
|
294
|
+
"conditionKeys": [
|
|
295
|
+
"aws:RequestTag/${TagKey}",
|
|
296
|
+
"aws:TagKeys"
|
|
297
|
+
],
|
|
291
298
|
"dependentActions": []
|
|
292
299
|
}
|
|
293
300
|
],
|
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bill-estimate": {
|
|
3
3
|
"key": "bill-estimate",
|
|
4
|
-
"arn": "arn:${Partition}:bcm-pricing-calculator
|
|
4
|
+
"arn": "arn:${Partition}:bcm-pricing-calculator::${Account}:bill-estimate/${BillEstimateId}"
|
|
5
5
|
},
|
|
6
6
|
"bill-scenario": {
|
|
7
7
|
"key": "bill-scenario",
|
|
8
|
-
"arn": "arn:${Partition}:bcm-pricing-calculator
|
|
8
|
+
"arn": "arn:${Partition}:bcm-pricing-calculator::${Account}:bill-scenario/${BillScenarioId}",
|
|
9
|
+
"conditionKeys": [
|
|
10
|
+
"aws:ResourceTag/${TagKey}"
|
|
11
|
+
]
|
|
9
12
|
},
|
|
10
13
|
"workload-estimate": {
|
|
11
14
|
"key": "workload-estimate",
|
|
12
|
-
"arn": "arn:${Partition}:bcm-pricing-calculator
|
|
15
|
+
"arn": "arn:${Partition}:bcm-pricing-calculator::${Account}:workload-estimate/${WorkloadEstimateId}",
|
|
16
|
+
"conditionKeys": [
|
|
17
|
+
"aws:ResourceTag/${TagKey}"
|
|
18
|
+
]
|
|
13
19
|
}
|
|
14
20
|
}
|
|
@@ -1 +1,10 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"oauth2-public-client-localhost": {
|
|
3
|
+
"key": "oauth2-public-client-localhost",
|
|
4
|
+
"arn": "arn:${Partition}:signin:${Region}:${Account}:oauth2/public-client/localhost"
|
|
5
|
+
},
|
|
6
|
+
"oauth2-public-client-remote": {
|
|
7
|
+
"key": "oauth2-public-client-remote",
|
|
8
|
+
"arn": "arn:${Partition}:signin:${Region}:${Account}:oauth2/public-client/remote"
|
|
9
|
+
}
|
|
10
|
+
}
|
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.202602121",
|
|
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-02-
|
|
9
|
+
"updatedAt": "2026-02-12T05:50:30.429Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|