Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.342.21"
"${LATEST}": "3.342.22"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/BedrockRuntime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: New options for how to handle harmful content detected by Amazon Bedrock Guardrails.

## 1.0.0

First version
2 changes: 1 addition & 1 deletion src/Service/BedrockRuntime/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-master": "1.1-dev"
}
}
}
2 changes: 2 additions & 0 deletions src/Service/BedrockRuntime/src/Enum/Trace.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ final class Trace
{
public const DISABLED = 'DISABLED';
public const ENABLED = 'ENABLED';
public const ENABLED_FULL = 'ENABLED_FULL';

public static function exists(string $value): bool
{
return isset([
self::DISABLED => true,
self::ENABLED => true,
self::ENABLED_FULL => true,
][$value]);
}
}
Loading