forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpbin-prod-swagger-apigateway.yaml
101 lines (101 loc) · 3.03 KB
/
httpbin-prod-swagger-apigateway.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
swagger: "2.0"
info:
description: "Looks like an httpbin"
version: "2020-06-18T07:18:54Z"
title: "httpbin"
host: "httpbin.julialang.org"
schemes:
- "https"
paths:
/get:
get:
consumes:
- "application/json"
produces:
- "application/json"
responses:
200:
description: "200 response"
schema:
$ref: "#/definitions/Empty"
x-amazon-apigateway-integration:
responses:
default:
statusCode: "200"
responseTemplates:
application/json: "#set($allParams = $input.params())\n{\n\"args\":\
\ {\n#set($params = $allParams.get(\"querystring\"))\n#foreach($paramName\
\ in $params.keySet())\n\"$paramName\" : \"$util.escapeJavaScript($params.get($paramName)).replaceAll(\"\
\\\\'\",\"'\")\"\n#if($foreach.hasNext),#end\n\n#end\n},\n\"headers\"\
: {\n#set($params = $allParams.get(\"header\"))\n#foreach($paramName\
\ in $params.keySet())\n\"$paramName\" : \"$util.escapeJavaScript($params.get($paramName)).replaceAll(\"\
\\\\'\",\"'\")\"#if($foreach.hasNext),#end\n\n#end\n},\n\"origin\"\
: \"$context.identity.sourceIp\",\n\"url\": \"$context.path\"\n}\n"
requestTemplates:
application/json: "{\"statusCode\": 200}"
passthroughBehavior: "when_no_match"
type: "mock"
/ip:
get:
consumes:
- "application/json"
produces:
- "application/json"
responses:
200:
description: "200 response"
x-amazon-apigateway-integration:
responses:
default:
statusCode: "200"
responseTemplates:
application/json: "{\n \"origin\" : \"$context.identity.sourceIp\"\n\
}"
requestTemplates:
application/json: "{\"statusCode\": 200}"
passthroughBehavior: "when_no_match"
type: "mock"
/status/200:
get:
consumes:
- "application/json"
produces:
- "application/json"
responses:
200:
description: "200 response"
schema:
$ref: "#/definitions/Empty"
x-amazon-apigateway-integration:
responses:
default:
statusCode: "200"
requestTemplates:
application/json: "{\"statusCode\": 200}"
passthroughBehavior: "when_no_match"
type: "mock"
/status/404:
get:
consumes:
- "application/json"
responses:
404:
description: "404 response"
x-amazon-apigateway-integration:
responses:
default:
statusCode: "404"
requestTemplates:
application/json: "{\"statusCode\": 404}"
passthroughBehavior: "when_no_match"
type: "mock"
definitions:
Empty:
type: "object"
title: "Empty Schema"
x-amazon-apigateway-gateway-responses:
DEFAULT_4XX:
statusCode: 401
responseTemplates:
application/json: "{\"message\":$context.error.messageString}"