Skip to content

Commit c7ee325

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 9d6a68e commit c7ee325

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: This change enhances integrity protections for new SDK requests to S3. S3 SDKs now support the CRC64NVME checksum algorithm, full object checksums for multipart S3 objects, and new default integrity protections for S3 requests.
8+
- AWS api-change: Added `us-isof-east-1` and `us-isof-south-1` regions
89

910
## 2.7.0
1011

src/S3Client.php

+8
Original file line numberDiff line numberDiff line change
@@ -3323,6 +3323,14 @@ protected function getEndpointMetadata(?string $region): array
33233323
'signService' => 's3',
33243324
'signVersions' => ['s3v4'],
33253325
];
3326+
case 'us-isof-east-1':
3327+
case 'us-isof-south-1':
3328+
return [
3329+
'endpoint' => "https://s3.$region.csp.hci.ic.gov",
3330+
'signRegion' => $region,
3331+
'signService' => 's3',
3332+
'signVersions' => ['s3v4'],
3333+
];
33263334
case 'us-isob-east-1':
33273335
return [
33283336
'endpoint' => 'https://s3.us-isob-east-1.sc2s.sgov.gov',

0 commit comments

Comments
 (0)