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.50.32 #5189

Merged
merged 1 commit into from Mar 5, 2024
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
Release v1.50.32 (2024-03-05)
===

### Service Client Updates
* `service/apigateway`: Updates service documentation
* Documentation updates for Amazon API Gateway
* `service/chatbot`: Updates service API
* `service/organizations`: Adds new service
* This release contains an endpoint addition
* `service/sesv2`: Updates service API and documentation

Release v1.50.31 (2024-03-04)
===

Expand Down
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.50.31"
const SDKVersion = "1.50.32"
2 changes: 1 addition & 1 deletion models/apis/apigateway/2015-07-09/docs-2.json
Expand Up @@ -234,7 +234,7 @@
"ImportDocumentationPartsRequest$failOnWarnings": "<p>A query parameter to specify whether to rollback the documentation importation (<code>true</code>) or not (<code>false</code>) when a warning is encountered. The default value is <code>false</code>.</p>",
"ImportRestApiRequest$failOnWarnings": "<p>A query parameter to indicate whether to rollback the API creation (<code>true</code>) or not (<code>false</code>) when a warning is encountered. The default value is <code>false</code>.</p>",
"MethodSetting$metricsEnabled": "<p>Specifies whether Amazon CloudWatch metrics are enabled for this method.</p>",
"MethodSetting$dataTraceEnabled": "<p>Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs.</p>",
"MethodSetting$dataTraceEnabled": "<p>Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs. This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this option for production APIs.</p>",
"MethodSetting$cachingEnabled": "<p>Specifies whether responses should be cached and returned for requests. A cache cluster must be enabled on the stage for responses to be cached.</p>",
"MethodSetting$cacheDataEncrypted": "<p>Specifies whether the cached responses are encrypted.</p>",
"MethodSetting$requireAuthorizationForCacheControl": "<p>Specifies whether authorization is required for a cache invalidation request.</p>",
Expand Down
2 changes: 1 addition & 1 deletion models/apis/chatbot/2017-10-11/api-2.json
Expand Up @@ -5,7 +5,7 @@
"endpointPrefix":"chatbot",
"jsonVersion":"1.1",
"protocol":"rest-json",
"serviceFullName":"chatbot",
"serviceFullName":"AWS Chatbot",
"serviceId":"chatbot",
"signatureVersion":"v4",
"uid":"chatbot-2017-10-11"
Expand Down
51 changes: 51 additions & 0 deletions models/apis/organizations/2016-11-28/endpoint-rule-set-1.json
Expand Up @@ -365,6 +365,57 @@
},
"type": "endpoint"
},
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
},
"aws-iso"
]
},
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseFIPS"
},
false
]
},
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseDualStack"
},
false
]
}
],
"endpoint": {
"url": "https://organizations.us-iso-east-1.c2s.ic.gov",
"properties": {
"authSchemes": [
{
"name": "sigv4",
"signingName": "organizations",
"signingRegion": "us-iso-east-1"
}
]
},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [
{
Expand Down
31 changes: 31 additions & 0 deletions models/apis/organizations/2016-11-28/endpoint-tests-1.json
Expand Up @@ -311,6 +311,28 @@
"UseDualStack": false
}
},
{
"documentation": "For region aws-iso-global with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"properties": {
"authSchemes": [
{
"name": "sigv4",
"signingName": "organizations",
"signingRegion": "us-iso-east-1"
}
]
},
"url": "https://organizations.us-iso-east-1.c2s.ic.gov"
}
},
"params": {
"Region": "aws-iso-global",
"UseFIPS": false,
"UseDualStack": false
}
},
{
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled",
"expect": {
Expand Down Expand Up @@ -350,6 +372,15 @@
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"properties": {
"authSchemes": [
{
"name": "sigv4",
"signingName": "organizations",
"signingRegion": "us-iso-east-1"
}
]
},
"url": "https://organizations.us-iso-east-1.c2s.ic.gov"
}
},
Expand Down
35 changes: 33 additions & 2 deletions models/apis/sesv2/2019-09-27/api-2.json
Expand Up @@ -3642,11 +3642,41 @@
],
"members":{
"Subject":{"shape":"Content"},
"Body":{"shape":"Body"}
"Body":{"shape":"Body"},
"Headers":{"shape":"MessageHeaderList"}
}
},
"MessageContent":{"type":"string"},
"MessageData":{"type":"string"},
"MessageHeader":{
"type":"structure",
"required":[
"Name",
"Value"
],
"members":{
"Name":{"shape":"MessageHeaderName"},
"Value":{"shape":"MessageHeaderValue"}
}
},
"MessageHeaderList":{
"type":"list",
"member":{"shape":"MessageHeader"},
"max":15,
"min":0
},
"MessageHeaderName":{
"type":"string",
"max":126,
"min":1,
"pattern":"^[!-9;-@A-~]+$"
},
"MessageHeaderValue":{
"type":"string",
"max":870,
"min":1,
"pattern":"[ -~]*"
},
"MessageInsightsDataSource":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4537,7 +4567,8 @@
"members":{
"TemplateName":{"shape":"EmailTemplateName"},
"TemplateArn":{"shape":"AmazonResourceName"},
"TemplateData":{"shape":"EmailTemplateData"}
"TemplateData":{"shape":"EmailTemplateData"},
"Headers":{"shape":"MessageHeaderList"}
}
},
"TemplateContent":{"type":"string"},
Expand Down