Skip to content

Commit

Permalink
Merge branch 'release-1.34.131' into develop
Browse files Browse the repository at this point in the history
* release-1.34.131:
  Bumping version to 1.34.131
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jun 20, 2024
2 parents 95ac878 + ffdb292 commit b0779ef
Show file tree
Hide file tree
Showing 16 changed files with 2,010 additions and 813 deletions.
47 changes: 47 additions & 0 deletions .changes/1.34.131.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``bedrock-runtime``",
"description": "This release adds document support to Converse and ConverseStream APIs",
"type": "api-change"
},
{
"category": "``codeartifact``",
"description": "Add support for the Cargo package format.",
"type": "api-change"
},
{
"category": "``compute-optimizer``",
"description": "This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.",
"type": "api-change"
},
{
"category": "``cost-optimization-hub``",
"description": "This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.",
"type": "api-change"
},
{
"category": "``dynamodb``",
"description": "Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.",
"type": "api-change"
},
{
"category": "``glue``",
"description": "Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.",
"type": "api-change"
},
{
"category": "``ivs-realtime``",
"description": "IVS Real-Time now offers customers the ability to record individual stage participants to S3.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "Adds support for model references in Hub service, and adds support for cross-account access of Hubs",
"type": "api-change"
},
{
"category": "``securityhub``",
"description": "Documentation updates for Security Hub",
"type": "api-change"
}
]
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
CHANGELOG
=========

1.34.131
========

* api-change:``bedrock-runtime``: This release adds document support to Converse and ConverseStream APIs
* api-change:``codeartifact``: Add support for the Cargo package format.
* api-change:``compute-optimizer``: This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.
* api-change:``cost-optimization-hub``: This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL.
* api-change:``dynamodb``: Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.
* api-change:``glue``: Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.
* api-change:``ivs-realtime``: IVS Real-Time now offers customers the ability to record individual stage participants to S3.
* api-change:``sagemaker``: Adds support for model references in Hub service, and adds support for cross-account access of Hubs
* api-change:``securityhub``: Documentation updates for Security Hub


1.34.130
========

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.34.130'
__version__ = '1.34.131'


class NullHandler(logging.Handler):
Expand Down
65 changes: 65 additions & 0 deletions botocore/data/bedrock-runtime/2023-09-30/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@
"shape":"ImageBlock",
"documentation":"<p>Image to include in the message. </p> <note> <p>This field is only supported by Anthropic Claude 3 models.</p> </note>"
},
"document":{
"shape":"DocumentBlock",
"documentation":"<p>A document to include in the message.</p>"
},
"toolUse":{
"shape":"ToolUseBlock",
"documentation":"<p>Information about a tool use request from a model. </p>"
Expand Down Expand Up @@ -533,6 +537,63 @@
},
"document":true
},
"DocumentBlock":{
"type":"structure",
"required":[
"format",
"name",
"source"
],
"members":{
"format":{
"shape":"DocumentFormat",
"documentation":"<p>The format of a document, or its extension.</p>"
},
"name":{
"shape":"DocumentBlockNameString",
"documentation":"<p>A name for the document.</p>"
},
"source":{
"shape":"DocumentSource",
"documentation":"<p>Contains the content of the document.</p>"
}
},
"documentation":"<p>A document to include in a message when sending a <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html\">Converse</a> or <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html\">ConverseStream</a> request. You can include up to 5 documents in a request. The maximum document size is 50 MB.</p>"
},
"DocumentBlockNameString":{
"type":"string",
"max":64,
"min":1
},
"DocumentFormat":{
"type":"string",
"enum":[
"pdf",
"csv",
"doc",
"docx",
"xls",
"xlsx",
"html",
"txt",
"md"
]
},
"DocumentSource":{
"type":"structure",
"members":{
"bytes":{
"shape":"DocumentSourceBytesBlob",
"documentation":"<p>A base64-encoded string of a UTF-8 encoded file, that is the document to include in the message.</p>"
}
},
"documentation":"<p>Contains the content of the document included in a message when sending a <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html\">Converse</a> or <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html\">ConverseStream</a> request or in the response.</p>",
"union":true
},
"DocumentSourceBytesBlob":{
"type":"blob",
"min":1
},
"GuardrailAssessment":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1633,6 +1694,10 @@
"image":{
"shape":"ImageBlock",
"documentation":"<p>A tool result that is an image.</p> <note> <p>This field is only supported by Anthropic Claude 3 models.</p> </note>"
},
"document":{
"shape":"DocumentBlock",
"documentation":"<p>A tool result that is a document.</p>"
}
},
"documentation":"<p>The tool result content block.</p>",
Expand Down
Loading

0 comments on commit b0779ef

Please sign in to comment.