generated from Harmonica-OIDC2023/harmonica-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apideploy-spec.json
51 lines (51 loc) · 1.14 KB
/
apideploy-spec.json
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
{
"requestPolicies": {
"cors": {
"allowedOrigins": ["*"],
"allowedMethods": ["*"],
"allowedHeaders": ["*"]
}
},
"routes": [
{
"path": "/getProducts",
"methods": ["GET"],
"backend": {
"type": "ORACLE_FUNCTIONS_BACKEND",
"functionId": "FUNCTION_ID"
}
},
{
"path": "/addProduct",
"methods": ["POST"],
"backend": {
"type": "ORACLE_FUNCTIONS_BACKEND",
"functionId": "FUNCTION_ID"
}
},
{
"path": "/updateProduct",
"methods": ["POST"],
"backend": {
"type": "ORACLE_FUNCTIONS_BACKEND",
"functionId": "FUNCTION_ID"
}
},
{
"path": "/deleteProduct",
"methods": ["POST"],
"backend": {
"type": "ORACLE_FUNCTIONS_BACKEND",
"functionId": "FUNCTION_ID"
}
},
{
"path": "/",
"methods": ["GET"],
"backend": {
"type": "HTTP_BACKEND",
"url": "https://objectstorage.ap-chuncheon-1.oraclecloud.com/p/WRNMxOX7hAS8hZonInpdu0SiNztl1jVtky3jgCn9e7Pbye2wMOTOaTr9QrUvrhpR/n/axesauzalrs1/b/bucket-20230623-1744/o/"
}
}
]
}