Skip to content

Commit

Permalink
Release v1.44.73 (2022-08-10) (#4507)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aws-sdk-go-automation committed Aug 10, 2022
1 parent 76296e1 commit 09f182d
Show file tree
Hide file tree
Showing 8 changed files with 247 additions and 144 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
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.

Release v1.44.72 (2022-08-09)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.72"
const SDKVersion = "1.44.73"
9 changes: 8 additions & 1 deletion models/apis/dlm/2018-01-12/api-2.json
Expand Up @@ -343,6 +343,12 @@
"enum":["shareSnapshot"]
},
"ExcludeBootVolume":{"type":"boolean"},
"ExcludeDataVolumeTagList":{
"type":"list",
"member":{"shape":"Tag"},
"max":50,
"min":0
},
"ExecutionRoleArn":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -521,7 +527,8 @@
"type":"structure",
"members":{
"ExcludeBootVolume":{"shape":"ExcludeBootVolume"},
"NoReboot":{"shape":"NoReboot"}
"NoReboot":{"shape":"NoReboot"},
"ExcludeDataVolumeTags":{"shape":"ExcludeDataVolumeTagList"}
}
},
"PolicyArn":{
Expand Down
91 changes: 49 additions & 42 deletions models/apis/dlm/2018-01-12/docs-2.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Expand Up @@ -23843,7 +23843,11 @@
"type":"structure",
"members":{
"InstanceId":{"shape":"InstanceId"},
"ExcludeBootVolume":{"shape":"Boolean"}
"ExcludeBootVolume":{"shape":"Boolean"},
"ExcludeDataVolumeIds":{
"shape":"VolumeIdStringList",
"locationName":"ExcludeDataVolumeId"
}
}
},
"InstanceState":{
Expand Down
3 changes: 2 additions & 1 deletion models/apis/ec2/2016-11-15/docs-2.json
Expand Up @@ -20401,7 +20401,8 @@
"refs": {
"DescribeVolumeStatusRequest$VolumeIds": "<p>The IDs of the volumes.</p> <p>Default: Describes all your volumes.</p>",
"DescribeVolumesModificationsRequest$VolumeIds": "<p>The IDs of the volumes.</p>",
"DescribeVolumesRequest$VolumeIds": "<p>The volume IDs.</p>"
"DescribeVolumesRequest$VolumeIds": "<p>The volume IDs.</p>",
"InstanceSpecification$ExcludeDataVolumeIds": null
}
},
"VolumeList": {
Expand Down

0 comments on commit 09f182d

Please sign in to comment.