You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have multiple methods per function for some of my lambdas. i.e. I have a GET, PATCH and DELETE in one lambda (due to Amazon limitation of about 35 endpoints per service (each endpoint generated several cloud formation items, and it's bursting to 200 limit AWS set))
Currently, operationId is generated from the lambda name, in this case usersId - this applies to all my endpoints in the one lambda file.
I'd like to specify it in the docs section for each method so that I dont get an error stating I cant have duplicate operationIds. i.e.
patchUsersId:
operationId: patchUsersId
tags:
- users
pathParams:
- name: userId
description: The userid for the current user
schema:
type: "string"
pattern: "^[-a-z0-9_]+$"
summary: "Patch a user by their users_id"
description: "Patch a user by their users_id, handles not found"
requestModels:
application/json: patchUpdateUserRequest
methodResponses:
- statusCode: 200
responseBody:
description: Response
responseModels:
application/json: EmptyResponse
The text was updated successfully, but these errors were encountered:
I'd like to utilize a single lambda for multiple API operations, thereby having a single pool that can service all operations rather than multiple lambda pools (for improved utilization of lambdas in AWS and maintaining a number to be kept warm). This issue prevents the generation of OpenAPI docs in the Jenkins pipeline.
I have multiple methods per function for some of my lambdas. i.e. I have a GET, PATCH and DELETE in one lambda (due to Amazon limitation of about 35 endpoints per service (each endpoint generated several cloud formation items, and it's bursting to 200 limit AWS set))
Currently, operationId is generated from the lambda name, in this case usersId - this applies to all my endpoints in the one lambda file.
I'd like to specify it in the docs section for each method so that I dont get an error stating I cant have duplicate operationIds. i.e.
The text was updated successfully, but these errors were encountered: