-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
73 lines (70 loc) · 1.75 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
swagger: '2.0'
info:
version: '0.1'
title: 'ESOURCE Sample Response API #1'
x-amazon-apigateway-api-key-source : "HEADER"
schemes:
- https
paths:
/users:
get:
description: Gets full list of users
produces:
- application/json
responses:
'200':
description: The request was successful.
schema:
type: array
items:
$ref: '#/definitions/User'
x-amazon-apigateway-integration:
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${GetUsersFunction.Arn}/invocations
passthroughBehavior: when_no_match
httpMethod: POST
type: aws_proxy
security:
- api_key: []
'/users/{id}':
get:
description: Gets a specific user
produces:
- application/json
parameters:
- name: id
in: path
required: true
type: string
responses:
'200':
description: The request was successful.
schema:
items:
$ref: '#/definitions/User'
x-amazon-apigateway-integration:
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${GetUsersFunction.Arn}/invocations
passthroughBehavior: when_no_match
httpMethod: POST
type: aws_proxy
security:
- api_key: []
definitions:
User:
type: object
description: A generic user
properties:
id:
type: number
description: ID of the user
name:
type: string
description: Name of the user
required:
- tip
securityDefinitions:
api_key:
type: "apiKey"
name: "x-api-key"
in: "header"