blob: 4e0800da1725f466f9eb7ebcc8be50be82db38ef [file] [log] [blame]
Jian Lic4604302020-12-25 02:24:16 +09001{
2 "type": "object",
3 "required": [
4 "clusterName",
5 "segmentId",
6 "scheme",
7 "ipAddress",
8 "port"
9 ],
10 "properties": {
11 "clusterName": {
12 "type": "string",
13 "example": "kubernetes"
14 },
15 "segmentId": {
16 "type": "integer",
17 "example": 1
18 },
19 "scheme": {
20 "type": "string",
21 "example": "HTTP"
22 },
23 "ipAddress": {
24 "type": "string",
25 "example": "10.10.10.2"
26 },
27 "port": {
28 "type": "integer",
29 "example": 6443
30 }
31 }
32}