Skip to content

Commit 0366a24

Browse files
author
awstools
committed
Updates SDK to v2.1314.0
1 parent 1477fdb commit 0366a24

19 files changed

+1118
-217
lines changed

.changes/2.1314.0.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Account",
5+
"description": "This release of the Account Management API enables customers to view and manage whether AWS Opt-In Regions are enabled or disabled for their Account. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-regions.html"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "AppConfigData",
10+
"description": "AWS AppConfig now offers the option to set a version label on hosted configuration versions. If a labeled hosted configuration version is deployed, its version label is available in the GetLatestConfiguration response."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Snowball",
15+
"description": "Adds support for EKS Anywhere on Snowball. AWS Snow Family customers can now install EKS Anywhere service on Snowball Edge Compute Optimized devices."
16+
}
17+
]

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1313.0-->
2+
<!--LATEST=2.1314.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1314.0
6+
* feature: Account: This release of the Account Management API enables customers to view and manage whether AWS Opt-In Regions are enabled or disabled for their Account. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-regions.html
7+
* feature: AppConfigData: AWS AppConfig now offers the option to set a version label on hosted configuration versions. If a labeled hosted configuration version is deployed, its version label is available in the GetLatestConfiguration response.
8+
* feature: Snowball: Adds support for EKS Anywhere on Snowball. AWS Snow Family customers can now install EKS Anywhere service on Snowball Edge Compute Optimized devices.
9+
510
## 2.1313.0
611
* feature: AutoScaling: You can now either terminate/replace, ignore, or wait for EC2 Auto Scaling instances on standby or protected from scale in. Also, you can also roll back changes from a failed instance refresh.
712
* feature: Connect: This update provides the Wisdom session ARN for contacts enabled for Wisdom in the chat channel.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ for further details.
5757
To use the SDK in the browser, simply add the following script tag to your
5858
HTML pages:
5959

60-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1313.0.min.js"></script>
60+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1314.0.min.js"></script>
6161

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

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

Lines changed: 110 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,38 @@
2929
},
3030
"idempotent": true
3131
},
32+
"DisableRegion": {
33+
"http": {
34+
"requestUri": "/disableRegion",
35+
"responseCode": 200
36+
},
37+
"input": {
38+
"type": "structure",
39+
"required": [
40+
"RegionName"
41+
],
42+
"members": {
43+
"AccountId": {},
44+
"RegionName": {}
45+
}
46+
}
47+
},
48+
"EnableRegion": {
49+
"http": {
50+
"requestUri": "/enableRegion",
51+
"responseCode": 200
52+
},
53+
"input": {
54+
"type": "structure",
55+
"required": [
56+
"RegionName"
57+
],
58+
"members": {
59+
"AccountId": {},
60+
"RegionName": {}
61+
}
62+
}
63+
},
3264
"GetAlternateContact": {
3365
"http": {
3466
"requestUri": "/getAlternateContact",
@@ -52,16 +84,16 @@
5284
"members": {
5385
"AlternateContactType": {},
5486
"EmailAddress": {
55-
"shape": "S7"
87+
"shape": "Sa"
5688
},
5789
"Name": {
58-
"shape": "S8"
90+
"shape": "Sb"
5991
},
6092
"PhoneNumber": {
61-
"shape": "S9"
93+
"shape": "Sc"
6294
},
6395
"Title": {
64-
"shape": "Sa"
96+
"shape": "Sd"
6597
}
6698
}
6799
}
@@ -83,7 +115,66 @@
83115
"type": "structure",
84116
"members": {
85117
"ContactInformation": {
86-
"shape": "Sd"
118+
"shape": "Sg"
119+
}
120+
}
121+
}
122+
},
123+
"GetRegionOptStatus": {
124+
"http": {
125+
"requestUri": "/getRegionOptStatus",
126+
"responseCode": 200
127+
},
128+
"input": {
129+
"type": "structure",
130+
"required": [
131+
"RegionName"
132+
],
133+
"members": {
134+
"AccountId": {},
135+
"RegionName": {}
136+
}
137+
},
138+
"output": {
139+
"type": "structure",
140+
"members": {
141+
"RegionName": {},
142+
"RegionOptStatus": {}
143+
}
144+
}
145+
},
146+
"ListRegions": {
147+
"http": {
148+
"requestUri": "/listRegions",
149+
"responseCode": 200
150+
},
151+
"input": {
152+
"type": "structure",
153+
"members": {
154+
"AccountId": {},
155+
"MaxResults": {
156+
"type": "integer"
157+
},
158+
"NextToken": {},
159+
"RegionOptStatusContains": {
160+
"type": "list",
161+
"member": {}
162+
}
163+
}
164+
},
165+
"output": {
166+
"type": "structure",
167+
"members": {
168+
"NextToken": {},
169+
"Regions": {
170+
"type": "list",
171+
"member": {
172+
"type": "structure",
173+
"members": {
174+
"RegionName": {},
175+
"RegionOptStatus": {}
176+
}
177+
}
87178
}
88179
}
89180
}
@@ -106,16 +197,16 @@
106197
"AccountId": {},
107198
"AlternateContactType": {},
108199
"EmailAddress": {
109-
"shape": "S7"
200+
"shape": "Sa"
110201
},
111202
"Name": {
112-
"shape": "S8"
203+
"shape": "Sb"
113204
},
114205
"PhoneNumber": {
115-
"shape": "S9"
206+
"shape": "Sc"
116207
},
117208
"Title": {
118-
"shape": "Sa"
209+
"shape": "Sd"
119210
}
120211
}
121212
},
@@ -134,31 +225,31 @@
134225
"members": {
135226
"AccountId": {},
136227
"ContactInformation": {
137-
"shape": "Sd"
228+
"shape": "Sg"
138229
}
139230
}
140231
},
141232
"idempotent": true
142233
}
143234
},
144235
"shapes": {
145-
"S7": {
236+
"Sa": {
146237
"type": "string",
147238
"sensitive": true
148239
},
149-
"S8": {
240+
"Sb": {
150241
"type": "string",
151242
"sensitive": true
152243
},
153-
"S9": {
244+
"Sc": {
154245
"type": "string",
155246
"sensitive": true
156247
},
157-
"Sa": {
248+
"Sd": {
158249
"type": "string",
159250
"sensitive": true
160251
},
161-
"Sd": {
252+
"Sg": {
162253
"type": "structure",
163254
"required": [
164255
"AddressLine1",
@@ -170,13 +261,13 @@
170261
],
171262
"members": {
172263
"AddressLine1": {
173-
"shape": "Se"
264+
"shape": "Sh"
174265
},
175266
"AddressLine2": {
176-
"shape": "Se"
267+
"shape": "Sh"
177268
},
178269
"AddressLine3": {
179-
"shape": "Se"
270+
"shape": "Sh"
180271
},
181272
"City": {
182273
"type": "string",
@@ -216,7 +307,7 @@
216307
}
217308
}
218309
},
219-
"Se": {
310+
"Sh": {
220311
"type": "string",
221312
"sensitive": true
222313
}

0 commit comments

Comments
 (0)