Skip to content

Commit

Permalink
Release v1.44.108 (2022-09-29) (#4573)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aws-sdk-go-automation committed Sep 29, 2022
1 parent 427f037 commit 05ed0fb
Show file tree
Hide file tree
Showing 51 changed files with 21,529 additions and 3,966 deletions.
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

0 comments on commit 05ed0fb

Please sign in to comment.