Skip to content

Commit e2a72fc

Browse files
Merge branch 'release-1.42.25' into develop
* release-1.42.25: Bumping version to 1.42.25 Update endpoints model Update to latest models
2 parents 47f2b30 + 721ab78 commit e2a72fc

11 files changed

Lines changed: 549 additions & 4 deletions

File tree

.changes/1.42.25.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"category": "``bedrock-agentcore-control``",
4+
"description": "Adds optional field \"view\" to GetMemory API input to give customers control over whether CMK encrypted data such as strategy decryption or override prompts is returned or not.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``cloudfront``",
9+
"description": "Added EntityLimitExceeded exception handling to the following API operations AssociateDistributionWebACL, AssociateDistributionTenantWebACL, UpdateDistributionWithStagingConfig",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``glue``",
14+
"description": "Adding MaterializedViews task run APIs",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``medialive``",
19+
"description": "MediaPackage v2 output groups in MediaLive can now accept one additional destination for single pipeline channels and up to two additional destinations for standard channels. MediaPackage v2 destinations now support sending to cross region MediaPackage channels.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``transcribe``",
24+
"description": "Adds waiters to Amazon Transcribe.",
25+
"type": "api-change"
26+
}
27+
]

CHANGELOG.rst

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

5+
1.42.25
6+
=======
7+
8+
* api-change:``bedrock-agentcore-control``: Adds optional field "view" to GetMemory API input to give customers control over whether CMK encrypted data such as strategy decryption or override prompts is returned or not.
9+
* api-change:``cloudfront``: Added EntityLimitExceeded exception handling to the following API operations AssociateDistributionWebACL, AssociateDistributionTenantWebACL, UpdateDistributionWithStagingConfig
10+
* api-change:``glue``: Adding MaterializedViews task run APIs
11+
* api-change:``medialive``: MediaPackage v2 output groups in MediaLive can now accept one additional destination for single pipeline channels and up to two additional destinations for standard channels. MediaPackage v2 destinations now support sending to cross region MediaPackage channels.
12+
* api-change:``transcribe``: Adds waiters to Amazon Transcribe.
13+
14+
515
1.42.24
616
=======
717

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.24'
20+
__version__ = '1.42.25'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/bedrock-agentcore-control/2023-06-05/service-2.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5928,6 +5928,12 @@
59285928
"documentation":"<p>The unique identifier of the memory to retrieve.</p>",
59295929
"location":"uri",
59305930
"locationName":"memoryId"
5931+
},
5932+
"view":{
5933+
"shape":"MemoryView",
5934+
"documentation":"<p>The level of detail to return for the memory.</p>",
5935+
"location":"querystring",
5936+
"locationName":"view"
59315937
}
59325938
}
59335939
},
@@ -7743,6 +7749,13 @@
77437749
"type":"list",
77447750
"member":{"shape":"MemorySummary"}
77457751
},
7752+
"MemoryView":{
7753+
"type":"string",
7754+
"enum":[
7755+
"full",
7756+
"without_decryption"
7757+
]
7758+
},
77467759
"MessageBasedTrigger":{
77477760
"type":"structure",
77487761
"members":{

botocore/data/cloudfront/2020-05-31/service-2.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
{"shape":"AccessDenied"},
5151
{"shape":"EntityNotFound"},
5252
{"shape":"InvalidArgument"},
53+
{"shape":"EntityLimitExceeded"},
5354
{"shape":"InvalidIfMatchVersion"}
5455
],
5556
"documentation":"<p>Associates the WAF web ACL with a distribution tenant.</p>"
@@ -72,6 +73,7 @@
7273
{"shape":"AccessDenied"},
7374
{"shape":"EntityNotFound"},
7475
{"shape":"InvalidArgument"},
76+
{"shape":"EntityLimitExceeded"},
7577
{"shape":"InvalidIfMatchVersion"}
7678
],
7779
"documentation":"<p>Associates the WAF web ACL with a distribution.</p>"
@@ -3016,6 +3018,7 @@
30163018
{"shape":"InvalidFunctionAssociation"},
30173019
{"shape":"TooManyDistributionsWithLambdaAssociations"},
30183020
{"shape":"TooManyDistributionsAssociatedToKeyGroup"},
3021+
{"shape":"EntityLimitExceeded"},
30193022
{"shape":"NoSuchOrigin"},
30203023
{"shape":"TooManyCacheBehaviors"}
30213024
],

botocore/data/endpoints.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14013,6 +14013,7 @@
1401314013
"ap-southeast-3" : { },
1401414014
"ap-southeast-4" : { },
1401514015
"ap-southeast-5" : { },
14016+
"ap-southeast-6" : { },
1401614017
"ap-southeast-7" : { },
1401714018
"ca-central-1" : { },
1401814019
"ca-west-1" : { },
@@ -40223,7 +40224,7 @@
4022340224
"regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$",
4022440225
"regions" : {
4022540226
"eusc-de-east-1" : {
40226-
"description" : "EU (Germany)"
40227+
"description" : "AWS European Sovereign Cloud (Germany)"
4022740228
}
4022840229
},
4022940230
"services" : {

botocore/data/glue/2017-03-31/paginators-1.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,12 @@
170170
"input_token": "NextToken",
171171
"output_token": "NextToken",
172172
"result_key": "Entities"
173+
},
174+
"ListMaterializedViewRefreshTaskRuns": {
175+
"input_token": "NextToken",
176+
"limit_key": "MaxResults",
177+
"output_token": "NextToken",
178+
"result_key": "MaterializedViewRefreshTaskRuns"
173179
}
174180
}
175181
}

0 commit comments

Comments
 (0)