Skip to content

Commit 529976d

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 241c8ab commit 529976d

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
## 1.24.1
610

711
### Fixed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"extra": {
4040
"branch-alias": {
41-
"dev-master": "1.24-dev"
41+
"dev-master": "1.25-dev"
4242
}
4343
}
4444
}

src/Sts/StsClient.php

+8
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,14 @@ protected function getEndpointMetadata(?string $region): array
397397
'signService' => 'sts',
398398
'signVersions' => ['v4'],
399399
];
400+
case 'us-isof-east-1':
401+
case 'us-isof-south-1':
402+
return [
403+
'endpoint' => "https://sts.$region.csp.hci.ic.gov",
404+
'signRegion' => $region,
405+
'signService' => 'sts',
406+
'signVersions' => ['v4'],
407+
];
400408
case 'us-isob-east-1':
401409
return [
402410
'endpoint' => 'https://sts.us-isob-east-1.sc2s.sgov.gov',

0 commit comments

Comments
 (0)