Skip to content

Commit f2a442b

Browse files
Update generated code (#1870)
* update generated code * Update src/Service/CodeBuild/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 41ffa87 commit f2a442b

File tree

7 files changed

+23
-2
lines changed

7 files changed

+23
-2
lines changed

Diff for: manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.342.17"
3+
"${LATEST}": "3.342.19"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

Diff for: src/Service/CodeBuild/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment
8+
- AWS api-change: Added `us-isob-east-1` region.
9+
510
## 2.9.0
611

712
### Added

Diff for: src/Service/CodeBuild/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.9-dev"
31+
"dev-master": "2.10-dev"
3232
}
3333
}
3434
}

Diff for: src/Service/CodeBuild/src/CodeBuildClient.php

+7
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,13 @@ protected function getEndpointMetadata(?string $region): array
224224
'signService' => 'codebuild',
225225
'signVersions' => ['v4'],
226226
];
227+
case 'us-isob-east-1':
228+
return [
229+
'endpoint' => 'https://codebuild.us-isob-east-1.sc2s.sgov.gov',
230+
'signRegion' => 'us-isob-east-1',
231+
'signService' => 'codebuild',
232+
'signVersions' => ['v4'],
233+
];
227234
}
228235

229236
return [

Diff for: src/Service/CodeBuild/src/Enum/EnvironmentType.php

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ final class EnvironmentType
1515
public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER';
1616
public const WINDOWS_EC2 = 'WINDOWS_EC2';
1717
public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER';
18+
public const WINDOWS_SERVER_2022_CONTAINER = 'WINDOWS_SERVER_2022_CONTAINER';
1819

1920
public static function exists(string $value): bool
2021
{
@@ -30,6 +31,7 @@ public static function exists(string $value): bool
3031
self::WINDOWS_CONTAINER => true,
3132
self::WINDOWS_EC2 => true,
3233
self::WINDOWS_SERVER_2019_CONTAINER => true,
34+
self::WINDOWS_SERVER_2022_CONTAINER => true,
3335
][$value]);
3436
}
3537
}

Diff for: src/Service/Ecr/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
## 1.9.0
610

711
### Added

Diff for: src/Service/Ecr/src/Result/GetAuthorizationTokenResponse.php

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ class GetAuthorizationTokenResponse extends Result
1111
/**
1212
* A list of authorization token data objects that correspond to the `registryIds` values in the request.
1313
*
14+
* > The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make
15+
* > assumptions about the maximum size.
16+
*
1417
* @var AuthorizationData[]
1518
*/
1619
private $authorizationData;

0 commit comments

Comments
 (0)