-
Notifications
You must be signed in to change notification settings - Fork 2
/
data-nocom.yang
63 lines (42 loc) · 1.18 KB
/
data-nocom.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
57
58
59
60
61
62
63
module com-att-no-phyiffab {
namespace "http://com/att/no/phyiffab";
prefix com-att-no-phyiffab;
organization "AT&T, Inc.";
contact "AIC Network";
description "Physical Interface on Leaf ";
revision 2016-05-14 {
description "Initial Revision";
}
grouping physical-interface-grouping {
list interface-list {
key interface-name;
leaf interface-name {
type string;
description "Physical interface name";
}
leaf interface-description {
type string;
description "Physical interface description";
}
leaf bundle-id {
type uint32 {
range "1..65535";
}
description "bundle-id";
}
}
}
grouping physical-interface-config-response {
leaf response-code {
type string;
description "physical-interface configuration response code";
}
leaf response-message {
type string;
description "physical-interface configuration response";
}
}
container physical-interface {
uses physical-interface-grouping;
}
}