Skip to content

Commit

Permalink
Merge branch 'release-1.35.86' into develop
Browse files Browse the repository at this point in the history
* release-1.35.86:
  Bumping version to 1.35.86
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Dec 20, 2024
2 parents d8189bd + a085b66 commit e07cddc
Show file tree
Hide file tree
Showing 18 changed files with 1,845 additions and 297 deletions.
62 changes: 62 additions & 0 deletions .changes/1.35.86.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
[
{
"category": "``bedrock-agent``",
"description": "Support for custom user agent and max web pages crawled for web connector. Support app only credentials for SharePoint connector. Increase agents memory duration limit to 365 days. Support to specify max number of session summaries to include in agent invocation context.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "bedrock agents now supports long term memory and performance configs. Invokeflow supports performance configs. RetrieveAndGenerate performance configs",
"type": "api-change"
},
{
"category": "``bedrock-data-automation``",
"description": "Documentation update for Amazon Bedrock Data Automation",
"type": "api-change"
},
{
"category": "``bedrock-data-automation-runtime``",
"description": "Documentation update for Amazon Bedrock Data Automation Runtime",
"type": "api-change"
},
{
"category": "``billing``",
"description": "Added new API's for defining and fetching Billing Views.",
"type": "api-change"
},
{
"category": "``ce``",
"description": "Support for retrieving cost, usage, and forecast for billing view.",
"type": "api-change"
},
{
"category": "``connect``",
"description": "This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.",
"type": "api-change"
},
{
"category": "``docdb``",
"description": "Support AWS Secret Manager managed password for AWS DocumentDB instance-based cluster.",
"type": "api-change"
},
{
"category": "``eks``",
"description": "This release expands the catalog of upgrade insight checks",
"type": "api-change"
},
{
"category": "``macie2``",
"description": "This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.",
"type": "api-change"
},
{
"category": "``outposts``",
"description": "Add CS8365C as a supported power connector for Outpost sites.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "This release adds support for c6i, m6i and r6i instance on SageMaker Hyperpod and trn1 instances in batch",
"type": "api-change"
}
]
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
CHANGELOG
=========

1.35.86
=======

* api-change:``bedrock-agent``: Support for custom user agent and max web pages crawled for web connector. Support app only credentials for SharePoint connector. Increase agents memory duration limit to 365 days. Support to specify max number of session summaries to include in agent invocation context.
* api-change:``bedrock-agent-runtime``: bedrock agents now supports long term memory and performance configs. Invokeflow supports performance configs. RetrieveAndGenerate performance configs
* api-change:``bedrock-data-automation``: Documentation update for Amazon Bedrock Data Automation
* api-change:``bedrock-data-automation-runtime``: Documentation update for Amazon Bedrock Data Automation Runtime
* api-change:``billing``: Added new API's for defining and fetching Billing Views.
* api-change:``ce``: Support for retrieving cost, usage, and forecast for billing view.
* api-change:``connect``: This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.
* api-change:``docdb``: Support AWS Secret Manager managed password for AWS DocumentDB instance-based cluster.
* api-change:``eks``: This release expands the catalog of upgrade insight checks
* api-change:``macie2``: This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.
* api-change:``outposts``: Add CS8365C as a supported power connector for Outpost sites.
* api-change:``sagemaker``: This release adds support for c6i, m6i and r6i instance on SageMaker Hyperpod and trn1 instances in batch


1.35.85
=======

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.85'
__version__ = '1.35.86'


class NullHandler(logging.Handler):
Expand Down
102 changes: 98 additions & 4 deletions botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json

Large diffs are not rendered by default.

48 changes: 45 additions & 3 deletions botocore/data/bedrock-agent/2023-06-05/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7213,6 +7213,11 @@
},
"documentation":"<p>Details about a malformed input expression in a node.</p>"
},
"MaxRecentSessions":{
"type":"integer",
"box":true,
"min":1
},
"MaxResults":{
"type":"integer",
"box":true,
Expand All @@ -7233,6 +7238,10 @@
"shape":"EnabledMemoryTypes",
"documentation":"<p>The type of memory that is stored. </p>"
},
"sessionSummaryConfiguration":{
"shape":"SessionSummaryConfiguration",
"documentation":"<p>Contains the configuration for SESSION_SUMMARY memory type enabled for the agent. </p>"
},
"storageDays":{
"shape":"StorageDays",
"documentation":"<p>The number of days the agent is configured to retain the conversational context.</p>"
Expand Down Expand Up @@ -8297,7 +8306,8 @@
"PRE_PROCESSING",
"ORCHESTRATION",
"POST_PROCESSING",
"KNOWLEDGE_BASE_RESPONSE_GENERATION"
"KNOWLEDGE_BASE_RESPONSE_GENERATION",
"MEMORY_SUMMARIZATION"
]
},
"PromptVariant":{
Expand Down Expand Up @@ -9099,6 +9109,16 @@
},
"exception":true
},
"SessionSummaryConfiguration":{
"type":"structure",
"members":{
"maxRecentSessions":{
"shape":"MaxRecentSessions",
"documentation":"<p>Maximum number of recent session summaries to include in the agent's prompt context.</p>"
}
},
"documentation":"<p>Configuration for SESSION_SUMMARY memory type enabled for the agent.</p>"
},
"SessionTTL":{
"type":"integer",
"box":true,
Expand All @@ -9107,7 +9127,10 @@
},
"SharePointAuthType":{
"type":"string",
"enum":["OAUTH2_CLIENT_CREDENTIALS"]
"enum":[
"OAUTH2_CLIENT_CREDENTIALS",
"OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS"
]
},
"SharePointCrawlerConfiguration":{
"type":"structure",
Expand Down Expand Up @@ -9346,7 +9369,7 @@
"StorageDays":{
"type":"integer",
"box":true,
"max":30,
"max":365,
"min":0
},
"StorageFlowNodeConfiguration":{
Expand Down Expand Up @@ -10506,6 +10529,12 @@
},
"documentation":"<p>The configuration of web URLs that you want to crawl. You should be authorized to crawl the URLs.</p>"
},
"UserAgent":{
"type":"string",
"max":40,
"min":15,
"sensitive":true
},
"ValidateFlowDefinitionRequest":{
"type":"structure",
"required":["definition"],
Expand Down Expand Up @@ -10625,20 +10654,33 @@
"scope":{
"shape":"WebScopeType",
"documentation":"<p>The scope of what is crawled for your URLs.</p> <p>You can choose to crawl only web pages that belong to the same host or primary domain. For example, only web pages that contain the seed URL \"https://docs.aws.amazon.com/bedrock/latest/userguide/\" and no other domains. You can choose to include sub domains in addition to the host or primary domain. For example, web pages that contain \"aws.amazon.com\" can also include sub domain \"docs.aws.amazon.com\".</p>"
},
"userAgent":{
"shape":"UserAgent",
"documentation":"<p>A string used for identifying the crawler or a bot when it accesses a web server. By default, this is set to <code>bedrockbot_UUID</code> for your crawler. You can optionally append a custom string to <code>bedrockbot_UUID</code> to allowlist a specific user agent permitted to access your source URLs. </p>"
}
},
"documentation":"<p>The configuration of web URLs that you want to crawl. You should be authorized to crawl the URLs.</p>"
},
"WebCrawlerLimits":{
"type":"structure",
"members":{
"maxPages":{
"shape":"WebCrawlerLimitsMaxPagesInteger",
"documentation":"<p> The max number of web pages crawled from your source URLs, up to 25,000 pages. If the web pages exceed this limit, the data source sync will fail and no web pages will be ingested. </p>"
},
"rateLimit":{
"shape":"WebCrawlerLimitsRateLimitInteger",
"documentation":"<p>The max rate at which pages are crawled, up to 300 per minute per host.</p>"
}
},
"documentation":"<p>The rate limits for the URLs that you want to crawl. You should be authorized to crawl the URLs.</p>"
},
"WebCrawlerLimitsMaxPagesInteger":{
"type":"integer",
"box":true,
"min":1
},
"WebCrawlerLimitsRateLimitInteger":{
"type":"integer",
"box":true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,5 +390,5 @@
"exception":true
}
},
"documentation":"<p>Amazon Bedrock Keystone Runtime</p>"
"documentation":"<p>Amazon Bedrock Data Automation Runtime</p>"
}
24 changes: 12 additions & 12 deletions botocore/data/bedrock-data-automation/2023-07-26/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
"documentation":"<p>Creates an Amazon Bedrock Keystone Blueprint</p>",
"documentation":"<p>Creates an Amazon Bedrock Data Automation Blueprint</p>",
"idempotent":true
},
"CreateBlueprintVersion":{
Expand All @@ -50,7 +50,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Creates a new version of an existing Amazon Bedrock Keystone Blueprint</p>",
"documentation":"<p>Creates a new version of an existing Amazon Bedrock Data Automation Blueprint</p>",
"idempotent":true
},
"CreateDataAutomationProject":{
Expand All @@ -70,7 +70,7 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
"documentation":"<p>Creates an Amazon Bedrock Keystone DataAutomationProject</p>",
"documentation":"<p>Creates an Amazon Bedrock Data Automation Project</p>",
"idempotent":true
},
"DeleteBlueprint":{
Expand All @@ -89,7 +89,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Deletes an existing Amazon Bedrock Keystone Blueprint</p>",
"documentation":"<p>Deletes an existing Amazon Bedrock Data Automation Blueprint</p>",
"idempotent":true
},
"DeleteDataAutomationProject":{
Expand All @@ -108,7 +108,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Deletes an existing Amazon Bedrock Keystone DataAutomationProject</p>",
"documentation":"<p>Deletes an existing Amazon Bedrock Data Automation Project</p>",
"idempotent":true
},
"GetBlueprint":{
Expand All @@ -127,7 +127,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Gets an existing Amazon Bedrock Keystone Blueprint</p>"
"documentation":"<p>Gets an existing Amazon Bedrock Data Automation Blueprint</p>"
},
"GetDataAutomationProject":{
"name":"GetDataAutomationProject",
Expand All @@ -145,7 +145,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Gets an existing Amazon Bedrock Keystone DataAutomationProject</p>"
"documentation":"<p>Gets an existing Amazon Bedrock Data Automation Project</p>"
},
"ListBlueprints":{
"name":"ListBlueprints",
Expand All @@ -163,7 +163,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Lists all existing Amazon Bedrock Keystone Blueprints</p>"
"documentation":"<p>Lists all existing Amazon Bedrock Data Automation Blueprints</p>"
},
"ListDataAutomationProjects":{
"name":"ListDataAutomationProjects",
Expand All @@ -181,7 +181,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Lists all existing Amazon Bedrock Keystone DataAutomationProjects</p>"
"documentation":"<p>Lists all existing Amazon Bedrock Data Automation Projects</p>"
},
"UpdateBlueprint":{
"name":"UpdateBlueprint",
Expand All @@ -200,7 +200,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Updates an existing Amazon Bedrock Blueprint</p>",
"documentation":"<p>Updates an existing Amazon Bedrock Data Automation Blueprint</p>",
"idempotent":true
},
"UpdateDataAutomationProject":{
Expand All @@ -220,7 +220,7 @@
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"}
],
"documentation":"<p>Updates an existing Amazon Bedrock DataAutomationProject</p>",
"documentation":"<p>Updates an existing Amazon Bedrock Data Automation Project</p>",
"idempotent":true
}
},
Expand Down Expand Up @@ -1243,5 +1243,5 @@
"documentation":"<p>Standard Output Configuration of Video</p>"
}
},
"documentation":"<p>Amazon Bedrock Keystone Build</p>"
"documentation":"<p>Amazon Bedrock Data Automation BuildTime</p>"
}
6 changes: 6 additions & 0 deletions botocore/data/billing/2023-09-07/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "billingViews"
},
"ListSourceViewsForBillingView": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "sourceViews"
}
}
}
Loading

0 comments on commit e07cddc

Please sign in to comment.