Skip to content

Commit

Permalink
Merge pull request #2867 from aws/release
Browse files Browse the repository at this point in the history
Release v1.25.3
  • Loading branch information
aws-sdk-go-automation committed Oct 1, 2019
2 parents 0ca1808 + 75175b7 commit 5f1c1f9
Show file tree
Hide file tree
Showing 7 changed files with 420 additions and 20 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.25.3 (2019-10-01)
===

### Service Client Updates
* `service/docdb`: Updates service API and documentation
* This release provides support for describe and modify CA certificates.

### SDK Bugs
* `private/model/api` : Fixes broken test for code generation example ([#2855](https://github.com/aws/aws-sdk-go/pull/2855))

Release v1.25.2 (2019-09-30)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
### SDK Enhancements

### SDK Bugs
* `private/model/api` : Fixes broken test for code generation example ([#2855](https://github.com/aws/aws-sdk-go/pull/2855))

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.25.2"
const SDKVersion = "1.25.3"
52 changes: 52 additions & 0 deletions models/apis/docdb/2014-10-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,21 @@
{"shape":"DBSubnetGroupNotFoundFault"}
]
},
"DescribeCertificates":{
"name":"DescribeCertificates",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeCertificatesMessage"},
"output":{
"shape":"CertificateMessage",
"resultWrapper":"DescribeCertificatesResult"
},
"errors":[
{"shape":"CertificateNotFoundFault"}
]
},
"DescribeDBClusterParameterGroups":{
"name":"DescribeDBClusterParameterGroups",
"http":{
Expand Down Expand Up @@ -807,6 +822,32 @@
},
"Boolean":{"type":"boolean"},
"BooleanOptional":{"type":"boolean"},
"Certificate":{
"type":"structure",
"members":{
"CertificateIdentifier":{"shape":"String"},
"CertificateType":{"shape":"String"},
"Thumbprint":{"shape":"String"},
"ValidFrom":{"shape":"TStamp"},
"ValidTill":{"shape":"TStamp"},
"CertificateArn":{"shape":"String"}
},
"wrapper":true
},
"CertificateList":{
"type":"list",
"member":{
"shape":"Certificate",
"locationName":"Certificate"
}
},
"CertificateMessage":{
"type":"structure",
"members":{
"Certificates":{"shape":"CertificateList"},
"Marker":{"shape":"String"}
}
},
"CertificateNotFoundFault":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1279,6 +1320,7 @@
"StorageEncrypted":{"shape":"Boolean"},
"KmsKeyId":{"shape":"String"},
"DbiResourceId":{"shape":"String"},
"CACertificateIdentifier":{"shape":"String"},
"PromotionTier":{"shape":"IntegerOptional"},
"DBInstanceArn":{"shape":"String"},
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}
Expand Down Expand Up @@ -1550,6 +1592,15 @@
"DBSubnetGroupName":{"shape":"String"}
}
},
"DescribeCertificatesMessage":{
"type":"structure",
"members":{
"CertificateIdentifier":{"shape":"String"},
"Filters":{"shape":"FilterList"},
"MaxRecords":{"shape":"IntegerOptional"},
"Marker":{"shape":"String"}
}
},
"DescribeDBClusterParameterGroupsMessage":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2064,6 +2115,7 @@
"PreferredMaintenanceWindow":{"shape":"String"},
"AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
"NewDBInstanceIdentifier":{"shape":"String"},
"CACertificateIdentifier":{"shape":"String"},
"PromotionTier":{"shape":"IntegerOptional"}
}
},
Expand Down
50 changes: 43 additions & 7 deletions models/apis/docdb/2014-10-31/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit 5f1c1f9

Please sign in to comment.