Skip to content

Commit

Permalink
Updates SDK to v2.608.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 21, 2020
1 parent 3bae1ff commit 3427cde
Show file tree
Hide file tree
Showing 20 changed files with 401 additions and 192 deletions.
17 changes: 17 additions & 0 deletions .changes/2.608.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "CodePipeline",
"description": "AWS CodePipeline enables an ability to stop pipeline executions."
},
{
"type": "feature",
"category": "EC2",
"description": "Add an enum value to the result of DescribeByoipCidrs to support CIDRs that are not publicly advertisable."
},
{
"type": "feature",
"category": "MarketplaceCommerceAnalytics",
"description": "Remove 4 deprecated data sets, change some data sets available dates to 2017-09-15"
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.607.0-->
<!--LATEST=2.608.0-->
<!--ENTRYINSERT-->

## 2.608.0
* feature: CodePipeline: AWS CodePipeline enables an ability to stop pipeline executions.
* feature: EC2: Add an enum value to the result of DescribeByoipCidrs to support CIDRs that are not publicly advertisable.
* feature: MarketplaceCommerceAnalytics: Remove 4 deprecated data sets, change some data sets available dates to 2017-09-15

## 2.607.0
* feature: AlexaForBusiness: Add support for CreatedTime and ConnectionStatusUpdatedTime in response of SearchDevices API.
* feature: ApplicationInsights: This release adds support for a list API to retrieve the configuration events logged during periodic updates to an application by Amazon CloudWatch Application Insights.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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.607.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.608.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
59 changes: 44 additions & 15 deletions apis/codepipeline-2015-07-09.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,12 @@
"triggerType": {},
"triggerDetail": {}
}
},
"stopTrigger": {
"type": "structure",
"members": {
"reason": {}
}
}
}
}
Expand Down Expand Up @@ -710,7 +716,7 @@
"webhooks": {
"type": "list",
"member": {
"shape": "S56"
"shape": "S58"
}
},
"NextToken": {}
Expand Down Expand Up @@ -863,7 +869,7 @@
"members": {
"jobId": {},
"failureDetails": {
"shape": "S66"
"shape": "S68"
}
}
}
Expand All @@ -877,11 +883,11 @@
"members": {
"jobId": {},
"currentRevision": {
"shape": "S69"
"shape": "S6b"
},
"continuationToken": {},
"executionDetails": {
"shape": "S6b"
"shape": "S6d"
},
"outputVariables": {
"shape": "S4h"
Expand All @@ -901,7 +907,7 @@
"jobId": {},
"clientToken": {},
"failureDetails": {
"shape": "S66"
"shape": "S68"
}
}
}
Expand All @@ -917,11 +923,11 @@
"jobId": {},
"clientToken": {},
"currentRevision": {
"shape": "S69"
"shape": "S6b"
},
"continuationToken": {},
"executionDetails": {
"shape": "S6b"
"shape": "S6d"
}
}
}
Expand All @@ -934,7 +940,7 @@
],
"members": {
"webhook": {
"shape": "S57"
"shape": "S59"
},
"tags": {
"shape": "Sq"
Expand All @@ -945,7 +951,7 @@
"type": "structure",
"members": {
"webhook": {
"shape": "S56"
"shape": "S58"
}
}
}
Expand Down Expand Up @@ -1005,6 +1011,29 @@
}
}
},
"StopPipelineExecution": {
"input": {
"type": "structure",
"required": [
"pipelineName",
"pipelineExecutionId"
],
"members": {
"pipelineName": {},
"pipelineExecutionId": {},
"abandon": {
"type": "boolean"
},
"reason": {}
}
},
"output": {
"type": "structure",
"members": {
"pipelineExecutionId": {}
}
}
},
"TagResource": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -1438,15 +1467,15 @@
"key": {},
"value": {}
},
"S56": {
"S58": {
"type": "structure",
"required": [
"definition",
"url"
],
"members": {
"definition": {
"shape": "S57"
"shape": "S59"
},
"url": {},
"errorMessage": {},
Expand All @@ -1460,7 +1489,7 @@
}
}
},
"S57": {
"S59": {
"type": "structure",
"required": [
"name",
Expand Down Expand Up @@ -1497,7 +1526,7 @@
}
}
},
"S66": {
"S68": {
"type": "structure",
"required": [
"type",
Expand All @@ -1509,7 +1538,7 @@
"externalExecutionId": {}
}
},
"S69": {
"S6b": {
"type": "structure",
"required": [
"revision",
Expand All @@ -1524,7 +1553,7 @@
"revisionSummary": {}
}
},
"S6b": {
"S6d": {
"type": "structure",
"members": {
"summary": {},
Expand Down
Loading

0 comments on commit 3427cde

Please sign in to comment.