Skip to content

Commit 9efee8b

Browse files
committed
update generated code
1 parent 0c3d02f commit 9efee8b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
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.363.2"
3+
"${LATEST}": "3.363.3"
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Amazon Bedrock Runtime Service Tier Support Launch
8+
- AWS api-change: Bedrock Runtime Reserved Service Support
89

910
### Dependency bumped
1011

src/Service/BedrockRuntime/src/Enum/ServiceTierType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ final class ServiceTierType
77
public const DEFAULT = 'default';
88
public const FLEX = 'flex';
99
public const PRIORITY = 'priority';
10+
public const RESERVED = 'reserved';
1011

1112
public static function exists(string $value): bool
1213
{
1314
return isset([
1415
self::DEFAULT => true,
1516
self::FLEX => true,
1617
self::PRIORITY => true,
18+
self::RESERVED => true,
1719
][$value]);
1820
}
1921
}

0 commit comments

Comments
 (0)