Skip to content

Commit

Permalink
Updates SDK to v2.1153.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jun 13, 2022
1 parent 89971c8 commit ef34124
Show file tree
Hide file tree
Showing 15 changed files with 433 additions and 102 deletions.
12 changes: 12 additions & 0 deletions .changes/2.1153.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "bugfix",
"category": "redshift-serverless",
"description": "remove redshift-serverless client"
},
{
"type": "feature",
"category": "Outposts",
"description": "This release adds API operations AWS uses to install Outpost servers."
}
]

This file was deleted.

6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1152.0-->
<!--LATEST=2.1153.0-->
<!--ENTRYINSERT-->

## 2.1153.0
* bugfix: redshift-serverless: remove redshift-serverless client
* feature: Outposts: This release adds API operations AWS uses to install Outpost servers.

## 2.1152.0
* feature: ChimeSDKMeetings: Adds support for live transcription in AWS GovCloud (US) Regions.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
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.1152.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1153.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
67 changes: 67 additions & 0 deletions apis/outposts-2019-12-03.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,44 @@
}
}
},
"GetConnection": {
"http": {
"method": "GET",
"requestUri": "/connections/{ConnectionId}"
},
"input": {
"type": "structure",
"required": [
"ConnectionId"
],
"members": {
"ConnectionId": {
"location": "uri",
"locationName": "ConnectionId"
}
}
},
"output": {
"type": "structure",
"members": {
"ConnectionId": {},
"ConnectionDetails": {
"type": "structure",
"members": {
"ClientPublicKey": {},
"ServerPublicKey": {},
"ServerEndpoint": {},
"ClientTunnelAddress": {},
"ServerTunnelAddress": {},
"AllowedIps": {
"type": "list",
"member": {}
}
}
}
}
}
},
"GetOrder": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -650,6 +688,35 @@
}
}
},
"StartConnection": {
"http": {
"requestUri": "/connections"
},
"input": {
"type": "structure",
"required": [
"DeviceSerialNumber",
"AssetId",
"ClientPublicKey",
"NetworkInterfaceDeviceIndex"
],
"members": {
"DeviceSerialNumber": {},
"AssetId": {},
"ClientPublicKey": {},
"NetworkInterfaceDeviceIndex": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"ConnectionId": {},
"UnderlayIpAddress": {}
}
}
},
"TagResource": {
"http": {
"requestUri": "/tags/{ResourceArn}"
Expand Down
Loading

0 comments on commit ef34124

Please sign in to comment.