Skip to content

Commit 8788308

Browse files
Update generated code (#1806)
update generated code
1 parent 30c136f commit 8788308

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

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: Add support for the Amazon Bedrock Runtime.
8+
59
### Changed
610

711
- use strict comparison `null !==` instead of `!`

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "3.0-dev"
31+
"dev-master": "3.1-dev"
3232
}
3333
}
3434
}

src/Enum/DataSourceType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
final class DataSourceType
66
{
7+
public const AMAZON_BEDROCK_RUNTIME = 'AMAZON_BEDROCK_RUNTIME';
78
public const AMAZON_DYNAMODB = 'AMAZON_DYNAMODB';
89
public const AMAZON_ELASTICSEARCH = 'AMAZON_ELASTICSEARCH';
910
public const AMAZON_EVENTBRIDGE = 'AMAZON_EVENTBRIDGE';
@@ -16,6 +17,7 @@ final class DataSourceType
1617
public static function exists(string $value): bool
1718
{
1819
return isset([
20+
self::AMAZON_BEDROCK_RUNTIME => true,
1921
self::AMAZON_DYNAMODB => true,
2022
self::AMAZON_ELASTICSEARCH => true,
2123
self::AMAZON_EVENTBRIDGE => true,

0 commit comments

Comments
 (0)