Skip to content

Commit 212632a

Browse files
authoredMay 16, 2024·
Update generated code (#1712)
update generated code
1 parent 35da6a1 commit 212632a

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed
 

‎CHANGELOG.md

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

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 2.4.0
610

711
### Added

‎src/Input/StartBuildInput.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ final class StartBuildInput extends Input
6161
* want to build. If a pull request ID is specified, it must use the format `pr/pull-request-ID` (for example
6262
* `pr/25`). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default
6363
* branch's HEAD commit ID is used.
64+
* - `GitLab`:
65+
*
66+
* The commit ID, branch, or Git tag to use.
6467
* - `Bitbucket`:
6568
*
6669
* The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a
@@ -120,7 +123,7 @@ final class StartBuildInput extends Input
120123

121124
/**
122125
* An authorization type for this build that overrides the one defined in the build project. This override applies only
123-
* if the build project's source is BitBucket or GitHub.
126+
* if the build project's source is BitBucket, GitHub, GitLab, or GitLab Self Managed.
124127
*
125128
* @var SourceAuth|null
126129
*/

‎src/ValueObject/Build.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ final class Build
178178
private $logs;
179179

180180
/**
181-
* How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.
181+
* How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out this build if it does not get
182+
* marked as completed.
182183
*
183184
* @var int|null
184185
*/

‎src/ValueObject/ProjectSourceVersion.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ final class ProjectSourceVersion
2121
* The source version for the corresponding source identifier. If specified, must be one of:
2222
*
2323
* - For CodeCommit: the commit ID, branch, or Git tag to use.
24-
* - For GitHub or GitLab: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of
25-
* the source code you want to build. If a pull request ID is specified, it must use the format `pr/pull-request-ID`
26-
* (for example, `pr/25`). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the
24+
* - For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source
25+
* code you want to build. If a pull request ID is specified, it must use the format `pr/pull-request-ID` (for
26+
* example, `pr/25`). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the
2727
* default branch's HEAD commit ID is used.
28+
* - For GitLab: the commit ID, branch, or Git tag to use.
2829
* - For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want
2930
* to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default
3031
* branch's HEAD commit ID is used.

0 commit comments

Comments
 (0)