Skip to content

Commit accadd6

Browse files
Merge branch 'release-1.35.98'
* release-1.35.98: Bumping version to 1.35.98 Update endpoints model Update to latest models
2 parents cebd1c3 + 323aa12 commit accadd6

File tree

13 files changed

+894
-151
lines changed

13 files changed

+894
-151
lines changed

Diff for: .changes/1.35.98.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"category": "``artifact``",
4+
"description": "Support resolving regional API calls to partition's leader region endpoint.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock``",
9+
"description": "With this release, Bedrock Evaluation will now support latency-optimized inference for foundation models.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "Add support for DisconnectOnSessionTimeout flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``kafkaconnect``",
19+
"description": "Support updating connector configuration via UpdateConnector API. Release Operations API to monitor the status of the connector operation.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``transcribe``",
24+
"description": "This update provides tagging support for Transcribe's Call Analytics Jobs and Call Analytics Categories.",
25+
"type": "api-change"
26+
}
27+
]

Diff for: CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
CHANGELOG
33
=========
44

5+
1.35.98
6+
=======
7+
8+
* api-change:``artifact``: Support resolving regional API calls to partition's leader region endpoint.
9+
* api-change:``bedrock``: With this release, Bedrock Evaluation will now support latency-optimized inference for foundation models.
10+
* api-change:``ec2``: Add support for DisconnectOnSessionTimeout flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
11+
* api-change:``kafkaconnect``: Support updating connector configuration via UpdateConnector API. Release Operations API to monitor the status of the connector operation.
12+
* api-change:``transcribe``: This update provides tagging support for Transcribe's Call Analytics Jobs and Call Analytics Categories.
13+
14+
515
1.35.97
616
=======
717

Diff for: botocore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import re
1818

19-
__version__ = '1.35.97'
19+
__version__ = '1.35.98'
2020

2121

2222
class NullHandler(logging.Handler):

Diff for: botocore/data/artifact/2018-05-10/endpoint-rule-set-1.json

+76-54
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
{
22
"version": "1.0",
33
"parameters": {
4-
"Region": {
5-
"builtIn": "AWS::Region",
6-
"required": false,
7-
"documentation": "The AWS region used to dispatch the request.",
8-
"type": "String"
9-
},
104
"UseDualStack": {
115
"builtIn": "AWS::UseDualStack",
126
"required": true,
@@ -26,6 +20,12 @@
2620
"required": false,
2721
"documentation": "Override the endpoint used to send this request",
2822
"type": "String"
23+
},
24+
"Region": {
25+
"builtIn": "AWS::Region",
26+
"required": false,
27+
"documentation": "The AWS region used to dispatch the request.",
28+
"type": "String"
2929
}
3030
},
3131
"rules": [
@@ -177,18 +177,19 @@
177177
"rules": [
178178
{
179179
"conditions": [],
180-
"rules": [
181-
{
182-
"conditions": [],
183-
"endpoint": {
184-
"url": "https://artifact-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
185-
"properties": {},
186-
"headers": {}
187-
},
188-
"type": "endpoint"
189-
}
190-
],
191-
"type": "tree"
180+
"endpoint": {
181+
"url": "https://artifact-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}",
182+
"properties": {
183+
"authSchemes": [
184+
{
185+
"name": "sigv4",
186+
"signingRegion": "{PartitionResult#implicitGlobalRegion}"
187+
}
188+
]
189+
},
190+
"headers": {}
191+
},
192+
"type": "endpoint"
192193
}
193194
],
194195
"type": "tree"
@@ -211,6 +212,15 @@
211212
},
212213
true
213214
]
215+
},
216+
{
217+
"fn": "booleanEquals",
218+
"argv": [
219+
{
220+
"ref": "UseDualStack"
221+
},
222+
false
223+
]
214224
}
215225
],
216226
"rules": [
@@ -235,18 +245,19 @@
235245
"rules": [
236246
{
237247
"conditions": [],
238-
"rules": [
239-
{
240-
"conditions": [],
241-
"endpoint": {
242-
"url": "https://artifact-fips.{Region}.{PartitionResult#dnsSuffix}",
243-
"properties": {},
244-
"headers": {}
245-
},
246-
"type": "endpoint"
247-
}
248-
],
249-
"type": "tree"
248+
"endpoint": {
249+
"url": "https://artifact-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}",
250+
"properties": {
251+
"authSchemes": [
252+
{
253+
"name": "sigv4",
254+
"signingRegion": "{PartitionResult#implicitGlobalRegion}"
255+
}
256+
]
257+
},
258+
"headers": {}
259+
},
260+
"type": "endpoint"
250261
}
251262
],
252263
"type": "tree"
@@ -261,6 +272,15 @@
261272
},
262273
{
263274
"conditions": [
275+
{
276+
"fn": "booleanEquals",
277+
"argv": [
278+
{
279+
"ref": "UseFIPS"
280+
},
281+
false
282+
]
283+
},
264284
{
265285
"fn": "booleanEquals",
266286
"argv": [
@@ -293,18 +313,19 @@
293313
"rules": [
294314
{
295315
"conditions": [],
296-
"rules": [
297-
{
298-
"conditions": [],
299-
"endpoint": {
300-
"url": "https://artifact.{Region}.{PartitionResult#dualStackDnsSuffix}",
301-
"properties": {},
302-
"headers": {}
303-
},
304-
"type": "endpoint"
305-
}
306-
],
307-
"type": "tree"
316+
"endpoint": {
317+
"url": "https://artifact.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}",
318+
"properties": {
319+
"authSchemes": [
320+
{
321+
"name": "sigv4",
322+
"signingRegion": "{PartitionResult#implicitGlobalRegion}"
323+
}
324+
]
325+
},
326+
"headers": {}
327+
},
328+
"type": "endpoint"
308329
}
309330
],
310331
"type": "tree"
@@ -319,18 +340,19 @@
319340
},
320341
{
321342
"conditions": [],
322-
"rules": [
323-
{
324-
"conditions": [],
325-
"endpoint": {
326-
"url": "https://artifact.{Region}.{PartitionResult#dnsSuffix}",
327-
"properties": {},
328-
"headers": {}
329-
},
330-
"type": "endpoint"
331-
}
332-
],
333-
"type": "tree"
343+
"endpoint": {
344+
"url": "https://artifact.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}",
345+
"properties": {
346+
"authSchemes": [
347+
{
348+
"name": "sigv4",
349+
"signingRegion": "{PartitionResult#implicitGlobalRegion}"
350+
}
351+
]
352+
},
353+
"headers": {}
354+
},
355+
"type": "endpoint"
334356
}
335357
],
336358
"type": "tree"

Diff for: botocore/data/bedrock/2023-04-20/service-2.json

+21
Original file line numberDiff line numberDiff line change
@@ -2163,6 +2163,10 @@
21632163
"inferenceParams":{
21642164
"shape":"EvaluationModelInferenceParams",
21652165
"documentation":"<p>Each Amazon Bedrock support different inference parameters that change how the model behaves during inference.</p>"
2166+
},
2167+
"performanceConfig":{
2168+
"shape":"PerformanceConfiguration",
2169+
"documentation":"<p>Specifies performance settings for the model or inference profile.</p>"
21662170
}
21672171
},
21682172
"documentation":"<p>Contains the ARN of the Amazon Bedrock model or <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html\">inference profile</a> specified in your evaluation job. Each Amazon Bedrock model supports different <code>inferenceParams</code>. To learn more about supported inference parameters for Amazon Bedrock models, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html\">Inference parameters for foundation models</a>.</p> <p>The <code>inferenceParams</code> are specified using JSON. To successfully insert JSON as string make sure that all quotations are properly escaped. For example, <code>\"temperature\":\"0.25\"</code> key value pair would need to be formatted as <code>\\\"temperature\\\":\\\"0.25\\\"</code> to successfully accepted in the request.</p>"
@@ -6358,6 +6362,23 @@
63586362
"min":1,
63596363
"pattern":"\\S*"
63606364
},
6365+
"PerformanceConfigLatency":{
6366+
"type":"string",
6367+
"enum":[
6368+
"standard",
6369+
"optimized"
6370+
]
6371+
},
6372+
"PerformanceConfiguration":{
6373+
"type":"structure",
6374+
"members":{
6375+
"latency":{
6376+
"shape":"PerformanceConfigLatency",
6377+
"documentation":"<p>Specifies whether to use the latency-optimized or standard version of a model or inference profile.</p>"
6378+
}
6379+
},
6380+
"documentation":"<p>Contains performance settings for a model.</p>"
6381+
},
63616382
"PositiveInteger":{
63626383
"type":"integer",
63636384
"box":true,

0 commit comments

Comments
 (0)