Skip to content

Commit 09e6e82

Browse files
Merge branch 'release-1.42.31' into develop
* release-1.42.31: Bumping version to 1.42.31 Update endpoints model Update to latest models
2 parents 5279959 + 1170e7a commit 09e6e82

11 files changed

Lines changed: 478 additions & 83 deletions

File tree

.changes/1.42.31.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"category": "``autoscaling``",
4+
"description": "This release adds support for three new filters when describing scaling activities, StartTimeLowerBound, StartTimeUpperBound, and Status.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock-runtime``",
9+
"description": "Added support for extended prompt caching with one hour TTL.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``keyspaces``",
14+
"description": "Adds support for managing table pre-warming in Amazon Keyspaces (for Apache Cassandra)",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``odb``",
19+
"description": "Adds support for associating and disassociating IAM roles with Autonomous VM cluster resources through the AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs. The GetCloudAutonomousVmCluster and ListCloudAutonomousVmClusters API responses now include the iamRoles field.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``verifiedpermissions``",
24+
"description": "Amazon Verified Permissions now supports encryption of resources by a customer managed KMS key. Customers can now create new encrypted policy stores by passing in their customer managed key during policy store creation.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``workspaces-instances``",
29+
"description": "Added billing configuration support for WorkSpaces Instances with monthly and hourly billing modes, including new filtering capabilities for instance type searches.",
30+
"type": "api-change"
31+
}
32+
]

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.31
6+
=======
7+
8+
* api-change:``autoscaling``: This release adds support for three new filters when describing scaling activities, StartTimeLowerBound, StartTimeUpperBound, and Status.
9+
* api-change:``bedrock-runtime``: Added support for extended prompt caching with one hour TTL.
10+
* api-change:``keyspaces``: Adds support for managing table pre-warming in Amazon Keyspaces (for Apache Cassandra)
11+
* api-change:``odb``: Adds support for associating and disassociating IAM roles with Autonomous VM cluster resources through the AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs. The GetCloudAutonomousVmCluster and ListCloudAutonomousVmClusters API responses now include the iamRoles field.
12+
* api-change:``verifiedpermissions``: Amazon Verified Permissions now supports encryption of resources by a customer managed KMS key. Customers can now create new encrypted policy stores by passing in their customer managed key during policy store creation.
13+
* api-change:``workspaces-instances``: Added billing configuration support for WorkSpaces Instances with monthly and hourly billing modes, including new filtering capabilities for instance type searches.
14+
15+
516
1.42.30
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.30'
20+
__version__ = '1.42.31'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/autoscaling/2011-01-01/service-2.json

Lines changed: 40 additions & 36 deletions
Large diffs are not rendered by default.

botocore/data/bedrock-runtime/2023-09-30/service-2.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,13 +571,45 @@
571571
"type":"boolean",
572572
"box":true
573573
},
574+
"CacheDetail":{
575+
"type":"structure",
576+
"required":[
577+
"ttl",
578+
"inputTokens"
579+
],
580+
"members":{
581+
"ttl":{
582+
"shape":"CacheTTL",
583+
"documentation":"<p>TTL duration for these cached tokens</p>"
584+
},
585+
"inputTokens":{
586+
"shape":"CacheDetailInputTokensInteger",
587+
"documentation":"<p>Number of tokens written to cache with this TTL (cache creation tokens)</p>"
588+
}
589+
},
590+
"documentation":"<p>Cache creation metrics for a specific TTL duration</p>"
591+
},
592+
"CacheDetailInputTokensInteger":{
593+
"type":"integer",
594+
"box":true,
595+
"min":0
596+
},
597+
"CacheDetailsList":{
598+
"type":"list",
599+
"member":{"shape":"CacheDetail"},
600+
"documentation":"<p>List of cache details by TTL</p>"
601+
},
574602
"CachePointBlock":{
575603
"type":"structure",
576604
"required":["type"],
577605
"members":{
578606
"type":{
579607
"shape":"CachePointType",
580608
"documentation":"<p>Specifies the type of cache point within the CachePointBlock.</p>"
609+
},
610+
"ttl":{
611+
"shape":"CacheTTL",
612+
"documentation":"<p>Optional TTL duration for cache entries. When specified, enables extended TTL caching with the specified duration. When omitted, uses <code>type</code> value for caching behavior.</p>"
581613
}
582614
},
583615
"documentation":"<p>Defines a section of content to be cached for reuse in subsequent API calls.</p>"
@@ -586,6 +618,14 @@
586618
"type":"string",
587619
"enum":["default"]
588620
},
621+
"CacheTTL":{
622+
"type":"string",
623+
"documentation":"<p>Time-to-live duration for ephemeral cache entries</p>",
624+
"enum":[
625+
"5m",
626+
"1h"
627+
]
628+
},
589629
"Citation":{
590630
"type":"structure",
591631
"members":{
@@ -4013,6 +4053,10 @@
40134053
"cacheWriteInputTokens":{
40144054
"shape":"TokenUsageCacheWriteInputTokensInteger",
40154055
"documentation":"<p>The number of input tokens written to the cache for the request.</p>"
4056+
},
4057+
"cacheDetails":{
4058+
"shape":"CacheDetailsList",
4059+
"documentation":"<p>Detailed breakdown of cache writes by TTL. Empty if no cache creation occurred. Sorted by TTL duration (1h before 5m).</p>"
40164060
}
40174061
},
40184062
"documentation":"<p>The tokens used in a message API inference call. </p>"

botocore/data/endpoints.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15459,6 +15459,7 @@
1545915459
"ap-southeast-3" : { },
1546015460
"ap-southeast-4" : { },
1546115461
"ap-southeast-5" : { },
15462+
"ap-southeast-6" : { },
1546215463
"ap-southeast-7" : { },
1546315464
"ca-central-1" : { },
1546415465
"ca-west-1" : { },

0 commit comments

Comments
 (0)