Skip to content

Commit 2c0e732

Browse files
Release v1.51.26 (2024-04-22) (#5236)
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
1 parent 2a3c889 commit 2c0e732

File tree

40 files changed

+10285
-418
lines changed

40 files changed

+10285
-418
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Release v1.51.26 (2024-04-22)
2+
===
3+
4+
### Service Client Updates
5+
* `service/bedrock-agent`: Updates service API and documentation
6+
* `service/bedrock-agent-runtime`: Updates service API and documentation
7+
* `service/payment-cryptography`: Updates service API, documentation, and waiters
8+
* `service/redshift-serverless`: Updates service documentation
9+
* `service/route53profiles`: Adds new service
10+
* `service/sagemaker`: Updates service API and documentation
11+
* This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio.
12+
* `service/servicediscovery`: Updates service documentation and examples
13+
* `service/transfer`: Updates service API and documentation
14+
* Adding new API to support remote directory listing using SFTP connector
15+
116
Release v1.51.25 (2024-04-19)
217
===
318

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.51.25"
8+
const SDKVersion = "1.51.26"

models/apis/bedrock-agent-runtime/2023-07-26/api-2.json

+263-1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,9 @@
163163
"apiPath": {
164164
"shape": "ApiPath"
165165
},
166+
"function": {
167+
"shape": "Function"
168+
},
166169
"parameters": {
167170
"shape": "Parameters"
168171
},
@@ -203,10 +206,102 @@
203206
"pattern": "^[0-9a-zA-Z]+$",
204207
"type": "string"
205208
},
209+
"AgentVersion": {
210+
"max": 5,
211+
"min": 1,
212+
"pattern": "^(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})$",
213+
"type": "string"
214+
},
215+
"ApiContentMap": {
216+
"key": {
217+
"shape": "String"
218+
},
219+
"type": "map",
220+
"value": {
221+
"shape": "PropertyParameters"
222+
}
223+
},
224+
"ApiInvocationInput": {
225+
"members": {
226+
"actionGroup": {
227+
"shape": "String"
228+
},
229+
"apiPath": {
230+
"shape": "ApiPath"
231+
},
232+
"httpMethod": {
233+
"shape": "String"
234+
},
235+
"parameters": {
236+
"shape": "ApiParameters"
237+
},
238+
"requestBody": {
239+
"shape": "ApiRequestBody"
240+
}
241+
},
242+
"required": [
243+
"actionGroup"
244+
],
245+
"type": "structure"
246+
},
247+
"ApiParameter": {
248+
"members": {
249+
"name": {
250+
"shape": "String"
251+
},
252+
"type": {
253+
"shape": "String"
254+
},
255+
"value": {
256+
"shape": "String"
257+
}
258+
},
259+
"type": "structure"
260+
},
261+
"ApiParameters": {
262+
"member": {
263+
"shape": "ApiParameter"
264+
},
265+
"type": "list"
266+
},
206267
"ApiPath": {
207268
"sensitive": true,
208269
"type": "string"
209270
},
271+
"ApiRequestBody": {
272+
"members": {
273+
"content": {
274+
"shape": "ApiContentMap"
275+
}
276+
},
277+
"type": "structure"
278+
},
279+
"ApiResult": {
280+
"members": {
281+
"actionGroup": {
282+
"shape": "String"
283+
},
284+
"apiPath": {
285+
"shape": "ApiPath"
286+
},
287+
"httpMethod": {
288+
"shape": "String"
289+
},
290+
"httpStatusCode": {
291+
"shape": "Integer"
292+
},
293+
"responseBody": {
294+
"shape": "ResponseBody"
295+
},
296+
"responseState": {
297+
"shape": "ResponseState"
298+
}
299+
},
300+
"required": [
301+
"actionGroup"
302+
],
303+
"type": "structure"
304+
},
210305
"Attribution": {
211306
"members": {
212307
"citations": {
@@ -271,6 +366,14 @@
271366
},
272367
"type": "structure"
273368
},
369+
"ContentBody": {
370+
"members": {
371+
"body": {
372+
"shape": "String"
373+
}
374+
},
375+
"type": "structure"
376+
},
274377
"ContentMap": {
275378
"key": {
276379
"shape": "String"
@@ -340,6 +443,67 @@
340443
"sensitive": true,
341444
"type": "string"
342445
},
446+
"Function": {
447+
"sensitive": true,
448+
"type": "string"
449+
},
450+
"FunctionInvocationInput": {
451+
"members": {
452+
"actionGroup": {
453+
"shape": "String"
454+
},
455+
"function": {
456+
"shape": "String"
457+
},
458+
"parameters": {
459+
"shape": "FunctionParameters"
460+
}
461+
},
462+
"required": [
463+
"actionGroup"
464+
],
465+
"type": "structure"
466+
},
467+
"FunctionParameter": {
468+
"members": {
469+
"name": {
470+
"shape": "String"
471+
},
472+
"type": {
473+
"shape": "String"
474+
},
475+
"value": {
476+
"shape": "String"
477+
}
478+
},
479+
"type": "structure"
480+
},
481+
"FunctionParameters": {
482+
"member": {
483+
"shape": "FunctionParameter"
484+
},
485+
"type": "list"
486+
},
487+
"FunctionResult": {
488+
"members": {
489+
"actionGroup": {
490+
"shape": "String"
491+
},
492+
"function": {
493+
"shape": "String"
494+
},
495+
"responseBody": {
496+
"shape": "ResponseBody"
497+
},
498+
"responseState": {
499+
"shape": "ResponseState"
500+
}
501+
},
502+
"required": [
503+
"actionGroup"
504+
],
505+
"type": "structure"
506+
},
343507
"GeneratedResponsePart": {
344508
"members": {
345509
"textResponsePart": {
@@ -382,6 +546,10 @@
382546
"sensitive": true,
383547
"type": "string"
384548
},
549+
"Integer": {
550+
"box": true,
551+
"type": "integer"
552+
},
385553
"InternalServerException": {
386554
"error": {
387555
"httpStatusCode": 500
@@ -413,6 +581,38 @@
413581
"sensitive": true,
414582
"type": "structure"
415583
},
584+
"InvocationInputMember": {
585+
"members": {
586+
"apiInvocationInput": {
587+
"shape": "ApiInvocationInput"
588+
},
589+
"functionInvocationInput": {
590+
"shape": "FunctionInvocationInput"
591+
}
592+
},
593+
"type": "structure",
594+
"union": true
595+
},
596+
"InvocationInputs": {
597+
"max": 5,
598+
"member": {
599+
"shape": "InvocationInputMember"
600+
},
601+
"min": 1,
602+
"type": "list"
603+
},
604+
"InvocationResultMember": {
605+
"members": {
606+
"apiResult": {
607+
"shape": "ApiResult"
608+
},
609+
"functionResult": {
610+
"shape": "FunctionResult"
611+
}
612+
},
613+
"type": "structure",
614+
"union": true
615+
},
416616
"InvocationType": {
417617
"enum": [
418618
"ACTION_GROUP",
@@ -454,7 +654,6 @@
454654
"required": [
455655
"agentAliasId",
456656
"agentId",
457-
"inputText",
458657
"sessionId"
459658
],
460659
"type": "structure"
@@ -722,6 +921,12 @@
722921
},
723922
"type": "structure"
724923
},
924+
"ParameterList": {
925+
"member": {
926+
"shape": "Parameter"
927+
},
928+
"type": "list"
929+
},
725930
"Parameters": {
726931
"member": {
727932
"shape": "Parameter"
@@ -848,6 +1053,14 @@
8481053
],
8491054
"type": "string"
8501055
},
1056+
"PropertyParameters": {
1057+
"members": {
1058+
"properties": {
1059+
"shape": "ParameterList"
1060+
}
1061+
},
1062+
"type": "structure"
1063+
},
8511064
"Rationale": {
8521065
"members": {
8531066
"text": {
@@ -897,6 +1110,22 @@
8971110
},
8981111
"type": "structure"
8991112
},
1113+
"ResponseBody": {
1114+
"key": {
1115+
"shape": "String"
1116+
},
1117+
"type": "map",
1118+
"value": {
1119+
"shape": "ContentBody"
1120+
}
1121+
},
1122+
"ResponseState": {
1123+
"enum": [
1124+
"FAILURE",
1125+
"REPROMPT"
1126+
],
1127+
"type": "string"
1128+
},
9001129
"ResponseStream": {
9011130
"eventstream": true,
9021131
"members": {
@@ -921,6 +1150,9 @@
9211150
"resourceNotFoundException": {
9221151
"shape": "ResourceNotFoundException"
9231152
},
1153+
"returnControl": {
1154+
"shape": "ReturnControlPayload"
1155+
},
9241156
"serviceQuotaExceededException": {
9251157
"shape": "ServiceQuotaExceededException"
9261158
},
@@ -1155,6 +1387,27 @@
11551387
},
11561388
"type": "list"
11571389
},
1390+
"ReturnControlInvocationResults": {
1391+
"max": 5,
1392+
"member": {
1393+
"shape": "InvocationResultMember"
1394+
},
1395+
"min": 1,
1396+
"type": "list"
1397+
},
1398+
"ReturnControlPayload": {
1399+
"event": true,
1400+
"members": {
1401+
"invocationId": {
1402+
"shape": "String"
1403+
},
1404+
"invocationInputs": {
1405+
"shape": "InvocationInputs"
1406+
}
1407+
},
1408+
"sensitive": true,
1409+
"type": "structure"
1410+
},
11581411
"SearchType": {
11591412
"enum": [
11601413
"HYBRID",
@@ -1192,9 +1445,15 @@
11921445
},
11931446
"SessionState": {
11941447
"members": {
1448+
"invocationId": {
1449+
"shape": "String"
1450+
},
11951451
"promptSessionAttributes": {
11961452
"shape": "PromptSessionAttributesMap"
11971453
},
1454+
"returnControlInvocationResults": {
1455+
"shape": "ReturnControlInvocationResults"
1456+
},
11981457
"sessionAttributes": {
11991458
"shape": "SessionAttributesMap"
12001459
}
@@ -1328,6 +1587,9 @@
13281587
"agentId": {
13291588
"shape": "AgentId"
13301589
},
1590+
"agentVersion": {
1591+
"shape": "AgentVersion"
1592+
},
13311593
"sessionId": {
13321594
"shape": "SessionId"
13331595
},

0 commit comments

Comments
 (0)