summaryrefslogtreecommitdiff
path: root/vtep/vtep.ovsschema
blob: d03d96d5102a22e055c8ec33cee299b445dabc97 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
  "name": "hardware_vtep",
  "cksum": "825115144 5318",
  "tables": {
    "Global": {
      "columns": {
        "managers": {
          "type": {"key": {"type": "uuid",
                           "refTable": "Manager"},
                   "min": 0, "max": "unlimited"}},
	"switches": {
	  "type": {"key": {"type": "uuid", "refTable": "Physical_Switch"},
		   "min": 0, "max": "unlimited"}}
      },
      "maxRows": 1,
      "isRoot": true},
    "Physical_Switch": {
      "columns": {
	"ports": {
	  "type": {"key": {"type": "uuid", "refTable": "Physical_Port"},
		   "min": 0, "max": "unlimited"}},
        "name": {"type": "string"},
        "description": {"type": "string"},
        "management_ips": {
	  "type": {"key": {"type": "string"}, "min": 0, "max": "unlimited"}},
        "tunnel_ips": {
	  "type": {"key": {"type": "string"}, "min": 0, "max": "unlimited"}}},
      "indexes": [["name"]]},
    "Physical_Port": {
      "columns": {
        "name": {"type": "string"},
        "description": {"type": "string"},
	"vlan_bindings": {
	  "type": {"key": {"type": "integer",
			   "minInteger": 0, "maxInteger": 4095},
		   "value": {"type": "uuid", "refTable": "Logical_Switch"},
		   "min": 0, "max": "unlimited"}},
        "vlan_stats": {
	  "type": {"key": {"type": "integer",
			   "minInteger": 0, "maxInteger": 4095},
		   "value": {"type": "uuid",
		             "refTable": "Logical_Binding_Stats"},
		   "min": 0, "max": "unlimited"}}}},
    "Logical_Binding_Stats": {
      "columns": {
        "bytes_from_local": {"type": "integer"},
        "packets_from_local": {"type": "integer"},
        "bytes_to_local": {"type": "integer"},
        "packets_to_local": {"type": "integer"}}},
    "Logical_Switch": {
      "columns": {
        "name": {"type": "string"},
        "description": {"type": "string"},
	"tunnel_key": {"type": {"key": "integer", "min": 0, "max": 1}}},
      "isRoot": true,
      "indexes": [["name"]]},
    "Ucast_Macs_Local": {
      "columns": {
        "MAC": {"type": "string"},
	"logical_switch": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Logical_Switch"}}},
	"locator": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Physical_Locator"}}},
        "ipaddr": {"type": "string"}},
      "isRoot": true},
    "Ucast_Macs_Remote": {
      "columns": {
        "MAC": {"type": "string"},
	"logical_switch": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Logical_Switch"}}},
	"locator": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Physical_Locator"}}},
        "ipaddr": {"type": "string"}},
      "isRoot": true},
    "Mcast_Macs_Local": {
      "columns": {
        "MAC": {"type": "string"},
	"logical_switch": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Logical_Switch"}}},
	"locator_set": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Physical_Locator_Set"}}},
        "ipaddr": {"type": "string"}},
      "isRoot": true},
    "Mcast_Macs_Remote": {
      "columns": {
        "MAC": {"type": "string"},
	"logical_switch": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Logical_Switch"}}},
	"locator_set": {
          "type": {"key": {"type": "uuid",
			   "refTable": "Physical_Locator_Set"}}},
        "ipaddr": {"type": "string"}},
      "isRoot": true},
    "Logical_Router": {
      "columns": {
        "name": {"type": "string"},
        "description": {"type": "string"},
	"switch_binding": {
	  "type": {"key": {"type": "string"},
		   "value": {"type": "uuid",
                             "refTable": "Logical_Switch"},
		   "min": 0, "max": "unlimited"}},
	"static_routes": {
	  "type": {"key": {"type": "string"},
	  	   "value": {"type" : "string"},
	  	   "min": 0, "max": "unlimited"}}},
      "isRoot": true,
      "indexes": [["name"]]},
    "Physical_Locator_Set": {
      "columns": {
        "locators": {
	  "type": {"key": {"type": "uuid", "refTable": "Physical_Locator"},
		   "min": 1, "max": "unlimited"},
		   "mutable": false}}},
    "Physical_Locator": {
      "columns": {
        "encapsulation_type": {
          "type": {
            "key": {
              "enum": ["set", ["vxlan_over_ipv4"]],
              "type": "string"}},
	  "mutable": false},
        "dst_ip": {"type": "string", "mutable": false},
	"bfd": {
          "type": {"key": "string", "value": "string",
              "min": 0, "max": "unlimited"}},
      	"bfd_status": {
          "type": {"key": "string", "value": "string",
              "min": 0, "max": "unlimited"}}},
      "indexes": [["encapsulation_type", "dst_ip"]]},
    "Manager": {
      "columns": {
        "target": {"type": "string"},
        "max_backoff": {
          "type": {"key": {"type": "integer",
                           "minInteger": 1000},
                   "min": 0, "max": 1}},
        "inactivity_probe": {
          "type": {"key": "integer", "min": 0, "max": 1}},
        "other_config": {
          "type": {"key": "string", "value": "string", "min": 0, "max": "unlimited"}},
        "is_connected": {
          "type": "boolean",
          "ephemeral": true},
        "status": {
          "type": {"key": "string", "value": "string", "min": 0, "max": "unlimited"},
          "ephemeral": true}},
      "indexes": [["target"]],
      "isRoot": false}},
  "version": "1.0.0"}