Skip to content

Commit 809e11d

Browse files
async-aws-botstof
andauthored
Update generated code (#1964)
* update generated code * Update changelogs --------- Co-authored-by: Christophe Coevoet <[email protected]>
1 parent 28fbf39 commit 809e11d

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
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-isob-west-1` region
8+
59
### Changed
610

711
- Apply new CodingStandard from latest php-cs-fixer.

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.3-dev"
33+
"dev-master": "2.4-dev"
3434
}
3535
}
3636
}

src/SsmClient.php

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,14 @@ protected function getEndpointMetadata(?string $region): array
359359
'signService' => 'ssm',
360360
'signVersions' => ['v4'],
361361
];
362+
case 'us-isob-east-1':
363+
case 'us-isob-west-1':
364+
return [
365+
'endpoint' => "https://ssm.$region.sc2s.sgov.gov",
366+
'signRegion' => $region,
367+
'signService' => 'ssm',
368+
'signVersions' => ['v4'],
369+
];
362370
case 'us-isof-east-1':
363371
case 'us-isof-south-1':
364372
return [
@@ -374,13 +382,6 @@ protected function getEndpointMetadata(?string $region): array
374382
'signService' => 'ssm',
375383
'signVersions' => ['v4'],
376384
];
377-
case 'us-isob-east-1':
378-
return [
379-
'endpoint' => 'https://ssm.us-isob-east-1.sc2s.sgov.gov',
380-
'signRegion' => 'us-isob-east-1',
381-
'signService' => 'ssm',
382-
'signVersions' => ['v4'],
383-
];
384385
}
385386

386387
return [

0 commit comments

Comments
 (0)