Skip to content

Commit d7a1365

Browse files
Update generated code (#1817)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 7fd9a52 commit d7a1365

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-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: Added `us-iso-east-1` and `us-iso-west-1` regions.
8+
59
## 2.6.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.6-dev"
31+
"dev-master": "2.7-dev"
3232
}
3333
}
3434
}

src/CodeBuildClient.php

+8
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,14 @@ protected function getEndpointMetadata(?string $region): array
208208
'signService' => 'codebuild',
209209
'signVersions' => ['v4'],
210210
];
211+
case 'us-iso-east-1':
212+
case 'us-iso-west-1':
213+
return [
214+
'endpoint' => "https://codebuild.$region.c2s.ic.gov",
215+
'signRegion' => $region,
216+
'signService' => 'codebuild',
217+
'signVersions' => ['v4'],
218+
];
211219
}
212220

213221
return [

0 commit comments

Comments
 (0)