aws-iam-data 0.0.9 → 0.0.10

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/README.md CHANGED
@@ -13,11 +13,14 @@ npm i --save aws-iam-data
13
13
  To use it in your own projects, see [examples/index.js](examples/index.js) or the code below:
14
14
 
15
15
  ```javascript
16
- const { iamData, metadata } = require('aws-iam-data');
16
+ const { iamData, metadata, changelog } = require('aws-iam-data');
17
17
 
18
18
  // Get overall service count
19
19
  console.log(`Contains ${metadata.serviceCount} services!`);
20
20
 
21
+ // Get changelog
22
+ console.log(JSON.stringify(changelog, null, 2));
23
+
21
24
  // Get EC2 data
22
25
  const ec2IamData = iamData.filter(service => service.name === 'Amazon EC2')[0];
23
26
 
@@ -0,0 +1,28 @@
1
+ [
2
+ {
3
+ "dateOfChange": "2023-05-26",
4
+ "addedServices": [],
5
+ "removedServices": [],
6
+ "addedActions": {
7
+ "AWS AppSync": [
8
+ "appsync:AssociateMergedGraphqlApi",
9
+ "appsync:AssociateSourceGraphqlApi",
10
+ "appsync:DeleteResourcePolicy",
11
+ "appsync:DisassociateMergedGraphqlApi",
12
+ "appsync:DisassociateSourceGraphqlApi",
13
+ "appsync:GetResourcePolicy",
14
+ "appsync:GetSourceApiAssociation",
15
+ "appsync:ListSourceApiAssociations",
16
+ "appsync:ListTypesByAssociation",
17
+ "appsync:PutResourcePolicy",
18
+ "appsync:SourceGraphQL",
19
+ "appsync:StartSchemaMerge",
20
+ "appsync:UpdateSourceApiAssociation"
21
+ ],
22
+ "Amazon Translate": [
23
+ "translate:TranslateDocument"
24
+ ]
25
+ },
26
+ "removedActions": {}
27
+ }
28
+ ]