Skip to content

Commit 31efecc

Browse files
Update generated code (#1841)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 23e1c7b commit 31efecc

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

Diff for: 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-isof-east-1` and `us-isof-south-1` regions
8+
59
## 2.7.0
610

711
### Added

Diff for: 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.7-dev"
31+
"dev-master": "2.8-dev"
3232
}
3333
}
3434
}

Diff for: src/CodeBuildClient.php

+8
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,14 @@ protected function getEndpointMetadata(?string $region): array
216216
'signService' => 'codebuild',
217217
'signVersions' => ['v4'],
218218
];
219+
case 'us-isof-east-1':
220+
case 'us-isof-south-1':
221+
return [
222+
'endpoint' => "https://codebuild.$region.csp.hci.ic.gov",
223+
'signRegion' => $region,
224+
'signService' => 'codebuild',
225+
'signVersions' => ['v4'],
226+
];
219227
}
220228

221229
return [

0 commit comments

Comments
 (0)