Skip to content

Commit 762fcae

Browse files
Release v1.38.53 (2021-06-02) (#3939)
Release v1.38.53 (2021-06-02) === ### Service Client Updates * `service/autoscaling`: Updates service API and documentation * You can now launch EC2 instances with GP3 volumes when using Auto Scaling groups with Launch Configurations * `service/braket`: Updates service API and documentation * `service/docdb`: Updates service API, documentation, and paginators * This SDK release adds support for DocDB global clusters. * `service/ecs`: Updates service documentation * Documentation updates for Amazon ECS. * `service/iam`: Updates service documentation * Documentation updates for AWS Identity and Access Management (IAM). * `service/lightsail`: Updates service documentation * Documentation updates for Lightsail
1 parent adb81ee commit 762fcae

File tree

21 files changed

+2062
-236
lines changed

21 files changed

+2062
-236
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Release v1.38.53 (2021-06-02)
2+
===
3+
4+
### Service Client Updates
5+
* `service/autoscaling`: Updates service API and documentation
6+
* You can now launch EC2 instances with GP3 volumes when using Auto Scaling groups with Launch Configurations
7+
* `service/braket`: Updates service API and documentation
8+
* `service/docdb`: Updates service API, documentation, and paginators
9+
* This SDK release adds support for DocDB global clusters.
10+
* `service/ecs`: Updates service documentation
11+
* Documentation updates for Amazon ECS.
12+
* `service/iam`: Updates service documentation
13+
* Documentation updates for AWS Identity and Access Management (IAM).
14+
* `service/lightsail`: Updates service documentation
15+
* Documentation updates for Lightsail
16+
117
Release v1.38.52 (2021-06-01)
218
===
319

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.38.52"
8+
const SDKVersion = "1.38.53"

models/apis/autoscaling/2011-01-01/api-2.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1193,6 +1193,11 @@
11931193
"max":20000,
11941194
"min":100
11951195
},
1196+
"BlockDeviceEbsThroughput":{
1197+
"type":"integer",
1198+
"max":1000,
1199+
"min":125
1200+
},
11961201
"BlockDeviceEbsVolumeSize":{
11971202
"type":"integer",
11981203
"max":16384,
@@ -1680,7 +1685,8 @@
16801685
"VolumeType":{"shape":"BlockDeviceEbsVolumeType"},
16811686
"DeleteOnTermination":{"shape":"BlockDeviceEbsDeleteOnTermination"},
16821687
"Iops":{"shape":"BlockDeviceEbsIops"},
1683-
"Encrypted":{"shape":"BlockDeviceEbsEncrypted"}
1688+
"Encrypted":{"shape":"BlockDeviceEbsEncrypted"},
1689+
"Throughput":{"shape":"BlockDeviceEbsThroughput"}
16841690
}
16851691
},
16861692
"EbsOptimized":{"type":"boolean"},

models/apis/autoscaling/2011-01-01/docs-2.json

+46-40
Large diffs are not rendered by default.

models/apis/braket/2019-09-01/api-2.json

+16-2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@
6262
{"shape":"ResourceNotFoundException"},
6363
{"shape":"AccessDeniedException"},
6464
{"shape":"ThrottlingException"},
65+
{"shape":"DeviceOfflineException"},
66+
{"shape":"DeviceRetiredException"},
6567
{"shape":"InternalServiceException"},
6668
{"shape":"ValidationException"}
6769
]
@@ -253,7 +255,7 @@
253255
},
254256
"CreateQuantumTaskRequestDeviceParametersString":{
255257
"type":"string",
256-
"max":2048,
258+
"max":48000,
257259
"min":1
258260
},
259261
"CreateQuantumTaskRequestOutputS3BucketString":{
@@ -294,11 +296,23 @@
294296
},
295297
"exception":true
296298
},
299+
"DeviceRetiredException":{
300+
"type":"structure",
301+
"members":{
302+
"message":{"shape":"String"}
303+
},
304+
"error":{
305+
"httpStatusCode":410,
306+
"senderFault":true
307+
},
308+
"exception":true
309+
},
297310
"DeviceStatus":{
298311
"type":"string",
299312
"enum":[
300313
"ONLINE",
301-
"OFFLINE"
314+
"OFFLINE",
315+
"RETIRED"
302316
]
303317
},
304318
"DeviceSummary":{

models/apis/braket/2019-09-01/docs-2.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@
8989
"refs": {
9090
}
9191
},
92+
"DeviceRetiredException": {
93+
"base": "<p>The specified device has been retired.</p>",
94+
"refs": {
95+
}
96+
},
9297
"DeviceStatus": {
9398
"base": null,
9499
"refs": {
@@ -291,6 +296,7 @@
291296
"AccessDeniedException$message": null,
292297
"ConflictException$message": null,
293298
"DeviceOfflineException$message": null,
299+
"DeviceRetiredException$message": null,
294300
"DeviceSummary$deviceName": "<p>The name of the device.</p>",
295301
"DeviceSummary$providerName": "<p>The provider of the device.</p>",
296302
"GetDeviceResponse$deviceName": "<p>The name of the device.</p>",
@@ -344,7 +350,7 @@
344350
"TagKeys": {
345351
"base": null,
346352
"refs": {
347-
"UntagResourceRequest$tagKeys": "<p>pecify the keys for the tags to remove from the resource.</p>"
353+
"UntagResourceRequest$tagKeys": "<p>Specify the keys for the tags to remove from the resource.</p>"
348354
}
349355
},
350356
"TagResourceRequest": {

0 commit comments

Comments
 (0)