blob: 9ceb2d2bb5900626f2b75a9dc08109466c8268c2 [file] [log] [blame]
Andy Bavier03df22b2017-08-30 14:46:02 -07001option name = "volt";
Matteo Scandolobfc31332018-03-29 09:06:52 -07002option app_label = "volt";
Andy Bavier03df22b2017-08-30 14:46:02 -07003
4message VOLTService (Service){
Matteo Scandolo43473812018-03-02 10:55:54 -08005 option verbose_name = "vOLT Service";
6 option kind = "vOLT";
Scott Baker2108e752019-01-17 07:00:32 -08007 option description = "OLT Access Service";
Scott Baker48a4f452019-05-31 17:58:21 -07008 option custom_python = "True";
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -08009
Scott Baker1e043272019-01-24 08:33:15 -080010 required string voltha_url = 1 [
11 help_text = "The Voltha API address. By default voltha.voltha.svc.cluster.local",
Scott Baker1e043272019-01-24 08:33:15 -080012 default = "voltha.voltha.svc.cluster.local",
Scott Bakera108b9c2019-04-09 14:13:44 -070013 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080014 required int32 voltha_port = 2 [
15 help_text = "The Voltha API port. By default 8882",
Scott Baker1e043272019-01-24 08:33:15 -080016 default = 8882];
17 required string voltha_user = 3 [
18 help_text = "The Voltha username. By default voltha",
Scott Baker1e043272019-01-24 08:33:15 -080019 default = "voltha",
Scott Bakera108b9c2019-04-09 14:13:44 -070020 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080021 required string voltha_pass = 4 [
22 help_text = "The Voltha password. By default admin",
Scott Baker1e043272019-01-24 08:33:15 -080023 default = "admin",
Scott Bakera108b9c2019-04-09 14:13:44 -070024 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080025 required string onos_voltha_url = 5 [
26 help_text = "The ONOS Voltha address. By default onos-voltha-ui.voltha.svc.cluster.local",
Scott Baker1e043272019-01-24 08:33:15 -080027 default = "onos-voltha-ui.voltha.svc.cluster.local",
Scott Bakera108b9c2019-04-09 14:13:44 -070028 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080029 required int32 onos_voltha_port = 6 [
30 help_text = "The Voltha API port. By default 8181",
Scott Baker1e043272019-01-24 08:33:15 -080031 default = 8181];
32 required string onos_voltha_user = 7 [
33 help_text = "The ONOS Voltha username. By default sdn",
Scott Bakera108b9c2019-04-09 14:13:44 -070034 max_length = 256,
Scott Baker1e043272019-01-24 08:33:15 -080035 default = "onos"];
36 required string onos_voltha_pass = 8 [
37 help_text = "The ONOS Voltha password. By default rocks",
Scott Bakera108b9c2019-04-09 14:13:44 -070038 max_length = 256,
Scott Baker1e043272019-01-24 08:33:15 -080039 default = "rocks"];
Andy Bavier03df22b2017-08-30 14:46:02 -070040}
41
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080042message OLTDevice (XOSBase){
43 option verbose_name = "OLT Device";
44 option description="Represents a physical OLT device";
Scott Baker48a4f452019-05-31 17:58:21 -070045 option custom_python = "True";
vigneshethiraj8b163672019-06-04 18:55:19 +053046 option sync_implemented = "True";
Andy Bavier03df22b2017-08-30 14:46:02 -070047
Scott Baker1e043272019-01-24 08:33:15 -080048 required manytoone volt_service->VOLTService:volt_devices = 1:1001 [
49 help_text = "VOLTService that owns this OLT",
50 db_index = True];
51 optional string name = 2 [
52 help_text = "Human-readable name of device",
Scott Bakera108b9c2019-04-09 14:13:44 -070053 max_length = 256,
Scott Baker1e043272019-01-24 08:33:15 -080054 unique = True];
55 required string device_type = 3 [
56 help_text = "Phyiscal Device Type",
Scott Baker1e043272019-01-24 08:33:15 -080057 default = "openolt",
Scott Bakera108b9c2019-04-09 14:13:44 -070058 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080059 optional string host = 4 [
60 help_text = "IP Address of physical OLT Device",
Scott Bakera108b9c2019-04-09 14:13:44 -070061 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080062 optional int32 port = 5 [
63 help_text = "Port Number of physical OLT Device",
Scott Baker1e043272019-01-24 08:33:15 -080064 unique_with = "host"];
65 optional string mac_address = 6 [
Scott Bakera108b9c2019-04-09 14:13:44 -070066 help_text = "MAC address of physical OLT Device",
67 max_length = 17];
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080068
Scott Baker1e043272019-01-24 08:33:15 -080069 optional string serial_number = 9 [
Scott Bakera108b9c2019-04-09 14:13:44 -070070 help_text = "Serial Number",
71 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080072 optional string device_id = 10 [
73 help_text = "Voltha Device ID",
Scott Bakera108b9c2019-04-09 14:13:44 -070074 feedback_state = True,
75 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080076 optional string admin_state = 11 [
77 help_text = "admin state, whether OLT should be enabled",
78 choices = "(('DISABLED', 'DISABLED'), ('ENABLED', 'ENABLED'))",
Scott Bakera108b9c2019-04-09 14:13:44 -070079 default = "ENABLED",
80 max_length = 32];
Scott Baker1e043272019-01-24 08:33:15 -080081 optional string oper_status = 12 [
82 help_text = "operational status, whether OLT is active",
Scott Bakera108b9c2019-04-09 14:13:44 -070083 feedback_state = True,
84 max_length = 256];
Scott Baker12687732019-03-19 15:40:57 -070085 optional string link_status = 21 [
86 help_text = "connectivity status, whether OLT has connectivity to agg switch",
87 choices = "(('up', 'up'), ('down', 'down'))",
Scott Bakera108b9c2019-04-09 14:13:44 -070088 feedback_state = True,
89 max_length = 32];
Scott Baker1e043272019-01-24 08:33:15 -080090 optional string of_id = 13 [
91 help_text = "Logical device openflow id",
Scott Bakera108b9c2019-04-09 14:13:44 -070092 feedback_state = True,
93 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -080094 optional string dp_id = 14 [
Scott Bakera108b9c2019-04-09 14:13:44 -070095 help_text = "Logical device datapath id",
96 max_length = 256];
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080097
Scott Baker1e043272019-01-24 08:33:15 -080098 required string uplink = 15 [
Scott Bakera108b9c2019-04-09 14:13:44 -070099 help_text = "uplink port, exposed via sadis",
100 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -0800101 required string driver = 16 [
102 help_text = "DEPRECATED",
Scott Bakera108b9c2019-04-09 14:13:44 -0700103 default = "voltha",
104 max_length = 32]; // Used to be sent to ONOS, now unused.
Matteo Scandolod3c768d2018-04-11 13:38:49 -0700105
Scott Baker1e043272019-01-24 08:33:15 -0800106 optional string switch_datapath_id = 17 [
Scott Bakera108b9c2019-04-09 14:13:44 -0700107 help_text = "Fabric switch to which the OLT is connected",
108 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -0800109 optional string switch_port = 18 [
Scott Bakera108b9c2019-04-09 14:13:44 -0700110 help_text = "Fabric port to which the OLT is connected",
111 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -0800112 optional string outer_tpid = 19 [
Scott Bakera108b9c2019-04-09 14:13:44 -0700113 help_text = "Outer VLAN id field EtherType",
114 max_length = 256];
Matteo Scandolo610c11d2018-08-31 07:33:43 -0700115
Scott Baker1e043272019-01-24 08:33:15 -0800116 optional string nas_id = 20 [
Scott Bakera108b9c2019-04-09 14:13:44 -0700117 help_text = "Authentication ID (propagated to the free-radius server via sadis)",
118 max_length = 256];
Andy Bavier03df22b2017-08-30 14:46:02 -0700119}
120
Matteo Scandolo6be6ee92018-05-24 15:07:51 -0700121message PortBase (XOSBase){
122 option gui_hidden = True;
Scott Baker1e043272019-01-24 08:33:15 -0800123 option description = "Base class for Port objects";
Matteo Scandolo6be6ee92018-05-24 15:07:51 -0700124
Scott Baker1e043272019-01-24 08:33:15 -0800125 required string name = 1 [
126 help_text = "Human-readable name of port",
Scott Bakera108b9c2019-04-09 14:13:44 -0700127 db_index = True,
128 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -0800129 required int32 port_no = 3 [
Scott Baker3f4816f2019-03-12 15:06:01 -0700130 help_text = "Port Number"];
Matteo Scandolo6be6ee92018-05-24 15:07:51 -0700131
Scott Baker1e043272019-01-24 08:33:15 -0800132 optional string admin_state = 4 [
133 help_text = "admin state, whether port should be enabled",
Scott Bakera108b9c2019-04-09 14:13:44 -0700134 // TODO: Should specify "choices"
135 feedback_state = True,
136 max_length = 32];
Scott Baker1e043272019-01-24 08:33:15 -0800137 optional string oper_status = 5 [
138 help_text = "operational status, whether port is active",
Scott Bakera108b9c2019-04-09 14:13:44 -0700139 // TODO: Should specify "choices"
140 feedback_state = True,
141 max_length = 32];
Matteo Scandolo6be6ee92018-05-24 15:07:51 -0700142}
143
144message PONPort (PortBase){
Matteo Scandolo80912942018-07-25 20:51:30 -0700145 option verbose_name = "PON Port";
Scott Baker1e043272019-01-24 08:33:15 -0800146 option description = "PON Port";
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800147
Scott Baker1e043272019-01-24 08:33:15 -0800148 required manytoone olt_device->OLTDevice:pon_ports = 1:1001 [
149 help_text = "OLTDevice that owns this PONPort",
150 db_index = True];
Matteo Scandolo6be6ee92018-05-24 15:07:51 -0700151}
152
153message NNIPort (PortBase) {
154 option verbose_name = "NNI Port";
Scott Baker1e043272019-01-24 08:33:15 -0800155 option description = "NNI Port";
156
157 required manytoone olt_device->OLTDevice:nni_ports = 1:1002 [
158 help_text = "OLTDevice that owns this NNIPort",
159 db_index = True];
Andy Bavier03df22b2017-08-30 14:46:02 -0700160}
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -0700161
162message ONUDevice (XOSBase){
163 option verbose_name = "ONU Device";
164 option description = "Represents a physical ONU device";
Scott Baker48a4f452019-05-31 17:58:21 -0700165 option custom_python = "True";
vigneshethiraj8b163672019-06-04 18:55:19 +0530166 option sync_implemented = "True";
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -0700167
Scott Baker1e043272019-01-24 08:33:15 -0800168 required manytoone pon_port->PONPort:onu_devices = 1:1001 [
169 help_text = "PONPort that connects this ONUDevice to an OLTDevice",
170 db_index = True];
171 required string serial_number = 2 [
172 help_text = "Serial number of ONU Device",
Scott Bakera108b9c2019-04-09 14:13:44 -0700173 max_length = 256,
Scott Baker1e043272019-01-24 08:33:15 -0800174 tosca_key=True,
175 unique = True];
176 required string vendor = 3 [
177 help_text = "Vendor of ONU Device",
Scott Bakera108b9c2019-04-09 14:13:44 -0700178 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -0800179 required string device_type = 4 [
180 help_text = "Device Type",
Scott Baker1e043272019-01-24 08:33:15 -0800181 default = "asfvolt16_olt",
Scott Bakera108b9c2019-04-09 14:13:44 -0700182 max_length = 256];
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -0700183
Scott Baker1e043272019-01-24 08:33:15 -0800184 optional string device_id = 5 [
185 help_text = "Voltha Device ID",
Scott Baker1e043272019-01-24 08:33:15 -0800186 feedback_state = True,
Scott Bakera108b9c2019-04-09 14:13:44 -0700187 max_length = 256];
Scott Baker1e043272019-01-24 08:33:15 -0800188 optional string admin_state = 6 [
189 help_text = "admin state, whether port should be enabled",
Andy Baviercd940192019-05-15 12:59:35 -0700190 choices = "(('DISABLED', 'DISABLED'), ('ENABLED', 'ENABLED'), ('ADMIN_DISABLED', 'ADMIN_DISABLED'))",
Scott Bakera108b9c2019-04-09 14:13:44 -0700191 default = "ENABLED",
192 max_length = 32];
Scott Baker1e043272019-01-24 08:33:15 -0800193 optional string oper_status = 7 [
194 help_text = "oper_status",
Scott Bakera108b9c2019-04-09 14:13:44 -0700195 // TODO: Should add "choices"
196 feedback_state = True,
197 max_length = 32];
Scott Baker1e043272019-01-24 08:33:15 -0800198 optional string connect_status = 8 [
199 help_text = "operational status, whether port is active",
Scott Bakera108b9c2019-04-09 14:13:44 -0700200 feedback_state = True,
201 max_length = 32];
Scott Baker1e043272019-01-24 08:33:15 -0800202 optional string reason = 9 [
203 help_text = "ONU device configuration state machine status message",
Scott Bakera108b9c2019-04-09 14:13:44 -0700204 feedback_state = True,
205 text = True];
Matteo Scandolo2360fd92018-05-29 17:27:51 -0700206}
207
Matteo Scandolo915c7b82019-05-09 16:26:12 -0700208message ANIPort (PortBase) {
Matteo Scandolo80912942018-07-25 20:51:30 -0700209 option verbose_name = "ANI Port";
Scott Baker2108e752019-01-17 07:00:32 -0800210 option description="Access Node Interface Port";
Matteo Scandolo915c7b82019-05-09 16:26:12 -0700211 required manytoone onu_device->ONUDevice:ani_ports = 1:1001 [
212 help_text = "ONUDevice that owns this ANIPort",
Scott Baker1e043272019-01-24 08:33:15 -0800213 db_index = True];
Matteo Scandolod8ed60e2018-06-18 17:00:57 -0700214}
215
216message UNIPort (PortBase) {
217 option verbose_name = "UNI Port";
Scott Baker2108e752019-01-17 07:00:32 -0800218 option description = "User Network Interface Port";
Scott Baker1e043272019-01-24 08:33:15 -0800219 required manytoone onu_device->ONUDevice:uni_ports = 1:1002 [
220 help_text = "ONUDevice that owns this UNIPort",
221 db_index = True];
Matteo Scandolod8ed60e2018-06-18 17:00:57 -0700222}
223
Matteo Scandolo2360fd92018-05-29 17:27:51 -0700224message VOLTServiceInstance (ServiceInstance){
225 option kind = "vOLT";
226 option owner_class_name = "VOLTService";
227 option verbose_name = "vOLT Service Instance";
Scott Baker2108e752019-01-17 07:00:32 -0800228 option description = "Represents subscriber tenancy in the VOLT Service";
vigneshethiraj8b163672019-06-04 18:55:19 +0530229 option policy_implemented = "True";
Matteo Scandolo2360fd92018-05-29 17:27:51 -0700230
Scott Baker1e043272019-01-24 08:33:15 -0800231 optional string description = 1 [
232 help_text = "Human-readable description",
Scott Bakera108b9c2019-04-09 14:13:44 -0700233 text = True];
Scott Baker1e043272019-01-24 08:33:15 -0800234 optional manytoone onu_device->ONUDevice:volt_service_instances = 2:1003 [
235 help_text = "ONUDevice that belongs to this Subscriber chain",
236 db_index = True];
Scott Baker6ff7a4a2018-10-01 12:19:49 -0700237}
Hardik Windlassda0d6c42019-05-13 16:00:01 +0000238
239message TechnologyProfile (XOSBase) {
240 option verbose_name = "Technology Profile";
241 option description = "The Technology Profile that is utilized by VOLTHA";
Scott Baker48a4f452019-05-31 17:58:21 -0700242 option custom_python = "True";
Hardik Windlassda0d6c42019-05-13 16:00:01 +0000243
244 required string technology = 1 [
245 help_text = "The technology being utilized by the adaptor",
246 db_index = True,
Matteo Scandolo7bba07b2019-06-11 09:34:04 -0700247 tosca_key = True,
Hardik Windlassda0d6c42019-05-13 16:00:01 +0000248 max_length = 16];
249 required int32 profile_id = 2 [
250 help_text = "The numeric id of the profile",
251 db_index = True,
Matteo Scandolo7bba07b2019-06-11 09:34:04 -0700252 tosca_key = True,
Hardik Windlassda0d6c42019-05-13 16:00:01 +0000253 min_value = 64,
254 max_value = 255];
255 required string profile_value = 3 [
256 help_text = "The technology profile value in JSON format",
257 max_length = 4096];
258}