From 9efee8b12e4131064c3ddad2b315e340fa18289f Mon Sep 17 00:00:00 2001 From: AsyncAws Bot Date: Thu, 27 Nov 2025 06:37:40 +0000 Subject: [PATCH] update generated code --- manifest.json | 2 +- src/Service/BedrockRuntime/CHANGELOG.md | 1 + src/Service/BedrockRuntime/src/Enum/ServiceTierType.php | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 2d63081f1..25caafa5d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "variables": { - "${LATEST}": "3.363.2" + "${LATEST}": "3.363.3" }, "endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json", "services": { diff --git a/src/Service/BedrockRuntime/CHANGELOG.md b/src/Service/BedrockRuntime/CHANGELOG.md index 171d6e999..d3597476c 100644 --- a/src/Service/BedrockRuntime/CHANGELOG.md +++ b/src/Service/BedrockRuntime/CHANGELOG.md @@ -5,6 +5,7 @@ ### Added - AWS api-change: Amazon Bedrock Runtime Service Tier Support Launch +- AWS api-change: Bedrock Runtime Reserved Service Support ### Dependency bumped diff --git a/src/Service/BedrockRuntime/src/Enum/ServiceTierType.php b/src/Service/BedrockRuntime/src/Enum/ServiceTierType.php index fa0fd4112..48f1614ee 100644 --- a/src/Service/BedrockRuntime/src/Enum/ServiceTierType.php +++ b/src/Service/BedrockRuntime/src/Enum/ServiceTierType.php @@ -7,6 +7,7 @@ final class ServiceTierType public const DEFAULT = 'default'; public const FLEX = 'flex'; public const PRIORITY = 'priority'; + public const RESERVED = 'reserved'; public static function exists(string $value): bool { @@ -14,6 +15,7 @@ public static function exists(string $value): bool self::DEFAULT => true, self::FLEX => true, self::PRIORITY => true, + self::RESERVED => true, ][$value]); } }