Skip to content

Commit 1effb0e

Browse files
Update generated code (#1873)
update generated code
1 parent 5a41e6f commit 1effb0e

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
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.21"
3+
"${LATEST}": "3.342.22"
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: New options for how to handle harmful content detected by Amazon Bedrock Guardrails.
8+
59
## 1.0.0
610

711
First version

src/Service/BedrockRuntime/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"extra": {
2828
"branch-alias": {
29-
"dev-master": "1.0-dev"
29+
"dev-master": "1.1-dev"
3030
}
3131
}
3232
}

src/Service/BedrockRuntime/src/Enum/Trace.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ final class Trace
66
{
77
public const DISABLED = 'DISABLED';
88
public const ENABLED = 'ENABLED';
9+
public const ENABLED_FULL = 'ENABLED_FULL';
910

1011
public static function exists(string $value): bool
1112
{
1213
return isset([
1314
self::DISABLED => true,
1415
self::ENABLED => true,
16+
self::ENABLED_FULL => true,
1517
][$value]);
1618
}
1719
}

0 commit comments

Comments
 (0)