Skip to content

Update generated code #1870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.342.17"
"${LATEST}": "3.342.19"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
5 changes: 5 additions & 0 deletions src/Service/CodeBuild/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## NOT RELEASED

### Added

- AWS api-change: This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment
- AWS api-change: Added `us-isob-east-1` region.

## 2.9.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CodeBuild/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.9-dev"
"dev-master": "2.10-dev"
}
}
}
7 changes: 7 additions & 0 deletions src/Service/CodeBuild/src/CodeBuildClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,13 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'codebuild',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://codebuild.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'codebuild',
'signVersions' => ['v4'],
];
}

return [
Expand Down
2 changes: 2 additions & 0 deletions src/Service/CodeBuild/src/Enum/EnvironmentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ final class EnvironmentType
public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER';
public const WINDOWS_EC2 = 'WINDOWS_EC2';
public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER';
public const WINDOWS_SERVER_2022_CONTAINER = 'WINDOWS_SERVER_2022_CONTAINER';

public static function exists(string $value): bool
{
Expand All @@ -30,6 +31,7 @@ public static function exists(string $value): bool
self::WINDOWS_CONTAINER => true,
self::WINDOWS_EC2 => true,
self::WINDOWS_SERVER_2019_CONTAINER => true,
self::WINDOWS_SERVER_2022_CONTAINER => true,
][$value]);
}
}
4 changes: 4 additions & 0 deletions src/Service/Ecr/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.

## 1.9.0

### Added
Expand Down
3 changes: 3 additions & 0 deletions src/Service/Ecr/src/Result/GetAuthorizationTokenResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ class GetAuthorizationTokenResponse extends Result
/**
* A list of authorization token data objects that correspond to the `registryIds` values in the request.
*
* > The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make
* > assumptions about the maximum size.
*
* @var AuthorizationData[]
*/
private $authorizationData;
Expand Down
Loading