aws-sdk 2.1438.0 → 2.1440.0
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/CHANGELOG.md +9 -1
- package/README.md +1 -1
- package/apis/codecommit-2015-04-13.min.json +44 -0
- package/apis/codecommit-2015-04-13.paginators.json +5 -0
- package/apis/ec2-2016-11-15.min.json +675 -655
- package/apis/securityhub-2018-10-26.min.json +100 -61
- package/clients/codecommit.d.ts +87 -30
- package/clients/ec2.d.ts +27 -4
- package/clients/gamelift.d.ts +91 -91
- package/clients/securityhub.d.ts +68 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +727 -658
- package/dist/aws-sdk.min.js +87 -87
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1440.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1440.0
|
6
|
+
* feature: CodeCommit: Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.
|
7
|
+
* feature: SecurityHub: Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.
|
8
|
+
|
9
|
+
## 2.1439.0
|
10
|
+
* feature: EC2: Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints
|
11
|
+
* feature: GameLift: Amazon GameLift updates its instance types support.
|
12
|
+
|
5
13
|
## 2.1438.0
|
6
14
|
* feature: LexModelsV2: This release updates the Custom Vocabulary Weight field to support a value of 0.
|
7
15
|
|
package/README.md
CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
71
71
|
To use the SDK in the browser, simply add the following script tag to your
|
72
72
|
HTML pages:
|
73
73
|
|
74
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
74
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1440.0.min.js"></script>
|
75
75
|
|
76
76
|
You can also build a custom browser SDK with your specified set of AWS services.
|
77
77
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -1485,6 +1485,50 @@
|
|
1485
1485
|
}
|
1486
1486
|
}
|
1487
1487
|
},
|
1488
|
+
"ListFileCommitHistory": {
|
1489
|
+
"input": {
|
1490
|
+
"type": "structure",
|
1491
|
+
"required": [
|
1492
|
+
"repositoryName",
|
1493
|
+
"filePath"
|
1494
|
+
],
|
1495
|
+
"members": {
|
1496
|
+
"repositoryName": {},
|
1497
|
+
"commitSpecifier": {},
|
1498
|
+
"filePath": {},
|
1499
|
+
"maxResults": {
|
1500
|
+
"type": "integer"
|
1501
|
+
},
|
1502
|
+
"nextToken": {}
|
1503
|
+
}
|
1504
|
+
},
|
1505
|
+
"output": {
|
1506
|
+
"type": "structure",
|
1507
|
+
"required": [
|
1508
|
+
"revisionDag"
|
1509
|
+
],
|
1510
|
+
"members": {
|
1511
|
+
"revisionDag": {
|
1512
|
+
"type": "list",
|
1513
|
+
"member": {
|
1514
|
+
"type": "structure",
|
1515
|
+
"members": {
|
1516
|
+
"commit": {
|
1517
|
+
"shape": "S1l"
|
1518
|
+
},
|
1519
|
+
"blobId": {},
|
1520
|
+
"path": {},
|
1521
|
+
"revisionChildren": {
|
1522
|
+
"type": "list",
|
1523
|
+
"member": {}
|
1524
|
+
}
|
1525
|
+
}
|
1526
|
+
}
|
1527
|
+
},
|
1528
|
+
"nextToken": {}
|
1529
|
+
}
|
1530
|
+
}
|
1531
|
+
},
|
1488
1532
|
"ListPullRequests": {
|
1489
1533
|
"input": {
|
1490
1534
|
"type": "structure",
|
@@ -50,6 +50,11 @@
|
|
50
50
|
"output_token": "nextToken",
|
51
51
|
"result_key": "branches"
|
52
52
|
},
|
53
|
+
"ListFileCommitHistory": {
|
54
|
+
"input_token": "nextToken",
|
55
|
+
"limit_key": "maxResults",
|
56
|
+
"output_token": "nextToken"
|
57
|
+
},
|
53
58
|
"ListPullRequests": {
|
54
59
|
"input_token": "nextToken",
|
55
60
|
"limit_key": "maxResults",
|