Skip to content

Commit ef34124

Browse files
author
awstools
committed
Updates SDK to v2.1153.0
1 parent 89971c8 commit ef34124

15 files changed

+433
-102
lines changed

.changes/2.1153.0.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "bugfix",
4+
"category": "redshift-serverless",
5+
"description": "remove redshift-serverless client"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Outposts",
10+
"description": "This release adds API operations AWS uses to install Outpost servers."
11+
}
12+
]

.changes/next-release/bugfix-redshift-serverless-79e3a946.json

-5
This file was deleted.

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1152.0-->
2+
<!--LATEST=2.1153.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1153.0
6+
* bugfix: redshift-serverless: remove redshift-serverless client
7+
* feature: Outposts: This release adds API operations AWS uses to install Outpost servers.
8+
59
## 2.1152.0
610
* feature: ChimeSDKMeetings: Adds support for live transcription in AWS GovCloud (US) Regions.
711

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1152.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1153.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/outposts-2019-12-03.min.json

+67
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,44 @@
209209
}
210210
}
211211
},
212+
"GetConnection": {
213+
"http": {
214+
"method": "GET",
215+
"requestUri": "/connections/{ConnectionId}"
216+
},
217+
"input": {
218+
"type": "structure",
219+
"required": [
220+
"ConnectionId"
221+
],
222+
"members": {
223+
"ConnectionId": {
224+
"location": "uri",
225+
"locationName": "ConnectionId"
226+
}
227+
}
228+
},
229+
"output": {
230+
"type": "structure",
231+
"members": {
232+
"ConnectionId": {},
233+
"ConnectionDetails": {
234+
"type": "structure",
235+
"members": {
236+
"ClientPublicKey": {},
237+
"ServerPublicKey": {},
238+
"ServerEndpoint": {},
239+
"ClientTunnelAddress": {},
240+
"ServerTunnelAddress": {},
241+
"AllowedIps": {
242+
"type": "list",
243+
"member": {}
244+
}
245+
}
246+
}
247+
}
248+
}
249+
},
212250
"GetOrder": {
213251
"http": {
214252
"method": "GET",
@@ -650,6 +688,35 @@
650688
}
651689
}
652690
},
691+
"StartConnection": {
692+
"http": {
693+
"requestUri": "/connections"
694+
},
695+
"input": {
696+
"type": "structure",
697+
"required": [
698+
"DeviceSerialNumber",
699+
"AssetId",
700+
"ClientPublicKey",
701+
"NetworkInterfaceDeviceIndex"
702+
],
703+
"members": {
704+
"DeviceSerialNumber": {},
705+
"AssetId": {},
706+
"ClientPublicKey": {},
707+
"NetworkInterfaceDeviceIndex": {
708+
"type": "integer"
709+
}
710+
}
711+
},
712+
"output": {
713+
"type": "structure",
714+
"members": {
715+
"ConnectionId": {},
716+
"UnderlayIpAddress": {}
717+
}
718+
}
719+
},
653720
"TagResource": {
654721
"http": {
655722
"requestUri": "/tags/{ResourceArn}"

0 commit comments

Comments
 (0)