Skip to content

Commit

Permalink
Update generated code (#1712)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot authored May 16, 2024
1 parent 35da6a1 commit 212632a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 2.4.0

### Added
Expand Down
5 changes: 4 additions & 1 deletion src/Input/StartBuildInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ final class StartBuildInput extends Input
* want to build. If a pull request ID is specified, it must use the format `pr/pull-request-ID` (for example
* `pr/25`). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default
* branch's HEAD commit ID is used.
* - `GitLab`:
*
* The commit ID, branch, or Git tag to use.
* - `Bitbucket`:
*
* The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a
Expand Down Expand Up @@ -120,7 +123,7 @@ final class StartBuildInput extends Input

/**
* An authorization type for this build that overrides the one defined in the build project. This override applies only
* if the build project's source is BitBucket or GitHub.
* if the build project's source is BitBucket, GitHub, GitLab, or GitLab Self Managed.
*
* @var SourceAuth|null
*/
Expand Down
3 changes: 2 additions & 1 deletion src/ValueObject/Build.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ final class Build
private $logs;

/**
* How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.
* How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out this build if it does not get
* marked as completed.
*
* @var int|null
*/
Expand Down
7 changes: 4 additions & 3 deletions src/ValueObject/ProjectSourceVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ final class ProjectSourceVersion
* The source version for the corresponding source identifier. If specified, must be one of:
*
* - For CodeCommit: the commit ID, branch, or Git tag to use.
* - For GitHub or GitLab: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of
* the source code you want to build. If a pull request ID is specified, it must use the format `pr/pull-request-ID`
* (for example, `pr/25`). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the
* - For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source
* code you want to build. If a pull request ID is specified, it must use the format `pr/pull-request-ID` (for
* example, `pr/25`). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the
* default branch's HEAD commit ID is used.
* - For GitLab: the commit ID, branch, or Git tag to use.
* - For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want
* to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default
* branch's HEAD commit ID is used.
Expand Down

0 comments on commit 212632a

Please sign in to comment.