Skip to content
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