Skip to content

Commit

Permalink
Merge branch 'release-1.34.52' into develop
Browse files Browse the repository at this point in the history
* release-1.34.52:
  Bumping version to 1.34.52
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Feb 28, 2024
2 parents 1b66485 + 9aa9f07 commit 5719553
Show file tree
Hide file tree
Showing 10 changed files with 636 additions and 68 deletions.
32 changes: 32 additions & 0 deletions .changes/1.34.52.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``batch``",
"description": "This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents",
"type": "api-change"
},
{
"category": "``ce``",
"description": "This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.",
"type": "api-change"
},
{
"category": "``iot``",
"description": "This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes.",
"type": "api-change"
}
]
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
CHANGELOG
=========

1.34.52
=======

* api-change:``batch``: This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
* api-change:``bedrock-agent-runtime``: This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents
* api-change:``ce``: This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
* api-change:``ec2``: This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
* api-change:``iot``: This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
* api-change:``wafv2``: AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes.


1.34.51
=======

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.51'
__version__ = '1.34.52'


class NullHandler(logging.Handler):
Expand Down
519 changes: 471 additions & 48 deletions botocore/data/batch/2016-08-10/service-2.json

Large diffs are not rendered by default.

30 changes: 23 additions & 7 deletions botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -465,25 +465,30 @@
],
"members":{
"knowledgeBaseId":{"shape":"KnowledgeBaseId"},
"modelArn":{"shape":"BedrockModelArn"}
"modelArn":{"shape":"BedrockModelArn"},
"retrievalConfiguration":{"shape":"KnowledgeBaseRetrievalConfiguration"}
},
"documentation":"<p>Configurations for retrieval and generation for knowledge base.</p>"
},
"KnowledgeBaseVectorSearchConfiguration":{
"type":"structure",
"required":["numberOfResults"],
"members":{
"numberOfResults":{
"shape":"KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger",
"documentation":"<p>Top-K results to retrieve from knowledge base.</p>"
"documentation":"<p>Top-K results to retrieve from knowledge base.</p>",
"box":true
},
"overrideSearchType":{
"shape":"SearchType",
"documentation":"<p>Override the type of query to be performed on data store</p>"
}
},
"documentation":"<p>Knowledge base vector search configuration</p>"
},
"KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger":{
"type":"integer",
"box":true,
"max":10,
"max":25,
"min":1
},
"LambdaArn":{
Expand Down Expand Up @@ -748,7 +753,8 @@
"documentation":"<p>Content of a retrieval result in text</p>"
}
},
"documentation":"<p>Content of a retrieval result.</p>"
"documentation":"<p>Content of a retrieval result.</p>",
"sensitive":true
},
"RetrievalResultLocation":{
"type":"structure",
Expand All @@ -757,7 +763,8 @@
"type":{"shape":"RetrievalResultLocationType"},
"s3Location":{"shape":"RetrievalResultS3Location"}
},
"documentation":"<p>The source location of a retrieval result.</p>"
"documentation":"<p>The source location of a retrieval result.</p>",
"sensitive":true
},
"RetrievalResultLocationType":{
"type":"string",
Expand Down Expand Up @@ -888,6 +895,14 @@
"member":{"shape":"RetrievedReference"},
"documentation":"<p>list of retrieved references</p>"
},
"SearchType":{
"type":"string",
"documentation":"<p>Query type to be performed on data store.</p>",
"enum":[
"HYBRID",
"SEMANTIC"
]
},
"ServiceQuotaExceededException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -985,7 +1000,8 @@
},
"span":{"shape":"Span"}
},
"documentation":"<p>Text response part</p>"
"documentation":"<p>Text response part</p>",
"sensitive":true
},
"ThrottlingException":{
"type":"structure",
Expand Down
72 changes: 72 additions & 0 deletions botocore/data/ce/2017-10-25/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,20 @@
],
"documentation":"<p>Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs). </p>"
},
"GetApproximateUsageRecords":{
"name":"GetApproximateUsageRecords",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetApproximateUsageRecordsRequest"},
"output":{"shape":"GetApproximateUsageRecordsResponse"},
"errors":[
{"shape":"LimitExceededException"},
{"shape":"DataUnavailableException"}
],
"documentation":"<p>Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.</p>"
},
"GetCostAndUsage":{
"name":"GetCostAndUsage",
"http":{
Expand Down Expand Up @@ -780,6 +794,18 @@
"type":"list",
"member":{"shape":"AnomalySubscription"}
},
"ApproximateUsageRecordsPerService":{
"type":"map",
"key":{"shape":"GenericString"},
"value":{"shape":"NonNegativeLong"}
},
"ApproximationDimension":{
"type":"string",
"enum":[
"SERVICE",
"RESOURCE"
]
},
"Arn":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -2063,6 +2089,44 @@
}
}
},
"GetApproximateUsageRecordsRequest":{
"type":"structure",
"required":[
"Granularity",
"ApproximationDimension"
],
"members":{
"Granularity":{
"shape":"Granularity",
"documentation":"<p>How granular you want the data to be. You can enable data at hourly or daily granularity.</p>"
},
"Services":{
"shape":"UsageServices",
"documentation":"<p>The service metadata for the service or services you want to query. If not specified, all elements are returned.</p>"
},
"ApproximationDimension":{
"shape":"ApproximationDimension",
"documentation":"<p>The service to evaluate for the usage records. You can choose resource-level data at daily granularity, or hourly granularity with or without resource-level data.</p>"
}
}
},
"GetApproximateUsageRecordsResponse":{
"type":"structure",
"members":{
"Services":{
"shape":"ApproximateUsageRecordsPerService",
"documentation":"<p>The service metadata for the service or services in the response.</p>"
},
"TotalRecords":{
"shape":"NonNegativeLong",
"documentation":"<p>The total number of usage records for all services in the services list.</p>"
},
"LookbackPeriod":{
"shape":"DateInterval",
"documentation":"<p>The lookback period that's used for the estimation.</p>"
}
}
},
"GetCostAndUsageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -3297,6 +3361,10 @@
"type":"integer",
"min":0
},
"NonNegativeLong":{
"type":"long",
"min":0
},
"NullableNonNegativeDouble":{
"type":"double",
"min":0.0
Expand Down Expand Up @@ -4995,6 +5063,10 @@
}
}
},
"UsageServices":{
"type":"list",
"member":{"shape":"GenericString"}
},
"UtilizationByTime":{
"type":"structure",
"members":{
Expand Down
7 changes: 6 additions & 1 deletion botocore/data/ec2/2016-11-15/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -31197,6 +31197,11 @@
}
}
},
"GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults":{
"type":"integer",
"max":1000,
"min":1
},
"GetNetworkInsightsAccessScopeAnalysisFindingsRequest":{
"type":"structure",
"required":["NetworkInsightsAccessScopeAnalysisId"],
Expand All @@ -31206,7 +31211,7 @@
"documentation":"<p>The ID of the Network Access Scope analysis.</p>"
},
"MaxResults":{
"shape":"NetworkInsightsMaxResults",
"shape":"GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults",
"documentation":"<p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>"
},
"NextToken":{
Expand Down
Loading

0 comments on commit 5719553

Please sign in to comment.