blob: 1497d565eedb276294287dc307d66d59ceb8e87a [file] [log] [blame]
Zsolt Haraszti7eeb2b32016-11-06 14:04:55 -08001syntax = "proto3";
2
3package voltha;
4
5// Convey a resource identifier
6message ID {
7 string id = 1;
8}
9
Zsolt Haraszti66862032016-11-28 14:28:39 -080010message LogLevel {
11
12 // Logging verbosity level
13 enum LogLevel {
14 DEBUG = 0;
15 INFO = 1;
16 WARNING = 2;
17 ERROR = 3;
18 CRITICAL = 4;
19 }
20}
21
22message AdminState {
23
24 // Administrative State
25 enum AdminState {
26
27 // The administrative state of the device is unknown
28 UNKNOWN = 0;
29
30 // The device is pre-provisioned into Voltha, but not contacted by it
31 PREPROVISIONED = 1;
32
33 // The device is enabled for activation and operation
34 ENABLED = 3;
35
36 // The device is disabled and shall not perform its intended forwarding
37 // functions other than being available for re-activation.
38 DISABLED = 2;
39 }
40}
41
42message OperStatus {
43
44 // Operational Status
45 enum OperStatus {
46
47 // The status of the device is unknown at this point
48 UNKNOWN = 0;
49
50 // The device has been discovered, but not yet activated
51 DISCOVERED = 1;
52
53 // The device is being activated (booted, rebooted, upgraded, etc.)
54 ACTIVATING = 2;
55
56 // Service impacting tests are being conducted
57 TESTING = 3;
58
59 // The device is up and active
60 ACTIVE = 4;
61
62 // The device has failed and cannot fulfill its intended role
63 FAILED = 5;
64 }
65}
66
67message ConnectStatus {
68
69 // Connectivity Status
70 enum ConnectStatus {
71
72 // The device connectivity status is unknown
73 UNKNOWN = 0;
74
75 // The device cannot be reached by Voltha
76 UNREACHABLE = 1;
77
78 // There is live communication between device and Voltha
79 REACHABLE = 2;
80 }
Zsolt Harasztidafefe12016-11-14 21:29:58 -080081}