Skip to content

Commit

Permalink
Merge branch 'release-1.35.43' into develop
Browse files Browse the repository at this point in the history
* release-1.35.43:
  Bumping version to 1.35.43
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Oct 17, 2024
2 parents 5478d76 + 3813a48 commit f91166d
Show file tree
Hide file tree
Showing 13 changed files with 975 additions and 67 deletions.
42 changes: 42 additions & 0 deletions .changes/1.35.43.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"category": "``bedrock-agent``",
"description": "Removing support for topK property in PromptModelInferenceConfiguration object, Making PromptTemplateConfiguration property as required, Limiting the maximum PromptVariant to 1",
"type": "api-change"
},
{
"category": "``dataexchange``",
"description": "This release adds Data Grant support, through which customers can programmatically create data grants to share with other AWS accounts and accept data grants from other AWS accounts.",
"type": "api-change"
},
{
"category": "``ecs``",
"description": "This is an Amazon ECS documentation only update to address tickets.",
"type": "api-change"
},
{
"category": "``pinpoint-sms-voice-v2``",
"description": "Added the registrations status of REQUIRES_AUTHENTICATION",
"type": "api-change"
},
{
"category": "``pipes``",
"description": "This release adds validation to require specifying a SecurityGroup and Subnets in the Vpc object under PipesSourceSelfManagedKafkaParameters. It also adds support for iso-e, iso-f, and other non-commercial partitions in ARN parameters.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "Add StartDashboardSnapshotJobSchedule API. RestoreAnalysis now supports restoring analysis to folders.",
"type": "api-change"
},
{
"category": "``rds``",
"description": "Updates Amazon RDS documentation for TAZ IAM support",
"type": "api-change"
},
{
"category": "``workspaces``",
"description": "Updated the DomainName pattern for Active Directory",
"type": "api-change"
}
]
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
CHANGELOG
=========

1.35.43
=======

* api-change:``bedrock-agent``: Removing support for topK property in PromptModelInferenceConfiguration object, Making PromptTemplateConfiguration property as required, Limiting the maximum PromptVariant to 1
* api-change:``dataexchange``: This release adds Data Grant support, through which customers can programmatically create data grants to share with other AWS accounts and accept data grants from other AWS accounts.
* api-change:``ecs``: This is an Amazon ECS documentation only update to address tickets.
* api-change:``pinpoint-sms-voice-v2``: Added the registrations status of REQUIRES_AUTHENTICATION
* api-change:``pipes``: This release adds validation to require specifying a SecurityGroup and Subnets in the Vpc object under PipesSourceSelfManagedKafkaParameters. It also adds support for iso-e, iso-f, and other non-commercial partitions in ARN parameters.
* api-change:``quicksight``: Add StartDashboardSnapshotJobSchedule API. RestoreAnalysis now supports restoring analysis to folders.
* api-change:``rds``: Updates Amazon RDS documentation for TAZ IAM support
* api-change:``workspaces``: Updated the DomainName pattern for Active Directory


1.35.42
=======

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.35.42'
__version__ = '1.35.43'


class NullHandler(logging.Handler):
Expand Down
9 changes: 3 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 @@ -636,7 +636,7 @@
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Gets information about a data ingestion job. Data sources are ingested into your knowledge base so that Large Lanaguage Models (LLMs) can use your data.</p>"
"documentation":"<p>Gets information about a data ingestion job. Data sources are ingested into your knowledge base so that Large Language Models (LLMs) can use your data.</p>"
},
"GetKnowledgeBase":{
"name":"GetKnowledgeBase",
Expand Down Expand Up @@ -6469,10 +6469,6 @@
"shape":"Temperature",
"documentation":"<p>Controls the randomness of the response. Choose a lower value for more predictable outputs and a higher value for more surprising outputs.</p>"
},
"topK":{
"shape":"TopK",
"documentation":"<p>The number of most-likely candidates that the model considers for the next token during generation.</p>"
},
"topP":{
"shape":"TopP",
"documentation":"<p>The percentage of most-likely candidates that the model considers for the next token.</p>"
Expand Down Expand Up @@ -6583,6 +6579,7 @@
"type":"structure",
"required":[
"name",
"templateConfiguration",
"templateType"
],
"members":{
Expand Down Expand Up @@ -6617,7 +6614,7 @@
"PromptVariantList":{
"type":"list",
"member":{"shape":"PromptVariant"},
"max":3,
"max":1,
"min":0,
"sensitive":true
},
Expand Down
12 changes: 12 additions & 0 deletions botocore/data/dataexchange/2017-07-25/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "EventActions"
},
"ListDataGrants": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "DataGrantSummaries"
},
"ListReceivedDataGrants": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "DataGrantSummaries"
}
}
}
Loading

0 comments on commit f91166d

Please sign in to comment.