Skip to content

Commit 53870df

Browse files
Update generated code (#1751)
* update generated code * Update src/Service/CodeBuild/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent b915844 commit 53870df

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project.
8+
- AWS api-change: Add `MacArm` environment type
89

910
### Changed
1011

src/Enum/EnvironmentType.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ final class EnvironmentType
99
public const LINUX_CONTAINER = 'LINUX_CONTAINER';
1010
public const LINUX_GPU_CONTAINER = 'LINUX_GPU_CONTAINER';
1111
public const LINUX_LAMBDA_CONTAINER = 'LINUX_LAMBDA_CONTAINER';
12+
public const MAC_ARM = 'MAC_ARM';
1213
public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER';
1314
public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER';
1415

@@ -20,6 +21,7 @@ public static function exists(string $value): bool
2021
self::LINUX_CONTAINER => true,
2122
self::LINUX_GPU_CONTAINER => true,
2223
self::LINUX_LAMBDA_CONTAINER => true,
24+
self::MAC_ARM => true,
2325
self::WINDOWS_CONTAINER => true,
2426
self::WINDOWS_SERVER_2019_CONTAINER => true,
2527
][$value]);

0 commit comments

Comments
 (0)