Skip to content

Commit 8c712f9

Browse files
Update generated code (#1856)
update generated code
1 parent f3a6c01 commit 8c712f9

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-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: TODO
8+
59
## 1.4.0
610

711
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"extra": {
2929
"branch-alias": {
30-
"dev-master": "1.4-dev"
30+
"dev-master": "1.5-dev"
3131
}
3232
}
3333
}

src/StepFunctionsClient.php

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,20 @@ protected function getEndpointMetadata(?string $region): array
311311
'signService' => 'states',
312312
'signVersions' => ['v4'],
313313
];
314+
case 'fips-ca-central-1':
315+
return [
316+
'endpoint' => 'https://states-fips.ca-central-1.amazonaws.com',
317+
'signRegion' => 'ca-central-1',
318+
'signService' => 'states',
319+
'signVersions' => ['v4'],
320+
];
321+
case 'fips-ca-west-1':
322+
return [
323+
'endpoint' => 'https://states-fips.ca-west-1.amazonaws.com',
324+
'signRegion' => 'ca-west-1',
325+
'signService' => 'states',
326+
'signVersions' => ['v4'],
327+
];
314328
case 'fips-us-east-1':
315329
return [
316330
'endpoint' => 'https://states-fips.us-east-1.amazonaws.com',
@@ -376,6 +390,27 @@ protected function getEndpointMetadata(?string $region): array
376390
'signService' => 'states',
377391
'signVersions' => ['v4'],
378392
];
393+
case 'fips-us-iso-east-1':
394+
return [
395+
'endpoint' => 'https://states-fips.us-iso-east-1.c2s.ic.gov',
396+
'signRegion' => 'us-iso-east-1',
397+
'signService' => 'states',
398+
'signVersions' => ['v4'],
399+
];
400+
case 'fips-us-iso-west-1':
401+
return [
402+
'endpoint' => 'https://states-fips.us-iso-west-1.c2s.ic.gov',
403+
'signRegion' => 'us-iso-west-1',
404+
'signService' => 'states',
405+
'signVersions' => ['v4'],
406+
];
407+
case 'fips-us-isob-east-1':
408+
return [
409+
'endpoint' => 'https://states-fips.us-isob-east-1.sc2s.sgov.gov',
410+
'signRegion' => 'us-isob-east-1',
411+
'signService' => 'states',
412+
'signVersions' => ['v4'],
413+
];
379414
}
380415

381416
return [

0 commit comments

Comments
 (0)