Skip to content

Commit

Permalink
Release v1.42.5 (2021-11-15) (#4176)
Browse files Browse the repository at this point in the history
Release v1.42.5 (2021-11-15)
===

### Service Client Updates
* `service/appstream`: Updates service API
  * This release includes support for images of AmazonLinux2 platform type.
* `service/dms`: Updates service API and documentation
  * Add Settings in JSON format for the source GCP MySQL endpoint
* `service/ec2`: Updates service API and documentation
  * Adds a new VPC Subnet attribute "EnableDns64." When enabled on IPv6 Subnets, the Amazon-Provided DNS Resolver returns synthetic IPv6 addresses for IPv4-only destinations.
* `service/eks`: Updates service API and documentation
* `service/migrationhubstrategy`: Adds new service
* `service/ssm`: Updates service API and documentation
  * Adds support for Session Reason and Max Session Duration for Systems Manager Session Manager.
* `service/transfer`: Updates service API and documentation
  * AWS Transfer Family now supports integrating a custom identity provider using AWS Lambda
* `service/wafv2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Nov 15, 2021
1 parent 1369084 commit 60c2511
Show file tree
Hide file tree
Showing 36 changed files with 11,927 additions and 159 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
Release v1.42.5 (2021-11-15)
===

### Service Client Updates
* `service/appstream`: Updates service API
* This release includes support for images of AmazonLinux2 platform type.
* `service/dms`: Updates service API and documentation
* Add Settings in JSON format for the source GCP MySQL endpoint
* `service/ec2`: Updates service API and documentation
* Adds a new VPC Subnet attribute "EnableDns64." When enabled on IPv6 Subnets, the Amazon-Provided DNS Resolver returns synthetic IPv6 addresses for IPv4-only destinations.
* `service/eks`: Updates service API and documentation
* `service/migrationhubstrategy`: Adds new service
* `service/ssm`: Updates service API and documentation
* Adds support for Session Reason and Max Session Duration for Systems Manager Session Manager.
* `service/transfer`: Updates service API and documentation
* AWS Transfer Family now supports integrating a custom identity provider using AWS Lambda
* `service/wafv2`: Updates service API and documentation

Release v1.42.4 (2021-11-12)
===

Expand Down
25 changes: 25 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
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.42.4"
const SDKVersion = "1.42.5"
6 changes: 4 additions & 2 deletions models/apis/appstream/2016-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,8 @@
"output":{"shape":"DescribeUsersResult"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterCombinationException"}
{"shape":"InvalidParameterCombinationException"},
{"shape":"OperationNotPermittedException"}
]
},
"DisableUser":{
Expand Down Expand Up @@ -1855,7 +1856,8 @@
"enum":[
"WINDOWS",
"WINDOWS_SERVER_2016",
"WINDOWS_SERVER_2019"
"WINDOWS_SERVER_2019",
"AMAZON_LINUX2"
]
},
"RedirectURL":{
Expand Down
29 changes: 26 additions & 3 deletions models/apis/dms/2016-01-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,8 @@
"IBMDb2Settings":{"shape":"IBMDb2Settings"},
"ResourceIdentifier":{"shape":"String"},
"DocDbSettings":{"shape":"DocDbSettings"},
"RedisSettings":{"shape":"RedisSettings"}
"RedisSettings":{"shape":"RedisSettings"},
"GcpMySQLSettings":{"shape":"GcpMySQLSettings"}
}
},
"CreateEndpointResponse":{
Expand Down Expand Up @@ -1657,7 +1658,8 @@
"MicrosoftSQLServerSettings":{"shape":"MicrosoftSQLServerSettings"},
"IBMDb2Settings":{"shape":"IBMDb2Settings"},
"DocDbSettings":{"shape":"DocDbSettings"},
"RedisSettings":{"shape":"RedisSettings"}
"RedisSettings":{"shape":"RedisSettings"},
"GcpMySQLSettings":{"shape":"GcpMySQLSettings"}
}
},
"EndpointList":{
Expand Down Expand Up @@ -1766,6 +1768,25 @@
"type":"list",
"member":{"shape":"String"}
},
"GcpMySQLSettings":{
"type":"structure",
"members":{
"AfterConnectScript":{"shape":"String"},
"CleanSourceMetadataOnMismatch":{"shape":"BooleanOptional"},
"DatabaseName":{"shape":"String"},
"EventsPollInterval":{"shape":"IntegerOptional"},
"TargetDbType":{"shape":"TargetDbType"},
"MaxFileSize":{"shape":"IntegerOptional"},
"ParallelLoadThreads":{"shape":"IntegerOptional"},
"Password":{"shape":"SecretString"},
"Port":{"shape":"IntegerOptional"},
"ServerName":{"shape":"String"},
"ServerTimezone":{"shape":"String"},
"Username":{"shape":"String"},
"SecretsManagerAccessRoleArn":{"shape":"String"},
"SecretsManagerSecretId":{"shape":"String"}
}
},
"IBMDb2Settings":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2022,7 +2043,8 @@
"IBMDb2Settings":{"shape":"IBMDb2Settings"},
"DocDbSettings":{"shape":"DocDbSettings"},
"RedisSettings":{"shape":"RedisSettings"},
"ExactSettings":{"shape":"BooleanOptional"}
"ExactSettings":{"shape":"BooleanOptional"},
"GcpMySQLSettings":{"shape":"GcpMySQLSettings"}
}
},
"ModifyEndpointResponse":{
Expand Down Expand Up @@ -2734,6 +2756,7 @@
"CsvNoSupValue":{"shape":"String"},
"PreserveTransactions":{"shape":"BooleanOptional"},
"CdcPath":{"shape":"String"},
"UseTaskStartTimeForFullLoadTimestamp":{"shape":"BooleanOptional"},
"CannedAclForObjects":{"shape":"CannedAclForObjectsValue"},
"AddColumnName":{"shape":"BooleanOptional"},
"CdcMaxBatchInterval":{"shape":"IntegerOptional"},
Expand Down
Loading

0 comments on commit 60c2511

Please sign in to comment.