Skip to content

Commit 923e8b2

Browse files
Update generated code (#2005)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 9afd385 commit 923e8b2

Some content is hidden

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

50 files changed

+197
-1
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.366.1"
3+
"${LATEST}": "3.366.4"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- AWS api-change: Added `us-isob-west-1` region
88
- Added `DescribeLogGroups` method
99
- Support for BedrockAgent
10+
- AWS api-change: Added `eusc-de-east-1` region
1011

1112
### Dependency bumped
1213

src/Core/src/Sts/StsClient.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,13 @@ protected function getEndpointMetadata(?string $region): array
347347
'signService' => 'sts',
348348
'signVersions' => ['v4'],
349349
];
350+
case 'eusc-de-east-1':
351+
return [
352+
'endpoint' => 'https://sts.eusc-de-east-1.amazonaws.eu',
353+
'signRegion' => 'eusc-de-east-1',
354+
'signService' => 'sts',
355+
'signVersions' => ['v4'],
356+
];
350357
case 'us-east-1-fips':
351358
return [
352359
'endpoint' => 'https://sts-fips.us-east-1.amazonaws.com',

src/Service/Athena/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs.
8+
- AWS api-change: Added `eusc-de-east-1` region
89

910
### Dependency bumped
1011

src/Service/Athena/src/AthenaClient.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,13 @@ protected function getEndpointMetadata(?string $region): array
719719
'signService' => 'athena',
720720
'signVersions' => ['v4'],
721721
];
722+
case 'eusc-de-east-1':
723+
return [
724+
'endpoint' => 'https://athena.eusc-de-east-1.amazonaws.eu',
725+
'signRegion' => 'eusc-de-east-1',
726+
'signService' => 'athena',
727+
'signVersions' => ['v4'],
728+
];
722729
case 'fips-ca-central-1':
723730
return [
724731
'endpoint' => 'https://athena-fips.ca-central-1.amazonaws.com',

src/Service/CloudFormation/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- AWS api-change: Update endpoint ruleset parameters casing
1212
- AWS apu-change: Added `us-isob-west-1` region
1313
- AWS api-change: New CloudFormation DescribeEvents API with operation ID tracking and failure filtering capabilities to quickly identify root causes of deployment failures.
14+
- AWS api-change: Added `eusc-de-east-1` region
1415

1516
### Dependency bumped
1617

src/Service/CloudFormation/src/CloudFormationClient.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,13 @@ protected function getEndpointMetadata(?string $region): array
119119
'signService' => 'cloudformation',
120120
'signVersions' => ['v4'],
121121
];
122+
case 'eusc-de-east-1':
123+
return [
124+
'endpoint' => 'https://cloudformation.eusc-de-east-1.amazonaws.eu',
125+
'signRegion' => 'eusc-de-east-1',
126+
'signService' => 'cloudformation',
127+
'signVersions' => ['v4'],
128+
];
122129
case 'us-east-1-fips':
123130
return [
124131
'endpoint' => 'https://cloudformation-fips.us-east-1.amazonaws.com',

src/Service/CloudWatch/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Added `us-isob-west-1` region
8+
- AWS api-change: Added `eusc-de-east-1` region
89

910
### Dependency bumped
1011

src/Service/CloudWatch/src/CloudWatchClient.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,13 @@ protected function getEndpointMetadata(?string $region): array
332332
'signService' => 'monitoring',
333333
'signVersions' => ['v4'],
334334
];
335+
case 'eusc-de-east-1':
336+
return [
337+
'endpoint' => 'https://monitoring.eusc-de-east-1.amazonaws.eu',
338+
'signRegion' => 'eusc-de-east-1',
339+
'signService' => 'monitoring',
340+
'signVersions' => ['v4'],
341+
];
335342
case 'fips-us-east-1':
336343
return [
337344
'endpoint' => 'https://monitoring-fips.us-east-1.amazonaws.com',

src/Service/CloudWatchLogs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
- AWS api-change: Added `us-isob-west-1` region
88
- AWS api-change: New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion.
9+
- AWS api-change: Added `eusc-de-east-1` region
910

1011
### Dependency bumped
1112

0 commit comments

Comments
 (0)