-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPI-Proxy West EU.openapi.json
67 lines (67 loc) · 1.59 KB
/
CPI-Proxy West EU.openapi.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"openapi": "3.0.1",
"info": {
"title": "CPI-Proxy West EU",
"version": "1.0"
},
"servers": [
{
"url": "https://cpi-proxy-europe-apim.azure-api.net"
}
],
"paths": {
"/*": {
"post": {
"summary": "All Paths",
"operationId": "all-paths",
"responses": {
"200": {
"description": null
}
}
},
"get": {
"summary": "All Paths Get",
"operationId": "all-paths-get",
"responses": {
"200": {
"description": null
}
}
}
},
"/status-0123456789abcdef": {
"head": {
"summary": "Custom Probe",
"operationId": "custom-probe",
"responses": {
"200": {
"description": null
}
}
}
}
},
"components": {
"securitySchemes": {
"apiKeyHeader": {
"type": "apiKey",
"name": "Ocp-Apim-Subscription-Key",
"in": "header"
},
"apiKeyQuery": {
"type": "apiKey",
"name": "subscription-key",
"in": "query"
}
}
},
"security": [
{
"apiKeyHeader": []
},
{
"apiKeyQuery": []
}
]
}