blob: fea6ebcb03c09e82e55d377a57021bf9ba5a910a [file] [log] [blame]
Zack Williams52209662019-02-07 10:15:31 -07001// Copyright (c) 2018 Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at:
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
William Kurkian7c151592019-03-27 09:36:15 -040016
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030017option go_package = "github.com/opencord/voltha-protos/v3/go/openolt";
18option java_package = "org.opencord.voltha.openolt";
19option java_outer_classname = "VolthaOpenOLT";
William Kurkian7c151592019-03-27 09:36:15 -040020
Zack Williams52209662019-02-07 10:15:31 -070021package openolt;
22import "google/api/annotations.proto";
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -040023import public "voltha_protos/tech_profile.proto";
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -080024import public "voltha_protos/common.proto";
Zack Williams52209662019-02-07 10:15:31 -070025
26service Openolt {
27
28 rpc DisableOlt(Empty) returns (Empty) {
29 option (google.api.http) = {
30 post: "/v1/Disable"
31 body: "*"
32 };
33 }
34
35 rpc ReenableOlt(Empty) returns (Empty) {
36 option (google.api.http) = {
37 post: "/v1/Reenable"
38 body: "*"
39 };
40 }
41
42 rpc ActivateOnu(Onu) returns (Empty) {
43 option (google.api.http) = {
44 post: "/v1/EnableOnu"
45 body: "*"
46 };
47 }
48
49 rpc DeactivateOnu(Onu) returns (Empty) {
50 option (google.api.http) = {
51 post: "/v1/DisableOnu"
52 body: "*"
53 };
54 }
55
56 rpc DeleteOnu(Onu) returns (Empty) {
57 option (google.api.http) = {
58 post: "/v1/DeleteOnu"
59 body: "*"
60 };
61 }
62
63 rpc OmciMsgOut(OmciMsg) returns (Empty) {
64 option (google.api.http) = {
65 post: "/v1/OmciMsgOut"
66 body: "*"
67 };
68 }
69
70 rpc OnuPacketOut(OnuPacket) returns (Empty) {
71 option (google.api.http) = {
72 post: "/v1/OnuPacketOut"
73 body: "*"
74 };
75 }
76
77 rpc UplinkPacketOut(UplinkPacket) returns (Empty) {
78 option (google.api.http) = {
79 post: "/v1/UplinkPacketOut"
80 body: "*"
81 };
82 }
83
84 rpc FlowAdd(Flow) returns (Empty) {
85 option (google.api.http) = {
86 post: "/v1/FlowAdd"
87 body: "*"
88 };
89 }
90
91 rpc FlowRemove(Flow) returns (Empty) {
92 option (google.api.http) = {
93 post: "/v1/FlowRemove"
94 body: "*"
95 };
96 }
97
98 rpc HeartbeatCheck(Empty) returns (Heartbeat) {
99 option (google.api.http) = {
100 post: "/v1/HeartbeatCheck"
101 body: "*"
102 };
103 }
104
105 rpc EnablePonIf(Interface) returns (Empty) {
106 option (google.api.http) = {
107 post: "/v1/EnablePonIf"
108 body: "*"
109 };
110 }
111
112 rpc DisablePonIf(Interface) returns (Empty) {
113 option (google.api.http) = {
114 post: "/v1/DisablePonIf"
115 body: "*"
116 };
117 }
118
119 rpc GetDeviceInfo(Empty) returns (DeviceInfo) {
120 option (google.api.http) = {
121 post: "/v1/GetDeviceInfo"
122 body: "*"
123 };
124 }
125
126 rpc Reboot(Empty) returns (Empty) {
127 option (google.api.http) = {
128 post: "/v1/Reboot"
129 body: "*"
130 };
131 }
132
133 rpc CollectStatistics(Empty) returns (Empty) {
134 option (google.api.http) = {
135 post: "/v1/CollectStatistics"
136 body: "*"
137 };
138 }
139
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400140 rpc CreateTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Zack Williams52209662019-02-07 10:15:31 -0700141 option (google.api.http) = {
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400142 post: "/v1/CreateTrafficSchedulers"
Zack Williams52209662019-02-07 10:15:31 -0700143 body: "*"
144 };
145 }
146
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400147 rpc RemoveTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Zack Williams52209662019-02-07 10:15:31 -0700148 option (google.api.http) = {
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400149 post: "/v1/RemoveTrafficSchedulers"
150 body: "*"
151 };
152 }
153
154 rpc CreateTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
155 option (google.api.http) = {
156 post: "/v1/CreateTrafficQueues"
157 body: "*"
158 };
159 }
160
161 rpc RemoveTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
162 option (google.api.http) = {
163 post: "/v1/RemoveTrafficQueues"
Zack Williams52209662019-02-07 10:15:31 -0700164 body: "*"
165 };
166 }
167
168 rpc EnableIndication(Empty) returns (stream Indication) {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000169
170 rpc PerformGroupOperation(Group) returns (Empty) {
171 option (google.api.http) = {
172 post: "/v1/PerformGroupOperation"
173 body: "*"
174 };
175 }
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -0800176
Burak Gurdagaadbcc02020-05-18 14:22:38 +0000177 rpc DeleteGroup(Group) returns (Empty) {
178 option (google.api.http) = {
179 post: "/v1/DeleteGroup"
180 body: "*"
181 };
182 }
183
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -0800184 rpc GetExtValue(ValueParam) returns (common.ReturnValues) {
185 option (google.api.http) = {
186 post: "/v1/GetExtValue"
187 body: "*"
188 };
189 }
190
Jason Huang55ee29d2020-03-11 23:43:29 +0800191 rpc OnuItuPonAlarmSet(OnuItuPonAlarm) returns (Empty) {
192 option (google.api.http) = {
193 post: "/v1/OnuItuPonAlarmSet"
194 body: "*"
195 };
196 }
Zack Williams52209662019-02-07 10:15:31 -0700197}
198
199message Indication {
200 oneof data {
201 OltIndication olt_ind = 1;
202 IntfIndication intf_ind = 2;
203 IntfOperIndication intf_oper_ind = 3;
204 OnuDiscIndication onu_disc_ind = 4;
205 OnuIndication onu_ind = 5;
206 OmciIndication omci_ind = 6;
207 PacketIndication pkt_ind = 7;
208 PortStatistics port_stats = 8;
209 FlowStatistics flow_stats = 9;
210 AlarmIndication alarm_ind= 10;
211 }
212}
213
214message AlarmIndication {
215 oneof data {
216 LosIndication los_ind = 1;
217 DyingGaspIndication dying_gasp_ind = 2;
218 OnuAlarmIndication onu_alarm_ind = 3;
219 OnuStartupFailureIndication onu_startup_fail_ind = 4;
220 OnuSignalDegradeIndication onu_signal_degrade_ind = 5;
221 OnuDriftOfWindowIndication onu_drift_of_window_ind = 6;
222 OnuLossOfOmciChannelIndication onu_loss_omci_ind = 7;
223 OnuSignalsFailureIndication onu_signals_fail_ind = 8;
224 OnuTransmissionInterferenceWarning onu_tiwi_ind = 9;
225 OnuActivationFailureIndication onu_activation_fail_ind = 10;
226 OnuProcessingErrorIndication onu_processing_error_ind = 11;
Naga Manjunath0a734252019-11-21 19:00:23 +0530227 OnuLossOfKeySyncFailureIndication onu_loss_of_sync_fail_ind = 12;
228 OnuItuPonStatsIndication onu_itu_pon_stats_ind = 13;
Devmalya Paulea6eb472020-02-04 20:41:01 -0500229 OnuDeactivationFailureIndication onu_deactivation_failure_ind = 14;
Devmalya Paulb0c12472020-02-18 20:08:53 -0500230 OnuRemoteDefectIndication onu_remote_defect_ind = 15;
Devmalya Paul82957962020-03-01 18:49:37 -0500231 OnuLossOfGEMChannelDelineationIndication onu_loss_gem_delineation_ind = 16;
232 OnuPhysicalEquipmentErrorIndication onu_physical_equipment_error_ind = 17;
233 OnuLossOfAcknowledgementIndication onu_loss_of_ack_ind = 18;
Devmalya Paul342bf9d2020-03-19 02:42:56 -0400234 OnuDifferentialReachExceededIndication onu_diff_reach_exceeded_ind = 19;
Zack Williams52209662019-02-07 10:15:31 -0700235 }
236}
237
238message OltIndication {
239 string oper_state = 1; // up, down
240}
241
242message IntfIndication {
243 fixed32 intf_id = 1;
244 string oper_state = 2; // up, down
245}
246
247message OnuDiscIndication {
248 fixed32 intf_id = 1;
249 SerialNumber serial_number = 2;
250}
251
252message OnuIndication {
253 fixed32 intf_id = 1;
254 fixed32 onu_id = 2;
255 string oper_state = 3; // up, down
256 string admin_state = 5; // up, down
257 SerialNumber serial_number = 4;
258}
259
260message IntfOperIndication {
261 string type = 1; // nni, pon
262 fixed32 intf_id = 2;
263 string oper_state = 3; // up, down
264}
265
266message OmciIndication {
267 fixed32 intf_id = 1;
268 fixed32 onu_id = 2;
269 bytes pkt = 3;
270}
271
272message PacketIndication {
273 string intf_type = 5; // nni, pon, unknown
274 fixed32 intf_id = 1;
275 fixed32 gemport_id = 2;
276 fixed32 flow_id = 3;
277 fixed32 port_no = 6;
278 fixed64 cookie = 7;
279 bytes pkt = 4;
280}
281
282message Interface {
283 fixed32 intf_id = 1;
284}
285
286message Heartbeat {
287 fixed32 heartbeat_signature = 1;
288}
289
290message Onu {
291 fixed32 intf_id = 1;
292 fixed32 onu_id = 2;
293 SerialNumber serial_number = 3;
294 fixed32 pir = 4; // peak information rate assigned to onu
295}
296
297message OmciMsg {
298 fixed32 intf_id = 1;
299 fixed32 onu_id = 2;
300 bytes pkt = 3;
301}
302
303message OnuPacket {
304 fixed32 intf_id = 1;
305 fixed32 onu_id = 2;
306 fixed32 port_no = 4;
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400307 fixed32 gemport_id = 5;
Zack Williams52209662019-02-07 10:15:31 -0700308 bytes pkt = 3;
309}
310
311message UplinkPacket {
312 fixed32 intf_id = 1;
313 bytes pkt = 2;
314}
315
316message DeviceInfo {
317 string vendor = 1;
318 string model = 2;
319 string hardware_version = 3;
320 string firmware_version = 4;
321 string device_id = 16;
322 string device_serial_number = 17;
323
324 // Total number of pon intf ports on the device
325 fixed32 pon_ports = 12;
326
327 // If using global per-device technology profile. To be deprecated
328 string technology = 5;
329 fixed32 onu_id_start = 6;
330 fixed32 onu_id_end = 7;
331 fixed32 alloc_id_start = 8;
332 fixed32 alloc_id_end = 9;
333 fixed32 gemport_id_start = 10;
334 fixed32 gemport_id_end = 11;
335 fixed32 flow_id_start = 13;
336 fixed32 flow_id_end = 14;
337
338 message DeviceResourceRanges {
339
340 // List of 0 or more intf_ids that use the same technology and pools.
341 // If 0 intf_ids supplied, it implies ALL interfaces
342 repeated fixed32 intf_ids = 1;
343
344 // Technology profile for this pool
345 string technology = 2;
346
347 message Pool {
348 enum PoolType {
349 ONU_ID = 0;
350 ALLOC_ID = 1;
351 GEMPORT_ID = 2;
352 FLOW_ID = 3;
353 }
354
355 enum SharingType {
356 DEDICATED_PER_INTF = 0;
357 SHARED_BY_ALL_INTF_ALL_TECH = 1; // Shared across all interfaces in all technologies in all ranges
358 SHARED_BY_ALL_INTF_SAME_TECH = 2; // Shared across all interfaces of the same technology used in this range
359 }
360
361 PoolType type = 1;
362 SharingType sharing = 2;
363 fixed32 start = 3; // lower bound on IDs allocated from this pool
364 fixed32 end = 4; // upper bound on IDs allocated from this pool
365 }
366 repeated Pool pools = 3;
367 }
368 repeated DeviceResourceRanges ranges = 15;
369}
370
371message Classifier {
372 fixed32 o_tpid = 1;
373 fixed32 o_vid = 2;
374 fixed32 i_tpid = 3;
375 fixed32 i_vid = 4;
376 fixed32 o_pbits = 5;
377 fixed32 i_pbits = 6;
378 fixed32 eth_type = 7;
379 bytes dst_mac = 8;
380 bytes src_mac = 9;
381 fixed32 ip_proto = 10;
382 fixed32 dst_ip = 11;
383 fixed32 src_ip = 12;
384 fixed32 src_port = 13;
385 fixed32 dst_port = 14;
386 string pkt_tag_type = 15; // untagged, single_tag, double_tag
387}
388
389message ActionCmd {
390 bool add_outer_tag = 1;
391 bool remove_outer_tag = 2;
392 bool trap_to_host = 3;
Burak Gurdag402dd952019-12-10 20:31:11 +0000393 bool remark_outer_pbits = 4;
394 bool remark_inner_pbits = 5;
395 bool add_inner_tag = 6;
396 bool remove_inner_tag = 7;
397 bool translate_inner_tag = 8;
398 bool translate_outer_tag = 9;
Zack Williams52209662019-02-07 10:15:31 -0700399}
400
401message Action {
402 ActionCmd cmd = 1;
403 fixed32 o_vid = 2;
404 fixed32 o_pbits = 3;
405 fixed32 o_tpid = 4;
406 fixed32 i_vid = 5;
407 fixed32 i_pbits = 6;
408 fixed32 i_tpid = 7;
409}
410
411message Flow {
412 sfixed32 access_intf_id = 1;
413 sfixed32 onu_id = 2;
414 sfixed32 uni_id = 11;
415 fixed32 flow_id = 3;
416 string flow_type = 4; // upstream, downstream, broadcast, multicast
417 sfixed32 alloc_id = 10;
418 sfixed32 network_intf_id = 5;
419 sfixed32 gemport_id = 6;
420 Classifier classifier = 7;
421 Action action = 8;
422 sfixed32 priority = 9;
423 fixed64 cookie = 12; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
424 fixed32 port_no = 13; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
Burak Gurdag402dd952019-12-10 20:31:11 +0000425 fixed32 group_id = 14;
Burak Gurdagce064352020-04-20 20:11:18 +0000426 fixed32 tech_profile_id = 15;
Zack Williams52209662019-02-07 10:15:31 -0700427}
428
Jason Huang55ee29d2020-03-11 23:43:29 +0800429message OnuItuPonAlarm {
Girish Gowdra5192ea82020-05-06 20:49:11 -0700430 enum AlarmID {
431 RDI_ERRORS = 0; // RDI errors
432 }
433
434 enum AlarmReportingCondition {
435 RATE_THRESHOLD = 0; // The alarm is triggered if the stats delta value between samples crosses the configured threshold boundary
436 RATE_RANGE = 1; // The alarm is triggered if the stats delta value between samples deviates from the configured range
437 VALUE_THRESHOLD = 2; // The alarm is raised if the stats sample value becomes greater than this level. The alarm is cleared when the host read the stats
438 }
439
440 message SoakTime {
441 fixed32 active_soak_time = 1;
442 fixed32 clear_soak_time = 2;
443 }
444
445 message RateThresholdConfig {
446 fixed64 rate_threshold_rising = 1;
447 fixed64 rate_threshold_falling = 2;
448 SoakTime soak_time = 3;
449 }
450
451 message RateRangeConfig {
452 fixed64 rate_range_lower = 1;
453 fixed64 rate_range_upper = 2;
454 SoakTime soak_time = 3;
455 }
456
457 message ValueThresholdConfig {
458 fixed64 threshold_limit = 1;
459 SoakTime soak_time = 2;
460 }
461
Jason Huang55ee29d2020-03-11 23:43:29 +0800462 fixed32 pon_ni = 1;
463 fixed32 onu_id = 2;
Girish Gowdra5192ea82020-05-06 20:49:11 -0700464 AlarmID alarm_id = 3;
465 AlarmReportingCondition alarm_reporting_condition = 4;
466 oneof config {
467 RateThresholdConfig rate_threshold_config = 5;
468 RateRangeConfig rate_range_config = 6;
469 ValueThresholdConfig value_threshold_config = 7;
470 }
Jason Huang55ee29d2020-03-11 23:43:29 +0800471}
472
Zack Williams52209662019-02-07 10:15:31 -0700473message SerialNumber {
474 bytes vendor_id = 1;
475 bytes vendor_specific = 2;
476}
477
478message PortStatistics {
479 fixed32 intf_id = 1;
480 fixed64 rx_bytes = 2;
481 fixed64 rx_packets = 3;
482 fixed64 rx_ucast_packets = 4;
483 fixed64 rx_mcast_packets = 5;
484 fixed64 rx_bcast_packets = 6;
485 fixed64 rx_error_packets = 7;
486 fixed64 tx_bytes = 8;
487 fixed64 tx_packets = 9;
488 fixed64 tx_ucast_packets = 10;
489 fixed64 tx_mcast_packets = 11;
490 fixed64 tx_bcast_packets = 12;
491 fixed64 tx_error_packets = 13;
492 fixed64 rx_crc_errors = 14;
493 fixed64 bip_errors = 15;
494 fixed32 timestamp = 16;
495}
496
497message FlowStatistics {
498 fixed32 flow_id = 1;
499 fixed64 rx_bytes = 2;
500 fixed64 rx_packets = 3;
501 fixed64 tx_bytes = 8;
502 fixed64 tx_packets = 9;
503 fixed32 timestamp = 16;
504}
505
506message LosIndication {
507 fixed32 intf_id = 1;
508 string status = 2;
509}
510
511message DyingGaspIndication {
512 fixed32 intf_id = 1;
513 fixed32 onu_id = 2;
514 string status = 3;
515}
516
517message OnuAlarmIndication {
518 fixed32 intf_id = 1;
519 fixed32 onu_id = 2;
520 string los_status = 3;
521 string lob_status = 4;
522 string lopc_miss_status = 5;
523 string lopc_mic_error_status = 6;
Naga Manjunath0a734252019-11-21 19:00:23 +0530524 string lofi_status = 7;
525 string loami_status = 8;
Zack Williams52209662019-02-07 10:15:31 -0700526}
527
528message OnuStartupFailureIndication {
529 fixed32 intf_id = 1;
530 fixed32 onu_id = 2;
531 string status = 3;
532}
533
534message OnuSignalDegradeIndication {
535 fixed32 intf_id = 1;
536 fixed32 onu_id = 2;
537 string status = 3;
538 fixed32 inverse_bit_error_rate = 4;
539}
540
541message OnuDriftOfWindowIndication {
542 fixed32 intf_id = 1;
543 fixed32 onu_id = 2;
544 string status = 3;
545 fixed32 drift = 4;
546 fixed32 new_eqd = 5;
547}
548
549message OnuLossOfOmciChannelIndication {
550 fixed32 intf_id = 1;
551 fixed32 onu_id = 2;
552 string status = 3;
553}
554
555message OnuSignalsFailureIndication {
556 fixed32 intf_id = 1;
557 fixed32 onu_id = 2;
558 string status = 3;
559 fixed32 inverse_bit_error_rate = 4;
560}
561
562message OnuTransmissionInterferenceWarning {
563 fixed32 intf_id = 1;
564 fixed32 onu_id = 2;
565 string status = 3;
566 fixed32 drift = 4;
567}
568
569message OnuActivationFailureIndication {
570 fixed32 intf_id = 1;
571 fixed32 onu_id = 2;
Naga Manjunath0a734252019-11-21 19:00:23 +0530572 fixed32 fail_reason = 3;
573}
574
575message OnuLossOfKeySyncFailureIndication {
576 fixed32 intf_id = 1;
577 fixed32 onu_id = 2;
578 string status = 3;
579}
580
Girish Gowdra5192ea82020-05-06 20:49:11 -0700581message RdiErrorIndication {
582 fixed64 rdi_error_count = 1; // RDI Error count
583 string status = 2; // on/off based on configured reporting condition
584}
585
Naga Manjunath0a734252019-11-21 19:00:23 +0530586message OnuItuPonStatsIndication{
587 fixed32 intf_id = 1;
588 fixed32 onu_id = 2;
Girish Gowdra5192ea82020-05-06 20:49:11 -0700589 oneof stats {
590 RdiErrorIndication rdi_error_ind = 3;
591 // add more here
592 }
Zack Williams52209662019-02-07 10:15:31 -0700593}
594
595message OnuProcessingErrorIndication {
596 fixed32 intf_id = 1;
597 fixed32 onu_id = 2;
598}
599
Devmalya Paulea6eb472020-02-04 20:41:01 -0500600message OnuDeactivationFailureIndication {
601 fixed32 intf_id = 1;
602 fixed32 onu_id = 2;
Girish Gowdra5192ea82020-05-06 20:49:11 -0700603 string status = 3;
Devmalya Paulea6eb472020-02-04 20:41:01 -0500604}
605
Jason Huang55ee29d2020-03-11 23:43:29 +0800606message OnuRemoteDefectIndication {
Devmalya Paulb0c12472020-02-18 20:08:53 -0500607 fixed32 intf_id = 1;
608 fixed32 onu_id = 2;
Jason Huang55ee29d2020-03-11 23:43:29 +0800609 fixed64 rdi_errors = 3;
Devmalya Paulb0c12472020-02-18 20:08:53 -0500610}
611
Devmalya Paul82957962020-03-01 18:49:37 -0500612message OnuLossOfGEMChannelDelineationIndication {
613 fixed32 intf_id = 1;
614 fixed32 onu_id = 2;
615 string status = 3;
616 fixed32 delineation_errors = 4;
617}
618
619message OnuPhysicalEquipmentErrorIndication {
620 fixed32 intf_id = 1;
621 fixed32 onu_id = 2;
622 string status = 3;
623}
624
625message OnuLossOfAcknowledgementIndication {
626 fixed32 intf_id = 1;
627 fixed32 onu_id = 2;
628 string status = 3;
629}
630
Devmalya Paul342bf9d2020-03-19 02:42:56 -0400631message OnuDifferentialReachExceededIndication {
632 fixed32 intf_id = 1;
633 fixed32 onu_id = 2;
634 string status = 3;
635 fixed32 distance = 4;
636}
637
Burak Gurdag402dd952019-12-10 20:31:11 +0000638message GroupMember {
639 enum InterfaceType {
640 PON = 0;
641 EPON_1G_PATH = 1;
642 EPON_10G_PATH = 2;
643 }
644 uint32 interface_id = 1;
645 InterfaceType interface_type = 2;
646 uint32 gem_port_id = 3;
647 uint32 priority = 4; // Priority (and also the ID) of the default fixed queue for the multicast traffic.
648 // This queue is attached to the default PON port scheduler.
649}
650
651message Group {
652 enum GroupMembersCommand {
653 ADD_MEMBERS = 0;
654 REMOVE_MEMBERS = 1;
655 SET_MEMBERS = 2;
656 }
657
658 uint32 group_id = 1;
659 GroupMembersCommand command = 2;
660 repeated GroupMember members = 3;
661 Action action = 4;
662}
663
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -0800664message ValueParam {
665 Onu onu = 1;
666 common.ValueType.Type value = 2;
667}
Burak Gurdag402dd952019-12-10 20:31:11 +0000668
Zack Williams52209662019-02-07 10:15:31 -0700669message Empty {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000670