Skip to content

Commit

Permalink
Merge branch 'release-1.34.143' into develop
Browse files Browse the repository at this point in the history
* release-1.34.143:
  Bumping version to 1.34.143
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jul 10, 2024
2 parents 5ef811f + 2b4f731 commit f8a1dd0
Show file tree
Hide file tree
Showing 19 changed files with 6,191 additions and 572 deletions.
52 changes: 52 additions & 0 deletions .changes/1.34.143.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"category": "``batch``",
"description": "This feature allows AWS Batch Jobs with EKS container orchestration type to be run as Multi-Node Parallel Jobs.",
"type": "api-change"
},
{
"category": "``bedrock``",
"description": "Add support for contextual grounding check for Guardrails for Amazon Bedrock.",
"type": "api-change"
},
{
"category": "``bedrock-agent``",
"description": "Introduces new data sources and chunking strategies for Knowledge bases, advanced parsing logic using FMs, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "Introduces query decomposition, enhanced Agents integration with Knowledge bases, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources for end-to-end solutions.",
"type": "api-change"
},
{
"category": "``bedrock-runtime``",
"description": "Add support for contextual grounding check and ApplyGuardrail API for Guardrails for Amazon Bedrock.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level",
"type": "api-change"
},
{
"category": "``glue``",
"description": "Add recipe step support for recipe node",
"type": "api-change"
},
{
"category": "``groundstation``",
"description": "Documentation update specifying OEM ephemeris units of measurement",
"type": "api-change"
},
{
"category": "``license-manager-linux-subscriptions``",
"description": "Add support for third party subscription providers, starting with RHEL subscriptions through Red Hat Subscription Manager (RHSM). Additionally, add support for tagging subscription provider resources, and detect when an instance has more than one Linux subscription and notify the customer.",
"type": "api-change"
},
{
"category": "``mediaconnect``",
"description": "AWS Elemental MediaConnect introduces the ability to disable outputs. Disabling an output allows you to keep the output attached to the flow, but stop streaming to the output destination. A disabled output does not incur data transfer costs.",
"type": "api-change"
}
]
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
CHANGELOG
=========

1.34.143
========

* api-change:``batch``: This feature allows AWS Batch Jobs with EKS container orchestration type to be run as Multi-Node Parallel Jobs.
* api-change:``bedrock``: Add support for contextual grounding check for Guardrails for Amazon Bedrock.
* api-change:``bedrock-agent``: Introduces new data sources and chunking strategies for Knowledge bases, advanced parsing logic using FMs, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources.
* api-change:``bedrock-agent-runtime``: Introduces query decomposition, enhanced Agents integration with Knowledge bases, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources for end-to-end solutions.
* api-change:``bedrock-runtime``: Add support for contextual grounding check and ApplyGuardrail API for Guardrails for Amazon Bedrock.
* api-change:``ec2``: Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level
* api-change:``glue``: Add recipe step support for recipe node
* api-change:``groundstation``: Documentation update specifying OEM ephemeris units of measurement
* api-change:``license-manager-linux-subscriptions``: Add support for third party subscription providers, starting with RHEL subscriptions through Red Hat Subscription Manager (RHSM). Additionally, add support for tagging subscription provider resources, and detect when an instance has more than one Linux subscription and notify the customer.
* api-change:``mediaconnect``: AWS Elemental MediaConnect introduces the ability to disable outputs. Disabling an output allows you to keep the output attached to the flow, but stop streaming to the output destination. A disabled output does not incur data transfer costs.


1.34.142
========

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.142'
__version__ = '1.34.143'


class NullHandler(logging.Handler):
Expand Down
12 changes: 12 additions & 0 deletions botocore/data/batch/2016-08-10/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1767,6 +1767,10 @@
"shape":"EksAttemptContainerDetails",
"documentation":"<p>The details for the init containers.</p>"
},
"eksClusterArn":{
"shape":"String",
"documentation":"<p>The Amazon Resource Name (ARN) of the Amazon EKS cluster.</p>"
},
"podName":{
"shape":"String",
"documentation":"<p>The name of the pod for this job attempt.</p>"
Expand Down Expand Up @@ -3261,6 +3265,10 @@
"instanceTypes":{
"shape":"StringList",
"documentation":"<p>An object that contains the instance types that you want to replace for the existing resources of a job.</p>"
},
"eksPropertiesOverride":{
"shape":"EksPropertiesOverride",
"documentation":"<p>An object that contains the properties that you want to replace for the existing Amazon EKS resources of a job.</p>"
}
},
"documentation":"<p>The object that represents any node overrides to a job definition that's used in a <a href=\"https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html\">SubmitJob</a> API operation.</p>"
Expand Down Expand Up @@ -3292,6 +3300,10 @@
"ecsProperties":{
"shape":"EcsProperties",
"documentation":"<p>This is an object that represents the properties of the node range for a multi-node parallel job.</p>"
},
"eksProperties":{
"shape":"EksProperties",
"documentation":"<p>This is an object that represents the properties of the node range for a multi-node parallel job.</p>"
}
},
"documentation":"<p>This is an object that represents the properties of the node range for a multi-node parallel job.</p>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
"input_token": "nextToken",
"output_token": "nextToken",
"result_key": "retrievalResults"
},
"GetAgentMemory": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxItems",
"result_key": "memoryContents"
}
}
}
Loading

0 comments on commit f8a1dd0

Please sign in to comment.