Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit b5784eb

Browse files
Release v1.42.46 (2022-02-03) (#4268)
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
1 parent ca8f7ec commit b5784eb

21 files changed

Lines changed: 1561 additions & 288 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.42.46 (2022-02-03)
2+
===
3+
4+
### Service Client Updates
5+
* `service/ec2`: Updates service API, documentation, and paginators
6+
* adds support for AMIs in Recycle Bin
7+
* `service/meteringmarketplace`: Updates service API and documentation
8+
* Add CustomerAWSAccountId to ResolveCustomer API response and increase UsageAllocation limit to 2500.
9+
* `service/rbin`: Updates service API and documentation
10+
* `service/robomaker`: Updates service API and documentation
11+
112
Release v1.42.45 (2022-02-02)
213
===
314

aws/endpoints/defaults.go

Lines changed: 104 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
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.42.45"
8+
const SDKVersion = "1.42.46"

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

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3576,6 +3576,15 @@
35763576
"input":{"shape":"ImportVolumeRequest"},
35773577
"output":{"shape":"ImportVolumeResult"}
35783578
},
3579+
"ListImagesInRecycleBin":{
3580+
"name":"ListImagesInRecycleBin",
3581+
"http":{
3582+
"method":"POST",
3583+
"requestUri":"/"
3584+
},
3585+
"input":{"shape":"ListImagesInRecycleBinRequest"},
3586+
"output":{"shape":"ListImagesInRecycleBinResult"}
3587+
},
35793588
"ListSnapshotsInRecycleBin":{
35803589
"name":"ListSnapshotsInRecycleBin",
35813590
"http":{
@@ -4404,6 +4413,15 @@
44044413
"input":{"shape":"RestoreAddressToClassicRequest"},
44054414
"output":{"shape":"RestoreAddressToClassicResult"}
44064415
},
4416+
"RestoreImageFromRecycleBin":{
4417+
"name":"RestoreImageFromRecycleBin",
4418+
"http":{
4419+
"method":"POST",
4420+
"requestUri":"/"
4421+
},
4422+
"input":{"shape":"RestoreImageFromRecycleBinRequest"},
4423+
"output":{"shape":"RestoreImageFromRecycleBinResult"}
4424+
},
44074425
"RestoreManagedPrefixListVersion":{
44084426
"name":"RestoreManagedPrefixListVersion",
44094427
"http":{
@@ -21417,6 +21435,38 @@
2141721435
"locationName":"item"
2141821436
}
2141921437
},
21438+
"ImageRecycleBinInfo":{
21439+
"type":"structure",
21440+
"members":{
21441+
"ImageId":{
21442+
"shape":"String",
21443+
"locationName":"imageId"
21444+
},
21445+
"Name":{
21446+
"shape":"String",
21447+
"locationName":"name"
21448+
},
21449+
"Description":{
21450+
"shape":"String",
21451+
"locationName":"description"
21452+
},
21453+
"RecycleBinEnterTime":{
21454+
"shape":"MillisecondDateTime",
21455+
"locationName":"recycleBinEnterTime"
21456+
},
21457+
"RecycleBinExitTime":{
21458+
"shape":"MillisecondDateTime",
21459+
"locationName":"recycleBinExitTime"
21460+
}
21461+
}
21462+
},
21463+
"ImageRecycleBinInfoList":{
21464+
"type":"list",
21465+
"member":{
21466+
"shape":"ImageRecycleBinInfo",
21467+
"locationName":"item"
21468+
}
21469+
},
2142021470
"ImageState":{
2142121471
"type":"string",
2142221472
"enum":[
@@ -26238,6 +26288,36 @@
2623826288
"locationName":"item"
2623926289
}
2624026290
},
26291+
"ListImagesInRecycleBinMaxResults":{
26292+
"type":"integer",
26293+
"max":1000,
26294+
"min":1
26295+
},
26296+
"ListImagesInRecycleBinRequest":{
26297+
"type":"structure",
26298+
"members":{
26299+
"ImageIds":{
26300+
"shape":"ImageIdStringList",
26301+
"locationName":"ImageId"
26302+
},
26303+
"NextToken":{"shape":"String"},
26304+
"MaxResults":{"shape":"ListImagesInRecycleBinMaxResults"},
26305+
"DryRun":{"shape":"Boolean"}
26306+
}
26307+
},
26308+
"ListImagesInRecycleBinResult":{
26309+
"type":"structure",
26310+
"members":{
26311+
"Images":{
26312+
"shape":"ImageRecycleBinInfoList",
26313+
"locationName":"imageSet"
26314+
},
26315+
"NextToken":{
26316+
"shape":"String",
26317+
"locationName":"nextToken"
26318+
}
26319+
}
26320+
},
2624126321
"ListSnapshotsInRecycleBinMaxResults":{
2624226322
"type":"integer",
2624326323
"max":1000,
@@ -32759,6 +32839,23 @@
3275932839
}
3276032840
}
3276132841
},
32842+
"RestoreImageFromRecycleBinRequest":{
32843+
"type":"structure",
32844+
"required":["ImageId"],
32845+
"members":{
32846+
"ImageId":{"shape":"ImageId"},
32847+
"DryRun":{"shape":"Boolean"}
32848+
}
32849+
},
32850+
"RestoreImageFromRecycleBinResult":{
32851+
"type":"structure",
32852+
"members":{
32853+
"Return":{
32854+
"shape":"Boolean",
32855+
"locationName":"return"
32856+
}
32857+
}
32858+
},
3276232859
"RestoreManagedPrefixListVersionRequest":{
3276332860
"type":"structure",
3276432861
"required":[

0 commit comments

Comments
 (0)