Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.44.73 #4507

Merged
merged 1 commit into from Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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