Skip to content

Commit

Permalink
Merge branch 'release-1.36.7' into develop
Browse files Browse the repository at this point in the history
* release-1.36.7:
  Bumping version to 1.36.7
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jan 27, 2025
2 parents 466a0cc + e1235aa commit e6aec18
Show file tree
Hide file tree
Showing 10 changed files with 221 additions and 22 deletions.
27 changes: 27 additions & 0 deletions .changes/1.36.7.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``bedrock-agent``",
"description": "Add support for the prompt caching feature for Bedrock Prompt Management",
"type": "api-change"
},
{
"category": "``iot``",
"description": "Raised the documentParameters size limit to 30 KB for AWS IoT Device Management - Jobs.",
"type": "api-change"
},
{
"category": "``mediaconvert``",
"description": "This release adds support for dynamic audio configuration and the ability to disable the deblocking filter for h265 encodes.",
"type": "api-change"
},
{
"category": "``s3control``",
"description": "Minor fix to ARN validation for Lambda functions passed to S3 Batch Operations",
"type": "api-change"
},
{
"category": "Signing",
"description": "No longer sign transfer-encoding header for SigV4",
"type": "bugfix"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-Signing-82847.json

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.36.7
======

* api-change:``bedrock-agent``: Add support for the prompt caching feature for Bedrock Prompt Management
* api-change:``iot``: Raised the documentParameters size limit to 30 KB for AWS IoT Device Management - Jobs.
* api-change:``mediaconvert``: This release adds support for dynamic audio configuration and the ability to disable the deblocking filter for h265 encodes.
* api-change:``s3control``: Minor fix to ARN validation for Lambda functions passed to S3 Batch Operations
* bugfix:Signing: No longer sign transfer-encoding header for SigV4


1.36.6
======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.36.6'
__version__ = '1.36.7'


class NullHandler(logging.Handler):
Expand Down
90 changes: 84 additions & 6 deletions botocore/data/bedrock-agent/2023-06-05/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,7 @@
},
"agentAliasStatus":{
"shape":"AgentAliasStatus",
"documentation":"<p>The status of the alias of the agent and whether it is ready for use. The following statuses are possible:</p> <ul> <li> <p>CREATING – The agent alias is being created.</p> </li> <li> <p>PREPARED – The agent alias is finished being created or updated and is ready to be invoked.</p> </li> <li> <p>FAILED – The agent alias API operation failed.</p> </li> <li> <p>UPDATING – The agent alias is being updated.</p> </li> <li> <p>DELETING – The agent alias is being deleted.</p> </li> </ul>"
"documentation":"<p>The status of the alias of the agent and whether it is ready for use. The following statuses are possible:</p> <ul> <li> <p>CREATING – The agent alias is being created.</p> </li> <li> <p>PREPARED – The agent alias is finished being created or updated and is ready to be invoked.</p> </li> <li> <p>FAILED – The agent alias API operation failed.</p> </li> <li> <p>UPDATING – The agent alias is being updated.</p> </li> <li> <p>DELETING – The agent alias is being deleted.</p> </li> <li> <p>DISSOCIATED - The agent alias has no version associated with it.</p> </li> </ul>"
},
"agentId":{
"shape":"Id",
Expand Down Expand Up @@ -1804,7 +1804,8 @@
"PREPARED",
"FAILED",
"UPDATING",
"DELETING"
"DELETING",
"DISSOCIATED"
]
},
"AgentAliasSummaries":{
Expand Down Expand Up @@ -2508,6 +2509,21 @@
"type":"string",
"pattern":"[a-z]{1,20}/.{1,20}"
},
"CachePointBlock":{
"type":"structure",
"required":["type"],
"members":{
"type":{
"shape":"CachePointType",
"documentation":"<p>Indicates that the CachePointBlock is of the default type</p>"
}
},
"documentation":"<p>Indicates where a cache checkpoint is located. All information before this checkpoint is cached to be accessed on subsequent requests.</p>"
},
"CachePointType":{
"type":"string",
"enum":["default"]
},
"ChatPromptTemplateConfiguration":{
"type":"structure",
"required":["messages"],
Expand Down Expand Up @@ -2678,6 +2694,10 @@
"ContentBlock":{
"type":"structure",
"members":{
"cachePoint":{
"shape":"CachePointBlock",
"documentation":"<p>Creates a cache checkpoint within a message.</p>"
},
"text":{
"shape":"String",
"documentation":"<p>The text in the message.</p>"
Expand Down Expand Up @@ -4910,7 +4930,7 @@
"FlowNodes":{
"type":"list",
"member":{"shape":"FlowNode"},
"max":20,
"max":40,
"min":0
},
"FlowStatus":{
Expand Down Expand Up @@ -5092,6 +5112,14 @@
"shape":"UnknownConnectionTargetInputFlowValidationDetails",
"documentation":"<p>Details about an unknown target input for a connection.</p>"
},
"unknownNodeInput":{
"shape":"UnknownNodeInputFlowValidationDetails",
"documentation":"<p>Details about an unknown input for a node.</p>"
},
"unknownNodeOutput":{
"shape":"UnknownNodeOutputFlowValidationDetails",
"documentation":"<p>Details about an unknown output for a node.</p>"
},
"unreachableNode":{
"shape":"UnreachableNodeFlowValidationDetails",
"documentation":"<p>Details about an unreachable node in the flow.</p>"
Expand Down Expand Up @@ -5142,7 +5170,9 @@
"MultipleNodeInputConnections",
"UnfulfilledNodeInput",
"UnsatisfiedConnectionConditions",
"Unspecified"
"Unspecified",
"UnknownNodeInput",
"UnknownNodeOutput"
]
},
"FlowValidations":{
Expand Down Expand Up @@ -7227,7 +7257,7 @@
"MaximumLength":{
"type":"integer",
"box":true,
"max":4096,
"max":8192,
"min":0
},
"MemoryConfiguration":{
Expand Down Expand Up @@ -8131,7 +8161,7 @@
"PromptInputVariablesList":{
"type":"list",
"member":{"shape":"PromptInputVariable"},
"max":5,
"max":10,
"min":0,
"sensitive":true
},
Expand Down Expand Up @@ -9451,6 +9481,10 @@
"SystemContentBlock":{
"type":"structure",
"members":{
"cachePoint":{
"shape":"CachePointBlock",
"documentation":"<p>Creates a cache checkpoint within a tool designation</p>"
},
"text":{
"shape":"NonEmptyString",
"documentation":"<p>The text in the system prompt.</p>"
Expand Down Expand Up @@ -9544,6 +9578,10 @@
"type":"structure",
"required":["text"],
"members":{
"cachePoint":{
"shape":"CachePointBlock",
"documentation":"<p>A cache checkpoint within a template configuration.</p>"
},
"inputVariables":{
"shape":"PromptInputVariablesList",
"documentation":"<p>An array of the variables in the prompt template.</p>"
Expand Down Expand Up @@ -9571,6 +9609,10 @@
"Tool":{
"type":"structure",
"members":{
"cachePoint":{
"shape":"CachePointBlock",
"documentation":"<p>Creates a cache checkpoint within a tool designation</p>"
},
"toolSpec":{
"shape":"ToolSpecification",
"documentation":"<p>The specification for the tool.</p>"
Expand Down Expand Up @@ -9800,6 +9842,42 @@
},
"documentation":"<p>Details about an unknown target input for a connection.</p>"
},
"UnknownNodeInputFlowValidationDetails":{
"type":"structure",
"required":[
"input",
"node"
],
"members":{
"input":{
"shape":"FlowNodeInputName",
"documentation":"<p>The name of the node with the unknown input.</p>"
},
"node":{
"shape":"FlowNodeName",
"documentation":"<p>The name of the unknown input.</p>"
}
},
"documentation":"<p>Details about an unknown input for a node.</p>"
},
"UnknownNodeOutputFlowValidationDetails":{
"type":"structure",
"required":[
"node",
"output"
],
"members":{
"node":{
"shape":"FlowNodeName",
"documentation":"<p>The name of the node with the unknown output.</p>"
},
"output":{
"shape":"FlowNodeOutputName",
"documentation":"<p>The name of the unknown output.</p>"
}
},
"documentation":"<p>Details about an unknown output for a node.</p>"
},
"UnreachableNodeFlowValidationDetails":{
"type":"structure",
"required":["node"],
Expand Down
18 changes: 18 additions & 0 deletions botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -23642,6 +23642,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.ca-central-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.ca-central-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.ca-central-1.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23651,6 +23654,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.ca-west-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.ca-west-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.ca-west-1.api.aws",
"tags" : [ "dualstack" ]
Expand Down Expand Up @@ -23780,6 +23786,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-east-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-east-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-east-1.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23789,6 +23798,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-east-2.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-east-2.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-east-2.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23798,6 +23810,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-west-1.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-west-1.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-west-1.api.aws",
"tags" : [ "dualstack" ]
Expand All @@ -23807,6 +23822,9 @@
"variants" : [ {
"hostname" : "synthetics-fips.us-west-2.amazonaws.com",
"tags" : [ "fips" ]
}, {
"hostname" : "synthetics-fips.us-west-2.api.aws",
"tags" : [ "dualstack", "fips" ]
}, {
"hostname" : "synthetics.us-west-2.api.aws",
"tags" : [ "dualstack" ]
Expand Down
2 changes: 1 addition & 1 deletion botocore/data/iot/2015-05-28/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -17582,7 +17582,7 @@
},
"ParameterValue":{
"type":"string",
"max":512,
"max":30720,
"min":1,
"pattern":"[^\\p{C}]+"
},
Expand Down
Loading

0 comments on commit e6aec18

Please sign in to comment.