Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.334.4"
"${LATEST}": "3.334.6"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CodeBuild/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: TODO

## 2.6.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CodeBuild/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
"dev-master": "2.7-dev"
}
}
}
8 changes: 8 additions & 0 deletions src/Service/CodeBuild/src/CodeBuildClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,14 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'codebuild',
'signVersions' => ['v4'],
];
case 'us-iso-east-1':
case 'us-iso-west-1':
return [
'endpoint' => "https://codebuild.$region.c2s.ic.gov",
'signRegion' => $region,
'signService' => 'codebuild',
'signVersions' => ['v4'],
];
}

return [
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Scheduler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: TODO

## 1.1.4

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Service/Scheduler/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
"dev-master": "1.2-dev"
}
}
}
18 changes: 18 additions & 0 deletions src/Service/Scheduler/src/SchedulerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,24 @@ protected function getEndpointMetadata(?string $region): array
$region = Configuration::DEFAULT_REGION;
}

switch ($region) {
case 'us-iso-east-1':
case 'us-iso-west-1':
return [
'endpoint' => "https://scheduler.$region.c2s.ic.gov",
'signRegion' => $region,
'signService' => 'scheduler',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://scheduler.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'scheduler',
'signVersions' => ['v4'],
];
}

return [
'endpoint' => "https://scheduler.$region.amazonaws.com",
'signRegion' => $region,
Expand Down
Loading