@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
@@ -241,6 +241,12 @@
241
241
  "conditionKeys": [],
242
242
  "dependentActions": []
243
243
  },
244
+ {
245
+ "name": "mlflow-app",
246
+ "required": false,
247
+ "conditionKeys": [],
248
+ "dependentActions": []
249
+ },
244
250
  {
245
251
  "name": "mlflow-tracking-server",
246
252
  "required": false,
@@ -547,6 +553,21 @@
547
553
  "conditionKeys": [],
548
554
  "dependentActions": []
549
555
  },
556
+ "callmlflowappapi": {
557
+ "name": "CallMlflowAppApi",
558
+ "description": "Grants permission to invoke MLflow APIs",
559
+ "accessLevel": "Write",
560
+ "resourceTypes": [
561
+ {
562
+ "name": "mlflow-app",
563
+ "required": true,
564
+ "conditionKeys": [],
565
+ "dependentActions": []
566
+ }
567
+ ],
568
+ "conditionKeys": [],
569
+ "dependentActions": []
570
+ },
550
571
  "callpartnerappapi": {
551
572
  "name": "CallPartnerAppApi",
552
573
  "description": "Grants permission for Partner App SDK to access the Partner App for reading or writing data use cases",
@@ -1413,6 +1434,27 @@
1413
1434
  "conditionKeys": [],
1414
1435
  "dependentActions": []
1415
1436
  },
1437
+ "createmlflowapp": {
1438
+ "name": "CreateMlflowApp",
1439
+ "description": "Grants permission to create an MLflow app",
1440
+ "accessLevel": "Write",
1441
+ "resourceTypes": [
1442
+ {
1443
+ "name": "mlflow-app",
1444
+ "required": true,
1445
+ "conditionKeys": [],
1446
+ "dependentActions": [
1447
+ "iam:PassRole",
1448
+ "sagemaker:AddTags"
1449
+ ]
1450
+ }
1451
+ ],
1452
+ "conditionKeys": [
1453
+ "aws:RequestTag/${TagKey}",
1454
+ "aws:TagKeys"
1455
+ ],
1456
+ "dependentActions": []
1457
+ },
1416
1458
  "createmlflowtrackingserver": {
1417
1459
  "name": "CreateMlflowTrackingServer",
1418
1460
  "description": "Grants permission to create an MLflow tracking server",
@@ -1805,6 +1847,21 @@
1805
1847
  "conditionKeys": [],
1806
1848
  "dependentActions": []
1807
1849
  },
1850
+ "createpresignedmlflowappurl": {
1851
+ "name": "CreatePresignedMlflowAppUrl",
1852
+ "description": "Grants permission to return a URL that you can use from your browser to connect to the MLflow app",
1853
+ "accessLevel": "Write",
1854
+ "resourceTypes": [
1855
+ {
1856
+ "name": "mlflow-app",
1857
+ "required": true,
1858
+ "conditionKeys": [],
1859
+ "dependentActions": []
1860
+ }
1861
+ ],
1862
+ "conditionKeys": [],
1863
+ "dependentActions": []
1864
+ },
1808
1865
  "createpresignedmlflowtrackingserverurl": {
1809
1866
  "name": "CreatePresignedMlflowTrackingServerUrl",
1810
1867
  "description": "Grants permission to return a URL that you can use from your browser to connect to the MLflow tracking server",
@@ -2703,6 +2760,21 @@
2703
2760
  "conditionKeys": [],
2704
2761
  "dependentActions": []
2705
2762
  },
2763
+ "deletemlflowapp": {
2764
+ "name": "DeleteMlflowApp",
2765
+ "description": "Grants permission to delete an MLflow app",
2766
+ "accessLevel": "Write",
2767
+ "resourceTypes": [
2768
+ {
2769
+ "name": "mlflow-app",
2770
+ "required": true,
2771
+ "conditionKeys": [],
2772
+ "dependentActions": []
2773
+ }
2774
+ ],
2775
+ "conditionKeys": [],
2776
+ "dependentActions": []
2777
+ },
2706
2778
  "deletemlflowtrackingserver": {
2707
2779
  "name": "DeleteMlflowTrackingServer",
2708
2780
  "description": "Grants permission to delete an MLflow tracking server",
@@ -4072,6 +4144,21 @@
4072
4144
  "conditionKeys": [],
4073
4145
  "dependentActions": []
4074
4146
  },
4147
+ "describemlflowapp": {
4148
+ "name": "DescribeMlflowApp",
4149
+ "description": "Grants permission to get information about an MLflow app",
4150
+ "accessLevel": "Read",
4151
+ "resourceTypes": [
4152
+ {
4153
+ "name": "mlflow-app",
4154
+ "required": true,
4155
+ "conditionKeys": [],
4156
+ "dependentActions": []
4157
+ }
4158
+ ],
4159
+ "conditionKeys": [],
4160
+ "dependentActions": []
4161
+ },
4075
4162
  "describemlflowtrackingserver": {
4076
4163
  "name": "DescribeMlflowTrackingServer",
4077
4164
  "description": "Grants permission to get information about an MLflow tracking server",
@@ -5234,6 +5321,14 @@
5234
5321
  "conditionKeys": [],
5235
5322
  "dependentActions": []
5236
5323
  },
5324
+ "listmlflowapps": {
5325
+ "name": "ListMlflowApps",
5326
+ "description": "Grants permission to list SageMaker MLflow Apps in your account",
5327
+ "accessLevel": "List",
5328
+ "resourceTypes": [],
5329
+ "conditionKeys": [],
5330
+ "dependentActions": []
5331
+ },
5237
5332
  "listmlflowtrackingservers": {
5238
5333
  "name": "ListMlflowTrackingServers",
5239
5334
  "description": "Grants permission to list MLflow tracking servers",
@@ -7055,6 +7150,21 @@
7055
7150
  "conditionKeys": [],
7056
7151
  "dependentActions": []
7057
7152
  },
7153
+ "updatemlflowapp": {
7154
+ "name": "UpdateMlflowApp",
7155
+ "description": "Grants permission to update an MLflow app",
7156
+ "accessLevel": "Write",
7157
+ "resourceTypes": [
7158
+ {
7159
+ "name": "mlflow-app",
7160
+ "required": true,
7161
+ "conditionKeys": [],
7162
+ "dependentActions": []
7163
+ }
7164
+ ],
7165
+ "conditionKeys": [],
7166
+ "dependentActions": []
7167
+ },
7058
7168
  "updatemlflowtrackingserver": {
7059
7169
  "name": "UpdateMlflowTrackingServer",
7060
7170
  "description": "Grants permission to update an MLflow tracking server",
@@ -89,6 +89,7 @@
89
89
  "dependentActions": [
90
90
  "iam:CreateServiceLinkedRole",
91
91
  "organizations:DescribeOrganization",
92
+ "organizations:ListAWSServiceAccessForOrganization",
92
93
  "organizations:ListDelegatedAdministrators"
93
94
  ]
94
95
  }
@@ -197,6 +198,21 @@
197
198
  "conditionKeys": [],
198
199
  "dependentActions": []
199
200
  },
201
+ "listinvestigations": {
202
+ "name": "ListInvestigations",
203
+ "description": "Grants permission to list investigations for a case",
204
+ "accessLevel": "Read",
205
+ "resourceTypes": [
206
+ {
207
+ "name": "case",
208
+ "required": true,
209
+ "conditionKeys": [],
210
+ "dependentActions": []
211
+ }
212
+ ],
213
+ "conditionKeys": [],
214
+ "dependentActions": []
215
+ },
200
216
  "listmemberships": {
201
217
  "name": "ListMemberships",
202
218
  "description": "Grants permission to list memberships",
@@ -229,6 +245,21 @@
229
245
  ],
230
246
  "dependentActions": []
231
247
  },
248
+ "sendfeedback": {
249
+ "name": "SendFeedback",
250
+ "description": "Grants permission to send feedback for investigation results",
251
+ "accessLevel": "Write",
252
+ "resourceTypes": [
253
+ {
254
+ "name": "case",
255
+ "required": true,
256
+ "conditionKeys": [],
257
+ "dependentActions": []
258
+ }
259
+ ],
260
+ "conditionKeys": [],
261
+ "dependentActions": []
262
+ },
232
263
  "tagresource": {
233
264
  "name": "TagResource",
234
265
  "description": "Grants permission to add tags to the specified resource",