Skip to content

Commit

Permalink
Update generated code (#1806)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot authored Nov 22, 2024
1 parent 30c136f commit 8788308
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Add support for the Amazon Bedrock Runtime.

### Changed

- use strict comparison `null !==` instead of `!`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
"dev-master": "3.1-dev"
}
}
}
2 changes: 2 additions & 0 deletions src/Enum/DataSourceType.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

final class DataSourceType
{
public const AMAZON_BEDROCK_RUNTIME = 'AMAZON_BEDROCK_RUNTIME';
public const AMAZON_DYNAMODB = 'AMAZON_DYNAMODB';
public const AMAZON_ELASTICSEARCH = 'AMAZON_ELASTICSEARCH';
public const AMAZON_EVENTBRIDGE = 'AMAZON_EVENTBRIDGE';
Expand All @@ -16,6 +17,7 @@ final class DataSourceType
public static function exists(string $value): bool
{
return isset([
self::AMAZON_BEDROCK_RUNTIME => true,
self::AMAZON_DYNAMODB => true,
self::AMAZON_ELASTICSEARCH => true,
self::AMAZON_EVENTBRIDGE => true,
Expand Down

0 comments on commit 8788308

Please sign in to comment.