Skip to content

Commit 09f182d

Browse files
Release v1.44.73 (2022-08-10) (#4507)
Release v1.44.73 (2022-08-10) === ### Service Client Updates * `service/dlm`: Updates service API and documentation * `service/ec2`: Updates service API and documentation * This release adds support for excluding specific data (non-root) volumes from multi-volume snapshot sets created from instances.
1 parent 76296e1 commit 09f182d

File tree

8 files changed

+247
-144
lines changed

8 files changed

+247
-144
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Release v1.44.73 (2022-08-10)
2+
===
3+
4+
### Service Client Updates
5+
* `service/dlm`: Updates service API and documentation
6+
* `service/ec2`: Updates service API and documentation
7+
* This release adds support for excluding specific data (non-root) volumes from multi-volume snapshot sets created from instances.
8+
19
Release v1.44.72 (2022-08-09)
210
===
311

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.44.72"
8+
const SDKVersion = "1.44.73"

models/apis/dlm/2018-01-12/api-2.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,12 @@
343343
"enum":["shareSnapshot"]
344344
},
345345
"ExcludeBootVolume":{"type":"boolean"},
346+
"ExcludeDataVolumeTagList":{
347+
"type":"list",
348+
"member":{"shape":"Tag"},
349+
"max":50,
350+
"min":0
351+
},
346352
"ExecutionRoleArn":{
347353
"type":"string",
348354
"max":2048,
@@ -521,7 +527,8 @@
521527
"type":"structure",
522528
"members":{
523529
"ExcludeBootVolume":{"shape":"ExcludeBootVolume"},
524-
"NoReboot":{"shape":"NoReboot"}
530+
"NoReboot":{"shape":"NoReboot"},
531+
"ExcludeDataVolumeTags":{"shape":"ExcludeDataVolumeTagList"}
525532
}
526533
},
527534
"PolicyArn":{

models/apis/dlm/2018-01-12/docs-2.json

+49-42
Large diffs are not rendered by default.

models/apis/ec2/2016-11-15/api-2.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -23843,7 +23843,11 @@
2384323843
"type":"structure",
2384423844
"members":{
2384523845
"InstanceId":{"shape":"InstanceId"},
23846-
"ExcludeBootVolume":{"shape":"Boolean"}
23846+
"ExcludeBootVolume":{"shape":"Boolean"},
23847+
"ExcludeDataVolumeIds":{
23848+
"shape":"VolumeIdStringList",
23849+
"locationName":"ExcludeDataVolumeId"
23850+
}
2384723851
}
2384823852
},
2384923853
"InstanceState":{

models/apis/ec2/2016-11-15/docs-2.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20401,7 +20401,8 @@
2040120401
"refs": {
2040220402
"DescribeVolumeStatusRequest$VolumeIds": "<p>The IDs of the volumes.</p> <p>Default: Describes all your volumes.</p>",
2040320403
"DescribeVolumesModificationsRequest$VolumeIds": "<p>The IDs of the volumes.</p>",
20404-
"DescribeVolumesRequest$VolumeIds": "<p>The volume IDs.</p>"
20404+
"DescribeVolumesRequest$VolumeIds": "<p>The volume IDs.</p>",
20405+
"InstanceSpecification$ExcludeDataVolumeIds": null
2040520406
}
2040620407
},
2040720408
"VolumeList": {

0 commit comments

Comments
 (0)