Skip to content

Commit 1efd7be

Browse files
Merge branch 'release-1.42.49' into develop
* release-1.42.49: Bumping version to 1.42.49 Update to latest models
2 parents 2fc6b87 + d84c0f9 commit 1efd7be

10 files changed

Lines changed: 1014 additions & 16 deletions

File tree

.changes/1.42.49.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"category": "``cloudwatch``",
4+
"description": "Adding new evaluation states that provides information about the alarm evaluation process. Evaluation error Indicates configuration errors in alarm setup that require review and correction. Evaluation failure Indicates temporary CloudWatch issues.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``connect``",
9+
"description": "API release for headerr notifications in the admin website. APIs allow customers to publish brief messages (including URLs) to a specified audience, and a new header icon will indicate when unread messages are available.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "This release adds geography information to EC2 region and availability zone APIs. DescribeRegions now includes a Geography field, while DescribeAvailabilityZones includes both Geography and SubGeography fields, enabling better geographic classification for AWS regions and zones.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``inspector2``",
19+
"description": "Added .Net 10 (dotnet10) and Node 24.x (node24.x) runtime support for lambda package scanning",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``sagemaker``",
24+
"description": "Enable g7e instance type support for SageMaker Processing, and enable single file configuration provisioning for HyperPod Slurm, where customers have the option to use HyperPod API to provide the provisioning parameters.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "AWSCRT",
29+
"description": "Update awscrt version to 0.31.2",
30+
"type": "enhancement"
31+
}
32+
]

.changes/next-release/enhancement-AWSCRT-31200.json

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

CHANGELOG.rst

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

5+
1.42.49
6+
=======
7+
8+
* api-change:``cloudwatch``: Adding new evaluation states that provides information about the alarm evaluation process. Evaluation error Indicates configuration errors in alarm setup that require review and correction. Evaluation failure Indicates temporary CloudWatch issues.
9+
* api-change:``connect``: API release for headerr notifications in the admin website. APIs allow customers to publish brief messages (including URLs) to a specified audience, and a new header icon will indicate when unread messages are available.
10+
* api-change:``ec2``: This release adds geography information to EC2 region and availability zone APIs. DescribeRegions now includes a Geography field, while DescribeAvailabilityZones includes both Geography and SubGeography fields, enabling better geographic classification for AWS regions and zones.
11+
* api-change:``inspector2``: Added .Net 10 (dotnet10) and Node 24.x (node24.x) runtime support for lambda package scanning
12+
* api-change:``sagemaker``: Enable g7e instance type support for SageMaker Processing, and enable single file configuration provisioning for HyperPod Slurm, where customers have the option to use HyperPod API to provide the provisioning parameters.
13+
* enhancement:AWSCRT: Update awscrt version to 0.31.2
14+
15+
516
1.42.48
617
=======
718

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.48'
20+
__version__ = '1.42.49'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/cloudwatch/2010-08-01/service-2.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@
10871087
},
10881088
"ContributorId":{
10891089
"type":"string",
1090-
"max":1024,
1090+
"max":16,
10911091
"min":1
10921092
},
10931093
"Counts":{
@@ -1790,7 +1790,11 @@
17901790
},
17911791
"EvaluationState":{
17921792
"type":"string",
1793-
"enum":["PARTIAL_DATA"]
1793+
"enum":[
1794+
"PARTIAL_DATA",
1795+
"EVALUATION_FAILURE",
1796+
"EVALUATION_ERROR"
1797+
]
17941798
},
17951799
"ExceptionType":{"type":"string"},
17961800
"ExtendedStatistic":{"type":"string"},
@@ -2827,7 +2831,7 @@
28272831
},
28282832
"EvaluationState":{
28292833
"shape":"EvaluationState",
2830-
"documentation":"<p>If the value of this field is <code>PARTIAL_DATA</code>, the alarm is being evaluated based on only partial data. This happens if the query used for the alarm returns more than 10,000 metrics. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Create_Metrics_Insights_Alarm.html\">Create alarms on Metrics Insights queries</a>.</p>"
2834+
"documentation":"<p>If the value of this field is <code>PARTIAL_DATA</code>, it indicates that not all the available data was able to be retrieved due to quota limitations. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Create_Metrics_Insights_Alarm.html\">Create alarms on Metrics Insights queries</a>.</p> <p>If the value of this field is <code>EVALUATION_ERROR</code>, it indicates configuration errors in alarm setup that require review and correction. Refer to StateReason field of the alarm for more details.</p> <p>If the value of this field is <code>EVALUATION_FAILURE</code>, it indicates temporary CloudWatch issues. We recommend manual monitoring until the issue is resolved </p>"
28312835
},
28322836
"StateTransitionedTimestamp":{
28332837
"shape":"Timestamp",

0 commit comments

Comments
 (0)