Skip to content

Commit

Permalink
Merge branch 'release-1.34.98'
Browse files Browse the repository at this point in the history
* release-1.34.98:
  Bumping version to 1.34.98
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed May 3, 2024
2 parents 55cc1c7 + a518e0a commit 50e5494
Show file tree
Hide file tree
Showing 12 changed files with 820 additions and 32 deletions.
37 changes: 37 additions & 0 deletions .changes/1.34.98.json
@@ -0,0 +1,37 @@
[
{
"category": "``bedrock-agent``",
"description": "This release adds support for using Provisioned Throughput with Bedrock Agents.",
"type": "api-change"
},
{
"category": "``connect``",
"description": "This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases.",
"type": "api-change"
},
{
"category": "``connectcases``",
"description": "This feature supports the release of Files related items",
"type": "api-change"
},
{
"category": "``datasync``",
"description": "Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations.",
"type": "api-change"
},
{
"category": "``inspector2``",
"description": "This release adds CSV format to GetCisScanReport for Inspector v2",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs",
"type": "api-change"
},
{
"category": "``sesv2``",
"description": "Adds support for specifying replacement headers per BulkEmailEntry in SendBulkEmail in SESv2.",
"type": "api-change"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.34.98
=======

* api-change:``bedrock-agent``: This release adds support for using Provisioned Throughput with Bedrock Agents.
* api-change:``connect``: This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases.
* api-change:``connectcases``: This feature supports the release of Files related items
* api-change:``datasync``: Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations.
* api-change:``inspector2``: This release adds CSV format to GetCisScanReport for Inspector v2
* api-change:``sagemaker``: Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs
* api-change:``sesv2``: Adds support for specifying replacement headers per BulkEmailEntry in SendBulkEmail in SESv2.


1.34.97
=======

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

__version__ = '1.34.97'
__version__ = '1.34.98'


class NullHandler(logging.Handler):
Expand Down
23 changes: 18 additions & 5 deletions botocore/data/bedrock-agent/2023-06-05/service-2.json
Expand Up @@ -822,7 +822,7 @@
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.</p>"
}
},
"documentation":"<p>Contains details about the Lambda function containing the business logic that is carried out upon invoking the action.</p>",
"documentation":"<p>Contains details about the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.</p>",
"union":true
},
"ActionGroupSignature":{
Expand Down Expand Up @@ -977,7 +977,7 @@
"members":{
"actionGroupExecutor":{
"shape":"ActionGroupExecutor",
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.</p>"
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.</p>"
},
"actionGroupId":{
"shape":"Id",
Expand Down Expand Up @@ -1079,6 +1079,10 @@
"shape":"Description",
"documentation":"<p>The description of the alias of the agent.</p>"
},
"failureReasons":{
"shape":"FailureReasons",
"documentation":"<p>Information on the failure of Provisioned Throughput assigned to an agent alias.</p>"
},
"routingConfiguration":{
"shape":"AgentAliasRoutingConfiguration",
"documentation":"<p>Contains details about the routing configuration of the alias.</p>"
Expand Down Expand Up @@ -1134,11 +1138,14 @@
},
"AgentAliasRoutingConfigurationListItem":{
"type":"structure",
"required":["agentVersion"],
"members":{
"agentVersion":{
"shape":"Version",
"documentation":"<p>The version of the agent with which the alias is associated.</p>"
},
"provisionedThroughput":{
"shape":"ProvisionedModelIdentifier",
"documentation":"<p>Information on the Provisioned Throughput assigned to an agent alias.</p>"
}
},
"documentation":"<p>Contains details about the routing configuration of the alias.</p>"
Expand Down Expand Up @@ -1589,7 +1596,7 @@
"members":{
"actionGroupExecutor":{
"shape":"ActionGroupExecutor",
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.</p>"
"documentation":"<p>The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.</p>"
},
"actionGroupName":{
"shape":"Name",
Expand Down Expand Up @@ -3755,6 +3762,12 @@
"KNOWLEDGE_BASE_RESPONSE_GENERATION"
]
},
"ProvisionedModelIdentifier":{
"type":"string",
"max":2048,
"min":1,
"pattern":"^((([0-9a-zA-Z][_-]?){1,63})|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:provisioned-model/[a-z0-9]{12}))$"
},
"RdsArn":{
"type":"string",
"pattern":"^arn:aws(|-cn|-us-gov):rds:[a-zA-Z0-9-]*:[0-9]{12}:cluster:[a-zA-Z0-9-]{1,63}$"
Expand Down Expand Up @@ -4443,7 +4456,7 @@
"members":{
"dataDeletionPolicy":{
"shape":"DataDeletionPolicy",
"documentation":"<p>The data deletion policy assigned to the data source.</p>"
"documentation":"<p>The data deletion policy of the updated data source.</p>"
},
"dataSourceConfiguration":{
"shape":"DataSourceConfiguration",
Expand Down

0 comments on commit 50e5494

Please sign in to comment.