We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b13946 commit 35badeaCopy full SHA for 35badea
test/serverless-tests/serverless 3/serverless.yml
@@ -26,6 +26,8 @@ functions:
26
description: A user information object
27
requestModels:
28
application/json: PutDocumentRequest
29
+ security:
30
+ - {}
31
pathParams:
32
- name: username
33
description: The username for a user to create
@@ -61,6 +63,13 @@ custom:
61
63
documentation:
62
64
description: This is a description of what this does
65
version: 1.0.0
66
+ securitySchemes:
67
+ my_api_key:
68
+ type: apiKey
69
+ name: api_key
70
+ in: header
71
+ overallSecurityRequirement:
72
+ - my_api_key: []
73
models:
74
- name: ErrorResponse
75
description: This is an error
0 commit comments