Skip to content

Commit aeb108c

Browse files
Merge branch 'release-1.42.61' into develop
* release-1.42.61: Bumping version to 1.42.61 Update to latest models
2 parents d94d178 + 2e33a26 commit aeb108c

File tree

11 files changed

+655
-86
lines changed

11 files changed

+655
-86
lines changed

.changes/1.42.61.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "``connect``",
4+
"description": "Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``elasticbeanstalk``",
9+
"description": "As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``es``",
14+
"description": "Adds support for DeploymentStrategyOptions.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``gamelift``",
19+
"description": "Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``opensearch``",
24+
"description": "Adding support for DeploymentStrategyOptions",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``quicksight``",
29+
"description": "Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "auth",
34+
"description": "Exclude additional hop-by-hop headers from SigV4 signing to prevent signature mismatches when intermediaries mutate transport headers (connection, keep-alive, proxy-authenticate, proxy-authorization, TE, trailer, upgrade).",
35+
"type": "enhancement"
36+
}
37+
]

.changes/next-release/enhancement-auth-88913.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
CHANGELOG
33
=========
44

5+
1.42.61
6+
=======
7+
8+
* api-change:``connect``: Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails.
9+
* api-change:``elasticbeanstalk``: As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs.
10+
* api-change:``es``: Adds support for DeploymentStrategyOptions.
11+
* api-change:``gamelift``: Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost.
12+
* api-change:``opensearch``: Adding support for DeploymentStrategyOptions
13+
* api-change:``quicksight``: Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places.
14+
* enhancement:auth: Exclude additional hop-by-hop headers from SigV4 signing to prevent signature mismatches when intermediaries mutate transport headers (connection, keep-alive, proxy-authenticate, proxy-authorization, TE, trailer, upgrade).
15+
16+
517
1.42.60
618
=======
719

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re
1818
from logging import NullHandler
1919

20-
__version__ = '1.42.60'
20+
__version__ = '1.42.61'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/connect/2017-08-08/service-2.json

Lines changed: 219 additions & 0 deletions
Large diffs are not rendered by default.

botocore/data/elasticbeanstalk/2010-12-01/service-2.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@
547547
"requestUri":"/"
548548
},
549549
"input":{"shape":"RequestEnvironmentInfoMessage"},
550-
"documentation":"<p>Initiates a request to compile the specified type of information of the deployed environment.</p> <p> Setting the <code>InfoType</code> to <code>tail</code> compiles the last lines from the application server log files of every Amazon EC2 instance in your environment. </p> <p> Setting the <code>InfoType</code> to <code>bundle</code> compresses the application server log files for every Amazon EC2 instance into a <code>.zip</code> file. Legacy and .NET containers do not support bundle logs. </p> <p> Use <a>RetrieveEnvironmentInfo</a> to obtain the set of logs. </p> <p>Related Topics</p> <ul> <li> <p> <a>RetrieveEnvironmentInfo</a> </p> </li> </ul>"
550+
"documentation":"<p>Initiates a request to compile the specified type of information of the deployed environment.</p> <p> Setting the <code>InfoType</code> to <code>tail</code> compiles the last lines from the application server log files of every Amazon EC2 instance in your environment. </p> <p> Setting the <code>InfoType</code> to <code>bundle</code> compresses the application server log files for every Amazon EC2 instance into a <code>.zip</code> file. Legacy and .NET containers do not support bundle logs. </p> <p> Setting the <code>InfoType</code> to <code>analyze</code> collects recent events, instance health, and logs from your environment and sends them to Amazon Bedrock in your account to generate diagnostic insights and recommended next steps. </p> <p> Use <a>RetrieveEnvironmentInfo</a> to obtain the set of logs. </p> <p>Related Topics</p> <ul> <li> <p> <a>RetrieveEnvironmentInfo</a> </p> </li> </ul>"
551551
},
552552
"RestartAppServer":{
553553
"name":"RestartAppServer",
@@ -2372,7 +2372,8 @@
23722372
"type":"string",
23732373
"enum":[
23742374
"tail",
2375-
"bundle"
2375+
"bundle",
2376+
"analyze"
23762377
]
23772378
},
23782379
"EnvironmentLink":{

botocore/data/es/2015-01-01/service-2.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1666,6 +1666,10 @@
16661666
"TagList":{
16671667
"shape":"TagList",
16681668
"documentation":"<p>A list of <code>Tag</code> added during domain creation.</p>"
1669+
},
1670+
"DeploymentStrategyOptions":{
1671+
"shape":"DeploymentStrategyOptions",
1672+
"documentation":"<p>Specifies the deployment strategy options.</p>"
16691673
}
16701674
}
16711675
},
@@ -1928,6 +1932,43 @@
19281932
"ELIGIBLE"
19291933
]
19301934
},
1935+
"DeploymentStrategy":{
1936+
"type":"string",
1937+
"documentation":"<p>Specifies the deployment strategy for the domain. Valid values are <code>Default</code> and <code>CapacityOptimized</code>.</p>",
1938+
"enum":[
1939+
"Default",
1940+
"CapacityOptimized"
1941+
]
1942+
},
1943+
"DeploymentStrategyOptions":{
1944+
"type":"structure",
1945+
"required":["DeploymentStrategy"],
1946+
"members":{
1947+
"DeploymentStrategy":{
1948+
"shape":"DeploymentStrategy",
1949+
"documentation":"<p>Specifies the deployment strategy for the domain. Valid values are <code>Default</code> and <code>CapacityOptimized</code>.</p>"
1950+
}
1951+
},
1952+
"documentation":"<p>Specifies the deployment strategy options for the domain.</p>"
1953+
},
1954+
"DeploymentStrategyOptionsStatus":{
1955+
"type":"structure",
1956+
"required":[
1957+
"Options",
1958+
"Status"
1959+
],
1960+
"members":{
1961+
"Options":{
1962+
"shape":"DeploymentStrategyOptions",
1963+
"documentation":"<p>Specifies deployment strategy options for the specified Elasticsearch domain.</p>"
1964+
},
1965+
"Status":{
1966+
"shape":"OptionStatus",
1967+
"documentation":"<p>Specifies the status of the deployment strategy options for the specified Elasticsearch domain.</p>"
1968+
}
1969+
},
1970+
"documentation":"<p>Specifies the status of deployment strategy options for the specified Elasticsearch domain.</p>"
1971+
},
19311972
"DeploymentType":{
19321973
"type":"string",
19331974
"max":128,
@@ -2830,6 +2871,10 @@
28302871
"ModifyingProperties":{
28312872
"shape":"ModifyingPropertiesList",
28322873
"documentation":"<p>Information about the domain properties that are currently being modified.</p>"
2874+
},
2875+
"DeploymentStrategyOptions":{
2876+
"shape":"DeploymentStrategyOptionsStatus",
2877+
"documentation":"<p>Specifies <code>DeploymentStrategyOptions</code> for the domain. </p>"
28332878
}
28342879
},
28352880
"documentation":"<p>The configuration of an Elasticsearch domain.</p>"
@@ -2947,6 +2992,10 @@
29472992
"ModifyingProperties":{
29482993
"shape":"ModifyingPropertiesList",
29492994
"documentation":"<p>Information about the domain properties that are currently being modified.</p>"
2995+
},
2996+
"DeploymentStrategyOptions":{
2997+
"shape":"DeploymentStrategyOptions",
2998+
"documentation":"<p>The current status of the Elasticsearch domain's deployment strategy options.</p>"
29502999
}
29513000
},
29523001
"documentation":"<p>The current status of an Elasticsearch domain.</p>"
@@ -4682,6 +4731,10 @@
46824731
"DryRun":{
46834732
"shape":"DryRun",
46844733
"documentation":"<p> This flag, when set to True, specifies whether the <code>UpdateElasticsearchDomain</code> request should return the results of validation checks without actually applying the change. This flag, when set to True, specifies the deployment mechanism through which the update shall be applied on the domain. This will not actually perform the Update. </p>"
4734+
},
4735+
"DeploymentStrategyOptions":{
4736+
"shape":"DeploymentStrategyOptions",
4737+
"documentation":"<p>Specifies the deployment strategy options.</p>"
46854738
}
46864739
},
46874740
"documentation":"<p>Container for the parameters to the <code><a>UpdateElasticsearchDomain</a></code> operation. Specifies the type and number of instances in the domain cluster.</p>"

0 commit comments

Comments
 (0)