This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsnvs.ovsschema
57 lines (57 loc) · 2.08 KB
/
snvs.ovsschema
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
{
"name": "snvs",
"tables": {
"Client": {
"columns": {
"target": {"type": "string"},
"device_id": {"type": "integer"},
"role_id": {"type": "integer"},
"is_primary": {"type": "boolean"}
},
"isRoot": false
},
"FloodVlan": {
"columns": {"id": {"type": "integer"}}
},
"Port": {
"columns": {
"id": {
"type": {"key": {"type": "integer", "minInteger": 0, "maxInteger": 511}}
},
"vlan_mode": {
"type": {"key": {"type": "string", "enum": ["set", ["trunk", "access", "native-tagged", "native-untagged", "dot1q-tunnel"]]},
"min": 0, "max": 1}},
"tag": {
"type": {"key": {"type": "integer", "minInteger": 0, "maxInteger": 4095}, "min": 0, "max": 1}},
"trunks": {
"type": {"key": {"type": "integer", "minInteger": 0, "maxInteger": 4095}, "min": 0, "max": 4096}},
"priority_tagging": {
"type": {"key": {"type": "string", "enum": ["set", ["no", "nonzero", "always"]]}}}
},
"isRoot": false},
"MirrorSelect": {
"columns": {
"ports": {
"type": {"key": {"type": "uuid", "refTable": "Port", "refType": "strong"},
"min": 0,
"max": "unlimited"}
},
"vlans": {
"type": {"key": {"type": "integer", "minInteger": 0, "maxInteger": 4095},
"min": 0, "max": "unlimited"}
}
},
"isRoot": false},
"MirrorDst": {
"columns": {
"port": {
"type": {"key": {"type": "uuid", "refTable": "Port", "refType": "strong"}}
}
},
"isRoot": false},
"ForwardBPDUs": {
"columns": {"id": {"type": "boolean"}}
}
},
"version": "1.7.0"
}