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.191 #4710

Merged
merged 1 commit into from
Jan 31, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
Release v1.44.191 (2023-01-31)
===

### Service Client Updates
* `service/accessanalyzer`: Adds new service
* `service/appsync`: Updates service API and documentation
* `service/cloudtrail`: Updates service API and documentation
* Add new "Channel" APIs to enable users to manage channels used for CloudTrail Lake integrations, and "Resource Policy" APIs to enable users to manage the resource-based permissions policy attached to a channel.
* `service/cloudtrail-data`: Adds new service
* `service/codeartifact`: Updates service API and documentation
* `service/connectparticipant`: Adds new service
* `service/ec2`: Updates service API and documentation
* This launch allows customers to associate up to 8 IP addresses to their NAT Gateways to increase the limit on concurrent connections to a single destination by eight times from 55K to 440K.
* `service/groundstation`: Updates service API and documentation
* `service/iot`: Updates service API and documentation
* Added support for IoT Rules Engine Cloudwatch Logs action batch mode.
* `service/kinesis`: Adds new service
* Enabled FIPS endpoints for GovCloud (US) regions in SDK.
* `service/opensearch`: Updates service API and documentation
* `service/outposts`: Adds new service
* `service/polly`: Updates service API
* Amazon Polly adds two new neural American English voices - Ruth, Stephen
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker Automatic Model Tuning now supports more completion criteria for Hyperparameter Optimization.
* `service/securityhub`: Updates service API and documentation
* `service/support`: Adds new service
* This fixes incorrect endpoint construction when a customer is explicitly setting a region.

Release v1.44.190 (2023-01-30)
===

Expand Down
109 changes: 109 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.44.190"
const SDKVersion = "1.44.191"
126 changes: 99 additions & 27 deletions models/apis/accessanalyzer/2019-11-01/endpoint-rule-set-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,6 @@
"ref": "Endpoint"
}
]
},
{
"fn": "parseURL",
"argv": [
{
"ref": "Endpoint"
}
],
"assign": "url"
}
],
"type": "tree",
Expand Down Expand Up @@ -174,12 +165,18 @@
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://access-analyzer-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
"type": "tree",
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://access-analyzer-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
}
]
},
Expand Down Expand Up @@ -228,6 +225,31 @@
"conditions": [],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws-us-gov",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://access-analyzer.{Region}.amazonaws.com",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [],
"endpoint": {
Expand Down Expand Up @@ -284,12 +306,18 @@
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://access-analyzer.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
"type": "tree",
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://access-analyzer.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
}
]
},
Expand All @@ -302,12 +330,56 @@
},
{
"conditions": [],
"endpoint": {
"url": "https://access-analyzer.{Region}.{PartitionResult#dnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
{
"ref": "Region"
},
"us-gov-east-1"
]
}
],
"endpoint": {
"url": "https://access-analyzer.us-gov-east-1.amazonaws.com",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
{
"ref": "Region"
},
"us-gov-west-1"
]
}
],
"endpoint": {
"url": "https://access-analyzer.us-gov-west-1.amazonaws.com",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [],
"endpoint": {
"url": "https://access-analyzer.{Region}.{PartitionResult#dnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
}
]
}
Expand Down
Loading