Skip to content

Commit 15f48a7

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 f10414e commit 15f48a7

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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
### Changed
610

711
- AWS enhancement: Documentation updates.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"extra": {
3232
"branch-alias": {
33-
"dev-master": "2.1-dev"
33+
"dev-master": "2.2-dev"
3434
}
3535
}
3636
}

src/SsmClient.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,14 @@ protected function getEndpointMetadata(?string $region): array
347347
'signService' => 'ssm',
348348
'signVersions' => ['v4'],
349349
];
350+
case 'us-isof-east-1':
351+
case 'us-isof-south-1':
352+
return [
353+
'endpoint' => "https://ssm.$region.csp.hci.ic.gov",
354+
'signRegion' => $region,
355+
'signService' => 'ssm',
356+
'signVersions' => ['v4'],
357+
];
350358
case 'us-isob-east-1':
351359
return [
352360
'endpoint' => 'https://ssm.us-isob-east-1.sc2s.sgov.gov',

0 commit comments

Comments
 (0)