Skip to content

Commit 6df5492

Browse files
authoredJan 9, 2024
Update generated code (#1639)
update generated code
1 parent e26d056 commit 6df5492

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Aws CodeBuild now supports new compute type BUILD_GENERAL1_XLARGE
8+
59
## 2.1.0
610

711
### Added

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "2.1-dev"
31+
"dev-master": "2.2-dev"
3232
}
3333
}
3434
}

‎src/Enum/ComputeType.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ final class ComputeType
88
public const BUILD_GENERAL1_LARGE = 'BUILD_GENERAL1_LARGE';
99
public const BUILD_GENERAL1_MEDIUM = 'BUILD_GENERAL1_MEDIUM';
1010
public const BUILD_GENERAL1_SMALL = 'BUILD_GENERAL1_SMALL';
11+
public const BUILD_GENERAL1_XLARGE = 'BUILD_GENERAL1_XLARGE';
1112
public const BUILD_LAMBDA_10GB = 'BUILD_LAMBDA_10GB';
1213
public const BUILD_LAMBDA_1GB = 'BUILD_LAMBDA_1GB';
1314
public const BUILD_LAMBDA_2GB = 'BUILD_LAMBDA_2GB';
@@ -21,6 +22,7 @@ public static function exists(string $value): bool
2122
self::BUILD_GENERAL1_LARGE => true,
2223
self::BUILD_GENERAL1_MEDIUM => true,
2324
self::BUILD_GENERAL1_SMALL => true,
25+
self::BUILD_GENERAL1_XLARGE => true,
2426
self::BUILD_LAMBDA_10GB => true,
2527
self::BUILD_LAMBDA_1GB => true,
2628
self::BUILD_LAMBDA_2GB => true,

‎src/ValueObject/ProjectEnvironment.php

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ final class ProjectEnvironment
6464
* - `BUILD_GENERAL1_SMALL`: Use up to 3 GB memory and 2 vCPUs for builds.
6565
* - `BUILD_GENERAL1_MEDIUM`: Use up to 7 GB memory and 4 vCPUs for builds.
6666
* - `BUILD_GENERAL1_LARGE`: Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type.
67+
* - `BUILD_GENERAL1_XLARGE`: Use up to 70 GB memory and 36 vCPUs for builds, depending on your environment type.
6768
* - `BUILD_GENERAL1_2XLARGE`: Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute
6869
* type supports Docker images up to 100 GB uncompressed.
6970
* - `BUILD_LAMBDA_1GB`: Use up to 1 GB memory for builds. Only available for environment type `LINUX_LAMBDA_CONTAINER`

0 commit comments

Comments
 (0)
Please sign in to comment.