Skip to content

Commit

Permalink
Updates SDK to v2.380.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 19, 2018
1 parent 9371a60 commit 1987862
Show file tree
Hide file tree
Showing 21 changed files with 769 additions and 529 deletions.
22 changes: 22 additions & 0 deletions .changes/2.380.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "EC2",
"description": "This release adds support for specifying partition as a strategy for EC2 Placement Groups. This new strategy allows one to launch instances into partitions that do not share certain underlying hardware between partitions, to assist with building and deploying highly available replicated applications. "
},
{
"type": "feature",
"category": "SageMaker",
"description": "Batch Transform Jobs now supports TFRecord as a Split Type. ListCompilationJobs API action now supports SortOrder and SortBy inputs."
},
{
"type": "feature",
"category": "WAF",
"description": "This release adds rule-level control for rule group. If a rule group contains a rule that blocks legitimate traffic, previously you had to override the entire rule group to COUNT in order to allow the traffic. You can now use the UpdateWebACL API to exclude specific rules within a rule group. Excluding rules changes the action for the individual rules to COUNT. Excluded rules will be recorded in the new \"excludedRules\" attribute of the WAF logs."
},
{
"type": "feature",
"category": "WAFRegional",
"description": "This release adds rule-level control for rule group. If a rule group contains a rule that blocks legitimate traffic, previously you had to override the entire rule group to COUNT in order to allow the traffic. You can now use the UpdateWebACL API to exclude specific rules within a rule group. Excluding rules changes the action for the individual rules to COUNT. Excluded rules will be recorded in the new \"excludedRules\" attribute of the WAF logs."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.379.0-->
<!--LATEST=2.380.0-->
<!--ENTRYINSERT-->

## 2.380.0
* feature: EC2: This release adds support for specifying partition as a strategy for EC2 Placement Groups. This new strategy allows one to launch instances into partitions that do not share certain underlying hardware between partitions, to assist with building and deploying highly available replicated applications.
* feature: SageMaker: Batch Transform Jobs now supports TFRecord as a Split Type. ListCompilationJobs API action now supports SortOrder and SortBy inputs.
* feature: WAF: This release adds rule-level control for rule group. If a rule group contains a rule that blocks legitimate traffic, previously you had to override the entire rule group to COUNT in order to allow the traffic. You can now use the UpdateWebACL API to exclude specific rules within a rule group. Excluding rules changes the action for the individual rules to COUNT. Excluded rules will be recorded in the new "excludedRules" attribute of the WAF logs.
* feature: WAFRegional: This release adds rule-level control for rule group. If a rule group contains a rule that blocks legitimate traffic, previously you had to override the entire rule group to COUNT in order to allow the traffic. You can now use the UpdateWebACL API to exclude specific rules within a rule group. Excluding rules changes the action for the individual rules to COUNT. Excluded rules will be recorded in the new "excludedRules" attribute of the WAF logs.

## 2.379.0
* bugfix: S3: fix fo #2418, putObject with key as substring of bucket results in extra folder
* feature: ApiGatewayManagementApi: This is the initial SDK release for the Amazon API Gateway Management API, which allows you to directly manage runtime aspects of your APIs. This release makes it easy to send data directly to clients connected to your WebSocket-based APIs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.379.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.380.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
18 changes: 14 additions & 4 deletions apis/ec2-2016-11-15.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -2044,10 +2044,6 @@
"CreatePlacementGroup": {
"input": {
"type": "structure",
"required": [
"GroupName",
"Strategy"
],
"members": {
"DryRun": {
"locationName": "dryRun",
Expand All @@ -2058,6 +2054,9 @@
},
"Strategy": {
"locationName": "strategy"
},
"PartitionCount": {
"type": "integer"
}
}
}
Expand Down Expand Up @@ -6566,6 +6565,10 @@
},
"Strategy": {
"locationName": "strategy"
},
"PartitionCount": {
"locationName": "partitionCount",
"type": "integer"
}
}
}
Expand Down Expand Up @@ -10685,6 +10688,9 @@
},
"Tenancy": {
"locationName": "tenancy"
},
"PartitionNumber": {
"type": "integer"
}
}
},
Expand Down Expand Up @@ -13889,6 +13895,10 @@
"GroupName": {
"locationName": "groupName"
},
"PartitionNumber": {
"locationName": "partitionNumber",
"type": "integer"
},
"HostId": {
"locationName": "hostId"
},
Expand Down
47 changes: 31 additions & 16 deletions apis/ec2-2016-11-15.normal.json

Large diffs are not rendered by default.

Loading

0 comments on commit 1987862

Please sign in to comment.