Skip to content

Update generated code #1922

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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.351.3"
"${LATEST}": "3.351.5"
},
"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/Lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Rework regions configuration
- AWS api-change: remove trailling `/` in `ListFunctions` request

### Changed

Expand Down
2 changes: 1 addition & 1 deletion src/Service/Lambda/src/Input/ListFunctionsRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function request(): Request
}

// Prepare URI
$uriString = '/2015-03-31/functions/';
$uriString = '/2015-03-31/functions';

// Prepare Body
$body = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function testRequest(): void

// see https://docs.aws.amazon.com/lambda/latest/APIReference/API_ListFunctions.html
$expected = '
GET /2015-03-31/functions/?FunctionVersion=ALL&Marker=xxyy&MasterRegion=eu-central-1&MaxItems=1337 HTTP/1.1
GET /2015-03-31/functions?FunctionVersion=ALL&Marker=xxyy&MasterRegion=eu-central-1&MaxItems=1337 HTTP/1.1
Content-type: application/json
Accept: application/json
';
Expand Down