Skip to content

Commit

Permalink
Release v1.51.26 (2024-04-22) (#5236)
Browse files Browse the repository at this point in the history
Release v1.51.26 (2024-04-22)
===

### Service Client Updates
* `service/bedrock-agent`: Updates service API and documentation
* `service/bedrock-agent-runtime`: Updates service API and documentation
* `service/payment-cryptography`: Updates service API, documentation, and waiters
* `service/redshift-serverless`: Updates service documentation
* `service/route53profiles`: Adds new service
* `service/sagemaker`: Updates service API and documentation
  * This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio.
* `service/servicediscovery`: Updates service documentation and examples
* `service/transfer`: Updates service API and documentation
  * Adding new API to support remote directory listing using SFTP connector
  • Loading branch information
aws-sdk-go-automation committed Apr 22, 2024
1 parent 2a3c889 commit 2c0e732
Show file tree
Hide file tree
Showing 40 changed files with 10,285 additions and 418 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
Release v1.51.26 (2024-04-22)
===

### Service Client Updates
* `service/bedrock-agent`: Updates service API and documentation
* `service/bedrock-agent-runtime`: Updates service API and documentation
* `service/payment-cryptography`: Updates service API, documentation, and waiters
* `service/redshift-serverless`: Updates service documentation
* `service/route53profiles`: Adds new service
* `service/sagemaker`: Updates service API and documentation
* This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio.
* `service/servicediscovery`: Updates service documentation and examples
* `service/transfer`: Updates service API and documentation
* Adding new API to support remote directory listing using SFTP connector

Release v1.51.25 (2024-04-19)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.51.25"
const SDKVersion = "1.51.26"
264 changes: 263 additions & 1 deletion models/apis/bedrock-agent-runtime/2023-07-26/api-2.json
Expand Up @@ -163,6 +163,9 @@
"apiPath": {
"shape": "ApiPath"
},
"function": {
"shape": "Function"
},
"parameters": {
"shape": "Parameters"
},
Expand Down Expand Up @@ -203,10 +206,102 @@
"pattern": "^[0-9a-zA-Z]+$",
"type": "string"
},
"AgentVersion": {
"max": 5,
"min": 1,
"pattern": "^(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})$",
"type": "string"
},
"ApiContentMap": {
"key": {
"shape": "String"
},
"type": "map",
"value": {
"shape": "PropertyParameters"
}
},
"ApiInvocationInput": {
"members": {
"actionGroup": {
"shape": "String"
},
"apiPath": {
"shape": "ApiPath"
},
"httpMethod": {
"shape": "String"
},
"parameters": {
"shape": "ApiParameters"
},
"requestBody": {
"shape": "ApiRequestBody"
}
},
"required": [
"actionGroup"
],
"type": "structure"
},
"ApiParameter": {
"members": {
"name": {
"shape": "String"
},
"type": {
"shape": "String"
},
"value": {
"shape": "String"
}
},
"type": "structure"
},
"ApiParameters": {
"member": {
"shape": "ApiParameter"
},
"type": "list"
},
"ApiPath": {
"sensitive": true,
"type": "string"
},
"ApiRequestBody": {
"members": {
"content": {
"shape": "ApiContentMap"
}
},
"type": "structure"
},
"ApiResult": {
"members": {
"actionGroup": {
"shape": "String"
},
"apiPath": {
"shape": "ApiPath"
},
"httpMethod": {
"shape": "String"
},
"httpStatusCode": {
"shape": "Integer"
},
"responseBody": {
"shape": "ResponseBody"
},
"responseState": {
"shape": "ResponseState"
}
},
"required": [
"actionGroup"
],
"type": "structure"
},
"Attribution": {
"members": {
"citations": {
Expand Down Expand Up @@ -271,6 +366,14 @@
},
"type": "structure"
},
"ContentBody": {
"members": {
"body": {
"shape": "String"
}
},
"type": "structure"
},
"ContentMap": {
"key": {
"shape": "String"
Expand Down Expand Up @@ -340,6 +443,67 @@
"sensitive": true,
"type": "string"
},
"Function": {
"sensitive": true,
"type": "string"
},
"FunctionInvocationInput": {
"members": {
"actionGroup": {
"shape": "String"
},
"function": {
"shape": "String"
},
"parameters": {
"shape": "FunctionParameters"
}
},
"required": [
"actionGroup"
],
"type": "structure"
},
"FunctionParameter": {
"members": {
"name": {
"shape": "String"
},
"type": {
"shape": "String"
},
"value": {
"shape": "String"
}
},
"type": "structure"
},
"FunctionParameters": {
"member": {
"shape": "FunctionParameter"
},
"type": "list"
},
"FunctionResult": {
"members": {
"actionGroup": {
"shape": "String"
},
"function": {
"shape": "String"
},
"responseBody": {
"shape": "ResponseBody"
},
"responseState": {
"shape": "ResponseState"
}
},
"required": [
"actionGroup"
],
"type": "structure"
},
"GeneratedResponsePart": {
"members": {
"textResponsePart": {
Expand Down Expand Up @@ -382,6 +546,10 @@
"sensitive": true,
"type": "string"
},
"Integer": {
"box": true,
"type": "integer"
},
"InternalServerException": {
"error": {
"httpStatusCode": 500
Expand Down Expand Up @@ -413,6 +581,38 @@
"sensitive": true,
"type": "structure"
},
"InvocationInputMember": {
"members": {
"apiInvocationInput": {
"shape": "ApiInvocationInput"
},
"functionInvocationInput": {
"shape": "FunctionInvocationInput"
}
},
"type": "structure",
"union": true
},
"InvocationInputs": {
"max": 5,
"member": {
"shape": "InvocationInputMember"
},
"min": 1,
"type": "list"
},
"InvocationResultMember": {
"members": {
"apiResult": {
"shape": "ApiResult"
},
"functionResult": {
"shape": "FunctionResult"
}
},
"type": "structure",
"union": true
},
"InvocationType": {
"enum": [
"ACTION_GROUP",
Expand Down Expand Up @@ -454,7 +654,6 @@
"required": [
"agentAliasId",
"agentId",
"inputText",
"sessionId"
],
"type": "structure"
Expand Down Expand Up @@ -722,6 +921,12 @@
},
"type": "structure"
},
"ParameterList": {
"member": {
"shape": "Parameter"
},
"type": "list"
},
"Parameters": {
"member": {
"shape": "Parameter"
Expand Down Expand Up @@ -848,6 +1053,14 @@
],
"type": "string"
},
"PropertyParameters": {
"members": {
"properties": {
"shape": "ParameterList"
}
},
"type": "structure"
},
"Rationale": {
"members": {
"text": {
Expand Down Expand Up @@ -897,6 +1110,22 @@
},
"type": "structure"
},
"ResponseBody": {
"key": {
"shape": "String"
},
"type": "map",
"value": {
"shape": "ContentBody"
}
},
"ResponseState": {
"enum": [
"FAILURE",
"REPROMPT"
],
"type": "string"
},
"ResponseStream": {
"eventstream": true,
"members": {
Expand All @@ -921,6 +1150,9 @@
"resourceNotFoundException": {
"shape": "ResourceNotFoundException"
},
"returnControl": {
"shape": "ReturnControlPayload"
},
"serviceQuotaExceededException": {
"shape": "ServiceQuotaExceededException"
},
Expand Down Expand Up @@ -1155,6 +1387,27 @@
},
"type": "list"
},
"ReturnControlInvocationResults": {
"max": 5,
"member": {
"shape": "InvocationResultMember"
},
"min": 1,
"type": "list"
},
"ReturnControlPayload": {
"event": true,
"members": {
"invocationId": {
"shape": "String"
},
"invocationInputs": {
"shape": "InvocationInputs"
}
},
"sensitive": true,
"type": "structure"
},
"SearchType": {
"enum": [
"HYBRID",
Expand Down Expand Up @@ -1192,9 +1445,15 @@
},
"SessionState": {
"members": {
"invocationId": {
"shape": "String"
},
"promptSessionAttributes": {
"shape": "PromptSessionAttributesMap"
},
"returnControlInvocationResults": {
"shape": "ReturnControlInvocationResults"
},
"sessionAttributes": {
"shape": "SessionAttributesMap"
}
Expand Down Expand Up @@ -1328,6 +1587,9 @@
"agentId": {
"shape": "AgentId"
},
"agentVersion": {
"shape": "AgentVersion"
},
"sessionId": {
"shape": "SessionId"
},
Expand Down

0 comments on commit 2c0e732

Please sign in to comment.