Skip to content

Commit ef7fcdf

Browse files
Update generated code (#1428)
* update generated code * Update src/Service/Lambda/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 920c32b commit ef7fcdf

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- AWS api-change: Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs.
99
- AWS api-change: Added `ap-southeast-4` region.
1010
- AWS api-change: Add Python 3.10 (python3.10) support to AWS Lambda
11+
- AWS api-change: Add Ruby 3.2 (ruby3.2) Runtime support to AWS Lambda.
1112
- AWS api-change: Add Java 17 (java17) support to AWS Lambda
1213
## 1.8.0
1314

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ final class Runtime
4141
public const PYTHON_3_9 = 'python3.9';
4242
public const RUBY_2_5 = 'ruby2.5';
4343
public const RUBY_2_7 = 'ruby2.7';
44+
public const RUBY_3_2 = 'ruby3.2';
4445

4546
public static function exists(string $value): bool
4647
{
@@ -75,6 +76,7 @@ public static function exists(string $value): bool
7576
self::PYTHON_3_9 => true,
7677
self::RUBY_2_5 => true,
7778
self::RUBY_2_7 => true,
79+
self::RUBY_3_2 => true,
7880
][$value]);
7981
}
8082
}

0 commit comments

Comments
 (0)