Skip to content

Commit 2177a6e

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 c00776c commit 2177a6e

File tree

83 files changed

+374
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+374
-30
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.339.3"
3+
"${LATEST}": "3.339.6"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Core/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
## 1.24.1
610

711
### Fixed

src/Core/composer.json

Lines changed: 1 addition & 1 deletion
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/Core/src/Sts/StsClient.php

Lines changed: 8 additions & 0 deletions
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',

src/Service/Athena/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
## 3.1.0
610

711
### Added

src/Service/Athena/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"extra": {
3131
"branch-alias": {
32-
"dev-master": "3.1-dev"
32+
"dev-master": "3.2-dev"
3333
}
3434
}
3535
}

src/Service/Athena/src/AthenaClient.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,14 @@ protected function getEndpointMetadata(?string $region): array
805805
'signService' => 'athena',
806806
'signVersions' => ['v4'],
807807
];
808+
case 'us-isof-east-1':
809+
case 'us-isof-south-1':
810+
return [
811+
'endpoint' => "https://athena.$region.csp.hci.ic.gov",
812+
'signRegion' => $region,
813+
'signService' => 'athena',
814+
'signVersions' => ['v4'],
815+
];
808816
case 'us-iso-east-1':
809817
return [
810818
'endpoint' => 'https://athena.us-iso-east-1.c2s.ic.gov',

src/Service/CloudFormation/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
## 1.7.2
610

711
### Changed

src/Service/CloudFormation/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "1.7-dev"
31+
"dev-master": "1.8-dev"
3232
}
3333
}
3434
}

src/Service/CloudFormation/src/CloudFormationClient.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,14 @@ protected function getEndpointMetadata(?string $region): array
169169
'signService' => 'cloudformation',
170170
'signVersions' => ['v4'],
171171
];
172+
case 'us-isof-east-1':
173+
case 'us-isof-south-1':
174+
return [
175+
'endpoint' => "https://cloudformation.$region.csp.hci.ic.gov",
176+
'signRegion' => $region,
177+
'signService' => 'cloudformation',
178+
'signVersions' => ['v4'],
179+
];
172180
case 'us-isob-east-1':
173181
return [
174182
'endpoint' => 'https://cloudformation.us-isob-east-1.sc2s.sgov.gov',

0 commit comments

Comments
 (0)