Skip to content

Commit 5589189

Browse files
Update generated code (#1841)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 9a0a2e5 commit 5589189

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

711
### Added

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"extra": {
3131
"branch-alias": {
32-
"dev-master": "3.1-dev"
32+
"dev-master": "3.2-dev"
3333
}
3434
}
3535
}

src/AthenaClient.php

+8
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,14 @@ protected function getEndpointMetadata(?string $region): array
805805
'signService' => 'athena',
806806
'signVersions' => ['v4'],
807807
];
808+
case 'us-isof-east-1':
809+
case 'us-isof-south-1':
810+
return [
811+
'endpoint' => "https://athena.$region.csp.hci.ic.gov",
812+
'signRegion' => $region,
813+
'signService' => 'athena',
814+
'signVersions' => ['v4'],
815+
];
808816
case 'us-iso-east-1':
809817
return [
810818
'endpoint' => 'https://athena.us-iso-east-1.c2s.ic.gov',

0 commit comments

Comments
 (0)