Skip to content

Commit 4260370

Browse files
author
awstools
committed
Updates SDK to v2.1636.0
1 parent 0b2e634 commit 4260370

37 files changed

+6558
-4018
lines changed

.changes/2.1636.0.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Account",
5+
"description": "This release adds 3 new APIs (AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used to centrally manage the root user email address of member accounts within an AWS organization."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "FSx",
10+
"description": "This release adds support to increase metadata performance on FSx for Lustre file systems beyond the default level provisioned when a file system is created. This can be done by specifying MetadataConfiguration during the creation of Persistent_2 file systems or by updating it on demand."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Firehose",
15+
"description": "Adds integration with Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake destinations"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Glue",
20+
"description": "This release adds support for creating and updating Glue Data Catalog Views."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "IoTWireless",
25+
"description": "Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one."
26+
},
27+
{
28+
"type": "feature",
29+
"category": "Location",
30+
"description": "Added two new APIs, VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting larger geofences up to 100,000 vertices with Geobuf fields."
31+
},
32+
{
33+
"type": "feature",
34+
"category": "StorageGateway",
35+
"description": "Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy."
36+
}
37+
]

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1635.0-->
2+
<!--LATEST=2.1636.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1636.0
6+
* feature: Account: This release adds 3 new APIs (AcceptPrimaryEmailUpdate, GetPrimaryEmail, and StartPrimaryEmailUpdate) used to centrally manage the root user email address of member accounts within an AWS organization.
7+
* feature: FSx: This release adds support to increase metadata performance on FSx for Lustre file systems beyond the default level provisioned when a file system is created. This can be done by specifying MetadataConfiguration during the creation of Persistent_2 file systems or by updating it on demand.
8+
* feature: Firehose: Adds integration with Secrets Manager for Redshift, Splunk, HttpEndpoint, and Snowflake destinations
9+
* feature: Glue: This release adds support for creating and updating Glue Data Catalog Views.
10+
* feature: IoTWireless: Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one.
11+
* feature: Location: Added two new APIs, VerifyDevicePosition and ForecastGeofenceEvents. Added support for putting larger geofences up to 100,000 vertices with Geobuf fields.
12+
* feature: StorageGateway: Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy.
13+
514
## 2.1635.0
615
* feature: GlobalAccelerator: This release contains a new optional ip-addresses input field for the update accelerator and update custom routing accelerator apis. This input enables consumers to replace IPv4 addresses on existing accelerators with addresses provided in the input.
716
* feature: Glue: AWS Glue now supports native SaaS connectivity: Salesforce connector available now

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6464
To use the SDK in the browser, simply add the following script tag to your
6565
HTML pages:
6666

67-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1635.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1636.0.min.js"></script>
6868

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

apis/account-2021-02-01.min.json

+101-19
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,36 @@
1212
"uid": "account-2021-02-01"
1313
},
1414
"operations": {
15+
"AcceptPrimaryEmailUpdate": {
16+
"http": {
17+
"requestUri": "/acceptPrimaryEmailUpdate",
18+
"responseCode": 200
19+
},
20+
"input": {
21+
"type": "structure",
22+
"required": [
23+
"AccountId",
24+
"Otp",
25+
"PrimaryEmail"
26+
],
27+
"members": {
28+
"AccountId": {},
29+
"Otp": {
30+
"type": "string",
31+
"sensitive": true
32+
},
33+
"PrimaryEmail": {
34+
"shape": "S4"
35+
}
36+
}
37+
},
38+
"output": {
39+
"type": "structure",
40+
"members": {
41+
"Status": {}
42+
}
43+
}
44+
},
1545
"DeleteAlternateContact": {
1646
"http": {
1747
"requestUri": "/deleteAlternateContact",
@@ -84,16 +114,16 @@
84114
"members": {
85115
"AlternateContactType": {},
86116
"EmailAddress": {
87-
"shape": "Sa"
117+
"shape": "Sf"
88118
},
89119
"Name": {
90-
"shape": "Sb"
120+
"shape": "Sg"
91121
},
92122
"PhoneNumber": {
93-
"shape": "Sc"
123+
"shape": "Sh"
94124
},
95125
"Title": {
96-
"shape": "Sd"
126+
"shape": "Si"
97127
}
98128
}
99129
}
@@ -115,7 +145,30 @@
115145
"type": "structure",
116146
"members": {
117147
"ContactInformation": {
118-
"shape": "Sg"
148+
"shape": "Sl"
149+
}
150+
}
151+
}
152+
},
153+
"GetPrimaryEmail": {
154+
"http": {
155+
"requestUri": "/getPrimaryEmail",
156+
"responseCode": 200
157+
},
158+
"input": {
159+
"type": "structure",
160+
"required": [
161+
"AccountId"
162+
],
163+
"members": {
164+
"AccountId": {}
165+
}
166+
},
167+
"output": {
168+
"type": "structure",
169+
"members": {
170+
"PrimaryEmail": {
171+
"shape": "S4"
119172
}
120173
}
121174
}
@@ -197,16 +250,16 @@
197250
"AccountId": {},
198251
"AlternateContactType": {},
199252
"EmailAddress": {
200-
"shape": "Sa"
253+
"shape": "Sf"
201254
},
202255
"Name": {
203-
"shape": "Sb"
256+
"shape": "Sg"
204257
},
205258
"PhoneNumber": {
206-
"shape": "Sc"
259+
"shape": "Sh"
207260
},
208261
"Title": {
209-
"shape": "Sd"
262+
"shape": "Si"
210263
}
211264
}
212265
},
@@ -225,31 +278,60 @@
225278
"members": {
226279
"AccountId": {},
227280
"ContactInformation": {
228-
"shape": "Sg"
281+
"shape": "Sl"
229282
}
230283
}
231284
},
232285
"idempotent": true
286+
},
287+
"StartPrimaryEmailUpdate": {
288+
"http": {
289+
"requestUri": "/startPrimaryEmailUpdate",
290+
"responseCode": 200
291+
},
292+
"input": {
293+
"type": "structure",
294+
"required": [
295+
"AccountId",
296+
"PrimaryEmail"
297+
],
298+
"members": {
299+
"AccountId": {},
300+
"PrimaryEmail": {
301+
"shape": "S4"
302+
}
303+
}
304+
},
305+
"output": {
306+
"type": "structure",
307+
"members": {
308+
"Status": {}
309+
}
310+
}
233311
}
234312
},
235313
"shapes": {
236-
"Sa": {
314+
"S4": {
237315
"type": "string",
238316
"sensitive": true
239317
},
240-
"Sb": {
318+
"Sf": {
241319
"type": "string",
242320
"sensitive": true
243321
},
244-
"Sc": {
322+
"Sg": {
245323
"type": "string",
246324
"sensitive": true
247325
},
248-
"Sd": {
326+
"Sh": {
249327
"type": "string",
250328
"sensitive": true
251329
},
252-
"Sg": {
330+
"Si": {
331+
"type": "string",
332+
"sensitive": true
333+
},
334+
"Sl": {
253335
"type": "structure",
254336
"required": [
255337
"AddressLine1",
@@ -261,13 +343,13 @@
261343
],
262344
"members": {
263345
"AddressLine1": {
264-
"shape": "Sh"
346+
"shape": "Sm"
265347
},
266348
"AddressLine2": {
267-
"shape": "Sh"
349+
"shape": "Sm"
268350
},
269351
"AddressLine3": {
270-
"shape": "Sh"
352+
"shape": "Sm"
271353
},
272354
"City": {
273355
"type": "string",
@@ -307,7 +389,7 @@
307389
}
308390
}
309391
},
310-
"Sh": {
392+
"Sm": {
311393
"type": "string",
312394
"sensitive": true
313395
}

0 commit comments

Comments
 (0)