@cloud-copilot/iam-data 0.15.202511271 → 0.15.202512061

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.
Files changed (64) hide show
  1. package/data/actions/aidevops.json +489 -0
  2. package/data/actions/aws-marketplace.json +48 -0
  3. package/data/actions/aws-mcp.json +26 -0
  4. package/data/actions/bedrock-agentcore.json +594 -2
  5. package/data/actions/bedrock-mantle.json +106 -0
  6. package/data/actions/cloudfront.json +239 -0
  7. package/data/actions/cloudwatch.json +45 -0
  8. package/data/actions/connect.json +1081 -8
  9. package/data/actions/datazone.json +16 -0
  10. package/data/actions/ecr.json +78 -0
  11. package/data/actions/eks.json +108 -0
  12. package/data/actions/lambda.json +296 -4
  13. package/data/actions/logs.json +105 -0
  14. package/data/actions/mediaconnect.json +748 -91
  15. package/data/actions/observabilityadmin.json +180 -0
  16. package/data/actions/opensearch.json +40 -0
  17. package/data/actions/partnercentral-account-management.json +22 -0
  18. package/data/actions/partnercentral.json +903 -22
  19. package/data/actions/route53.json +15 -0
  20. package/data/actions/route53globalresolver.json +700 -0
  21. package/data/actions/s3.json +1 -0
  22. package/data/actions/s3tables.json +243 -3
  23. package/data/actions/s3vectors.json +147 -22
  24. package/data/actions/sagemaker-unified-studio-mcp.json +3 -0
  25. package/data/actions/sagemaker.json +110 -0
  26. package/data/actions/security-ir.json +31 -0
  27. package/data/actions/securityagent.json +503 -0
  28. package/data/actions/transform-custom.json +274 -0
  29. package/data/actions/transform.json +72 -0
  30. package/data/conditionKeys/aidevops.json +22 -0
  31. package/data/conditionKeys/aws-mcp.json +1 -0
  32. package/data/conditionKeys/bedrock-agentcore.json +0 -5
  33. package/data/conditionKeys/bedrock-mantle.json +17 -0
  34. package/data/conditionKeys/connect.json +10 -0
  35. package/data/conditionKeys/observabilityadmin.json +5 -0
  36. package/data/conditionKeys/partnercentral-account-management.json +12 -1
  37. package/data/conditionKeys/partnercentral.json +15 -0
  38. package/data/conditionKeys/route53globalresolver.json +17 -0
  39. package/data/conditionKeys/s3tables.json +5 -0
  40. package/data/conditionKeys/s3vectors.json +20 -0
  41. package/data/conditionKeys/securityagent.json +1 -0
  42. package/data/conditionKeys/transform-custom.json +17 -0
  43. package/data/conditionPatterns.json +4 -0
  44. package/data/resourceTypes/aidevops.json +24 -0
  45. package/data/resourceTypes/apigateway.json +3 -0
  46. package/data/resourceTypes/aws-mcp.json +1 -0
  47. package/data/resourceTypes/bedrock-agentcore.json +20 -0
  48. package/data/resourceTypes/bedrock-mantle.json +6 -0
  49. package/data/resourceTypes/cloudfront.json +14 -0
  50. package/data/resourceTypes/connect.json +18 -0
  51. package/data/resourceTypes/eks.json +7 -0
  52. package/data/resourceTypes/lambda.json +11 -0
  53. package/data/resourceTypes/mediaconnect.json +41 -12
  54. package/data/resourceTypes/observabilityadmin.json +14 -0
  55. package/data/resourceTypes/omics.json +0 -4
  56. package/data/resourceTypes/partnercentral.json +42 -0
  57. package/data/resourceTypes/route53globalresolver.json +37 -0
  58. package/data/resourceTypes/s3vectors.json +10 -2
  59. package/data/resourceTypes/sagemaker.json +8 -0
  60. package/data/resourceTypes/securityagent.json +38 -0
  61. package/data/resourceTypes/transform-custom.json +18 -0
  62. package/data/serviceNames.json +7 -1
  63. package/data/services.json +6 -0
  64. package/package.json +2 -2
@@ -0,0 +1,106 @@
1
+ {
2
+ "callwithbearertoken": {
3
+ "name": "CallWithBearerToken",
4
+ "isPermissionOnly": true,
5
+ "description": "Grants permission to make API calls using bearer token authentication",
6
+ "accessLevel": "List",
7
+ "resourceTypes": [],
8
+ "conditionKeys": [
9
+ "bedrock-mantle:BearerTokenType"
10
+ ],
11
+ "dependentActions": []
12
+ },
13
+ "cancelinference": {
14
+ "name": "CancelInference",
15
+ "description": "Grants permission to cancel an in-progress inference request",
16
+ "accessLevel": "Write",
17
+ "resourceTypes": [
18
+ {
19
+ "name": "project",
20
+ "required": true,
21
+ "conditionKeys": [],
22
+ "dependentActions": []
23
+ }
24
+ ],
25
+ "conditionKeys": [],
26
+ "dependentActions": []
27
+ },
28
+ "createinference": {
29
+ "name": "CreateInference",
30
+ "description": "Grants permission to create a chat completion inference request",
31
+ "accessLevel": "Write",
32
+ "resourceTypes": [
33
+ {
34
+ "name": "project",
35
+ "required": true,
36
+ "conditionKeys": [],
37
+ "dependentActions": []
38
+ }
39
+ ],
40
+ "conditionKeys": [
41
+ "bedrock-mantle:ServiceTier",
42
+ "bedrock-mantle:Model"
43
+ ],
44
+ "dependentActions": []
45
+ },
46
+ "deleteinference": {
47
+ "name": "DeleteInference",
48
+ "description": "Grants permission to delete a specific inference request",
49
+ "accessLevel": "Write",
50
+ "resourceTypes": [
51
+ {
52
+ "name": "project",
53
+ "required": true,
54
+ "conditionKeys": [],
55
+ "dependentActions": []
56
+ }
57
+ ],
58
+ "conditionKeys": [],
59
+ "dependentActions": []
60
+ },
61
+ "getinference": {
62
+ "name": "GetInference",
63
+ "description": "Grants permission to retrieve details of a specific inference request",
64
+ "accessLevel": "Read",
65
+ "resourceTypes": [
66
+ {
67
+ "name": "project",
68
+ "required": true,
69
+ "conditionKeys": [],
70
+ "dependentActions": []
71
+ }
72
+ ],
73
+ "conditionKeys": [],
74
+ "dependentActions": []
75
+ },
76
+ "getmodel": {
77
+ "name": "GetModel",
78
+ "description": "Grants permission to retrieve information about a specific model",
79
+ "accessLevel": "Read",
80
+ "resourceTypes": [
81
+ {
82
+ "name": "project",
83
+ "required": true,
84
+ "conditionKeys": [],
85
+ "dependentActions": []
86
+ }
87
+ ],
88
+ "conditionKeys": [],
89
+ "dependentActions": []
90
+ },
91
+ "listmodels": {
92
+ "name": "ListModels",
93
+ "description": "Grants permission to list all available models in a project",
94
+ "accessLevel": "List",
95
+ "resourceTypes": [
96
+ {
97
+ "name": "project",
98
+ "required": true,
99
+ "conditionKeys": [],
100
+ "dependentActions": []
101
+ }
102
+ ],
103
+ "conditionKeys": [],
104
+ "dependentActions": []
105
+ }
106
+ }
@@ -106,6 +106,17 @@
106
106
  "conditionKeys": [],
107
107
  "dependentActions": []
108
108
  },
109
+ "createconnectionfunction": {
110
+ "name": "CreateConnectionFunction",
111
+ "description": "Grants permission to create a connection function",
112
+ "accessLevel": "Write",
113
+ "resourceTypes": [],
114
+ "conditionKeys": [
115
+ "aws:RequestTag/${TagKey}",
116
+ "aws:TagKeys"
117
+ ],
118
+ "dependentActions": []
119
+ },
109
120
  "createconnectiongroup": {
110
121
  "name": "CreateConnectionGroup",
111
122
  "description": "Grants permission to create a connection group",
@@ -299,6 +310,17 @@
299
310
  ],
300
311
  "dependentActions": []
301
312
  },
313
+ "createtruststore": {
314
+ "name": "CreateTrustStore",
315
+ "description": "Grants permission to create a trust store",
316
+ "accessLevel": "Write",
317
+ "resourceTypes": [],
318
+ "conditionKeys": [
319
+ "aws:RequestTag/${TagKey}",
320
+ "aws:TagKeys"
321
+ ],
322
+ "dependentActions": []
323
+ },
302
324
  "createvpcorigin": {
303
325
  "name": "CreateVpcOrigin",
304
326
  "description": "Grants permission to create a VPC origin",
@@ -355,6 +377,21 @@
355
377
  "conditionKeys": [],
356
378
  "dependentActions": []
357
379
  },
380
+ "deleteconnectionfunction": {
381
+ "name": "DeleteConnectionFunction",
382
+ "description": "Grants permission to delete a connection function",
383
+ "accessLevel": "Write",
384
+ "resourceTypes": [
385
+ {
386
+ "name": "connection-function",
387
+ "required": true,
388
+ "conditionKeys": [],
389
+ "dependentActions": []
390
+ }
391
+ ],
392
+ "conditionKeys": [],
393
+ "dependentActions": []
394
+ },
358
395
  "deleteconnectiongroup": {
359
396
  "name": "DeleteConnectionGroup",
360
397
  "description": "Grants permission to delete a connection group",
@@ -589,6 +626,21 @@
589
626
  "conditionKeys": [],
590
627
  "dependentActions": []
591
628
  },
629
+ "deletetruststore": {
630
+ "name": "DeleteTrustStore",
631
+ "description": "Grants permission to delete a trust store",
632
+ "accessLevel": "Write",
633
+ "resourceTypes": [
634
+ {
635
+ "name": "trust-store",
636
+ "required": true,
637
+ "conditionKeys": [],
638
+ "dependentActions": []
639
+ }
640
+ ],
641
+ "conditionKeys": [],
642
+ "dependentActions": []
643
+ },
592
644
  "deletevpcorigin": {
593
645
  "name": "DeleteVpcOrigin",
594
646
  "description": "Grants permission to delete a VPC origin",
@@ -604,6 +656,21 @@
604
656
  "conditionKeys": [],
605
657
  "dependentActions": []
606
658
  },
659
+ "describeconnectionfunction": {
660
+ "name": "DescribeConnectionFunction",
661
+ "description": "Grants permission to get a connection function summary",
662
+ "accessLevel": "Read",
663
+ "resourceTypes": [
664
+ {
665
+ "name": "connection-function",
666
+ "required": true,
667
+ "conditionKeys": [],
668
+ "dependentActions": []
669
+ }
670
+ ],
671
+ "conditionKeys": [],
672
+ "dependentActions": []
673
+ },
607
674
  "describefunction": {
608
675
  "name": "DescribeFunction",
609
676
  "description": "Grants permission to get a CloudFront function summary",
@@ -739,6 +806,21 @@
739
806
  "conditionKeys": [],
740
807
  "dependentActions": []
741
808
  },
809
+ "getconnectionfunction": {
810
+ "name": "GetConnectionFunction",
811
+ "description": "Grants permission to get a connection function's code",
812
+ "accessLevel": "Read",
813
+ "resourceTypes": [
814
+ {
815
+ "name": "connection-function",
816
+ "required": true,
817
+ "conditionKeys": [],
818
+ "dependentActions": []
819
+ }
820
+ ],
821
+ "conditionKeys": [],
822
+ "dependentActions": []
823
+ },
742
824
  "getconnectiongroup": {
743
825
  "name": "GetConnectionGroup",
744
826
  "description": "Grants permission to get information about a connection group",
@@ -1178,6 +1260,21 @@
1178
1260
  "conditionKeys": [],
1179
1261
  "dependentActions": []
1180
1262
  },
1263
+ "gettruststore": {
1264
+ "name": "GetTrustStore",
1265
+ "description": "Grants permission to get information about a trust store",
1266
+ "accessLevel": "Read",
1267
+ "resourceTypes": [
1268
+ {
1269
+ "name": "trust-store",
1270
+ "required": true,
1271
+ "conditionKeys": [],
1272
+ "dependentActions": []
1273
+ }
1274
+ ],
1275
+ "conditionKeys": [],
1276
+ "dependentActions": []
1277
+ },
1181
1278
  "getvpcorigin": {
1182
1279
  "name": "GetVpcOrigin",
1183
1280
  "description": "Grants permission to get the information about a VPC origin",
@@ -1232,6 +1329,14 @@
1232
1329
  "conditionKeys": [],
1233
1330
  "dependentActions": []
1234
1331
  },
1332
+ "listconnectionfunctions": {
1333
+ "name": "ListConnectionFunctions",
1334
+ "description": "Grants permission to list the connection functions in your AWS account",
1335
+ "accessLevel": "List",
1336
+ "resourceTypes": [],
1337
+ "conditionKeys": [],
1338
+ "dependentActions": []
1339
+ },
1235
1340
  "listconnectiongroups": {
1236
1341
  "name": "ListConnectionGroups",
1237
1342
  "description": "Grants permission to list the connection groups in your AWS account",
@@ -1288,6 +1393,21 @@
1288
1393
  "conditionKeys": [],
1289
1394
  "dependentActions": []
1290
1395
  },
1396
+ "listdistributionsbyconnectionfunction": {
1397
+ "name": "ListDistributionsByConnectionFunction",
1398
+ "description": "Grants permission to list summaries for distributions associated with the specified connection function",
1399
+ "accessLevel": "List",
1400
+ "resourceTypes": [
1401
+ {
1402
+ "name": "connection-function",
1403
+ "required": true,
1404
+ "conditionKeys": [],
1405
+ "dependentActions": []
1406
+ }
1407
+ ],
1408
+ "conditionKeys": [],
1409
+ "dependentActions": []
1410
+ },
1291
1411
  "listdistributionsbyconnectionmode": {
1292
1412
  "name": "ListDistributionsByConnectionMode",
1293
1413
  "description": "Grants permission to list the distributions by the specified connection mode",
@@ -1337,6 +1457,21 @@
1337
1457
  "conditionKeys": [],
1338
1458
  "dependentActions": []
1339
1459
  },
1460
+ "listdistributionsbytruststore": {
1461
+ "name": "ListDistributionsByTrustStore",
1462
+ "description": "Grants permission to list summaries for distributions associated with the specified trust store",
1463
+ "accessLevel": "List",
1464
+ "resourceTypes": [
1465
+ {
1466
+ "name": "trust-store",
1467
+ "required": true,
1468
+ "conditionKeys": [],
1469
+ "dependentActions": []
1470
+ }
1471
+ ],
1472
+ "conditionKeys": [],
1473
+ "dependentActions": []
1474
+ },
1340
1475
  "listdistributionsbyvpcoriginid": {
1341
1476
  "name": "ListDistributionsByVpcOriginId",
1342
1477
  "description": "Grants permission to list IDs for distributions associated with the specified VPC origin",
@@ -1521,6 +1656,12 @@
1521
1656
  "conditionKeys": [],
1522
1657
  "dependentActions": []
1523
1658
  },
1659
+ {
1660
+ "name": "connection-function",
1661
+ "required": false,
1662
+ "conditionKeys": [],
1663
+ "dependentActions": []
1664
+ },
1524
1665
  {
1525
1666
  "name": "connection-group",
1526
1667
  "required": false,
@@ -1539,6 +1680,12 @@
1539
1680
  "conditionKeys": [],
1540
1681
  "dependentActions": []
1541
1682
  },
1683
+ {
1684
+ "name": "trust-store",
1685
+ "required": false,
1686
+ "conditionKeys": [],
1687
+ "dependentActions": []
1688
+ },
1542
1689
  {
1543
1690
  "name": "vpcorigin",
1544
1691
  "required": false,
@@ -1549,6 +1696,14 @@
1549
1696
  "conditionKeys": [],
1550
1697
  "dependentActions": []
1551
1698
  },
1699
+ "listtruststores": {
1700
+ "name": "ListTrustStores",
1701
+ "description": "Grants permission to list the trust stores in your AWS account",
1702
+ "accessLevel": "List",
1703
+ "resourceTypes": [],
1704
+ "conditionKeys": [],
1705
+ "dependentActions": []
1706
+ },
1552
1707
  "listusages": {
1553
1708
  "name": "ListUsages",
1554
1709
  "isPermissionOnly": true,
@@ -1566,6 +1721,21 @@
1566
1721
  "conditionKeys": [],
1567
1722
  "dependentActions": []
1568
1723
  },
1724
+ "publishconnectionfunction": {
1725
+ "name": "PublishConnectionFunction",
1726
+ "description": "Grants permission to publish a connection function",
1727
+ "accessLevel": "Write",
1728
+ "resourceTypes": [
1729
+ {
1730
+ "name": "connection-function",
1731
+ "required": true,
1732
+ "conditionKeys": [],
1733
+ "dependentActions": []
1734
+ }
1735
+ ],
1736
+ "conditionKeys": [],
1737
+ "dependentActions": []
1738
+ },
1569
1739
  "publishfunction": {
1570
1740
  "name": "PublishFunction",
1571
1741
  "description": "Grants permission to publish a CloudFront function",
@@ -1607,6 +1777,12 @@
1607
1777
  "conditionKeys": [],
1608
1778
  "dependentActions": []
1609
1779
  },
1780
+ {
1781
+ "name": "connection-function",
1782
+ "required": false,
1783
+ "conditionKeys": [],
1784
+ "dependentActions": []
1785
+ },
1610
1786
  {
1611
1787
  "name": "connection-group",
1612
1788
  "required": false,
@@ -1631,6 +1807,12 @@
1631
1807
  "conditionKeys": [],
1632
1808
  "dependentActions": []
1633
1809
  },
1810
+ {
1811
+ "name": "trust-store",
1812
+ "required": false,
1813
+ "conditionKeys": [],
1814
+ "dependentActions": []
1815
+ },
1634
1816
  {
1635
1817
  "name": "vpcorigin",
1636
1818
  "required": false,
@@ -1644,6 +1826,21 @@
1644
1826
  ],
1645
1827
  "dependentActions": []
1646
1828
  },
1829
+ "testconnectionfunction": {
1830
+ "name": "TestConnectionFunction",
1831
+ "description": "Grants permission to test a connection function",
1832
+ "accessLevel": "Write",
1833
+ "resourceTypes": [
1834
+ {
1835
+ "name": "connection-function",
1836
+ "required": true,
1837
+ "conditionKeys": [],
1838
+ "dependentActions": []
1839
+ }
1840
+ ],
1841
+ "conditionKeys": [],
1842
+ "dependentActions": []
1843
+ },
1647
1844
  "testfunction": {
1648
1845
  "name": "TestFunction",
1649
1846
  "description": "Grants permission to test a CloudFront function",
@@ -1670,6 +1867,12 @@
1670
1867
  "conditionKeys": [],
1671
1868
  "dependentActions": []
1672
1869
  },
1870
+ {
1871
+ "name": "connection-function",
1872
+ "required": false,
1873
+ "conditionKeys": [],
1874
+ "dependentActions": []
1875
+ },
1673
1876
  {
1674
1877
  "name": "connection-group",
1675
1878
  "required": false,
@@ -1694,6 +1897,12 @@
1694
1897
  "conditionKeys": [],
1695
1898
  "dependentActions": []
1696
1899
  },
1900
+ {
1901
+ "name": "trust-store",
1902
+ "required": false,
1903
+ "conditionKeys": [],
1904
+ "dependentActions": []
1905
+ },
1697
1906
  {
1698
1907
  "name": "vpcorigin",
1699
1908
  "required": false,
@@ -1751,6 +1960,21 @@
1751
1960
  "conditionKeys": [],
1752
1961
  "dependentActions": []
1753
1962
  },
1963
+ "updateconnectionfunction": {
1964
+ "name": "UpdateConnectionFunction",
1965
+ "description": "Grants permission to update a connection function",
1966
+ "accessLevel": "Write",
1967
+ "resourceTypes": [
1968
+ {
1969
+ "name": "connection-function",
1970
+ "required": true,
1971
+ "conditionKeys": [],
1972
+ "dependentActions": []
1973
+ }
1974
+ ],
1975
+ "conditionKeys": [],
1976
+ "dependentActions": []
1977
+ },
1754
1978
  "updateconnectiongroup": {
1755
1979
  "name": "UpdateConnectionGroup",
1756
1980
  "description": "Grants permission to update a connection group",
@@ -2000,6 +2224,21 @@
2000
2224
  "conditionKeys": [],
2001
2225
  "dependentActions": []
2002
2226
  },
2227
+ "updatetruststore": {
2228
+ "name": "UpdateTrustStore",
2229
+ "description": "Grants permission to update a trust store",
2230
+ "accessLevel": "Write",
2231
+ "resourceTypes": [
2232
+ {
2233
+ "name": "trust-store",
2234
+ "required": true,
2235
+ "conditionKeys": [],
2236
+ "dependentActions": []
2237
+ }
2238
+ ],
2239
+ "conditionKeys": [],
2240
+ "dependentActions": []
2241
+ },
2003
2242
  "updatevpcorigin": {
2004
2243
  "name": "UpdateVpcOrigin",
2005
2244
  "description": "Grants permission to update a VPC origin",
@@ -467,6 +467,12 @@
467
467
  "conditionKeys": [],
468
468
  "dependentActions": []
469
469
  },
470
+ {
471
+ "name": "alarm-mute-rule",
472
+ "required": false,
473
+ "conditionKeys": [],
474
+ "dependentActions": []
475
+ },
470
476
  {
471
477
  "name": "insight-rule",
472
478
  "required": false,
@@ -492,6 +498,15 @@
492
498
  }
493
499
  ]
494
500
  },
501
+ {
502
+ "name": "CloudWatch-AlarmMuteRule",
503
+ "resourceTypes": [
504
+ {
505
+ "name": "alarm-mute-rule",
506
+ "required": true
507
+ }
508
+ ]
509
+ },
495
510
  {
496
511
  "name": "CloudWatch-InsightRule",
497
512
  "resourceTypes": [
@@ -688,6 +703,12 @@
688
703
  "conditionKeys": [],
689
704
  "dependentActions": []
690
705
  },
706
+ {
707
+ "name": "alarm-mute-rule",
708
+ "required": false,
709
+ "conditionKeys": [],
710
+ "dependentActions": []
711
+ },
691
712
  {
692
713
  "name": "insight-rule",
693
714
  "required": false,
@@ -716,6 +737,15 @@
716
737
  }
717
738
  ]
718
739
  },
740
+ {
741
+ "name": "CloudWatch-AlarmMuteRule",
742
+ "resourceTypes": [
743
+ {
744
+ "name": "alarm-mute-rule",
745
+ "required": true
746
+ }
747
+ ]
748
+ },
719
749
  {
720
750
  "name": "CloudWatch-InsightRule",
721
751
  "resourceTypes": [
@@ -747,6 +777,12 @@
747
777
  "conditionKeys": [],
748
778
  "dependentActions": []
749
779
  },
780
+ {
781
+ "name": "alarm-mute-rule",
782
+ "required": false,
783
+ "conditionKeys": [],
784
+ "dependentActions": []
785
+ },
750
786
  {
751
787
  "name": "insight-rule",
752
788
  "required": false,
@@ -774,6 +810,15 @@
774
810
  }
775
811
  ]
776
812
  },
813
+ {
814
+ "name": "CloudWatch-AlarmMuteRule",
815
+ "resourceTypes": [
816
+ {
817
+ "name": "alarm-mute-rule",
818
+ "required": true
819
+ }
820
+ ]
821
+ },
777
822
  {
778
823
  "name": "CloudWatch-InsightRule",
779
824
  "resourceTypes": [