forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonic-bmp.yang
56 lines (38 loc) · 1.2 KB
/
sonic-bmp.yang
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
module sonic-bmp {
yang-version 1.1;
namespace "http://github.com/sonic-net/sonic-bmp";
prefix bmp;
import sonic-types {
prefix stypes;
}
organization
"SONiC";
contact
"SONiC";
description "BMP YANG Module for SONiC OS";
revision 2024-03-20 {
description "First Revision";
}
container sonic-bmp {
container BMP {
description "BMP TABLE control part of config_db.json";
container table {
leaf bgp_neighbor_table {
type stypes:boolean_type;
default "true";
description "Flag for enabling/disabling bgp_neighbor_table dump.";
}
leaf bgp_rib_in_table {
type stypes:boolean_type;
default "false";
description "Flag for enabling/disabling bgp_rib_in_table dump.";
}
leaf bgp_rib_out_table {
type stypes:boolean_type;
default "false";
description "Flag for enabling/disabling bgp_rib_out_table dump.";
}
}
}
}
}