Skip to content

Commit

Permalink
Release v1.42.46 (2022-02-03) (#4268)
Browse files Browse the repository at this point in the history
Release v1.42.46 (2022-02-03)
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and paginators
  * adds support for AMIs in Recycle Bin
* `service/meteringmarketplace`: Updates service API and documentation
  * Add CustomerAWSAccountId to ResolveCustomer API response and increase UsageAllocation limit to 2500.
* `service/rbin`: Updates service API and documentation
* `service/robomaker`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Feb 3, 2022
1 parent ca8f7ec commit b5784eb
Show file tree
Hide file tree
Showing 21 changed files with 1,561 additions and 288 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.42.46 (2022-02-03)
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and paginators
* adds support for AMIs in Recycle Bin
* `service/meteringmarketplace`: Updates service API and documentation
* Add CustomerAWSAccountId to ResolveCustomer API response and increase UsageAllocation limit to 2500.
* `service/rbin`: Updates service API and documentation
* `service/robomaker`: Updates service API and documentation

Release v1.42.45 (2022-02-02)
===

Expand Down
104 changes: 104 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.42.45"
const SDKVersion = "1.42.46"
97 changes: 97 additions & 0 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3576,6 +3576,15 @@
"input":{"shape":"ImportVolumeRequest"},
"output":{"shape":"ImportVolumeResult"}
},
"ListImagesInRecycleBin":{
"name":"ListImagesInRecycleBin",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListImagesInRecycleBinRequest"},
"output":{"shape":"ListImagesInRecycleBinResult"}
},
"ListSnapshotsInRecycleBin":{
"name":"ListSnapshotsInRecycleBin",
"http":{
Expand Down Expand Up @@ -4404,6 +4413,15 @@
"input":{"shape":"RestoreAddressToClassicRequest"},
"output":{"shape":"RestoreAddressToClassicResult"}
},
"RestoreImageFromRecycleBin":{
"name":"RestoreImageFromRecycleBin",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"RestoreImageFromRecycleBinRequest"},
"output":{"shape":"RestoreImageFromRecycleBinResult"}
},
"RestoreManagedPrefixListVersion":{
"name":"RestoreManagedPrefixListVersion",
"http":{
Expand Down Expand Up @@ -21417,6 +21435,38 @@
"locationName":"item"
}
},
"ImageRecycleBinInfo":{
"type":"structure",
"members":{
"ImageId":{
"shape":"String",
"locationName":"imageId"
},
"Name":{
"shape":"String",
"locationName":"name"
},
"Description":{
"shape":"String",
"locationName":"description"
},
"RecycleBinEnterTime":{
"shape":"MillisecondDateTime",
"locationName":"recycleBinEnterTime"
},
"RecycleBinExitTime":{
"shape":"MillisecondDateTime",
"locationName":"recycleBinExitTime"
}
}
},
"ImageRecycleBinInfoList":{
"type":"list",
"member":{
"shape":"ImageRecycleBinInfo",
"locationName":"item"
}
},
"ImageState":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -26238,6 +26288,36 @@
"locationName":"item"
}
},
"ListImagesInRecycleBinMaxResults":{
"type":"integer",
"max":1000,
"min":1
},
"ListImagesInRecycleBinRequest":{
"type":"structure",
"members":{
"ImageIds":{
"shape":"ImageIdStringList",
"locationName":"ImageId"
},
"NextToken":{"shape":"String"},
"MaxResults":{"shape":"ListImagesInRecycleBinMaxResults"},
"DryRun":{"shape":"Boolean"}
}
},
"ListImagesInRecycleBinResult":{
"type":"structure",
"members":{
"Images":{
"shape":"ImageRecycleBinInfoList",
"locationName":"imageSet"
},
"NextToken":{
"shape":"String",
"locationName":"nextToken"
}
}
},
"ListSnapshotsInRecycleBinMaxResults":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -32759,6 +32839,23 @@
}
}
},
"RestoreImageFromRecycleBinRequest":{
"type":"structure",
"required":["ImageId"],
"members":{
"ImageId":{"shape":"ImageId"},
"DryRun":{"shape":"Boolean"}
}
},
"RestoreImageFromRecycleBinResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"RestoreManagedPrefixListVersionRequest":{
"type":"structure",
"required":[
Expand Down

0 comments on commit b5784eb

Please sign in to comment.