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.322.10"
"${LATEST}": "3.323.0"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
1 change: 1 addition & 0 deletions src/Service/Iot/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changed

- Enable compiler optimization for the `sprintf` function.
- AWS enhancement: Documentation updates.

## 2.0.3

Expand Down
4 changes: 3 additions & 1 deletion src/Service/Iot/src/IotClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ public function createThingGroup($input): CreateThingGroupResponse
}

/**
* Creates a new thing type.
* Creates a new thing type. If this call is made multiple times using the same thing type name and configuration, the
* call will succeed. If this call is made with the same thing type name but different configuration a
* `ResourceAlreadyExistsException` is thrown.
*
* Requires permission to access the CreateThingType [^1] action.
*
Expand Down
4 changes: 4 additions & 0 deletions src/Service/XRay/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

### Changed

- Enable compiler optimization for the `sprintf` function.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/XRay/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
"dev-master": "1.2-dev"
}
}
}
7 changes: 7 additions & 0 deletions src/Service/XRay/src/XRayClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@ protected function getEndpointMetadata(?string $region): array
'signService' => 'xray',
'signVersions' => ['v4'],
];
case 'us-isob-east-1':
return [
'endpoint' => 'https://xray.us-isob-east-1.sc2s.sgov.gov',
'signRegion' => 'us-isob-east-1',
'signService' => 'xray',
'signVersions' => ['v4'],
];
}

return [
Expand Down
Loading