File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
src/Service/BedrockRuntime Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 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
711First version
Original file line number Diff line number Diff line change 2626 },
2727 "extra" : {
2828 "branch-alias" : {
29- "dev-master" : " 1.0 -dev"
29+ "dev-master" : " 1.1 -dev"
3030 }
3131 }
3232}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments