blob: bffb67dbb6922eec6bcbb833edcea902f95bbf6c [file] [log] [blame]
Jian Li073f1ba2021-02-28 03:50:15 +09001{
2 "type": "object",
3 "title": "floatingips",
4 "required": [
5 "floatingips"
6 ],
7 "properties": {
8 "floatingips": {
9 "type": "array",
10 "xml": {
11 "name": "floatingips",
12 "wrapped": true
13 },
14 "items": {
15 "type": "object",
16 "description": "A floating IP object.",
17 "required": [
18 "id",
19 "routerName",
20 "floatingIp",
21 "podName",
22 "fixedIp"
23 ],
24 "properties": {
25 "id": {
26 "type": "string",
27 "example": "6a073105-c735-4e53-8d74-64191c6985fe",
28 "description": "The ID of floating IP."
29 },
30 "routerName": {
31 "type": "string",
32 "example": "router-1",
33 "description": "Name of router."
34 },
35 "floatingIp": {
36 "type": "string",
37 "example": "10.10.10.5",
38 "description": "Floating IP address."
39 },
40 "podName": {
41 "type": "string",
42 "example": "pod-1",
43 "description": "Name of POD associated with this floating IP"
44 },
45 "fixedIp": {
46 "type": "string",
47 "example": "20.20.20.5",
48 "description": "Fixed IP address."
49 }
50 }
51 }
52 }
53 }
54}