Skip to content

Commit

Permalink
Release v1.32.7 (2020-06-22) (#3387)
Browse files Browse the repository at this point in the history
Release v1.32.7 (2020-06-22)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * This release adds Tag On Create feature support for the ImportImage, ImportSnapshot, ExportImage and CreateInstanceExportTask APIs.
* `service/elasticmapreduce`: Updates service API and documentation
  * Adding support for MaximumCoreCapacityUnits parameter for EMR Managed Scaling. It allows users to control how many units/nodes are added to the CORE group/fleet. Remaining units/nodes are added to the TASK groups/fleet in the cluster.
* `service/rds`: Updates service documentation and paginators
  * Added paginators for various APIs.
* `service/rekognition`: Updates service API, documentation, and paginators
  * This update adds the ability to detect black frames, end credits, shots, and color bars in stored videos
* `service/sqs`: Updates service API, documentation, and paginators
  * AWS SQS adds pagination support for ListQueues and ListDeadLetterSourceQueues APIs
  • Loading branch information
aws-sdk-go-automation committed Jun 22, 2020
1 parent 0c7b182 commit e9908b7
Show file tree
Hide file tree
Showing 23 changed files with 2,583 additions and 249 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.32.7 (2020-06-22)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* This release adds Tag On Create feature support for the ImportImage, ImportSnapshot, ExportImage and CreateInstanceExportTask APIs.
* `service/elasticmapreduce`: Updates service API and documentation
* Adding support for MaximumCoreCapacityUnits parameter for EMR Managed Scaling. It allows users to control how many units/nodes are added to the CORE group/fleet. Remaining units/nodes are added to the TASK groups/fleet in the cluster.
* `service/rds`: Updates service documentation and paginators
* Added paginators for various APIs.
* `service/rekognition`: Updates service API, documentation, and paginators
* This update adds the ability to detect black frames, end credits, shots, and color bars in stored videos
* `service/sqs`: Updates service API, documentation, and paginators
* AWS SQS adds pagination support for ListQueues and ListDeadLetterSourceQueues APIs

Release v1.32.6 (2020-06-19)
===

Expand Down
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.32.6"
const SDKVersion = "1.32.7"
48 changes: 42 additions & 6 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -6786,6 +6786,10 @@
"TargetEnvironment":{
"shape":"ExportEnvironment",
"locationName":"targetEnvironment"
},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
Expand Down Expand Up @@ -14196,7 +14200,11 @@
"DryRun":{"shape":"Boolean"},
"ImageId":{"shape":"ImageId"},
"S3ExportLocation":{"shape":"ExportTaskS3LocationRequest"},
"RoleName":{"shape":"String"}
"RoleName":{"shape":"String"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
"ExportImageResult":{
Expand Down Expand Up @@ -14237,6 +14245,10 @@
"StatusMessage":{
"shape":"String",
"locationName":"statusMessage"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
Expand Down Expand Up @@ -14270,6 +14282,10 @@
"StatusMessage":{
"shape":"String",
"locationName":"statusMessage"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
Expand Down Expand Up @@ -16347,7 +16363,11 @@
"LicenseType":{"shape":"String"},
"Platform":{"shape":"String"},
"RoleName":{"shape":"String"},
"LicenseSpecifications":{"shape":"ImportImageLicenseSpecificationListRequest"}
"LicenseSpecifications":{"shape":"ImportImageLicenseSpecificationListRequest"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
"ImportImageResult":{
Expand All @@ -16374,11 +16394,11 @@
"locationName":"imageId"
},
"ImportTaskId":{
"shape":"String",
"shape":"ImportImageTaskId",
"locationName":"importTaskId"
},
"KmsKeyId":{
"shape":"String",
"shape":"KmsKeyId",
"locationName":"kmsKeyId"
},
"LicenseType":{
Expand Down Expand Up @@ -16408,6 +16428,10 @@
"LicenseSpecifications":{
"shape":"ImportImageLicenseSpecificationListResponse",
"locationName":"licenseSpecifications"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
Expand Down Expand Up @@ -16685,7 +16709,11 @@
"DryRun":{"shape":"Boolean"},
"Encrypted":{"shape":"Boolean"},
"KmsKeyId":{"shape":"KmsKeyId"},
"RoleName":{"shape":"String"}
"RoleName":{"shape":"String"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
"ImportSnapshotResult":{
Expand All @@ -16702,6 +16730,10 @@
"SnapshotTaskDetail":{
"shape":"SnapshotTaskDetail",
"locationName":"snapshotTaskDetail"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
Expand Down Expand Up @@ -24141,14 +24173,19 @@
"dhcp-options",
"elastic-ip",
"elastic-gpu",
"export-image-task",
"export-instance-task",
"fleet",
"fpga-image",
"host-reservation",
"image",
"import-image-task",
"import-snapshot-task",
"instance",
"internet-gateway",
"key-pair",
"launch-template",
"local-gateway-route-table-vpc-association",
"natgateway",
"network-acl",
"network-interface",
Expand Down Expand Up @@ -29025,7 +29062,6 @@
"enum":[
"standard",
"io1",
"io2",
"gp2",
"sc1",
"st1"
Expand Down

0 comments on commit e9908b7

Please sign in to comment.