blob: 59ae058cd2310b97a36f17fa2d9ee2f685e36dc0 [file] [log] [blame]
Jian Lid3472bf2018-02-12 15:22:04 +09001{
2 "type": "object",
3 "description": "A router interface object.",
4 "required": [
5 "id",
6 "tenant_id",
7 "subnet_id",
8 "port_id"
9 ],
10 "properties": {
11 "id": {
12 "type": "string",
13 "example": "f49a1319-423a-4ee6-ba54-1d95a4f6cc68",
14 "description": "The ID of the router interface."
15 },
16 "tenant_id": {
17 "type": "string",
18 "example": "d6700c0c9ffa4f1cb322cd4a1f3906fa",
19 "description": "The ID of the project."
20 },
21 "subnet_id": {
22 "type": "string",
23 "example": "a0304c3a-4f08-4c43-88af-d796509c97d2",
24 "description": "The subnet ID on which you want to create the floating IP."
25 },
26 "port_id": {
27 "type": "string",
28 "example": "ce705c24-c1ef-408a-bda3-7bbd946164ab",
29 "description": "The ID of a port associated with the floating IP."
30 }
31 }
32}