forked from IETF-Hackathon/Yang-Catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemp.yang
47 lines (47 loc) · 1.16 KB
/
temp.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
module openconfig-catalog-types {
yang-version "1";
// namespace
namespace "http://openconfig.net/yang/catalog-types";
prefix "cat-types";
// import some basic types
// meta
organization "OpenConfig working group";
contact
"OpenConfig working group
www.openconfig.net";
description
"This module defines types and identities used by the OpenConfig
YANG module catalog model.";
revision "2015-10-18" {
description
"Initial revision";
reference "TBD";
}
// extension statements
// feature statements
// identity statements
identity implementation-status-type {
description
"Indications of the status of a module's implementation on a
device or server";
}
identity in-progress {
base implementation-status-type;
description
"Implementation is in progress";
}
// typedef statements
typedef yang-model-publisher
{
type enumeration {
enum "standards";
enum "commercial";
enum "forum";
}
}
// grouping statements
// data definition statements
// augment statements
// rpc statements
// notification statements
}