Skip to content

Commit dbc7a73

Browse files
Merge branch 'release-1.43.46' into develop
* release-1.43.46: Bumping version to 1.43.46 Update endpoints model Update to latest models
2 parents d65eb2a + 089203a commit dbc7a73

12 files changed

Lines changed: 728 additions & 24 deletions

File tree

.changes/1.43.46.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "``cloudwatch``",
4+
"description": "CloudWatch now assigns a unique identifier to each anomaly detector. PutAnomalyDetector and DescribeAnomalyDetectors return this AnomalyDetectorId, which you can use to describe or delete a specific anomaly detector directly.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``ec2``",
9+
"description": "New Amazon EC2 instances. M9g, M9gd, C9g, and C9gd on AWS Graviton5. C8in, M8in, and R8in add 600 Gbps network. C8ib, M8ib, and R8ib add 300 Gbps EBS. C8ine, M8ine, M8idn, R8idn, M8idb, and R8idb round out Intel Xeon 6. Mac-m3ultra with Apple M3 Ultra. G7 with NVIDIA RTX PRO 4500 Blackwell GPUs.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``inspector2``",
14+
"description": "Support for 3 day and 7 day ECR re-scan durations",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``lambda``",
19+
"description": "Added TelemetryConfig support for Managed Instances Capacity Provider, enabling customers to configure system log level and custom log group for managed instance logging.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``license-manager``",
24+
"description": "Added the ResetUsage field to the CreateLicenseVersion API. When set to true, the entitlement usage counts for the license are reset to 0. If it is false or not specified, entitlement usage is left unchanged.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``quicksight``",
29+
"description": "Provides CreateKnowledgeBase and UpdateKnowledgeBase APIs",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``sagemaker``",
34+
"description": "Release support for g4d, c6g, c7g, c8g instance types for SageMaker HyperPod",
35+
"type": "api-change"
36+
}
37+
]

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.43.46
6+
=======
7+
8+
* api-change:``cloudwatch``: CloudWatch now assigns a unique identifier to each anomaly detector. PutAnomalyDetector and DescribeAnomalyDetectors return this AnomalyDetectorId, which you can use to describe or delete a specific anomaly detector directly.
9+
* api-change:``ec2``: New Amazon EC2 instances. M9g, M9gd, C9g, and C9gd on AWS Graviton5. C8in, M8in, and R8in add 600 Gbps network. C8ib, M8ib, and R8ib add 300 Gbps EBS. C8ine, M8ine, M8idn, R8idn, M8idb, and R8idb round out Intel Xeon 6. Mac-m3ultra with Apple M3 Ultra. G7 with NVIDIA RTX PRO 4500 Blackwell GPUs.
10+
* api-change:``inspector2``: Support for 3 day and 7 day ECR re-scan durations
11+
* api-change:``lambda``: Added TelemetryConfig support for Managed Instances Capacity Provider, enabling customers to configure system log level and custom log group for managed instance logging.
12+
* api-change:``license-manager``: Added the ResetUsage field to the CreateLicenseVersion API. When set to true, the entitlement usage counts for the license are reset to 0. If it is false or not specified, entitlement usage is left unchanged.
13+
* api-change:``quicksight``: Provides CreateKnowledgeBase and UpdateKnowledgeBase APIs
14+
* api-change:``sagemaker``: Release support for g4d, c6g, c7g, c8g instance types for SageMaker HyperPod
15+
16+
517
1.43.45
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.43.45'
20+
__version__ = '1.43.46'
2121

2222

2323
# Configure default logger to do nothing

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

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1056,6 +1056,10 @@
10561056
"AnomalyDetector":{
10571057
"type":"structure",
10581058
"members":{
1059+
"AnomalyDetectorId":{
1060+
"shape":"AnomalyDetectorId",
1061+
"documentation":"<p>The unique identifier of the anomaly detector.</p> <note> <p>The identifier does not restrict access to a specific anomaly detector in an IAM policy. Permissions for anomaly detector operations apply to all anomaly detectors in the account.</p> </note>"
1062+
},
10591063
"Namespace":{
10601064
"shape":"Namespace",
10611065
"documentation":"<p>The namespace of the metric associated with the anomaly detection model.</p>",
@@ -1121,6 +1125,17 @@
11211125
"type":"list",
11221126
"member":{"shape":"Range"}
11231127
},
1128+
"AnomalyDetectorId":{
1129+
"type":"string",
1130+
"max":128,
1131+
"min":1,
1132+
"pattern":"[A-Za-z0-9_./:%()+-]+"
1133+
},
1134+
"AnomalyDetectorIds":{
1135+
"type":"list",
1136+
"member":{"shape":"AnomalyDetectorId"},
1137+
"max":50
1138+
},
11241139
"AnomalyDetectorMetricStat":{
11251140
"type":"string",
11261141
"max":50,
@@ -1539,6 +1554,10 @@
15391554
"DeleteAnomalyDetectorInput":{
15401555
"type":"structure",
15411556
"members":{
1557+
"AnomalyDetectorId":{
1558+
"shape":"AnomalyDetectorId",
1559+
"documentation":"<p>Specifies the unique identifier of the anomaly detector to delete. If you specify this parameter, you do not need to specify a metric to identify the detector.</p>"
1560+
},
15421561
"Namespace":{
15431562
"shape":"Namespace",
15441563
"documentation":"<p>The namespace associated with the anomaly detection model to delete.</p>",
@@ -1817,6 +1836,10 @@
18171836
"DescribeAnomalyDetectorsInput":{
18181837
"type":"structure",
18191838
"members":{
1839+
"AnomalyDetectorIds":{
1840+
"shape":"AnomalyDetectorIds",
1841+
"documentation":"<p>Specifies the unique identifiers of the anomaly detectors to describe. You can specify up to 50 identifiers. If you specify this parameter, you cannot also specify the <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>, or <code>AnomalyDetectorTypes</code> metric filters.</p>"
1842+
},
18201843
"NextToken":{
18211844
"shape":"NextToken",
18221845
"documentation":"<p>Use the token returned by the previous operation to request the next page of results.</p>"
@@ -4027,7 +4050,12 @@
40274050
},
40284051
"PutAnomalyDetectorOutput":{
40294052
"type":"structure",
4030-
"members":{}
4053+
"members":{
4054+
"AnomalyDetectorId":{
4055+
"shape":"AnomalyDetectorId",
4056+
"documentation":"<p>The unique identifier of the anomaly detector that you created or updated.</p>"
4057+
}
4058+
}
40314059
},
40324060
"PutCompositeAlarmInput":{
40334061
"type":"structure",

botocore/data/ec2/2016-11-15/service-2.json

Lines changed: 194 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47869,7 +47869,200 @@
4786947869
"m8id.96xlarge",
4787047870
"m8id.metal-48xl",
4787147871
"m8id.metal-96xl",
47872-
"hpc8a.96xlarge"
47872+
"hpc8a.96xlarge",
47873+
"c8in.large",
47874+
"c8in.xlarge",
47875+
"c8in.2xlarge",
47876+
"c8in.4xlarge",
47877+
"c8in.8xlarge",
47878+
"c8in.12xlarge",
47879+
"c8in.16xlarge",
47880+
"c8in.24xlarge",
47881+
"c8in.32xlarge",
47882+
"c8in.48xlarge",
47883+
"c8in.96xlarge",
47884+
"c8in.metal-48xl",
47885+
"c8in.metal-96xl",
47886+
"c8ib.large",
47887+
"c8ib.xlarge",
47888+
"c8ib.2xlarge",
47889+
"c8ib.4xlarge",
47890+
"c8ib.8xlarge",
47891+
"c8ib.12xlarge",
47892+
"c8ib.16xlarge",
47893+
"c8ib.24xlarge",
47894+
"c8ib.32xlarge",
47895+
"c8ib.48xlarge",
47896+
"c8ib.96xlarge",
47897+
"c8ib.metal-48xl",
47898+
"c8ib.metal-96xl",
47899+
"r8in.large",
47900+
"r8in.xlarge",
47901+
"r8in.2xlarge",
47902+
"r8in.4xlarge",
47903+
"r8in.8xlarge",
47904+
"r8in.12xlarge",
47905+
"r8in.16xlarge",
47906+
"r8in.24xlarge",
47907+
"r8in.32xlarge",
47908+
"r8in.48xlarge",
47909+
"r8in.96xlarge",
47910+
"r8ib.large",
47911+
"r8ib.xlarge",
47912+
"r8ib.2xlarge",
47913+
"r8ib.4xlarge",
47914+
"r8ib.8xlarge",
47915+
"r8ib.12xlarge",
47916+
"r8ib.16xlarge",
47917+
"r8ib.24xlarge",
47918+
"r8ib.32xlarge",
47919+
"r8ib.48xlarge",
47920+
"r8ib.96xlarge",
47921+
"m8in.large",
47922+
"m8in.xlarge",
47923+
"m8in.2xlarge",
47924+
"m8in.4xlarge",
47925+
"m8in.8xlarge",
47926+
"m8in.12xlarge",
47927+
"m8in.16xlarge",
47928+
"m8in.24xlarge",
47929+
"m8in.32xlarge",
47930+
"m8in.48xlarge",
47931+
"m8in.96xlarge",
47932+
"m8ib.large",
47933+
"m8ib.xlarge",
47934+
"m8ib.2xlarge",
47935+
"m8ib.4xlarge",
47936+
"m8ib.8xlarge",
47937+
"m8ib.12xlarge",
47938+
"m8ib.16xlarge",
47939+
"m8ib.24xlarge",
47940+
"m8ib.32xlarge",
47941+
"m8ib.48xlarge",
47942+
"m8ib.96xlarge",
47943+
"m8ine.large",
47944+
"m8ine.xlarge",
47945+
"m8ine.2xlarge",
47946+
"m8ine.4xlarge",
47947+
"m8ine.8xlarge",
47948+
"m8ine.12xlarge",
47949+
"c8ine.large",
47950+
"c8ine.xlarge",
47951+
"c8ine.2xlarge",
47952+
"c8ine.4xlarge",
47953+
"c8ine.8xlarge",
47954+
"c8ine.12xlarge",
47955+
"m8idn.large",
47956+
"m8idn.xlarge",
47957+
"m8idn.2xlarge",
47958+
"m8idn.4xlarge",
47959+
"m8idn.8xlarge",
47960+
"m8idn.12xlarge",
47961+
"m8idn.16xlarge",
47962+
"m8idn.24xlarge",
47963+
"m8idn.32xlarge",
47964+
"m8idn.48xlarge",
47965+
"m8idn.96xlarge",
47966+
"r8idn.large",
47967+
"r8idn.xlarge",
47968+
"r8idn.2xlarge",
47969+
"r8idn.4xlarge",
47970+
"r8idn.8xlarge",
47971+
"r8idn.12xlarge",
47972+
"r8idn.16xlarge",
47973+
"r8idn.24xlarge",
47974+
"r8idn.32xlarge",
47975+
"r8idn.48xlarge",
47976+
"r8idn.96xlarge",
47977+
"m8idb.large",
47978+
"m8idb.xlarge",
47979+
"m8idb.2xlarge",
47980+
"m8idb.4xlarge",
47981+
"m8idb.8xlarge",
47982+
"m8idb.12xlarge",
47983+
"m8idb.16xlarge",
47984+
"m8idb.24xlarge",
47985+
"m8idb.32xlarge",
47986+
"m8idb.48xlarge",
47987+
"m8idb.96xlarge",
47988+
"r8idb.large",
47989+
"r8idb.xlarge",
47990+
"r8idb.2xlarge",
47991+
"r8idb.4xlarge",
47992+
"r8idb.8xlarge",
47993+
"r8idb.12xlarge",
47994+
"r8idb.16xlarge",
47995+
"r8idb.24xlarge",
47996+
"r8idb.32xlarge",
47997+
"r8idb.48xlarge",
47998+
"r8idb.96xlarge",
47999+
"mac-m3ultra.metal",
48000+
"m9g.large",
48001+
"m9g.xlarge",
48002+
"m9g.2xlarge",
48003+
"m9g.4xlarge",
48004+
"m9g.8xlarge",
48005+
"m9g.12xlarge",
48006+
"m9g.16xlarge",
48007+
"m9g.24xlarge",
48008+
"m9g.48xlarge",
48009+
"m9g.metal-24xl",
48010+
"m9g.metal-48xl",
48011+
"m9gd.large",
48012+
"m9gd.xlarge",
48013+
"m9gd.2xlarge",
48014+
"m9gd.4xlarge",
48015+
"m9gd.8xlarge",
48016+
"m9gd.12xlarge",
48017+
"m9gd.16xlarge",
48018+
"m9gd.24xlarge",
48019+
"m9gd.48xlarge",
48020+
"m9gd.metal-24xl",
48021+
"m9gd.metal-48xl",
48022+
"r8in.metal-48xl",
48023+
"r8in.metal-96xl",
48024+
"r8ib.metal-48xl",
48025+
"r8ib.metal-96xl",
48026+
"r8idn.metal-48xl",
48027+
"r8idn.metal-96xl",
48028+
"r8idb.metal-48xl",
48029+
"r8idb.metal-96xl",
48030+
"m8in.metal-48xl",
48031+
"m8in.metal-96xl",
48032+
"m8ib.metal-48xl",
48033+
"m8ib.metal-96xl",
48034+
"m8idn.metal-48xl",
48035+
"m8idn.metal-96xl",
48036+
"m8idb.metal-48xl",
48037+
"m8idb.metal-96xl",
48038+
"g7.2xlarge",
48039+
"g7.4xlarge",
48040+
"g7.8xlarge",
48041+
"g7.12xlarge",
48042+
"g7.24xlarge",
48043+
"g7.48xlarge",
48044+
"c9g.medium",
48045+
"c9g.large",
48046+
"c9g.xlarge",
48047+
"c9g.2xlarge",
48048+
"c9g.4xlarge",
48049+
"c9g.8xlarge",
48050+
"c9g.12xlarge",
48051+
"c9g.16xlarge",
48052+
"c9g.24xlarge",
48053+
"c9g.48xlarge",
48054+
"c9g.metal-48xl",
48055+
"c9gd.medium",
48056+
"c9gd.large",
48057+
"c9gd.xlarge",
48058+
"c9gd.2xlarge",
48059+
"c9gd.4xlarge",
48060+
"c9gd.8xlarge",
48061+
"c9gd.12xlarge",
48062+
"c9gd.16xlarge",
48063+
"c9gd.24xlarge",
48064+
"c9gd.48xlarge",
48065+
"c9gd.metal-48xl"
4787348066
]
4787448067
},
4787548068
"InstanceTypeHypervisor":{

botocore/data/endpoints.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2985,6 +2985,7 @@
29852985
"ap-southeast-3" : { },
29862986
"ap-southeast-4" : { },
29872987
"ap-southeast-5" : { },
2988+
"ap-southeast-6" : { },
29882989
"ap-southeast-7" : { },
29892990
"ca-central-1" : { },
29902991
"ca-west-1" : { },

botocore/data/inspector2/2020-06-08/service-2.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6131,7 +6131,9 @@
61316131
"DAYS_30",
61326132
"DAYS_60",
61336133
"DAYS_90",
6134-
"DAYS_180"
6134+
"DAYS_180",
6135+
"DAYS_3",
6136+
"DAYS_7"
61356137
]
61366138
},
61376139
"EcrPullDateRescanMode":{
@@ -6163,7 +6165,9 @@
61636165
"DAYS_180",
61646166
"DAYS_14",
61656167
"DAYS_60",
6166-
"DAYS_90"
6168+
"DAYS_90",
6169+
"DAYS_3",
6170+
"DAYS_7"
61676171
]
61686172
},
61696173
"EcrRescanDurationState":{

0 commit comments

Comments
 (0)