Skip to content

Commit

Permalink
Release v1.32.13 (2020-06-30) (#3400)
Browse files Browse the repository at this point in the history
Release v1.32.13 (2020-06-30)
===

### Service Client Updates
* `service/codeguru-reviewer`: Updates service API and documentation
* `service/comprehendmedical`: Updates service API
* `service/ec2`: Updates service API and documentation
  * Added support for tag-on-create for CreateVpc, CreateEgressOnlyInternetGateway, CreateSecurityGroup, CreateSubnet, CreateNetworkInterface, CreateNetworkAcl, CreateDhcpOptions and CreateInternetGateway. You can now specify tags when creating any of these resources. For more information about tagging, see AWS Tagging Strategies.
* `service/ecr`: Updates service API and documentation
  * Add a new parameter (ImageDigest) and a new exception (ImageDigestDoesNotMatchException) to PutImage API to support pushing image by digest.
* `service/rds`: Updates service documentation
  * Documentation updates for rds
  • Loading branch information
aws-sdk-go-automation committed Jun 30, 2020
1 parent 6ec1b39 commit 9dbc703
Show file tree
Hide file tree
Showing 17 changed files with 597 additions and 255 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
Release v1.32.13 (2020-06-30)
===

### Service Client Updates
* `service/codeguru-reviewer`: Updates service API and documentation
* `service/comprehendmedical`: Updates service API
* `service/ec2`: Updates service API and documentation
* Added support for tag-on-create for CreateVpc, CreateEgressOnlyInternetGateway, CreateSecurityGroup, CreateSubnet, CreateNetworkInterface, CreateNetworkAcl, CreateDhcpOptions and CreateInternetGateway. You can now specify tags when creating any of these resources. For more information about tagging, see AWS Tagging Strategies.
* `service/ecr`: Updates service API and documentation
* Add a new parameter (ImageDigest) and a new exception (ImageDigestDoesNotMatchException) to PutImage API to support pushing image by digest.
* `service/rds`: Updates service documentation
* Documentation updates for rds

Release v1.32.12 (2020-06-29)
===

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.32.12"
const SDKVersion = "1.32.13"
6 changes: 4 additions & 2 deletions models/apis/codeguru-reviewer/2019-09-19/api-2.json
Expand Up @@ -617,7 +617,8 @@
"enum":[
"CodeCommit",
"GitHub",
"Bitbucket"
"Bitbucket",
"GitHubEnterpriseServer"
]
},
"ProviderTypes":{
Expand Down Expand Up @@ -714,7 +715,8 @@
"type":"structure",
"members":{
"CodeCommit":{"shape":"CodeCommitRepository"},
"Bitbucket":{"shape":"ThirdPartySourceRepository"}
"Bitbucket":{"shape":"ThirdPartySourceRepository"},
"GitHubEnterpriseServer":{"shape":"ThirdPartySourceRepository"}
}
},
"RepositoryAssociation":{
Expand Down
113 changes: 57 additions & 56 deletions models/apis/codeguru-reviewer/2019-09-19/docs-2.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion models/apis/comprehendmedical/2018-10-30/api-2.json
Expand Up @@ -883,7 +883,8 @@
"ACUITY",
"TEST_VALUE",
"TEST_UNITS",
"DIRECTION"
"DIRECTION",
"SYSTEM_ORGAN_SITE"
]
},
"ResourceNotFoundException":{
Expand Down
40 changes: 38 additions & 2 deletions models/apis/ec2/2016-11-15/api-2.json
Expand Up @@ -6589,6 +6589,10 @@
"shape":"NewDhcpConfigurationList",
"locationName":"dhcpConfiguration"
},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"DryRun":{
"shape":"Boolean",
"locationName":"dryRun"
Expand All @@ -6610,7 +6614,11 @@
"members":{
"ClientToken":{"shape":"String"},
"DryRun":{"shape":"Boolean"},
"VpcId":{"shape":"VpcId"}
"VpcId":{"shape":"VpcId"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
"CreateEgressOnlyInternetGatewayResult":{
Expand Down Expand Up @@ -6882,6 +6890,10 @@
"CreateInternetGatewayRequest":{
"type":"structure",
"members":{
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"DryRun":{
"shape":"Boolean",
"locationName":"dryRun"
Expand Down Expand Up @@ -7148,6 +7160,10 @@
"VpcId":{
"shape":"VpcId",
"locationName":"vpcId"
},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
Expand Down Expand Up @@ -7223,6 +7239,10 @@
"SubnetId":{
"shape":"SubnetId",
"locationName":"subnetId"
},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
Expand Down Expand Up @@ -7396,6 +7416,10 @@
},
"GroupName":{"shape":"String"},
"VpcId":{"shape":"VpcId"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"DryRun":{
"shape":"Boolean",
"locationName":"dryRun"
Expand All @@ -7408,6 +7432,10 @@
"GroupId":{
"shape":"String",
"locationName":"groupId"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
Expand Down Expand Up @@ -7484,6 +7512,10 @@
"VpcId"
],
"members":{
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"AvailabilityZone":{"shape":"String"},
"AvailabilityZoneId":{"shape":"String"},
"CidrBlock":{"shape":"String"},
Expand Down Expand Up @@ -8016,7 +8048,11 @@
"shape":"Tenancy",
"locationName":"instanceTenancy"
},
"Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"}
"Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
}
}
},
"CreateVpcResult":{
Expand Down
13 changes: 11 additions & 2 deletions models/apis/ec2/2016-11-15/docs-2.json

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions models/apis/ecr/2015-09-21/api-2.json
Expand Up @@ -314,7 +314,8 @@
{"shape":"LayersNotFoundException"},
{"shape":"ReferencedImagesNotFoundException"},
{"shape":"LimitExceededException"},
{"shape":"ImageTagAlreadyExistsException"}
{"shape":"ImageTagAlreadyExistsException"},
{"shape":"ImageDigestDoesNotMatchException"}
]
},
"PutImageScanningConfiguration":{
Expand Down Expand Up @@ -887,6 +888,13 @@
"member":{"shape":"ImageDetail"}
},
"ImageDigest":{"type":"string"},
"ImageDigestDoesNotMatchException":{
"type":"structure",
"members":{
"message":{"shape":"ExceptionMessage"}
},
"exception":true
},
"ImageFailure":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1289,7 +1297,8 @@
"repositoryName":{"shape":"RepositoryName"},
"imageManifest":{"shape":"ImageManifest"},
"imageManifestMediaType":{"shape":"MediaType"},
"imageTag":{"shape":"ImageTag"}
"imageTag":{"shape":"ImageTag"},
"imageDigest":{"shape":"ImageDigest"}
}
},
"PutImageResponse":{
Expand Down
9 changes: 8 additions & 1 deletion models/apis/ecr/2015-09-21/docs-2.json
Expand Up @@ -236,6 +236,7 @@
"refs": {
"EmptyUploadException$message": "<p>The error message associated with the exception.</p>",
"ImageAlreadyExistsException$message": "<p>The error message associated with the exception.</p>",
"ImageDigestDoesNotMatchException$message": null,
"ImageNotFoundException$message": null,
"ImageTagAlreadyExistsException$message": null,
"InvalidLayerException$message": "<p>The error message associated with the exception.</p>",
Expand Down Expand Up @@ -398,7 +399,13 @@
"refs": {
"ImageDetail$imageDigest": "<p>The <code>sha256</code> digest of the image manifest.</p>",
"ImageIdentifier$imageDigest": "<p>The <code>sha256</code> digest of the image manifest.</p>",
"LifecyclePolicyPreviewResult$imageDigest": "<p>The <code>sha256</code> digest of the image manifest.</p>"
"LifecyclePolicyPreviewResult$imageDigest": "<p>The <code>sha256</code> digest of the image manifest.</p>",
"PutImageRequest$imageDigest": "<p>The image digest of the image manifest corresponding to the image.</p>"
}
},
"ImageDigestDoesNotMatchException": {
"base": "<p>The specified image digest does not match the digest that Amazon ECR calculated for the image.</p>",
"refs": {
}
},
"ImageFailure": {
Expand Down

0 comments on commit 9dbc703

Please sign in to comment.