Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.44.108 #4573

Merged
merged 1 commit into from Sep 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,25 @@
Release v1.44.108 (2022-09-29)
===

### Service Client Updates
* `service/acm`: Updates service API and documentation
* This update returns additional certificate details such as certificate SANs and allows sorting in the ListCertificates API.
* `service/ec2`: Updates service API
* u-3tb1 instances are powered by Intel Xeon Platinum 8176M (Skylake) processors and are purpose-built to run large in-memory databases.
* `service/emr-serverless`: Updates service API and documentation
* `service/fsx`: Updates service API, documentation, and paginators
* `service/migrationhuborchestrator`: Adds new service
* `service/polly`: Updates service API
* Added support for the new Cantonese voice - Hiujin. Hiujin is available as a Neural voice only.
* `service/proton`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
* SageMaker Training Managed Warm Pools let you retain provisioned infrastructure to reduce latency for repetitive training workloads.
* `service/secretsmanager`: Updates service documentation
* Documentation updates for Secrets Manager
* `service/translate`: Updates service API and documentation
* `service/workspaces`: Updates service API and documentation
* This release includes diagnostic log uploading feature. If it is enabled, the log files of WorkSpaces Windows client will be sent to Amazon WorkSpaces automatically for troubleshooting. You can use modifyClientProperty api to enable/disable this feature.

Release v1.44.107 (2022-09-27)
===

Expand Down
32 changes: 32 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.44.107"
const SDKVersion = "1.44.108"
51 changes: 49 additions & 2 deletions models/apis/acm/2015-12-08/api-2.json
Expand Up @@ -334,7 +334,32 @@
"type":"structure",
"members":{
"CertificateArn":{"shape":"Arn"},
"DomainName":{"shape":"DomainNameString"}
"DomainName":{"shape":"DomainNameString"},
"SubjectAlternativeNameSummaries":{"shape":"DomainList"},
"HasAdditionalSubjectAlternativeNames":{
"shape":"NullableBoolean",
"box":true
},
"Status":{"shape":"CertificateStatus"},
"Type":{"shape":"CertificateType"},
"KeyAlgorithm":{"shape":"KeyAlgorithm"},
"KeyUsages":{"shape":"KeyUsageNames"},
"ExtendedKeyUsages":{"shape":"ExtendedKeyUsageNames"},
"InUse":{
"shape":"NullableBoolean",
"box":true
},
"Exported":{
"shape":"NullableBoolean",
"box":true
},
"RenewalEligibility":{"shape":"RenewalEligibility"},
"NotBefore":{"shape":"TStamp"},
"NotAfter":{"shape":"TStamp"},
"CreatedAt":{"shape":"TStamp"},
"IssuedAt":{"shape":"TStamp"},
"ImportedAt":{"shape":"TStamp"},
"RevokedAt":{"shape":"TStamp"}
}
},
"CertificateSummaryList":{
Expand Down Expand Up @@ -495,6 +520,10 @@
"CUSTOM"
]
},
"ExtendedKeyUsageNames":{
"type":"list",
"member":{"shape":"ExtendedKeyUsageName"}
},
"FailureReason":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -663,6 +692,10 @@
"CUSTOM"
]
},
"KeyUsageNames":{
"type":"list",
"member":{"shape":"KeyUsageName"}
},
"LimitExceededException":{
"type":"structure",
"members":{
Expand All @@ -676,7 +709,9 @@
"CertificateStatuses":{"shape":"CertificateStatuses"},
"Includes":{"shape":"Filters"},
"NextToken":{"shape":"NextToken"},
"MaxItems":{"shape":"MaxItems"}
"MaxItems":{"shape":"MaxItems"},
"SortBy":{"shape":"SortBy"},
"SortOrder":{"shape":"SortOrder"}
}
},
"ListCertificatesResponse":{
Expand Down Expand Up @@ -710,6 +745,7 @@
"min":1,
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*"
},
"NullableBoolean":{"type":"boolean"},
"PassphraseBlob":{
"type":"blob",
"max":128,
Expand Down Expand Up @@ -876,6 +912,17 @@
]
},
"ServiceErrorMessage":{"type":"string"},
"SortBy":{
"type":"string",
"enum":["CREATED_AT"]
},
"SortOrder":{
"type":"string",
"enum":[
"ASCENDING",
"DESCENDING"
]
},
"String":{"type":"string"},
"TStamp":{"type":"timestamp"},
"Tag":{
Expand Down