Skip to content

Commit 0411ea1

Browse files
committed
update generated code
1 parent 1effb0e commit 0411ea1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.342.22"
3+
"${LATEST}": "3.342.23"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/BedrockRuntime/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: New options for how to handle harmful content detected by Amazon Bedrock Guardrails.
8+
- AWS api-change: This release introduces our latest bedrock runtime API, InvokeModelWithBidirectionalStream. The API supports both input and output streams and is supported by only HTTP2.0.
89

910
## 1.0.0
1011

src/Service/BedrockRuntime/src/BedrockRuntimeClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ class BedrockRuntimeClient extends AbstractApi
6767
* @throws InternalServerException
6868
* @throws ServiceUnavailableException
6969
* @throws ValidationException
70-
* @throws ModelNotReadyException
7170
* @throws ServiceQuotaExceededException
71+
* @throws ModelNotReadyException
7272
* @throws ModelErrorException
7373
*/
7474
public function invokeModel($input): InvokeModelResponse
@@ -82,8 +82,8 @@ public function invokeModel($input): InvokeModelResponse
8282
'InternalServerException' => InternalServerException::class,
8383
'ServiceUnavailableException' => ServiceUnavailableException::class,
8484
'ValidationException' => ValidationException::class,
85-
'ModelNotReadyException' => ModelNotReadyException::class,
8685
'ServiceQuotaExceededException' => ServiceQuotaExceededException::class,
86+
'ModelNotReadyException' => ModelNotReadyException::class,
8787
'ModelErrorException' => ModelErrorException::class,
8888
]]));
8989

0 commit comments

Comments
 (0)