Skip to content

Commit

Permalink
Update generated code (#1751)
Browse files Browse the repository at this point in the history
* update generated code

* Update src/Service/CodeBuild/CHANGELOG.md

---------

Co-authored-by: Jérémy Derussé <[email protected]>
  • Loading branch information
async-aws-bot and jderusse authored Aug 20, 2024
1 parent b915844 commit 53870df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

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

### Changed

Expand Down
2 changes: 2 additions & 0 deletions src/Enum/EnvironmentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ final class EnvironmentType
public const LINUX_CONTAINER = 'LINUX_CONTAINER';
public const LINUX_GPU_CONTAINER = 'LINUX_GPU_CONTAINER';
public const LINUX_LAMBDA_CONTAINER = 'LINUX_LAMBDA_CONTAINER';
public const MAC_ARM = 'MAC_ARM';
public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER';
public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER';

Expand All @@ -20,6 +21,7 @@ public static function exists(string $value): bool
self::LINUX_CONTAINER => true,
self::LINUX_GPU_CONTAINER => true,
self::LINUX_LAMBDA_CONTAINER => true,
self::MAC_ARM => true,
self::WINDOWS_CONTAINER => true,
self::WINDOWS_SERVER_2019_CONTAINER => true,
][$value]);
Expand Down

0 comments on commit 53870df

Please sign in to comment.