From 56342be7a470dd70b3b8f7b095c8f3e95d9588a5 Mon Sep 17 00:00:00 2001 From: AsyncAws Bot Date: Fri, 4 Oct 2024 06:32:12 +0000 Subject: [PATCH 1/2] update generated code --- manifest.json | 2 +- src/Service/Iot/CHANGELOG.md | 1 + src/Service/Iot/src/IotClient.php | 4 +++- src/Service/XRay/CHANGELOG.md | 4 ++++ src/Service/XRay/composer.json | 2 +- src/Service/XRay/src/XRayClient.php | 7 +++++++ 6 files changed, 17 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 205974654..924ec15fa 100644 --- a/manifest.json +++ b/manifest.json @@ -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": { diff --git a/src/Service/Iot/CHANGELOG.md b/src/Service/Iot/CHANGELOG.md index 210fd1f96..b64ef2dcd 100644 --- a/src/Service/Iot/CHANGELOG.md +++ b/src/Service/Iot/CHANGELOG.md @@ -5,6 +5,7 @@ ### Changed - Enable compiler optimization for the `sprintf` function. +- AWS enhancement: Documentation updates. ## 2.0.3 diff --git a/src/Service/Iot/src/IotClient.php b/src/Service/Iot/src/IotClient.php index b4f4230a1..18913f819 100644 --- a/src/Service/Iot/src/IotClient.php +++ b/src/Service/Iot/src/IotClient.php @@ -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. * diff --git a/src/Service/XRay/CHANGELOG.md b/src/Service/XRay/CHANGELOG.md index cd976d526..dd487af46 100644 --- a/src/Service/XRay/CHANGELOG.md +++ b/src/Service/XRay/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Added + +- AWS api-change: TODO + ### Changed - Enable compiler optimization for the `sprintf` function. diff --git a/src/Service/XRay/composer.json b/src/Service/XRay/composer.json index 45eb4985d..19b5b64cb 100644 --- a/src/Service/XRay/composer.json +++ b/src/Service/XRay/composer.json @@ -27,7 +27,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "1.2-dev" } } } diff --git a/src/Service/XRay/src/XRayClient.php b/src/Service/XRay/src/XRayClient.php index b4d2f8666..c6caf702c 100644 --- a/src/Service/XRay/src/XRayClient.php +++ b/src/Service/XRay/src/XRayClient.php @@ -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 [ From fd41e8fe79568c4ce2af187ce8b1d58b2a98bbfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Deruss=C3=A9?= Date: Fri, 4 Oct 2024 09:21:33 +0200 Subject: [PATCH 2/2] Update src/Service/XRay/CHANGELOG.md --- src/Service/XRay/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/XRay/CHANGELOG.md b/src/Service/XRay/CHANGELOG.md index dd487af46..143afdd2e 100644 --- a/src/Service/XRay/CHANGELOG.md +++ b/src/Service/XRay/CHANGELOG.md @@ -4,7 +4,7 @@ ### Added -- AWS api-change: TODO +- AWS api-change: Added `us-isob-east-1` region ### Changed