|
1331 | 1331 | "input":{"shape":"DescribeElasticGpusRequest"}, |
1332 | 1332 | "output":{"shape":"DescribeElasticGpusResult"} |
1333 | 1333 | }, |
| 1334 | + "DescribeExportImageTasks":{ |
| 1335 | + "name":"DescribeExportImageTasks", |
| 1336 | + "http":{ |
| 1337 | + "method":"POST", |
| 1338 | + "requestUri":"/" |
| 1339 | + }, |
| 1340 | + "input":{"shape":"DescribeExportImageTasksRequest"}, |
| 1341 | + "output":{"shape":"DescribeExportImageTasksResult"} |
| 1342 | + }, |
1334 | 1343 | "DescribeExportTasks":{ |
1335 | 1344 | "name":"DescribeExportTasks", |
1336 | 1345 | "http":{ |
|
2268 | 2277 | "input":{"shape":"ExportClientVpnClientConfigurationRequest"}, |
2269 | 2278 | "output":{"shape":"ExportClientVpnClientConfigurationResult"} |
2270 | 2279 | }, |
| 2280 | + "ExportImage":{ |
| 2281 | + "name":"ExportImage", |
| 2282 | + "http":{ |
| 2283 | + "method":"POST", |
| 2284 | + "requestUri":"/" |
| 2285 | + }, |
| 2286 | + "input":{"shape":"ExportImageRequest"}, |
| 2287 | + "output":{"shape":"ExportImageResult"} |
| 2288 | + }, |
2271 | 2289 | "ExportTransitGatewayRoutes":{ |
2272 | 2290 | "name":"ExportTransitGatewayRoutes", |
2273 | 2291 | "http":{ |
|
8606 | 8624 | } |
8607 | 8625 | } |
8608 | 8626 | }, |
| 8627 | + "DescribeExportImageTasksMaxResults":{ |
| 8628 | + "type":"integer", |
| 8629 | + "max":500, |
| 8630 | + "min":1 |
| 8631 | + }, |
| 8632 | + "DescribeExportImageTasksRequest":{ |
| 8633 | + "type":"structure", |
| 8634 | + "members":{ |
| 8635 | + "DryRun":{"shape":"Boolean"}, |
| 8636 | + "Filters":{ |
| 8637 | + "shape":"FilterList", |
| 8638 | + "locationName":"Filter" |
| 8639 | + }, |
| 8640 | + "ExportImageTaskIds":{ |
| 8641 | + "shape":"ExportImageTaskIdList", |
| 8642 | + "locationName":"ExportImageTaskId" |
| 8643 | + }, |
| 8644 | + "MaxResults":{"shape":"DescribeExportImageTasksMaxResults"}, |
| 8645 | + "NextToken":{"shape":"NextToken"} |
| 8646 | + } |
| 8647 | + }, |
| 8648 | + "DescribeExportImageTasksResult":{ |
| 8649 | + "type":"structure", |
| 8650 | + "members":{ |
| 8651 | + "ExportImageTasks":{ |
| 8652 | + "shape":"ExportImageTaskList", |
| 8653 | + "locationName":"exportImageTaskSet" |
| 8654 | + }, |
| 8655 | + "NextToken":{ |
| 8656 | + "shape":"NextToken", |
| 8657 | + "locationName":"nextToken" |
| 8658 | + } |
| 8659 | + } |
| 8660 | + }, |
8609 | 8661 | "DescribeExportTasksRequest":{ |
8610 | 8662 | "type":"structure", |
8611 | 8663 | "members":{ |
@@ -12178,6 +12230,114 @@ |
12178 | 12230 | "microsoft" |
12179 | 12231 | ] |
12180 | 12232 | }, |
| 12233 | + "ExportImageRequest":{ |
| 12234 | + "type":"structure", |
| 12235 | + "required":[ |
| 12236 | + "DiskImageFormat", |
| 12237 | + "ImageId", |
| 12238 | + "S3ExportLocation" |
| 12239 | + ], |
| 12240 | + "members":{ |
| 12241 | + "ClientToken":{ |
| 12242 | + "shape":"String", |
| 12243 | + "idempotencyToken":true |
| 12244 | + }, |
| 12245 | + "Description":{"shape":"String"}, |
| 12246 | + "DiskImageFormat":{"shape":"DiskImageFormat"}, |
| 12247 | + "DryRun":{"shape":"Boolean"}, |
| 12248 | + "ImageId":{"shape":"String"}, |
| 12249 | + "S3ExportLocation":{"shape":"ExportTaskS3LocationRequest"}, |
| 12250 | + "RoleName":{"shape":"String"} |
| 12251 | + } |
| 12252 | + }, |
| 12253 | + "ExportImageResult":{ |
| 12254 | + "type":"structure", |
| 12255 | + "members":{ |
| 12256 | + "Description":{ |
| 12257 | + "shape":"String", |
| 12258 | + "locationName":"description" |
| 12259 | + }, |
| 12260 | + "DiskImageFormat":{ |
| 12261 | + "shape":"DiskImageFormat", |
| 12262 | + "locationName":"diskImageFormat" |
| 12263 | + }, |
| 12264 | + "ExportImageTaskId":{ |
| 12265 | + "shape":"String", |
| 12266 | + "locationName":"exportImageTaskId" |
| 12267 | + }, |
| 12268 | + "ImageId":{ |
| 12269 | + "shape":"String", |
| 12270 | + "locationName":"imageId" |
| 12271 | + }, |
| 12272 | + "RoleName":{ |
| 12273 | + "shape":"String", |
| 12274 | + "locationName":"roleName" |
| 12275 | + }, |
| 12276 | + "Progress":{ |
| 12277 | + "shape":"String", |
| 12278 | + "locationName":"progress" |
| 12279 | + }, |
| 12280 | + "S3ExportLocation":{ |
| 12281 | + "shape":"ExportTaskS3Location", |
| 12282 | + "locationName":"s3ExportLocation" |
| 12283 | + }, |
| 12284 | + "Status":{ |
| 12285 | + "shape":"String", |
| 12286 | + "locationName":"status" |
| 12287 | + }, |
| 12288 | + "StatusMessage":{ |
| 12289 | + "shape":"String", |
| 12290 | + "locationName":"statusMessage" |
| 12291 | + } |
| 12292 | + } |
| 12293 | + }, |
| 12294 | + "ExportImageTask":{ |
| 12295 | + "type":"structure", |
| 12296 | + "members":{ |
| 12297 | + "Description":{ |
| 12298 | + "shape":"String", |
| 12299 | + "locationName":"description" |
| 12300 | + }, |
| 12301 | + "ExportImageTaskId":{ |
| 12302 | + "shape":"String", |
| 12303 | + "locationName":"exportImageTaskId" |
| 12304 | + }, |
| 12305 | + "ImageId":{ |
| 12306 | + "shape":"String", |
| 12307 | + "locationName":"imageId" |
| 12308 | + }, |
| 12309 | + "Progress":{ |
| 12310 | + "shape":"String", |
| 12311 | + "locationName":"progress" |
| 12312 | + }, |
| 12313 | + "S3ExportLocation":{ |
| 12314 | + "shape":"ExportTaskS3Location", |
| 12315 | + "locationName":"s3ExportLocation" |
| 12316 | + }, |
| 12317 | + "Status":{ |
| 12318 | + "shape":"String", |
| 12319 | + "locationName":"status" |
| 12320 | + }, |
| 12321 | + "StatusMessage":{ |
| 12322 | + "shape":"String", |
| 12323 | + "locationName":"statusMessage" |
| 12324 | + } |
| 12325 | + } |
| 12326 | + }, |
| 12327 | + "ExportImageTaskIdList":{ |
| 12328 | + "type":"list", |
| 12329 | + "member":{ |
| 12330 | + "shape":"String", |
| 12331 | + "locationName":"ExportImageTaskId" |
| 12332 | + } |
| 12333 | + }, |
| 12334 | + "ExportImageTaskList":{ |
| 12335 | + "type":"list", |
| 12336 | + "member":{ |
| 12337 | + "shape":"ExportImageTask", |
| 12338 | + "locationName":"item" |
| 12339 | + } |
| 12340 | + }, |
12181 | 12341 | "ExportTask":{ |
12182 | 12342 | "type":"structure", |
12183 | 12343 | "members":{ |
|
12221 | 12381 | "locationName":"item" |
12222 | 12382 | } |
12223 | 12383 | }, |
| 12384 | + "ExportTaskS3Location":{ |
| 12385 | + "type":"structure", |
| 12386 | + "members":{ |
| 12387 | + "S3Bucket":{ |
| 12388 | + "shape":"String", |
| 12389 | + "locationName":"s3Bucket" |
| 12390 | + }, |
| 12391 | + "S3Prefix":{ |
| 12392 | + "shape":"String", |
| 12393 | + "locationName":"s3Prefix" |
| 12394 | + } |
| 12395 | + } |
| 12396 | + }, |
| 12397 | + "ExportTaskS3LocationRequest":{ |
| 12398 | + "type":"structure", |
| 12399 | + "required":["S3Bucket"], |
| 12400 | + "members":{ |
| 12401 | + "S3Bucket":{"shape":"String"}, |
| 12402 | + "S3Prefix":{"shape":"String"} |
| 12403 | + } |
| 12404 | + }, |
12224 | 12405 | "ExportTaskState":{ |
12225 | 12406 | "type":"string", |
12226 | 12407 | "enum":[ |
|
0 commit comments