blob: c4e91d3609554386a49f7b83c9a9b4c260dd3115 [file] [log] [blame]
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/extensions.proto
3
4package extension
5
6import (
7 context "context"
8 fmt "fmt"
9 proto "github.com/golang/protobuf/proto"
10 empty "github.com/golang/protobuf/ptypes/empty"
11 config "github.com/opencord/voltha-protos/v5/go/ext/config"
12 grpc "google.golang.org/grpc"
13 codes "google.golang.org/grpc/codes"
14 status "google.golang.org/grpc/status"
15 math "math"
16)
17
18// Reference imports to suppress errors if they are not otherwise used.
19var _ = proto.Marshal
20var _ = fmt.Errorf
21var _ = math.Inf
22
23// This is a compile-time assertion to ensure that this generated file
24// is compatible with the proto package it is being compiled against.
25// A compilation error at this line likely means your copy of the
26// proto package needs to be updated.
27const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
28
khenaidoo080ce882021-10-19 17:35:08 -040029type ValueType_Type int32
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000030
khenaidoo080ce882021-10-19 17:35:08 -040031const (
32 ValueType_EMPTY ValueType_Type = 0
33 ValueType_DISTANCE ValueType_Type = 1
34)
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000035
khenaidoo080ce882021-10-19 17:35:08 -040036var ValueType_Type_name = map[int32]string{
37 0: "EMPTY",
38 1: "DISTANCE",
39}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000040
khenaidoo080ce882021-10-19 17:35:08 -040041var ValueType_Type_value = map[string]int32{
42 "EMPTY": 0,
43 "DISTANCE": 1,
44}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000045
khenaidoo080ce882021-10-19 17:35:08 -040046func (x ValueType_Type) String() string {
47 return proto.EnumName(ValueType_Type_name, int32(x))
48}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000049
khenaidoo080ce882021-10-19 17:35:08 -040050func (ValueType_Type) EnumDescriptor() ([]byte, []int) {
51 return fileDescriptor_7ecf6e9799a9202d, []int{1, 0}
52}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000053
54type GetOnuUniInfoResponse_ConfigurationInd int32
55
56const (
57 GetOnuUniInfoResponse_UNKOWN GetOnuUniInfoResponse_ConfigurationInd = 0
58 GetOnuUniInfoResponse_TEN_BASE_T_FDX GetOnuUniInfoResponse_ConfigurationInd = 1
59 GetOnuUniInfoResponse_HUNDRED_BASE_T_FDX GetOnuUniInfoResponse_ConfigurationInd = 2
60 GetOnuUniInfoResponse_GIGABIT_ETHERNET_FDX GetOnuUniInfoResponse_ConfigurationInd = 3
61 GetOnuUniInfoResponse_TEN_G_ETHERNET_FDX GetOnuUniInfoResponse_ConfigurationInd = 4
62 GetOnuUniInfoResponse_TEN_BASE_T_HDX GetOnuUniInfoResponse_ConfigurationInd = 5
63 GetOnuUniInfoResponse_HUNDRED_BASE_T_HDX GetOnuUniInfoResponse_ConfigurationInd = 6
64 GetOnuUniInfoResponse_GIGABIT_ETHERNET_HDX GetOnuUniInfoResponse_ConfigurationInd = 7
65)
66
67var GetOnuUniInfoResponse_ConfigurationInd_name = map[int32]string{
68 0: "UNKOWN",
69 1: "TEN_BASE_T_FDX",
70 2: "HUNDRED_BASE_T_FDX",
71 3: "GIGABIT_ETHERNET_FDX",
72 4: "TEN_G_ETHERNET_FDX",
73 5: "TEN_BASE_T_HDX",
74 6: "HUNDRED_BASE_T_HDX",
75 7: "GIGABIT_ETHERNET_HDX",
76}
77
78var GetOnuUniInfoResponse_ConfigurationInd_value = map[string]int32{
79 "UNKOWN": 0,
80 "TEN_BASE_T_FDX": 1,
81 "HUNDRED_BASE_T_FDX": 2,
82 "GIGABIT_ETHERNET_FDX": 3,
83 "TEN_G_ETHERNET_FDX": 4,
84 "TEN_BASE_T_HDX": 5,
85 "HUNDRED_BASE_T_HDX": 6,
86 "GIGABIT_ETHERNET_HDX": 7,
87}
88
89func (x GetOnuUniInfoResponse_ConfigurationInd) String() string {
90 return proto.EnumName(GetOnuUniInfoResponse_ConfigurationInd_name, int32(x))
91}
92
93func (GetOnuUniInfoResponse_ConfigurationInd) EnumDescriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -040094 return fileDescriptor_7ecf6e9799a9202d, []int{7, 0}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +000095}
96
97type GetOnuUniInfoResponse_AdministrativeState int32
98
99const (
100 GetOnuUniInfoResponse_ADMSTATE_UNDEFINED GetOnuUniInfoResponse_AdministrativeState = 0
101 GetOnuUniInfoResponse_LOCKED GetOnuUniInfoResponse_AdministrativeState = 1
102 GetOnuUniInfoResponse_UNLOCKED GetOnuUniInfoResponse_AdministrativeState = 2
103)
104
105var GetOnuUniInfoResponse_AdministrativeState_name = map[int32]string{
106 0: "ADMSTATE_UNDEFINED",
107 1: "LOCKED",
108 2: "UNLOCKED",
109}
110
111var GetOnuUniInfoResponse_AdministrativeState_value = map[string]int32{
112 "ADMSTATE_UNDEFINED": 0,
113 "LOCKED": 1,
114 "UNLOCKED": 2,
115}
116
117func (x GetOnuUniInfoResponse_AdministrativeState) String() string {
118 return proto.EnumName(GetOnuUniInfoResponse_AdministrativeState_name, int32(x))
119}
120
121func (GetOnuUniInfoResponse_AdministrativeState) EnumDescriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400122 return fileDescriptor_7ecf6e9799a9202d, []int{7, 1}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000123}
124
125type GetOnuUniInfoResponse_OperationalState int32
126
127const (
128 GetOnuUniInfoResponse_OPERSTATE_UNDEFINED GetOnuUniInfoResponse_OperationalState = 0
129 GetOnuUniInfoResponse_ENABLED GetOnuUniInfoResponse_OperationalState = 1
130 GetOnuUniInfoResponse_DISABLED GetOnuUniInfoResponse_OperationalState = 2
131)
132
133var GetOnuUniInfoResponse_OperationalState_name = map[int32]string{
134 0: "OPERSTATE_UNDEFINED",
135 1: "ENABLED",
136 2: "DISABLED",
137}
138
139var GetOnuUniInfoResponse_OperationalState_value = map[string]int32{
140 "OPERSTATE_UNDEFINED": 0,
141 "ENABLED": 1,
142 "DISABLED": 2,
143}
144
145func (x GetOnuUniInfoResponse_OperationalState) String() string {
146 return proto.EnumName(GetOnuUniInfoResponse_OperationalState_name, int32(x))
147}
148
149func (GetOnuUniInfoResponse_OperationalState) EnumDescriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400150 return fileDescriptor_7ecf6e9799a9202d, []int{7, 2}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000151}
152
153type GetOltPortCounters_PortType int32
154
155const (
156 GetOltPortCounters_Port_UNKNOWN GetOltPortCounters_PortType = 0
157 GetOltPortCounters_Port_ETHERNET_NNI GetOltPortCounters_PortType = 1
158 GetOltPortCounters_Port_PON_OLT GetOltPortCounters_PortType = 2
159)
160
161var GetOltPortCounters_PortType_name = map[int32]string{
162 0: "Port_UNKNOWN",
163 1: "Port_ETHERNET_NNI",
164 2: "Port_PON_OLT",
165}
166
167var GetOltPortCounters_PortType_value = map[string]int32{
168 "Port_UNKNOWN": 0,
169 "Port_ETHERNET_NNI": 1,
170 "Port_PON_OLT": 2,
171}
172
173func (x GetOltPortCounters_PortType) String() string {
174 return proto.EnumName(GetOltPortCounters_PortType_name, int32(x))
175}
176
177func (GetOltPortCounters_PortType) EnumDescriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400178 return fileDescriptor_7ecf6e9799a9202d, []int{8, 0}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000179}
180
181type GetOnuEthernetBridgePortHistory_Direction int32
182
183const (
184 GetOnuEthernetBridgePortHistory_UNDEFINED GetOnuEthernetBridgePortHistory_Direction = 0
185 GetOnuEthernetBridgePortHistory_UPSTREAM GetOnuEthernetBridgePortHistory_Direction = 1
186 GetOnuEthernetBridgePortHistory_DOWNSTREAM GetOnuEthernetBridgePortHistory_Direction = 2
187)
188
189var GetOnuEthernetBridgePortHistory_Direction_name = map[int32]string{
190 0: "UNDEFINED",
191 1: "UPSTREAM",
192 2: "DOWNSTREAM",
193}
194
195var GetOnuEthernetBridgePortHistory_Direction_value = map[string]int32{
196 "UNDEFINED": 0,
197 "UPSTREAM": 1,
198 "DOWNSTREAM": 2,
199}
200
201func (x GetOnuEthernetBridgePortHistory_Direction) String() string {
202 return proto.EnumName(GetOnuEthernetBridgePortHistory_Direction_name, int32(x))
203}
204
205func (GetOnuEthernetBridgePortHistory_Direction) EnumDescriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400206 return fileDescriptor_7ecf6e9799a9202d, []int{12, 0}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000207}
208
Himani Chawlabac0f892021-08-25 17:14:06 +0530209type GetOmciEthernetFrameExtendedPmResponse_Format int32
210
211const (
212 GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT GetOmciEthernetFrameExtendedPmResponse_Format = 0
213 GetOmciEthernetFrameExtendedPmResponse_SIXTY_FOUR_BIT GetOmciEthernetFrameExtendedPmResponse_Format = 1
214)
215
216var GetOmciEthernetFrameExtendedPmResponse_Format_name = map[int32]string{
217 0: "THIRTY_TWO_BIT",
218 1: "SIXTY_FOUR_BIT",
219}
220
221var GetOmciEthernetFrameExtendedPmResponse_Format_value = map[string]int32{
222 "THIRTY_TWO_BIT": 0,
223 "SIXTY_FOUR_BIT": 1,
224}
225
226func (x GetOmciEthernetFrameExtendedPmResponse_Format) String() string {
227 return proto.EnumName(GetOmciEthernetFrameExtendedPmResponse_Format_name, int32(x))
228}
229
230func (GetOmciEthernetFrameExtendedPmResponse_Format) EnumDescriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +0530231 return fileDescriptor_7ecf6e9799a9202d, []int{22, 0}
Himani Chawlabac0f892021-08-25 17:14:06 +0530232}
233
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000234type GetValueResponse_Status int32
235
236const (
237 GetValueResponse_STATUS_UNDEFINED GetValueResponse_Status = 0
238 GetValueResponse_OK GetValueResponse_Status = 1
239 GetValueResponse_ERROR GetValueResponse_Status = 2
240)
241
242var GetValueResponse_Status_name = map[int32]string{
243 0: "STATUS_UNDEFINED",
244 1: "OK",
245 2: "ERROR",
246}
247
248var GetValueResponse_Status_value = map[string]int32{
249 "STATUS_UNDEFINED": 0,
250 "OK": 1,
251 "ERROR": 2,
252}
253
254func (x GetValueResponse_Status) String() string {
255 return proto.EnumName(GetValueResponse_Status_name, int32(x))
256}
257
258func (GetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +0530259 return fileDescriptor_7ecf6e9799a9202d, []int{32, 0}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000260}
261
262type GetValueResponse_ErrorReason int32
263
264const (
265 GetValueResponse_REASON_UNDEFINED GetValueResponse_ErrorReason = 0
266 GetValueResponse_UNSUPPORTED GetValueResponse_ErrorReason = 1
267 GetValueResponse_INVALID_DEVICE_ID GetValueResponse_ErrorReason = 2
268 GetValueResponse_INVALID_PORT_TYPE GetValueResponse_ErrorReason = 3
269 GetValueResponse_TIMEOUT GetValueResponse_ErrorReason = 4
270 GetValueResponse_INVALID_REQ_TYPE GetValueResponse_ErrorReason = 5
271 GetValueResponse_INTERNAL_ERROR GetValueResponse_ErrorReason = 6
272 GetValueResponse_INVALID_DEVICE GetValueResponse_ErrorReason = 7
273)
274
275var GetValueResponse_ErrorReason_name = map[int32]string{
276 0: "REASON_UNDEFINED",
277 1: "UNSUPPORTED",
278 2: "INVALID_DEVICE_ID",
279 3: "INVALID_PORT_TYPE",
280 4: "TIMEOUT",
281 5: "INVALID_REQ_TYPE",
282 6: "INTERNAL_ERROR",
283 7: "INVALID_DEVICE",
284}
285
286var GetValueResponse_ErrorReason_value = map[string]int32{
287 "REASON_UNDEFINED": 0,
288 "UNSUPPORTED": 1,
289 "INVALID_DEVICE_ID": 2,
290 "INVALID_PORT_TYPE": 3,
291 "TIMEOUT": 4,
292 "INVALID_REQ_TYPE": 5,
293 "INTERNAL_ERROR": 6,
294 "INVALID_DEVICE": 7,
295}
296
297func (x GetValueResponse_ErrorReason) String() string {
298 return proto.EnumName(GetValueResponse_ErrorReason_name, int32(x))
299}
300
301func (GetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +0530302 return fileDescriptor_7ecf6e9799a9202d, []int{32, 1}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000303}
304
305type SetValueResponse_Status int32
306
307const (
308 SetValueResponse_STATUS_UNDEFINED SetValueResponse_Status = 0
309 SetValueResponse_OK SetValueResponse_Status = 1
310 SetValueResponse_ERROR SetValueResponse_Status = 2
311)
312
313var SetValueResponse_Status_name = map[int32]string{
314 0: "STATUS_UNDEFINED",
315 1: "OK",
316 2: "ERROR",
317}
318
319var SetValueResponse_Status_value = map[string]int32{
320 "STATUS_UNDEFINED": 0,
321 "OK": 1,
322 "ERROR": 2,
323}
324
325func (x SetValueResponse_Status) String() string {
326 return proto.EnumName(SetValueResponse_Status_name, int32(x))
327}
328
329func (SetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +0530330 return fileDescriptor_7ecf6e9799a9202d, []int{34, 0}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000331}
332
333type SetValueResponse_ErrorReason int32
334
335const (
336 SetValueResponse_REASON_UNDEFINED SetValueResponse_ErrorReason = 0
337 SetValueResponse_UNSUPPORTED SetValueResponse_ErrorReason = 1
338)
339
340var SetValueResponse_ErrorReason_name = map[int32]string{
341 0: "REASON_UNDEFINED",
342 1: "UNSUPPORTED",
343}
344
345var SetValueResponse_ErrorReason_value = map[string]int32{
346 "REASON_UNDEFINED": 0,
347 "UNSUPPORTED": 1,
348}
349
350func (x SetValueResponse_ErrorReason) String() string {
351 return proto.EnumName(SetValueResponse_ErrorReason_name, int32(x))
352}
353
354func (SetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +0530355 return fileDescriptor_7ecf6e9799a9202d, []int{34, 1}
khenaidoo080ce882021-10-19 17:35:08 -0400356}
357
358type ValueSet struct {
359 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
360 // Types that are valid to be assigned to Value:
361 // *ValueSet_AlarmConfig
362 Value isValueSet_Value `protobuf_oneof:"value"`
363 XXX_NoUnkeyedLiteral struct{} `json:"-"`
364 XXX_unrecognized []byte `json:"-"`
365 XXX_sizecache int32 `json:"-"`
366}
367
368func (m *ValueSet) Reset() { *m = ValueSet{} }
369func (m *ValueSet) String() string { return proto.CompactTextString(m) }
370func (*ValueSet) ProtoMessage() {}
371func (*ValueSet) Descriptor() ([]byte, []int) {
372 return fileDescriptor_7ecf6e9799a9202d, []int{0}
373}
374
375func (m *ValueSet) XXX_Unmarshal(b []byte) error {
376 return xxx_messageInfo_ValueSet.Unmarshal(m, b)
377}
378func (m *ValueSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
379 return xxx_messageInfo_ValueSet.Marshal(b, m, deterministic)
380}
381func (m *ValueSet) XXX_Merge(src proto.Message) {
382 xxx_messageInfo_ValueSet.Merge(m, src)
383}
384func (m *ValueSet) XXX_Size() int {
385 return xxx_messageInfo_ValueSet.Size(m)
386}
387func (m *ValueSet) XXX_DiscardUnknown() {
388 xxx_messageInfo_ValueSet.DiscardUnknown(m)
389}
390
391var xxx_messageInfo_ValueSet proto.InternalMessageInfo
392
393func (m *ValueSet) GetId() string {
394 if m != nil {
395 return m.Id
396 }
397 return ""
398}
399
400type isValueSet_Value interface {
401 isValueSet_Value()
402}
403
404type ValueSet_AlarmConfig struct {
405 AlarmConfig *config.AlarmConfig `protobuf:"bytes,2,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
406}
407
408func (*ValueSet_AlarmConfig) isValueSet_Value() {}
409
410func (m *ValueSet) GetValue() isValueSet_Value {
411 if m != nil {
412 return m.Value
413 }
414 return nil
415}
416
417func (m *ValueSet) GetAlarmConfig() *config.AlarmConfig {
418 if x, ok := m.GetValue().(*ValueSet_AlarmConfig); ok {
419 return x.AlarmConfig
420 }
421 return nil
422}
423
424// XXX_OneofWrappers is for the internal use of the proto package.
425func (*ValueSet) XXX_OneofWrappers() []interface{} {
426 return []interface{}{
427 (*ValueSet_AlarmConfig)(nil),
428 }
429}
430
431type ValueType struct {
432 XXX_NoUnkeyedLiteral struct{} `json:"-"`
433 XXX_unrecognized []byte `json:"-"`
434 XXX_sizecache int32 `json:"-"`
435}
436
437func (m *ValueType) Reset() { *m = ValueType{} }
438func (m *ValueType) String() string { return proto.CompactTextString(m) }
439func (*ValueType) ProtoMessage() {}
440func (*ValueType) Descriptor() ([]byte, []int) {
441 return fileDescriptor_7ecf6e9799a9202d, []int{1}
442}
443
444func (m *ValueType) XXX_Unmarshal(b []byte) error {
445 return xxx_messageInfo_ValueType.Unmarshal(m, b)
446}
447func (m *ValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
448 return xxx_messageInfo_ValueType.Marshal(b, m, deterministic)
449}
450func (m *ValueType) XXX_Merge(src proto.Message) {
451 xxx_messageInfo_ValueType.Merge(m, src)
452}
453func (m *ValueType) XXX_Size() int {
454 return xxx_messageInfo_ValueType.Size(m)
455}
456func (m *ValueType) XXX_DiscardUnknown() {
457 xxx_messageInfo_ValueType.DiscardUnknown(m)
458}
459
460var xxx_messageInfo_ValueType proto.InternalMessageInfo
461
462type ValueSpecifier struct {
463 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
464 Value ValueType_Type `protobuf:"varint,2,opt,name=value,proto3,enum=extension.ValueType_Type" json:"value,omitempty"`
465 XXX_NoUnkeyedLiteral struct{} `json:"-"`
466 XXX_unrecognized []byte `json:"-"`
467 XXX_sizecache int32 `json:"-"`
468}
469
470func (m *ValueSpecifier) Reset() { *m = ValueSpecifier{} }
471func (m *ValueSpecifier) String() string { return proto.CompactTextString(m) }
472func (*ValueSpecifier) ProtoMessage() {}
473func (*ValueSpecifier) Descriptor() ([]byte, []int) {
474 return fileDescriptor_7ecf6e9799a9202d, []int{2}
475}
476
477func (m *ValueSpecifier) XXX_Unmarshal(b []byte) error {
478 return xxx_messageInfo_ValueSpecifier.Unmarshal(m, b)
479}
480func (m *ValueSpecifier) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
481 return xxx_messageInfo_ValueSpecifier.Marshal(b, m, deterministic)
482}
483func (m *ValueSpecifier) XXX_Merge(src proto.Message) {
484 xxx_messageInfo_ValueSpecifier.Merge(m, src)
485}
486func (m *ValueSpecifier) XXX_Size() int {
487 return xxx_messageInfo_ValueSpecifier.Size(m)
488}
489func (m *ValueSpecifier) XXX_DiscardUnknown() {
490 xxx_messageInfo_ValueSpecifier.DiscardUnknown(m)
491}
492
493var xxx_messageInfo_ValueSpecifier proto.InternalMessageInfo
494
495func (m *ValueSpecifier) GetId() string {
496 if m != nil {
497 return m.Id
498 }
499 return ""
500}
501
502func (m *ValueSpecifier) GetValue() ValueType_Type {
503 if m != nil {
504 return m.Value
505 }
506 return ValueType_EMPTY
507}
508
509type ReturnValues struct {
510 Set uint32 `protobuf:"varint,1,opt,name=Set,proto3" json:"Set,omitempty"`
511 Unsupported uint32 `protobuf:"varint,2,opt,name=Unsupported,proto3" json:"Unsupported,omitempty"`
512 Error uint32 `protobuf:"varint,3,opt,name=Error,proto3" json:"Error,omitempty"`
513 Distance uint32 `protobuf:"varint,4,opt,name=Distance,proto3" json:"Distance,omitempty"`
514 XXX_NoUnkeyedLiteral struct{} `json:"-"`
515 XXX_unrecognized []byte `json:"-"`
516 XXX_sizecache int32 `json:"-"`
517}
518
519func (m *ReturnValues) Reset() { *m = ReturnValues{} }
520func (m *ReturnValues) String() string { return proto.CompactTextString(m) }
521func (*ReturnValues) ProtoMessage() {}
522func (*ReturnValues) Descriptor() ([]byte, []int) {
523 return fileDescriptor_7ecf6e9799a9202d, []int{3}
524}
525
526func (m *ReturnValues) XXX_Unmarshal(b []byte) error {
527 return xxx_messageInfo_ReturnValues.Unmarshal(m, b)
528}
529func (m *ReturnValues) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
530 return xxx_messageInfo_ReturnValues.Marshal(b, m, deterministic)
531}
532func (m *ReturnValues) XXX_Merge(src proto.Message) {
533 xxx_messageInfo_ReturnValues.Merge(m, src)
534}
535func (m *ReturnValues) XXX_Size() int {
536 return xxx_messageInfo_ReturnValues.Size(m)
537}
538func (m *ReturnValues) XXX_DiscardUnknown() {
539 xxx_messageInfo_ReturnValues.DiscardUnknown(m)
540}
541
542var xxx_messageInfo_ReturnValues proto.InternalMessageInfo
543
544func (m *ReturnValues) GetSet() uint32 {
545 if m != nil {
546 return m.Set
547 }
548 return 0
549}
550
551func (m *ReturnValues) GetUnsupported() uint32 {
552 if m != nil {
553 return m.Unsupported
554 }
555 return 0
556}
557
558func (m *ReturnValues) GetError() uint32 {
559 if m != nil {
560 return m.Error
561 }
562 return 0
563}
564
565func (m *ReturnValues) GetDistance() uint32 {
566 if m != nil {
567 return m.Distance
568 }
569 return 0
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000570}
571
572type GetDistanceRequest struct {
573 OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
574 XXX_NoUnkeyedLiteral struct{} `json:"-"`
575 XXX_unrecognized []byte `json:"-"`
576 XXX_sizecache int32 `json:"-"`
577}
578
579func (m *GetDistanceRequest) Reset() { *m = GetDistanceRequest{} }
580func (m *GetDistanceRequest) String() string { return proto.CompactTextString(m) }
581func (*GetDistanceRequest) ProtoMessage() {}
582func (*GetDistanceRequest) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400583 return fileDescriptor_7ecf6e9799a9202d, []int{4}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000584}
585
586func (m *GetDistanceRequest) XXX_Unmarshal(b []byte) error {
587 return xxx_messageInfo_GetDistanceRequest.Unmarshal(m, b)
588}
589func (m *GetDistanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
590 return xxx_messageInfo_GetDistanceRequest.Marshal(b, m, deterministic)
591}
592func (m *GetDistanceRequest) XXX_Merge(src proto.Message) {
593 xxx_messageInfo_GetDistanceRequest.Merge(m, src)
594}
595func (m *GetDistanceRequest) XXX_Size() int {
596 return xxx_messageInfo_GetDistanceRequest.Size(m)
597}
598func (m *GetDistanceRequest) XXX_DiscardUnknown() {
599 xxx_messageInfo_GetDistanceRequest.DiscardUnknown(m)
600}
601
602var xxx_messageInfo_GetDistanceRequest proto.InternalMessageInfo
603
604func (m *GetDistanceRequest) GetOnuDeviceId() string {
605 if m != nil {
606 return m.OnuDeviceId
607 }
608 return ""
609}
610
611type GetDistanceResponse struct {
612 Distance uint32 `protobuf:"varint,1,opt,name=distance,proto3" json:"distance,omitempty"`
613 XXX_NoUnkeyedLiteral struct{} `json:"-"`
614 XXX_unrecognized []byte `json:"-"`
615 XXX_sizecache int32 `json:"-"`
616}
617
618func (m *GetDistanceResponse) Reset() { *m = GetDistanceResponse{} }
619func (m *GetDistanceResponse) String() string { return proto.CompactTextString(m) }
620func (*GetDistanceResponse) ProtoMessage() {}
621func (*GetDistanceResponse) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400622 return fileDescriptor_7ecf6e9799a9202d, []int{5}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000623}
624
625func (m *GetDistanceResponse) XXX_Unmarshal(b []byte) error {
626 return xxx_messageInfo_GetDistanceResponse.Unmarshal(m, b)
627}
628func (m *GetDistanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
629 return xxx_messageInfo_GetDistanceResponse.Marshal(b, m, deterministic)
630}
631func (m *GetDistanceResponse) XXX_Merge(src proto.Message) {
632 xxx_messageInfo_GetDistanceResponse.Merge(m, src)
633}
634func (m *GetDistanceResponse) XXX_Size() int {
635 return xxx_messageInfo_GetDistanceResponse.Size(m)
636}
637func (m *GetDistanceResponse) XXX_DiscardUnknown() {
638 xxx_messageInfo_GetDistanceResponse.DiscardUnknown(m)
639}
640
641var xxx_messageInfo_GetDistanceResponse proto.InternalMessageInfo
642
643func (m *GetDistanceResponse) GetDistance() uint32 {
644 if m != nil {
645 return m.Distance
646 }
647 return 0
648}
649
650type GetOnuUniInfoRequest struct {
651 UniIndex uint32 `protobuf:"varint,1,opt,name=uniIndex,proto3" json:"uniIndex,omitempty"`
652 XXX_NoUnkeyedLiteral struct{} `json:"-"`
653 XXX_unrecognized []byte `json:"-"`
654 XXX_sizecache int32 `json:"-"`
655}
656
657func (m *GetOnuUniInfoRequest) Reset() { *m = GetOnuUniInfoRequest{} }
658func (m *GetOnuUniInfoRequest) String() string { return proto.CompactTextString(m) }
659func (*GetOnuUniInfoRequest) ProtoMessage() {}
660func (*GetOnuUniInfoRequest) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400661 return fileDescriptor_7ecf6e9799a9202d, []int{6}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000662}
663
664func (m *GetOnuUniInfoRequest) XXX_Unmarshal(b []byte) error {
665 return xxx_messageInfo_GetOnuUniInfoRequest.Unmarshal(m, b)
666}
667func (m *GetOnuUniInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
668 return xxx_messageInfo_GetOnuUniInfoRequest.Marshal(b, m, deterministic)
669}
670func (m *GetOnuUniInfoRequest) XXX_Merge(src proto.Message) {
671 xxx_messageInfo_GetOnuUniInfoRequest.Merge(m, src)
672}
673func (m *GetOnuUniInfoRequest) XXX_Size() int {
674 return xxx_messageInfo_GetOnuUniInfoRequest.Size(m)
675}
676func (m *GetOnuUniInfoRequest) XXX_DiscardUnknown() {
677 xxx_messageInfo_GetOnuUniInfoRequest.DiscardUnknown(m)
678}
679
680var xxx_messageInfo_GetOnuUniInfoRequest proto.InternalMessageInfo
681
682func (m *GetOnuUniInfoRequest) GetUniIndex() uint32 {
683 if m != nil {
684 return m.UniIndex
685 }
686 return 0
687}
688
689type GetOnuUniInfoResponse struct {
690 AdmState GetOnuUniInfoResponse_AdministrativeState `protobuf:"varint,1,opt,name=admState,proto3,enum=extension.GetOnuUniInfoResponse_AdministrativeState" json:"admState,omitempty"`
691 OperState GetOnuUniInfoResponse_OperationalState `protobuf:"varint,2,opt,name=operState,proto3,enum=extension.GetOnuUniInfoResponse_OperationalState" json:"operState,omitempty"`
692 ConfigInd GetOnuUniInfoResponse_ConfigurationInd `protobuf:"varint,3,opt,name=configInd,proto3,enum=extension.GetOnuUniInfoResponse_ConfigurationInd" json:"configInd,omitempty"`
693 XXX_NoUnkeyedLiteral struct{} `json:"-"`
694 XXX_unrecognized []byte `json:"-"`
695 XXX_sizecache int32 `json:"-"`
696}
697
698func (m *GetOnuUniInfoResponse) Reset() { *m = GetOnuUniInfoResponse{} }
699func (m *GetOnuUniInfoResponse) String() string { return proto.CompactTextString(m) }
700func (*GetOnuUniInfoResponse) ProtoMessage() {}
701func (*GetOnuUniInfoResponse) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400702 return fileDescriptor_7ecf6e9799a9202d, []int{7}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000703}
704
705func (m *GetOnuUniInfoResponse) XXX_Unmarshal(b []byte) error {
706 return xxx_messageInfo_GetOnuUniInfoResponse.Unmarshal(m, b)
707}
708func (m *GetOnuUniInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
709 return xxx_messageInfo_GetOnuUniInfoResponse.Marshal(b, m, deterministic)
710}
711func (m *GetOnuUniInfoResponse) XXX_Merge(src proto.Message) {
712 xxx_messageInfo_GetOnuUniInfoResponse.Merge(m, src)
713}
714func (m *GetOnuUniInfoResponse) XXX_Size() int {
715 return xxx_messageInfo_GetOnuUniInfoResponse.Size(m)
716}
717func (m *GetOnuUniInfoResponse) XXX_DiscardUnknown() {
718 xxx_messageInfo_GetOnuUniInfoResponse.DiscardUnknown(m)
719}
720
721var xxx_messageInfo_GetOnuUniInfoResponse proto.InternalMessageInfo
722
723func (m *GetOnuUniInfoResponse) GetAdmState() GetOnuUniInfoResponse_AdministrativeState {
724 if m != nil {
725 return m.AdmState
726 }
727 return GetOnuUniInfoResponse_ADMSTATE_UNDEFINED
728}
729
730func (m *GetOnuUniInfoResponse) GetOperState() GetOnuUniInfoResponse_OperationalState {
731 if m != nil {
732 return m.OperState
733 }
734 return GetOnuUniInfoResponse_OPERSTATE_UNDEFINED
735}
736
737func (m *GetOnuUniInfoResponse) GetConfigInd() GetOnuUniInfoResponse_ConfigurationInd {
738 if m != nil {
739 return m.ConfigInd
740 }
741 return GetOnuUniInfoResponse_UNKOWN
742}
743
744type GetOltPortCounters struct {
745 PortNo uint32 `protobuf:"varint,1,opt,name=portNo,proto3" json:"portNo,omitempty"`
746 PortType GetOltPortCounters_PortType `protobuf:"varint,2,opt,name=portType,proto3,enum=extension.GetOltPortCounters_PortType" json:"portType,omitempty"`
747 XXX_NoUnkeyedLiteral struct{} `json:"-"`
748 XXX_unrecognized []byte `json:"-"`
749 XXX_sizecache int32 `json:"-"`
750}
751
752func (m *GetOltPortCounters) Reset() { *m = GetOltPortCounters{} }
753func (m *GetOltPortCounters) String() string { return proto.CompactTextString(m) }
754func (*GetOltPortCounters) ProtoMessage() {}
755func (*GetOltPortCounters) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400756 return fileDescriptor_7ecf6e9799a9202d, []int{8}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000757}
758
759func (m *GetOltPortCounters) XXX_Unmarshal(b []byte) error {
760 return xxx_messageInfo_GetOltPortCounters.Unmarshal(m, b)
761}
762func (m *GetOltPortCounters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
763 return xxx_messageInfo_GetOltPortCounters.Marshal(b, m, deterministic)
764}
765func (m *GetOltPortCounters) XXX_Merge(src proto.Message) {
766 xxx_messageInfo_GetOltPortCounters.Merge(m, src)
767}
768func (m *GetOltPortCounters) XXX_Size() int {
769 return xxx_messageInfo_GetOltPortCounters.Size(m)
770}
771func (m *GetOltPortCounters) XXX_DiscardUnknown() {
772 xxx_messageInfo_GetOltPortCounters.DiscardUnknown(m)
773}
774
775var xxx_messageInfo_GetOltPortCounters proto.InternalMessageInfo
776
777func (m *GetOltPortCounters) GetPortNo() uint32 {
778 if m != nil {
779 return m.PortNo
780 }
781 return 0
782}
783
784func (m *GetOltPortCounters) GetPortType() GetOltPortCounters_PortType {
785 if m != nil {
786 return m.PortType
787 }
788 return GetOltPortCounters_Port_UNKNOWN
789}
790
791type GetOltPortCountersResponse struct {
792 TxBytes uint64 `protobuf:"varint,1,opt,name=txBytes,proto3" json:"txBytes,omitempty"`
793 RxBytes uint64 `protobuf:"varint,2,opt,name=rxBytes,proto3" json:"rxBytes,omitempty"`
794 TxPackets uint64 `protobuf:"varint,3,opt,name=txPackets,proto3" json:"txPackets,omitempty"`
795 RxPackets uint64 `protobuf:"varint,4,opt,name=rxPackets,proto3" json:"rxPackets,omitempty"`
796 TxErrorPackets uint64 `protobuf:"varint,5,opt,name=txErrorPackets,proto3" json:"txErrorPackets,omitempty"`
797 RxErrorPackets uint64 `protobuf:"varint,6,opt,name=rxErrorPackets,proto3" json:"rxErrorPackets,omitempty"`
798 TxBcastPackets uint64 `protobuf:"varint,7,opt,name=txBcastPackets,proto3" json:"txBcastPackets,omitempty"`
799 RxBcastPackets uint64 `protobuf:"varint,8,opt,name=rxBcastPackets,proto3" json:"rxBcastPackets,omitempty"`
800 TxUcastPackets uint64 `protobuf:"varint,9,opt,name=txUcastPackets,proto3" json:"txUcastPackets,omitempty"`
801 RxUcastPackets uint64 `protobuf:"varint,10,opt,name=rxUcastPackets,proto3" json:"rxUcastPackets,omitempty"`
802 TxMcastPackets uint64 `protobuf:"varint,11,opt,name=txMcastPackets,proto3" json:"txMcastPackets,omitempty"`
803 RxMcastPackets uint64 `protobuf:"varint,12,opt,name=rxMcastPackets,proto3" json:"rxMcastPackets,omitempty"`
804 XXX_NoUnkeyedLiteral struct{} `json:"-"`
805 XXX_unrecognized []byte `json:"-"`
806 XXX_sizecache int32 `json:"-"`
807}
808
809func (m *GetOltPortCountersResponse) Reset() { *m = GetOltPortCountersResponse{} }
810func (m *GetOltPortCountersResponse) String() string { return proto.CompactTextString(m) }
811func (*GetOltPortCountersResponse) ProtoMessage() {}
812func (*GetOltPortCountersResponse) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400813 return fileDescriptor_7ecf6e9799a9202d, []int{9}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000814}
815
816func (m *GetOltPortCountersResponse) XXX_Unmarshal(b []byte) error {
817 return xxx_messageInfo_GetOltPortCountersResponse.Unmarshal(m, b)
818}
819func (m *GetOltPortCountersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
820 return xxx_messageInfo_GetOltPortCountersResponse.Marshal(b, m, deterministic)
821}
822func (m *GetOltPortCountersResponse) XXX_Merge(src proto.Message) {
823 xxx_messageInfo_GetOltPortCountersResponse.Merge(m, src)
824}
825func (m *GetOltPortCountersResponse) XXX_Size() int {
826 return xxx_messageInfo_GetOltPortCountersResponse.Size(m)
827}
828func (m *GetOltPortCountersResponse) XXX_DiscardUnknown() {
829 xxx_messageInfo_GetOltPortCountersResponse.DiscardUnknown(m)
830}
831
832var xxx_messageInfo_GetOltPortCountersResponse proto.InternalMessageInfo
833
834func (m *GetOltPortCountersResponse) GetTxBytes() uint64 {
835 if m != nil {
836 return m.TxBytes
837 }
838 return 0
839}
840
841func (m *GetOltPortCountersResponse) GetRxBytes() uint64 {
842 if m != nil {
843 return m.RxBytes
844 }
845 return 0
846}
847
848func (m *GetOltPortCountersResponse) GetTxPackets() uint64 {
849 if m != nil {
850 return m.TxPackets
851 }
852 return 0
853}
854
855func (m *GetOltPortCountersResponse) GetRxPackets() uint64 {
856 if m != nil {
857 return m.RxPackets
858 }
859 return 0
860}
861
862func (m *GetOltPortCountersResponse) GetTxErrorPackets() uint64 {
863 if m != nil {
864 return m.TxErrorPackets
865 }
866 return 0
867}
868
869func (m *GetOltPortCountersResponse) GetRxErrorPackets() uint64 {
870 if m != nil {
871 return m.RxErrorPackets
872 }
873 return 0
874}
875
876func (m *GetOltPortCountersResponse) GetTxBcastPackets() uint64 {
877 if m != nil {
878 return m.TxBcastPackets
879 }
880 return 0
881}
882
883func (m *GetOltPortCountersResponse) GetRxBcastPackets() uint64 {
884 if m != nil {
885 return m.RxBcastPackets
886 }
887 return 0
888}
889
890func (m *GetOltPortCountersResponse) GetTxUcastPackets() uint64 {
891 if m != nil {
892 return m.TxUcastPackets
893 }
894 return 0
895}
896
897func (m *GetOltPortCountersResponse) GetRxUcastPackets() uint64 {
898 if m != nil {
899 return m.RxUcastPackets
900 }
901 return 0
902}
903
904func (m *GetOltPortCountersResponse) GetTxMcastPackets() uint64 {
905 if m != nil {
906 return m.TxMcastPackets
907 }
908 return 0
909}
910
911func (m *GetOltPortCountersResponse) GetRxMcastPackets() uint64 {
912 if m != nil {
913 return m.RxMcastPackets
914 }
915 return 0
916}
917
918type GetOnuPonOpticalInfo struct {
919 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
920 XXX_NoUnkeyedLiteral struct{} `json:"-"`
921 XXX_unrecognized []byte `json:"-"`
922 XXX_sizecache int32 `json:"-"`
923}
924
925func (m *GetOnuPonOpticalInfo) Reset() { *m = GetOnuPonOpticalInfo{} }
926func (m *GetOnuPonOpticalInfo) String() string { return proto.CompactTextString(m) }
927func (*GetOnuPonOpticalInfo) ProtoMessage() {}
928func (*GetOnuPonOpticalInfo) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400929 return fileDescriptor_7ecf6e9799a9202d, []int{10}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000930}
931
932func (m *GetOnuPonOpticalInfo) XXX_Unmarshal(b []byte) error {
933 return xxx_messageInfo_GetOnuPonOpticalInfo.Unmarshal(m, b)
934}
935func (m *GetOnuPonOpticalInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
936 return xxx_messageInfo_GetOnuPonOpticalInfo.Marshal(b, m, deterministic)
937}
938func (m *GetOnuPonOpticalInfo) XXX_Merge(src proto.Message) {
939 xxx_messageInfo_GetOnuPonOpticalInfo.Merge(m, src)
940}
941func (m *GetOnuPonOpticalInfo) XXX_Size() int {
942 return xxx_messageInfo_GetOnuPonOpticalInfo.Size(m)
943}
944func (m *GetOnuPonOpticalInfo) XXX_DiscardUnknown() {
945 xxx_messageInfo_GetOnuPonOpticalInfo.DiscardUnknown(m)
946}
947
948var xxx_messageInfo_GetOnuPonOpticalInfo proto.InternalMessageInfo
949
950func (m *GetOnuPonOpticalInfo) GetEmpty() *empty.Empty {
951 if m != nil {
952 return m.Empty
953 }
954 return nil
955}
956
957// These values correspond to the Optical Line Supervision Test results
958// described in section A3.39.5 of ITU-T G.988 (11/2017) specification.
959type GetOnuPonOpticalInfoResponse struct {
960 PowerFeedVoltage float32 `protobuf:"fixed32,1,opt,name=powerFeedVoltage,proto3" json:"powerFeedVoltage,omitempty"`
961 ReceivedOpticalPower float32 `protobuf:"fixed32,2,opt,name=receivedOpticalPower,proto3" json:"receivedOpticalPower,omitempty"`
962 MeanOpticalLaunchPower float32 `protobuf:"fixed32,3,opt,name=meanOpticalLaunchPower,proto3" json:"meanOpticalLaunchPower,omitempty"`
963 LaserBiasCurrent float32 `protobuf:"fixed32,4,opt,name=laserBiasCurrent,proto3" json:"laserBiasCurrent,omitempty"`
964 Temperature float32 `protobuf:"fixed32,5,opt,name=temperature,proto3" json:"temperature,omitempty"`
965 XXX_NoUnkeyedLiteral struct{} `json:"-"`
966 XXX_unrecognized []byte `json:"-"`
967 XXX_sizecache int32 `json:"-"`
968}
969
970func (m *GetOnuPonOpticalInfoResponse) Reset() { *m = GetOnuPonOpticalInfoResponse{} }
971func (m *GetOnuPonOpticalInfoResponse) String() string { return proto.CompactTextString(m) }
972func (*GetOnuPonOpticalInfoResponse) ProtoMessage() {}
973func (*GetOnuPonOpticalInfoResponse) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -0400974 return fileDescriptor_7ecf6e9799a9202d, []int{11}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +0000975}
976
977func (m *GetOnuPonOpticalInfoResponse) XXX_Unmarshal(b []byte) error {
978 return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Unmarshal(m, b)
979}
980func (m *GetOnuPonOpticalInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
981 return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Marshal(b, m, deterministic)
982}
983func (m *GetOnuPonOpticalInfoResponse) XXX_Merge(src proto.Message) {
984 xxx_messageInfo_GetOnuPonOpticalInfoResponse.Merge(m, src)
985}
986func (m *GetOnuPonOpticalInfoResponse) XXX_Size() int {
987 return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Size(m)
988}
989func (m *GetOnuPonOpticalInfoResponse) XXX_DiscardUnknown() {
990 xxx_messageInfo_GetOnuPonOpticalInfoResponse.DiscardUnknown(m)
991}
992
993var xxx_messageInfo_GetOnuPonOpticalInfoResponse proto.InternalMessageInfo
994
995func (m *GetOnuPonOpticalInfoResponse) GetPowerFeedVoltage() float32 {
996 if m != nil {
997 return m.PowerFeedVoltage
998 }
999 return 0
1000}
1001
1002func (m *GetOnuPonOpticalInfoResponse) GetReceivedOpticalPower() float32 {
1003 if m != nil {
1004 return m.ReceivedOpticalPower
1005 }
1006 return 0
1007}
1008
1009func (m *GetOnuPonOpticalInfoResponse) GetMeanOpticalLaunchPower() float32 {
1010 if m != nil {
1011 return m.MeanOpticalLaunchPower
1012 }
1013 return 0
1014}
1015
1016func (m *GetOnuPonOpticalInfoResponse) GetLaserBiasCurrent() float32 {
1017 if m != nil {
1018 return m.LaserBiasCurrent
1019 }
1020 return 0
1021}
1022
1023func (m *GetOnuPonOpticalInfoResponse) GetTemperature() float32 {
1024 if m != nil {
1025 return m.Temperature
1026 }
1027 return 0
1028}
1029
1030type GetOnuEthernetBridgePortHistory struct {
1031 Direction GetOnuEthernetBridgePortHistory_Direction `protobuf:"varint,1,opt,name=direction,proto3,enum=extension.GetOnuEthernetBridgePortHistory_Direction" json:"direction,omitempty"`
1032 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1033 XXX_unrecognized []byte `json:"-"`
1034 XXX_sizecache int32 `json:"-"`
1035}
1036
1037func (m *GetOnuEthernetBridgePortHistory) Reset() { *m = GetOnuEthernetBridgePortHistory{} }
1038func (m *GetOnuEthernetBridgePortHistory) String() string { return proto.CompactTextString(m) }
1039func (*GetOnuEthernetBridgePortHistory) ProtoMessage() {}
1040func (*GetOnuEthernetBridgePortHistory) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001041 return fileDescriptor_7ecf6e9799a9202d, []int{12}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001042}
1043
1044func (m *GetOnuEthernetBridgePortHistory) XXX_Unmarshal(b []byte) error {
1045 return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Unmarshal(m, b)
1046}
1047func (m *GetOnuEthernetBridgePortHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1048 return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Marshal(b, m, deterministic)
1049}
1050func (m *GetOnuEthernetBridgePortHistory) XXX_Merge(src proto.Message) {
1051 xxx_messageInfo_GetOnuEthernetBridgePortHistory.Merge(m, src)
1052}
1053func (m *GetOnuEthernetBridgePortHistory) XXX_Size() int {
1054 return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Size(m)
1055}
1056func (m *GetOnuEthernetBridgePortHistory) XXX_DiscardUnknown() {
1057 xxx_messageInfo_GetOnuEthernetBridgePortHistory.DiscardUnknown(m)
1058}
1059
1060var xxx_messageInfo_GetOnuEthernetBridgePortHistory proto.InternalMessageInfo
1061
1062func (m *GetOnuEthernetBridgePortHistory) GetDirection() GetOnuEthernetBridgePortHistory_Direction {
1063 if m != nil {
1064 return m.Direction
1065 }
1066 return GetOnuEthernetBridgePortHistory_UNDEFINED
1067}
1068
1069type GetOnuEthernetBridgePortHistoryResponse struct {
1070 DropEvents uint32 `protobuf:"varint,1,opt,name=dropEvents,proto3" json:"dropEvents,omitempty"`
1071 Octets uint32 `protobuf:"varint,2,opt,name=octets,proto3" json:"octets,omitempty"`
1072 Packets uint32 `protobuf:"varint,3,opt,name=packets,proto3" json:"packets,omitempty"`
1073 BroadcastPackets uint32 `protobuf:"varint,4,opt,name=broadcastPackets,proto3" json:"broadcastPackets,omitempty"`
1074 MulticastPackets uint32 `protobuf:"varint,5,opt,name=multicastPackets,proto3" json:"multicastPackets,omitempty"`
1075 CrcErroredPackets uint32 `protobuf:"varint,6,opt,name=crcErroredPackets,proto3" json:"crcErroredPackets,omitempty"`
1076 UndersizePackets uint32 `protobuf:"varint,7,opt,name=undersizePackets,proto3" json:"undersizePackets,omitempty"`
1077 OversizePackets uint32 `protobuf:"varint,8,opt,name=oversizePackets,proto3" json:"oversizePackets,omitempty"`
1078 Packets64Octets uint32 `protobuf:"varint,9,opt,name=packets64octets,proto3" json:"packets64octets,omitempty"`
1079 Packets65To127Octets uint32 `protobuf:"varint,10,opt,name=packets65To127octets,proto3" json:"packets65To127octets,omitempty"`
1080 Packets128To255Octets uint32 `protobuf:"varint,11,opt,name=packets128To255Octets,proto3" json:"packets128To255Octets,omitempty"`
1081 Packets256To511Octets uint32 `protobuf:"varint,12,opt,name=packets256To511octets,proto3" json:"packets256To511octets,omitempty"`
1082 Packets512To1023Octets uint32 `protobuf:"varint,13,opt,name=packets512To1023octets,proto3" json:"packets512To1023octets,omitempty"`
1083 Packets1024To1518Octets uint32 `protobuf:"varint,14,opt,name=packets1024To1518octets,proto3" json:"packets1024To1518octets,omitempty"`
1084 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1085 XXX_unrecognized []byte `json:"-"`
1086 XXX_sizecache int32 `json:"-"`
1087}
1088
1089func (m *GetOnuEthernetBridgePortHistoryResponse) Reset() {
1090 *m = GetOnuEthernetBridgePortHistoryResponse{}
1091}
1092func (m *GetOnuEthernetBridgePortHistoryResponse) String() string { return proto.CompactTextString(m) }
1093func (*GetOnuEthernetBridgePortHistoryResponse) ProtoMessage() {}
1094func (*GetOnuEthernetBridgePortHistoryResponse) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001095 return fileDescriptor_7ecf6e9799a9202d, []int{13}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001096}
1097
1098func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Unmarshal(b []byte) error {
1099 return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Unmarshal(m, b)
1100}
1101func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1102 return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Marshal(b, m, deterministic)
1103}
1104func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Merge(src proto.Message) {
1105 xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Merge(m, src)
1106}
1107func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Size() int {
1108 return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Size(m)
1109}
1110func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_DiscardUnknown() {
1111 xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.DiscardUnknown(m)
1112}
1113
1114var xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse proto.InternalMessageInfo
1115
1116func (m *GetOnuEthernetBridgePortHistoryResponse) GetDropEvents() uint32 {
1117 if m != nil {
1118 return m.DropEvents
1119 }
1120 return 0
1121}
1122
1123func (m *GetOnuEthernetBridgePortHistoryResponse) GetOctets() uint32 {
1124 if m != nil {
1125 return m.Octets
1126 }
1127 return 0
1128}
1129
1130func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets() uint32 {
1131 if m != nil {
1132 return m.Packets
1133 }
1134 return 0
1135}
1136
1137func (m *GetOnuEthernetBridgePortHistoryResponse) GetBroadcastPackets() uint32 {
1138 if m != nil {
1139 return m.BroadcastPackets
1140 }
1141 return 0
1142}
1143
1144func (m *GetOnuEthernetBridgePortHistoryResponse) GetMulticastPackets() uint32 {
1145 if m != nil {
1146 return m.MulticastPackets
1147 }
1148 return 0
1149}
1150
1151func (m *GetOnuEthernetBridgePortHistoryResponse) GetCrcErroredPackets() uint32 {
1152 if m != nil {
1153 return m.CrcErroredPackets
1154 }
1155 return 0
1156}
1157
1158func (m *GetOnuEthernetBridgePortHistoryResponse) GetUndersizePackets() uint32 {
1159 if m != nil {
1160 return m.UndersizePackets
1161 }
1162 return 0
1163}
1164
1165func (m *GetOnuEthernetBridgePortHistoryResponse) GetOversizePackets() uint32 {
1166 if m != nil {
1167 return m.OversizePackets
1168 }
1169 return 0
1170}
1171
1172func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets64Octets() uint32 {
1173 if m != nil {
1174 return m.Packets64Octets
1175 }
1176 return 0
1177}
1178
1179func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets65To127Octets() uint32 {
1180 if m != nil {
1181 return m.Packets65To127Octets
1182 }
1183 return 0
1184}
1185
1186func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets128To255Octets() uint32 {
1187 if m != nil {
1188 return m.Packets128To255Octets
1189 }
1190 return 0
1191}
1192
1193func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets256To511Octets() uint32 {
1194 if m != nil {
1195 return m.Packets256To511Octets
1196 }
1197 return 0
1198}
1199
1200func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets512To1023Octets() uint32 {
1201 if m != nil {
1202 return m.Packets512To1023Octets
1203 }
1204 return 0
1205}
1206
1207func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets1024To1518Octets() uint32 {
1208 if m != nil {
1209 return m.Packets1024To1518Octets
1210 }
1211 return 0
1212}
1213
1214type GetOnuFecHistory struct {
1215 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
1216 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1217 XXX_unrecognized []byte `json:"-"`
1218 XXX_sizecache int32 `json:"-"`
1219}
1220
1221func (m *GetOnuFecHistory) Reset() { *m = GetOnuFecHistory{} }
1222func (m *GetOnuFecHistory) String() string { return proto.CompactTextString(m) }
1223func (*GetOnuFecHistory) ProtoMessage() {}
1224func (*GetOnuFecHistory) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001225 return fileDescriptor_7ecf6e9799a9202d, []int{14}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001226}
1227
1228func (m *GetOnuFecHistory) XXX_Unmarshal(b []byte) error {
1229 return xxx_messageInfo_GetOnuFecHistory.Unmarshal(m, b)
1230}
1231func (m *GetOnuFecHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1232 return xxx_messageInfo_GetOnuFecHistory.Marshal(b, m, deterministic)
1233}
1234func (m *GetOnuFecHistory) XXX_Merge(src proto.Message) {
1235 xxx_messageInfo_GetOnuFecHistory.Merge(m, src)
1236}
1237func (m *GetOnuFecHistory) XXX_Size() int {
1238 return xxx_messageInfo_GetOnuFecHistory.Size(m)
1239}
1240func (m *GetOnuFecHistory) XXX_DiscardUnknown() {
1241 xxx_messageInfo_GetOnuFecHistory.DiscardUnknown(m)
1242}
1243
1244var xxx_messageInfo_GetOnuFecHistory proto.InternalMessageInfo
1245
1246func (m *GetOnuFecHistory) GetEmpty() *empty.Empty {
1247 if m != nil {
1248 return m.Empty
1249 }
1250 return nil
1251}
1252
1253type GetOnuFecHistoryResponse struct {
1254 CorrectedBytes uint32 `protobuf:"varint,1,opt,name=correctedBytes,proto3" json:"correctedBytes,omitempty"`
1255 CorrectedCodeWords uint32 `protobuf:"varint,2,opt,name=correctedCodeWords,proto3" json:"correctedCodeWords,omitempty"`
1256 FecSeconds uint32 `protobuf:"varint,3,opt,name=fecSeconds,proto3" json:"fecSeconds,omitempty"`
1257 TotalCodeWords uint32 `protobuf:"varint,4,opt,name=totalCodeWords,proto3" json:"totalCodeWords,omitempty"`
1258 UncorrectableCodeWords uint32 `protobuf:"varint,5,opt,name=uncorrectableCodeWords,proto3" json:"uncorrectableCodeWords,omitempty"`
1259 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1260 XXX_unrecognized []byte `json:"-"`
1261 XXX_sizecache int32 `json:"-"`
1262}
1263
1264func (m *GetOnuFecHistoryResponse) Reset() { *m = GetOnuFecHistoryResponse{} }
1265func (m *GetOnuFecHistoryResponse) String() string { return proto.CompactTextString(m) }
1266func (*GetOnuFecHistoryResponse) ProtoMessage() {}
1267func (*GetOnuFecHistoryResponse) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001268 return fileDescriptor_7ecf6e9799a9202d, []int{15}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001269}
1270
1271func (m *GetOnuFecHistoryResponse) XXX_Unmarshal(b []byte) error {
1272 return xxx_messageInfo_GetOnuFecHistoryResponse.Unmarshal(m, b)
1273}
1274func (m *GetOnuFecHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1275 return xxx_messageInfo_GetOnuFecHistoryResponse.Marshal(b, m, deterministic)
1276}
1277func (m *GetOnuFecHistoryResponse) XXX_Merge(src proto.Message) {
1278 xxx_messageInfo_GetOnuFecHistoryResponse.Merge(m, src)
1279}
1280func (m *GetOnuFecHistoryResponse) XXX_Size() int {
1281 return xxx_messageInfo_GetOnuFecHistoryResponse.Size(m)
1282}
1283func (m *GetOnuFecHistoryResponse) XXX_DiscardUnknown() {
1284 xxx_messageInfo_GetOnuFecHistoryResponse.DiscardUnknown(m)
1285}
1286
1287var xxx_messageInfo_GetOnuFecHistoryResponse proto.InternalMessageInfo
1288
1289func (m *GetOnuFecHistoryResponse) GetCorrectedBytes() uint32 {
1290 if m != nil {
1291 return m.CorrectedBytes
1292 }
1293 return 0
1294}
1295
1296func (m *GetOnuFecHistoryResponse) GetCorrectedCodeWords() uint32 {
1297 if m != nil {
1298 return m.CorrectedCodeWords
1299 }
1300 return 0
1301}
1302
1303func (m *GetOnuFecHistoryResponse) GetFecSeconds() uint32 {
1304 if m != nil {
1305 return m.FecSeconds
1306 }
1307 return 0
1308}
1309
1310func (m *GetOnuFecHistoryResponse) GetTotalCodeWords() uint32 {
1311 if m != nil {
1312 return m.TotalCodeWords
1313 }
1314 return 0
1315}
1316
1317func (m *GetOnuFecHistoryResponse) GetUncorrectableCodeWords() uint32 {
1318 if m != nil {
1319 return m.UncorrectableCodeWords
1320 }
1321 return 0
1322}
1323
1324type GetOnuCountersRequest struct {
1325 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
1326 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
1327 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1328 XXX_unrecognized []byte `json:"-"`
1329 XXX_sizecache int32 `json:"-"`
1330}
1331
1332func (m *GetOnuCountersRequest) Reset() { *m = GetOnuCountersRequest{} }
1333func (m *GetOnuCountersRequest) String() string { return proto.CompactTextString(m) }
1334func (*GetOnuCountersRequest) ProtoMessage() {}
1335func (*GetOnuCountersRequest) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001336 return fileDescriptor_7ecf6e9799a9202d, []int{16}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001337}
1338
1339func (m *GetOnuCountersRequest) XXX_Unmarshal(b []byte) error {
1340 return xxx_messageInfo_GetOnuCountersRequest.Unmarshal(m, b)
1341}
1342func (m *GetOnuCountersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1343 return xxx_messageInfo_GetOnuCountersRequest.Marshal(b, m, deterministic)
1344}
1345func (m *GetOnuCountersRequest) XXX_Merge(src proto.Message) {
1346 xxx_messageInfo_GetOnuCountersRequest.Merge(m, src)
1347}
1348func (m *GetOnuCountersRequest) XXX_Size() int {
1349 return xxx_messageInfo_GetOnuCountersRequest.Size(m)
1350}
1351func (m *GetOnuCountersRequest) XXX_DiscardUnknown() {
1352 xxx_messageInfo_GetOnuCountersRequest.DiscardUnknown(m)
1353}
1354
1355var xxx_messageInfo_GetOnuCountersRequest proto.InternalMessageInfo
1356
1357func (m *GetOnuCountersRequest) GetIntfId() uint32 {
1358 if m != nil {
1359 return m.IntfId
1360 }
1361 return 0
1362}
1363
1364func (m *GetOnuCountersRequest) GetOnuId() uint32 {
1365 if m != nil {
1366 return m.OnuId
1367 }
1368 return 0
1369}
1370
1371type GetOmciEthernetFrameExtendedPmRequest struct {
Himani Chawla806aa892021-08-30 15:51:46 +05301372 OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
1373 // Types that are valid to be assigned to IsUniIndex:
1374 // *GetOmciEthernetFrameExtendedPmRequest_UniIndex
1375 IsUniIndex isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex `protobuf_oneof:"is_uni_index"`
1376 Reset_ bool `protobuf:"varint,3,opt,name=reset,proto3" json:"reset,omitempty"`
1377 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1378 XXX_unrecognized []byte `json:"-"`
1379 XXX_sizecache int32 `json:"-"`
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001380}
1381
1382func (m *GetOmciEthernetFrameExtendedPmRequest) Reset() { *m = GetOmciEthernetFrameExtendedPmRequest{} }
1383func (m *GetOmciEthernetFrameExtendedPmRequest) String() string { return proto.CompactTextString(m) }
1384func (*GetOmciEthernetFrameExtendedPmRequest) ProtoMessage() {}
1385func (*GetOmciEthernetFrameExtendedPmRequest) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001386 return fileDescriptor_7ecf6e9799a9202d, []int{17}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001387}
1388
1389func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Unmarshal(b []byte) error {
1390 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Unmarshal(m, b)
1391}
1392func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1393 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Marshal(b, m, deterministic)
1394}
1395func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Merge(src proto.Message) {
1396 xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Merge(m, src)
1397}
1398func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Size() int {
1399 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Size(m)
1400}
1401func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_DiscardUnknown() {
1402 xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.DiscardUnknown(m)
1403}
1404
1405var xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest proto.InternalMessageInfo
1406
1407func (m *GetOmciEthernetFrameExtendedPmRequest) GetOnuDeviceId() string {
1408 if m != nil {
1409 return m.OnuDeviceId
1410 }
1411 return ""
1412}
1413
Himani Chawla806aa892021-08-30 15:51:46 +05301414type isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex interface {
1415 isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex()
1416}
1417
1418type GetOmciEthernetFrameExtendedPmRequest_UniIndex struct {
1419 UniIndex uint32 `protobuf:"varint,2,opt,name=uniIndex,proto3,oneof"`
1420}
1421
1422func (*GetOmciEthernetFrameExtendedPmRequest_UniIndex) isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex() {
1423}
1424
1425func (m *GetOmciEthernetFrameExtendedPmRequest) GetIsUniIndex() isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex {
1426 if m != nil {
1427 return m.IsUniIndex
1428 }
1429 return nil
1430}
1431
1432func (m *GetOmciEthernetFrameExtendedPmRequest) GetUniIndex() uint32 {
1433 if x, ok := m.GetIsUniIndex().(*GetOmciEthernetFrameExtendedPmRequest_UniIndex); ok {
1434 return x.UniIndex
1435 }
1436 return 0
1437}
1438
1439func (m *GetOmciEthernetFrameExtendedPmRequest) GetReset_() bool {
1440 if m != nil {
1441 return m.Reset_
1442 }
1443 return false
1444}
1445
1446// XXX_OneofWrappers is for the internal use of the proto package.
1447func (*GetOmciEthernetFrameExtendedPmRequest) XXX_OneofWrappers() []interface{} {
1448 return []interface{}{
1449 (*GetOmciEthernetFrameExtendedPmRequest_UniIndex)(nil),
1450 }
1451}
1452
praneeth nalmas1dd094c2022-12-22 14:15:13 +05301453// DEPRECATED
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001454type GetRxPowerRequest struct {
1455 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
1456 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
1457 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1458 XXX_unrecognized []byte `json:"-"`
1459 XXX_sizecache int32 `json:"-"`
1460}
1461
1462func (m *GetRxPowerRequest) Reset() { *m = GetRxPowerRequest{} }
1463func (m *GetRxPowerRequest) String() string { return proto.CompactTextString(m) }
1464func (*GetRxPowerRequest) ProtoMessage() {}
1465func (*GetRxPowerRequest) Descriptor() ([]byte, []int) {
khenaidoo080ce882021-10-19 17:35:08 -04001466 return fileDescriptor_7ecf6e9799a9202d, []int{18}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001467}
1468
1469func (m *GetRxPowerRequest) XXX_Unmarshal(b []byte) error {
1470 return xxx_messageInfo_GetRxPowerRequest.Unmarshal(m, b)
1471}
1472func (m *GetRxPowerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1473 return xxx_messageInfo_GetRxPowerRequest.Marshal(b, m, deterministic)
1474}
1475func (m *GetRxPowerRequest) XXX_Merge(src proto.Message) {
1476 xxx_messageInfo_GetRxPowerRequest.Merge(m, src)
1477}
1478func (m *GetRxPowerRequest) XXX_Size() int {
1479 return xxx_messageInfo_GetRxPowerRequest.Size(m)
1480}
1481func (m *GetRxPowerRequest) XXX_DiscardUnknown() {
1482 xxx_messageInfo_GetRxPowerRequest.DiscardUnknown(m)
1483}
1484
1485var xxx_messageInfo_GetRxPowerRequest proto.InternalMessageInfo
1486
1487func (m *GetRxPowerRequest) GetIntfId() uint32 {
1488 if m != nil {
1489 return m.IntfId
1490 }
1491 return 0
1492}
1493
1494func (m *GetRxPowerRequest) GetOnuId() uint32 {
1495 if m != nil {
1496 return m.OnuId
1497 }
1498 return 0
1499}
1500
praneeth nalmas1dd094c2022-12-22 14:15:13 +05301501type GetOltRxPowerRequest struct {
1502 PortLabel string `protobuf:"bytes,1,opt,name=port_label,json=portLabel,proto3" json:"port_label,omitempty"`
1503 // onu_sn is optional and if onu_sn is an empty string and the label is
1504 // of a PON port then it means that the Rx Power corresponding to all
1505 // the ONUs on that PON port is requested. In case the port_label is not
1506 // of a PON port, the onu_sn does not have any significance
1507 OnuSn string `protobuf:"bytes,2,opt,name=onu_sn,json=onuSn,proto3" json:"onu_sn,omitempty"`
1508 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1509 XXX_unrecognized []byte `json:"-"`
1510 XXX_sizecache int32 `json:"-"`
1511}
1512
1513func (m *GetOltRxPowerRequest) Reset() { *m = GetOltRxPowerRequest{} }
1514func (m *GetOltRxPowerRequest) String() string { return proto.CompactTextString(m) }
1515func (*GetOltRxPowerRequest) ProtoMessage() {}
1516func (*GetOltRxPowerRequest) Descriptor() ([]byte, []int) {
1517 return fileDescriptor_7ecf6e9799a9202d, []int{19}
1518}
1519
1520func (m *GetOltRxPowerRequest) XXX_Unmarshal(b []byte) error {
1521 return xxx_messageInfo_GetOltRxPowerRequest.Unmarshal(m, b)
1522}
1523func (m *GetOltRxPowerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1524 return xxx_messageInfo_GetOltRxPowerRequest.Marshal(b, m, deterministic)
1525}
1526func (m *GetOltRxPowerRequest) XXX_Merge(src proto.Message) {
1527 xxx_messageInfo_GetOltRxPowerRequest.Merge(m, src)
1528}
1529func (m *GetOltRxPowerRequest) XXX_Size() int {
1530 return xxx_messageInfo_GetOltRxPowerRequest.Size(m)
1531}
1532func (m *GetOltRxPowerRequest) XXX_DiscardUnknown() {
1533 xxx_messageInfo_GetOltRxPowerRequest.DiscardUnknown(m)
1534}
1535
1536var xxx_messageInfo_GetOltRxPowerRequest proto.InternalMessageInfo
1537
1538func (m *GetOltRxPowerRequest) GetPortLabel() string {
1539 if m != nil {
1540 return m.PortLabel
1541 }
1542 return ""
1543}
1544
1545func (m *GetOltRxPowerRequest) GetOnuSn() string {
1546 if m != nil {
1547 return m.OnuSn
1548 }
1549 return ""
1550}
1551
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001552type GetOnuCountersResponse struct {
1553 // Types that are valid to be assigned to IsIntfId:
1554 // *GetOnuCountersResponse_IntfId
1555 IsIntfId isGetOnuCountersResponse_IsIntfId `protobuf_oneof:"is_intf_id"`
1556 // Types that are valid to be assigned to IsOnuId:
1557 // *GetOnuCountersResponse_OnuId
1558 IsOnuId isGetOnuCountersResponse_IsOnuId `protobuf_oneof:"is_onu_id"`
1559 // Types that are valid to be assigned to IsPositiveDrift:
1560 // *GetOnuCountersResponse_PositiveDrift
1561 IsPositiveDrift isGetOnuCountersResponse_IsPositiveDrift `protobuf_oneof:"is_positive_drift"`
1562 // Types that are valid to be assigned to IsNegativeDrift:
1563 // *GetOnuCountersResponse_NegativeDrift
1564 IsNegativeDrift isGetOnuCountersResponse_IsNegativeDrift `protobuf_oneof:"is_negative_drift"`
1565 // Types that are valid to be assigned to IsDelimiterMissDetection:
1566 // *GetOnuCountersResponse_DelimiterMissDetection
1567 IsDelimiterMissDetection isGetOnuCountersResponse_IsDelimiterMissDetection `protobuf_oneof:"is_delimiter_miss_detection"`
1568 // Types that are valid to be assigned to IsBipErrors:
1569 // *GetOnuCountersResponse_BipErrors
1570 IsBipErrors isGetOnuCountersResponse_IsBipErrors `protobuf_oneof:"is_bip_errors"`
1571 // Types that are valid to be assigned to IsBipUnits:
1572 // *GetOnuCountersResponse_BipUnits
1573 IsBipUnits isGetOnuCountersResponse_IsBipUnits `protobuf_oneof:"is_bip_units"`
1574 // Types that are valid to be assigned to IsFecCorrectedSymbols:
1575 // *GetOnuCountersResponse_FecCorrectedSymbols
1576 IsFecCorrectedSymbols isGetOnuCountersResponse_IsFecCorrectedSymbols `protobuf_oneof:"is_fec_corrected_symbols"`
1577 // Types that are valid to be assigned to IsFecCodewordsCorrected:
1578 // *GetOnuCountersResponse_FecCodewordsCorrected
1579 IsFecCodewordsCorrected isGetOnuCountersResponse_IsFecCodewordsCorrected `protobuf_oneof:"is_fec_codewords_corrected"`
1580 // Types that are valid to be assigned to IsFecCodewordsUncorrectable:
1581 // *GetOnuCountersResponse_FecCodewordsUncorrectable
1582 IsFecCodewordsUncorrectable isGetOnuCountersResponse_IsFecCodewordsUncorrectable `protobuf_oneof:"is_fec_codewords_uncorrectable"`
1583 // Types that are valid to be assigned to IsFecCodewords:
1584 // *GetOnuCountersResponse_FecCodewords
1585 IsFecCodewords isGetOnuCountersResponse_IsFecCodewords `protobuf_oneof:"is_fec_codewords"`
1586 // Types that are valid to be assigned to IsFecCorrectedUnits:
1587 // *GetOnuCountersResponse_FecCorrectedUnits
1588 IsFecCorrectedUnits isGetOnuCountersResponse_IsFecCorrectedUnits `protobuf_oneof:"is_fec_corrected_units"`
1589 // Types that are valid to be assigned to IsXgemKeyErrors:
1590 // *GetOnuCountersResponse_XgemKeyErrors
1591 IsXgemKeyErrors isGetOnuCountersResponse_IsXgemKeyErrors `protobuf_oneof:"is_xgem_key_errors"`
1592 // Types that are valid to be assigned to IsXgemLoss:
1593 // *GetOnuCountersResponse_XgemLoss
1594 IsXgemLoss isGetOnuCountersResponse_IsXgemLoss `protobuf_oneof:"is_xgem_loss"`
1595 // Types that are valid to be assigned to IsRxPloamsError:
1596 // *GetOnuCountersResponse_RxPloamsError
1597 IsRxPloamsError isGetOnuCountersResponse_IsRxPloamsError `protobuf_oneof:"is_rx_ploams_error"`
1598 // Types that are valid to be assigned to IsRxPloamsNonIdle:
1599 // *GetOnuCountersResponse_RxPloamsNonIdle
1600 IsRxPloamsNonIdle isGetOnuCountersResponse_IsRxPloamsNonIdle `protobuf_oneof:"is_rx_ploams_non_idle"`
1601 // Types that are valid to be assigned to IsRxOmci:
1602 // *GetOnuCountersResponse_RxOmci
1603 IsRxOmci isGetOnuCountersResponse_IsRxOmci `protobuf_oneof:"is_rx_omci"`
1604 // Types that are valid to be assigned to IsTxOmci:
1605 // *GetOnuCountersResponse_TxOmci
1606 IsTxOmci isGetOnuCountersResponse_IsTxOmci `protobuf_oneof:"is_tx_omci"`
1607 // Types that are valid to be assigned to IsRxOmciPacketsCrcError:
1608 // *GetOnuCountersResponse_RxOmciPacketsCrcError
1609 IsRxOmciPacketsCrcError isGetOnuCountersResponse_IsRxOmciPacketsCrcError `protobuf_oneof:"is_rx_omci_packets_crc_error"`
1610 // Types that are valid to be assigned to IsRxBytes:
1611 // *GetOnuCountersResponse_RxBytes
1612 IsRxBytes isGetOnuCountersResponse_IsRxBytes `protobuf_oneof:"is_rx_bytes"`
1613 // Types that are valid to be assigned to IsRxPackets:
1614 // *GetOnuCountersResponse_RxPackets
1615 IsRxPackets isGetOnuCountersResponse_IsRxPackets `protobuf_oneof:"is_rx_packets"`
1616 // Types that are valid to be assigned to IsTxBytes:
1617 // *GetOnuCountersResponse_TxBytes
1618 IsTxBytes isGetOnuCountersResponse_IsTxBytes `protobuf_oneof:"is_tx_bytes"`
1619 // Types that are valid to be assigned to IsTxPackets:
1620 // *GetOnuCountersResponse_TxPackets
1621 IsTxPackets isGetOnuCountersResponse_IsTxPackets `protobuf_oneof:"is_tx_packets"`
1622 // Types that are valid to be assigned to IsBerReported:
1623 // *GetOnuCountersResponse_BerReported
1624 IsBerReported isGetOnuCountersResponse_IsBerReported `protobuf_oneof:"is_ber_reported"`
1625 // Types that are valid to be assigned to IsLcdgErrors:
1626 // *GetOnuCountersResponse_LcdgErrors
1627 IsLcdgErrors isGetOnuCountersResponse_IsLcdgErrors `protobuf_oneof:"is_lcdg_errors"`
1628 // Types that are valid to be assigned to IsRdiErrors:
1629 // *GetOnuCountersResponse_RdiErrors
1630 IsRdiErrors isGetOnuCountersResponse_IsRdiErrors `protobuf_oneof:"is_rdi_errors"`
1631 // Types that are valid to be assigned to IsTimestamp:
1632 // *GetOnuCountersResponse_Timestamp
1633 IsTimestamp isGetOnuCountersResponse_IsTimestamp `protobuf_oneof:"is_timestamp"`
1634 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1635 XXX_unrecognized []byte `json:"-"`
1636 XXX_sizecache int32 `json:"-"`
1637}
1638
1639func (m *GetOnuCountersResponse) Reset() { *m = GetOnuCountersResponse{} }
1640func (m *GetOnuCountersResponse) String() string { return proto.CompactTextString(m) }
1641func (*GetOnuCountersResponse) ProtoMessage() {}
1642func (*GetOnuCountersResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05301643 return fileDescriptor_7ecf6e9799a9202d, []int{20}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001644}
1645
1646func (m *GetOnuCountersResponse) XXX_Unmarshal(b []byte) error {
1647 return xxx_messageInfo_GetOnuCountersResponse.Unmarshal(m, b)
1648}
1649func (m *GetOnuCountersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1650 return xxx_messageInfo_GetOnuCountersResponse.Marshal(b, m, deterministic)
1651}
1652func (m *GetOnuCountersResponse) XXX_Merge(src proto.Message) {
1653 xxx_messageInfo_GetOnuCountersResponse.Merge(m, src)
1654}
1655func (m *GetOnuCountersResponse) XXX_Size() int {
1656 return xxx_messageInfo_GetOnuCountersResponse.Size(m)
1657}
1658func (m *GetOnuCountersResponse) XXX_DiscardUnknown() {
1659 xxx_messageInfo_GetOnuCountersResponse.DiscardUnknown(m)
1660}
1661
1662var xxx_messageInfo_GetOnuCountersResponse proto.InternalMessageInfo
1663
1664type isGetOnuCountersResponse_IsIntfId interface {
1665 isGetOnuCountersResponse_IsIntfId()
1666}
1667
1668type GetOnuCountersResponse_IntfId struct {
1669 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3,oneof"`
1670}
1671
1672func (*GetOnuCountersResponse_IntfId) isGetOnuCountersResponse_IsIntfId() {}
1673
1674func (m *GetOnuCountersResponse) GetIsIntfId() isGetOnuCountersResponse_IsIntfId {
1675 if m != nil {
1676 return m.IsIntfId
1677 }
1678 return nil
1679}
1680
1681func (m *GetOnuCountersResponse) GetIntfId() uint32 {
1682 if x, ok := m.GetIsIntfId().(*GetOnuCountersResponse_IntfId); ok {
1683 return x.IntfId
1684 }
1685 return 0
1686}
1687
1688type isGetOnuCountersResponse_IsOnuId interface {
1689 isGetOnuCountersResponse_IsOnuId()
1690}
1691
1692type GetOnuCountersResponse_OnuId struct {
1693 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3,oneof"`
1694}
1695
1696func (*GetOnuCountersResponse_OnuId) isGetOnuCountersResponse_IsOnuId() {}
1697
1698func (m *GetOnuCountersResponse) GetIsOnuId() isGetOnuCountersResponse_IsOnuId {
1699 if m != nil {
1700 return m.IsOnuId
1701 }
1702 return nil
1703}
1704
1705func (m *GetOnuCountersResponse) GetOnuId() uint32 {
1706 if x, ok := m.GetIsOnuId().(*GetOnuCountersResponse_OnuId); ok {
1707 return x.OnuId
1708 }
1709 return 0
1710}
1711
1712type isGetOnuCountersResponse_IsPositiveDrift interface {
1713 isGetOnuCountersResponse_IsPositiveDrift()
1714}
1715
1716type GetOnuCountersResponse_PositiveDrift struct {
1717 PositiveDrift uint64 `protobuf:"fixed64,3,opt,name=positive_drift,json=positiveDrift,proto3,oneof"`
1718}
1719
1720func (*GetOnuCountersResponse_PositiveDrift) isGetOnuCountersResponse_IsPositiveDrift() {}
1721
1722func (m *GetOnuCountersResponse) GetIsPositiveDrift() isGetOnuCountersResponse_IsPositiveDrift {
1723 if m != nil {
1724 return m.IsPositiveDrift
1725 }
1726 return nil
1727}
1728
1729func (m *GetOnuCountersResponse) GetPositiveDrift() uint64 {
1730 if x, ok := m.GetIsPositiveDrift().(*GetOnuCountersResponse_PositiveDrift); ok {
1731 return x.PositiveDrift
1732 }
1733 return 0
1734}
1735
1736type isGetOnuCountersResponse_IsNegativeDrift interface {
1737 isGetOnuCountersResponse_IsNegativeDrift()
1738}
1739
1740type GetOnuCountersResponse_NegativeDrift struct {
1741 NegativeDrift uint64 `protobuf:"fixed64,4,opt,name=negative_drift,json=negativeDrift,proto3,oneof"`
1742}
1743
1744func (*GetOnuCountersResponse_NegativeDrift) isGetOnuCountersResponse_IsNegativeDrift() {}
1745
1746func (m *GetOnuCountersResponse) GetIsNegativeDrift() isGetOnuCountersResponse_IsNegativeDrift {
1747 if m != nil {
1748 return m.IsNegativeDrift
1749 }
1750 return nil
1751}
1752
1753func (m *GetOnuCountersResponse) GetNegativeDrift() uint64 {
1754 if x, ok := m.GetIsNegativeDrift().(*GetOnuCountersResponse_NegativeDrift); ok {
1755 return x.NegativeDrift
1756 }
1757 return 0
1758}
1759
1760type isGetOnuCountersResponse_IsDelimiterMissDetection interface {
1761 isGetOnuCountersResponse_IsDelimiterMissDetection()
1762}
1763
1764type GetOnuCountersResponse_DelimiterMissDetection struct {
1765 DelimiterMissDetection uint64 `protobuf:"fixed64,5,opt,name=delimiter_miss_detection,json=delimiterMissDetection,proto3,oneof"`
1766}
1767
1768func (*GetOnuCountersResponse_DelimiterMissDetection) isGetOnuCountersResponse_IsDelimiterMissDetection() {
1769}
1770
1771func (m *GetOnuCountersResponse) GetIsDelimiterMissDetection() isGetOnuCountersResponse_IsDelimiterMissDetection {
1772 if m != nil {
1773 return m.IsDelimiterMissDetection
1774 }
1775 return nil
1776}
1777
1778func (m *GetOnuCountersResponse) GetDelimiterMissDetection() uint64 {
1779 if x, ok := m.GetIsDelimiterMissDetection().(*GetOnuCountersResponse_DelimiterMissDetection); ok {
1780 return x.DelimiterMissDetection
1781 }
1782 return 0
1783}
1784
1785type isGetOnuCountersResponse_IsBipErrors interface {
1786 isGetOnuCountersResponse_IsBipErrors()
1787}
1788
1789type GetOnuCountersResponse_BipErrors struct {
1790 BipErrors uint64 `protobuf:"fixed64,6,opt,name=bip_errors,json=bipErrors,proto3,oneof"`
1791}
1792
1793func (*GetOnuCountersResponse_BipErrors) isGetOnuCountersResponse_IsBipErrors() {}
1794
1795func (m *GetOnuCountersResponse) GetIsBipErrors() isGetOnuCountersResponse_IsBipErrors {
1796 if m != nil {
1797 return m.IsBipErrors
1798 }
1799 return nil
1800}
1801
1802func (m *GetOnuCountersResponse) GetBipErrors() uint64 {
1803 if x, ok := m.GetIsBipErrors().(*GetOnuCountersResponse_BipErrors); ok {
1804 return x.BipErrors
1805 }
1806 return 0
1807}
1808
1809type isGetOnuCountersResponse_IsBipUnits interface {
1810 isGetOnuCountersResponse_IsBipUnits()
1811}
1812
1813type GetOnuCountersResponse_BipUnits struct {
1814 BipUnits uint64 `protobuf:"fixed64,7,opt,name=bip_units,json=bipUnits,proto3,oneof"`
1815}
1816
1817func (*GetOnuCountersResponse_BipUnits) isGetOnuCountersResponse_IsBipUnits() {}
1818
1819func (m *GetOnuCountersResponse) GetIsBipUnits() isGetOnuCountersResponse_IsBipUnits {
1820 if m != nil {
1821 return m.IsBipUnits
1822 }
1823 return nil
1824}
1825
1826func (m *GetOnuCountersResponse) GetBipUnits() uint64 {
1827 if x, ok := m.GetIsBipUnits().(*GetOnuCountersResponse_BipUnits); ok {
1828 return x.BipUnits
1829 }
1830 return 0
1831}
1832
1833type isGetOnuCountersResponse_IsFecCorrectedSymbols interface {
1834 isGetOnuCountersResponse_IsFecCorrectedSymbols()
1835}
1836
1837type GetOnuCountersResponse_FecCorrectedSymbols struct {
1838 FecCorrectedSymbols uint64 `protobuf:"fixed64,8,opt,name=fec_corrected_symbols,json=fecCorrectedSymbols,proto3,oneof"`
1839}
1840
1841func (*GetOnuCountersResponse_FecCorrectedSymbols) isGetOnuCountersResponse_IsFecCorrectedSymbols() {}
1842
1843func (m *GetOnuCountersResponse) GetIsFecCorrectedSymbols() isGetOnuCountersResponse_IsFecCorrectedSymbols {
1844 if m != nil {
1845 return m.IsFecCorrectedSymbols
1846 }
1847 return nil
1848}
1849
1850func (m *GetOnuCountersResponse) GetFecCorrectedSymbols() uint64 {
1851 if x, ok := m.GetIsFecCorrectedSymbols().(*GetOnuCountersResponse_FecCorrectedSymbols); ok {
1852 return x.FecCorrectedSymbols
1853 }
1854 return 0
1855}
1856
1857type isGetOnuCountersResponse_IsFecCodewordsCorrected interface {
1858 isGetOnuCountersResponse_IsFecCodewordsCorrected()
1859}
1860
1861type GetOnuCountersResponse_FecCodewordsCorrected struct {
1862 FecCodewordsCorrected uint64 `protobuf:"fixed64,9,opt,name=fec_codewords_corrected,json=fecCodewordsCorrected,proto3,oneof"`
1863}
1864
1865func (*GetOnuCountersResponse_FecCodewordsCorrected) isGetOnuCountersResponse_IsFecCodewordsCorrected() {
1866}
1867
1868func (m *GetOnuCountersResponse) GetIsFecCodewordsCorrected() isGetOnuCountersResponse_IsFecCodewordsCorrected {
1869 if m != nil {
1870 return m.IsFecCodewordsCorrected
1871 }
1872 return nil
1873}
1874
1875func (m *GetOnuCountersResponse) GetFecCodewordsCorrected() uint64 {
1876 if x, ok := m.GetIsFecCodewordsCorrected().(*GetOnuCountersResponse_FecCodewordsCorrected); ok {
1877 return x.FecCodewordsCorrected
1878 }
1879 return 0
1880}
1881
1882type isGetOnuCountersResponse_IsFecCodewordsUncorrectable interface {
1883 isGetOnuCountersResponse_IsFecCodewordsUncorrectable()
1884}
1885
1886type GetOnuCountersResponse_FecCodewordsUncorrectable struct {
1887 FecCodewordsUncorrectable uint64 `protobuf:"fixed64,10,opt,name=fec_codewords_uncorrectable,json=fecCodewordsUncorrectable,proto3,oneof"`
1888}
1889
1890func (*GetOnuCountersResponse_FecCodewordsUncorrectable) isGetOnuCountersResponse_IsFecCodewordsUncorrectable() {
1891}
1892
1893func (m *GetOnuCountersResponse) GetIsFecCodewordsUncorrectable() isGetOnuCountersResponse_IsFecCodewordsUncorrectable {
1894 if m != nil {
1895 return m.IsFecCodewordsUncorrectable
1896 }
1897 return nil
1898}
1899
1900func (m *GetOnuCountersResponse) GetFecCodewordsUncorrectable() uint64 {
1901 if x, ok := m.GetIsFecCodewordsUncorrectable().(*GetOnuCountersResponse_FecCodewordsUncorrectable); ok {
1902 return x.FecCodewordsUncorrectable
1903 }
1904 return 0
1905}
1906
1907type isGetOnuCountersResponse_IsFecCodewords interface {
1908 isGetOnuCountersResponse_IsFecCodewords()
1909}
1910
1911type GetOnuCountersResponse_FecCodewords struct {
1912 FecCodewords uint64 `protobuf:"fixed64,11,opt,name=fec_codewords,json=fecCodewords,proto3,oneof"`
1913}
1914
1915func (*GetOnuCountersResponse_FecCodewords) isGetOnuCountersResponse_IsFecCodewords() {}
1916
1917func (m *GetOnuCountersResponse) GetIsFecCodewords() isGetOnuCountersResponse_IsFecCodewords {
1918 if m != nil {
1919 return m.IsFecCodewords
1920 }
1921 return nil
1922}
1923
1924func (m *GetOnuCountersResponse) GetFecCodewords() uint64 {
1925 if x, ok := m.GetIsFecCodewords().(*GetOnuCountersResponse_FecCodewords); ok {
1926 return x.FecCodewords
1927 }
1928 return 0
1929}
1930
1931type isGetOnuCountersResponse_IsFecCorrectedUnits interface {
1932 isGetOnuCountersResponse_IsFecCorrectedUnits()
1933}
1934
1935type GetOnuCountersResponse_FecCorrectedUnits struct {
1936 FecCorrectedUnits uint64 `protobuf:"fixed64,12,opt,name=fec_corrected_units,json=fecCorrectedUnits,proto3,oneof"`
1937}
1938
1939func (*GetOnuCountersResponse_FecCorrectedUnits) isGetOnuCountersResponse_IsFecCorrectedUnits() {}
1940
1941func (m *GetOnuCountersResponse) GetIsFecCorrectedUnits() isGetOnuCountersResponse_IsFecCorrectedUnits {
1942 if m != nil {
1943 return m.IsFecCorrectedUnits
1944 }
1945 return nil
1946}
1947
1948func (m *GetOnuCountersResponse) GetFecCorrectedUnits() uint64 {
1949 if x, ok := m.GetIsFecCorrectedUnits().(*GetOnuCountersResponse_FecCorrectedUnits); ok {
1950 return x.FecCorrectedUnits
1951 }
1952 return 0
1953}
1954
1955type isGetOnuCountersResponse_IsXgemKeyErrors interface {
1956 isGetOnuCountersResponse_IsXgemKeyErrors()
1957}
1958
1959type GetOnuCountersResponse_XgemKeyErrors struct {
1960 XgemKeyErrors uint64 `protobuf:"fixed64,13,opt,name=xgem_key_errors,json=xgemKeyErrors,proto3,oneof"`
1961}
1962
1963func (*GetOnuCountersResponse_XgemKeyErrors) isGetOnuCountersResponse_IsXgemKeyErrors() {}
1964
1965func (m *GetOnuCountersResponse) GetIsXgemKeyErrors() isGetOnuCountersResponse_IsXgemKeyErrors {
1966 if m != nil {
1967 return m.IsXgemKeyErrors
1968 }
1969 return nil
1970}
1971
1972func (m *GetOnuCountersResponse) GetXgemKeyErrors() uint64 {
1973 if x, ok := m.GetIsXgemKeyErrors().(*GetOnuCountersResponse_XgemKeyErrors); ok {
1974 return x.XgemKeyErrors
1975 }
1976 return 0
1977}
1978
1979type isGetOnuCountersResponse_IsXgemLoss interface {
1980 isGetOnuCountersResponse_IsXgemLoss()
1981}
1982
1983type GetOnuCountersResponse_XgemLoss struct {
1984 XgemLoss uint64 `protobuf:"fixed64,14,opt,name=xgem_loss,json=xgemLoss,proto3,oneof"`
1985}
1986
1987func (*GetOnuCountersResponse_XgemLoss) isGetOnuCountersResponse_IsXgemLoss() {}
1988
1989func (m *GetOnuCountersResponse) GetIsXgemLoss() isGetOnuCountersResponse_IsXgemLoss {
1990 if m != nil {
1991 return m.IsXgemLoss
1992 }
1993 return nil
1994}
1995
1996func (m *GetOnuCountersResponse) GetXgemLoss() uint64 {
1997 if x, ok := m.GetIsXgemLoss().(*GetOnuCountersResponse_XgemLoss); ok {
1998 return x.XgemLoss
1999 }
2000 return 0
2001}
2002
2003type isGetOnuCountersResponse_IsRxPloamsError interface {
2004 isGetOnuCountersResponse_IsRxPloamsError()
2005}
2006
2007type GetOnuCountersResponse_RxPloamsError struct {
2008 RxPloamsError uint64 `protobuf:"fixed64,15,opt,name=rx_ploams_error,json=rxPloamsError,proto3,oneof"`
2009}
2010
2011func (*GetOnuCountersResponse_RxPloamsError) isGetOnuCountersResponse_IsRxPloamsError() {}
2012
2013func (m *GetOnuCountersResponse) GetIsRxPloamsError() isGetOnuCountersResponse_IsRxPloamsError {
2014 if m != nil {
2015 return m.IsRxPloamsError
2016 }
2017 return nil
2018}
2019
2020func (m *GetOnuCountersResponse) GetRxPloamsError() uint64 {
2021 if x, ok := m.GetIsRxPloamsError().(*GetOnuCountersResponse_RxPloamsError); ok {
2022 return x.RxPloamsError
2023 }
2024 return 0
2025}
2026
2027type isGetOnuCountersResponse_IsRxPloamsNonIdle interface {
2028 isGetOnuCountersResponse_IsRxPloamsNonIdle()
2029}
2030
2031type GetOnuCountersResponse_RxPloamsNonIdle struct {
2032 RxPloamsNonIdle uint64 `protobuf:"fixed64,16,opt,name=rx_ploams_non_idle,json=rxPloamsNonIdle,proto3,oneof"`
2033}
2034
2035func (*GetOnuCountersResponse_RxPloamsNonIdle) isGetOnuCountersResponse_IsRxPloamsNonIdle() {}
2036
2037func (m *GetOnuCountersResponse) GetIsRxPloamsNonIdle() isGetOnuCountersResponse_IsRxPloamsNonIdle {
2038 if m != nil {
2039 return m.IsRxPloamsNonIdle
2040 }
2041 return nil
2042}
2043
2044func (m *GetOnuCountersResponse) GetRxPloamsNonIdle() uint64 {
2045 if x, ok := m.GetIsRxPloamsNonIdle().(*GetOnuCountersResponse_RxPloamsNonIdle); ok {
2046 return x.RxPloamsNonIdle
2047 }
2048 return 0
2049}
2050
2051type isGetOnuCountersResponse_IsRxOmci interface {
2052 isGetOnuCountersResponse_IsRxOmci()
2053}
2054
2055type GetOnuCountersResponse_RxOmci struct {
2056 RxOmci uint64 `protobuf:"fixed64,17,opt,name=rx_omci,json=rxOmci,proto3,oneof"`
2057}
2058
2059func (*GetOnuCountersResponse_RxOmci) isGetOnuCountersResponse_IsRxOmci() {}
2060
2061func (m *GetOnuCountersResponse) GetIsRxOmci() isGetOnuCountersResponse_IsRxOmci {
2062 if m != nil {
2063 return m.IsRxOmci
2064 }
2065 return nil
2066}
2067
2068func (m *GetOnuCountersResponse) GetRxOmci() uint64 {
2069 if x, ok := m.GetIsRxOmci().(*GetOnuCountersResponse_RxOmci); ok {
2070 return x.RxOmci
2071 }
2072 return 0
2073}
2074
2075type isGetOnuCountersResponse_IsTxOmci interface {
2076 isGetOnuCountersResponse_IsTxOmci()
2077}
2078
2079type GetOnuCountersResponse_TxOmci struct {
2080 TxOmci uint64 `protobuf:"fixed64,18,opt,name=tx_omci,json=txOmci,proto3,oneof"`
2081}
2082
2083func (*GetOnuCountersResponse_TxOmci) isGetOnuCountersResponse_IsTxOmci() {}
2084
2085func (m *GetOnuCountersResponse) GetIsTxOmci() isGetOnuCountersResponse_IsTxOmci {
2086 if m != nil {
2087 return m.IsTxOmci
2088 }
2089 return nil
2090}
2091
2092func (m *GetOnuCountersResponse) GetTxOmci() uint64 {
2093 if x, ok := m.GetIsTxOmci().(*GetOnuCountersResponse_TxOmci); ok {
2094 return x.TxOmci
2095 }
2096 return 0
2097}
2098
2099type isGetOnuCountersResponse_IsRxOmciPacketsCrcError interface {
2100 isGetOnuCountersResponse_IsRxOmciPacketsCrcError()
2101}
2102
2103type GetOnuCountersResponse_RxOmciPacketsCrcError struct {
2104 RxOmciPacketsCrcError uint64 `protobuf:"fixed64,19,opt,name=rx_omci_packets_crc_error,json=rxOmciPacketsCrcError,proto3,oneof"`
2105}
2106
2107func (*GetOnuCountersResponse_RxOmciPacketsCrcError) isGetOnuCountersResponse_IsRxOmciPacketsCrcError() {
2108}
2109
2110func (m *GetOnuCountersResponse) GetIsRxOmciPacketsCrcError() isGetOnuCountersResponse_IsRxOmciPacketsCrcError {
2111 if m != nil {
2112 return m.IsRxOmciPacketsCrcError
2113 }
2114 return nil
2115}
2116
2117func (m *GetOnuCountersResponse) GetRxOmciPacketsCrcError() uint64 {
2118 if x, ok := m.GetIsRxOmciPacketsCrcError().(*GetOnuCountersResponse_RxOmciPacketsCrcError); ok {
2119 return x.RxOmciPacketsCrcError
2120 }
2121 return 0
2122}
2123
2124type isGetOnuCountersResponse_IsRxBytes interface {
2125 isGetOnuCountersResponse_IsRxBytes()
2126}
2127
2128type GetOnuCountersResponse_RxBytes struct {
2129 RxBytes uint64 `protobuf:"fixed64,20,opt,name=rx_bytes,json=rxBytes,proto3,oneof"`
2130}
2131
2132func (*GetOnuCountersResponse_RxBytes) isGetOnuCountersResponse_IsRxBytes() {}
2133
2134func (m *GetOnuCountersResponse) GetIsRxBytes() isGetOnuCountersResponse_IsRxBytes {
2135 if m != nil {
2136 return m.IsRxBytes
2137 }
2138 return nil
2139}
2140
2141func (m *GetOnuCountersResponse) GetRxBytes() uint64 {
2142 if x, ok := m.GetIsRxBytes().(*GetOnuCountersResponse_RxBytes); ok {
2143 return x.RxBytes
2144 }
2145 return 0
2146}
2147
2148type isGetOnuCountersResponse_IsRxPackets interface {
2149 isGetOnuCountersResponse_IsRxPackets()
2150}
2151
2152type GetOnuCountersResponse_RxPackets struct {
2153 RxPackets uint64 `protobuf:"fixed64,21,opt,name=rx_packets,json=rxPackets,proto3,oneof"`
2154}
2155
2156func (*GetOnuCountersResponse_RxPackets) isGetOnuCountersResponse_IsRxPackets() {}
2157
2158func (m *GetOnuCountersResponse) GetIsRxPackets() isGetOnuCountersResponse_IsRxPackets {
2159 if m != nil {
2160 return m.IsRxPackets
2161 }
2162 return nil
2163}
2164
2165func (m *GetOnuCountersResponse) GetRxPackets() uint64 {
2166 if x, ok := m.GetIsRxPackets().(*GetOnuCountersResponse_RxPackets); ok {
2167 return x.RxPackets
2168 }
2169 return 0
2170}
2171
2172type isGetOnuCountersResponse_IsTxBytes interface {
2173 isGetOnuCountersResponse_IsTxBytes()
2174}
2175
2176type GetOnuCountersResponse_TxBytes struct {
2177 TxBytes uint64 `protobuf:"fixed64,22,opt,name=tx_bytes,json=txBytes,proto3,oneof"`
2178}
2179
2180func (*GetOnuCountersResponse_TxBytes) isGetOnuCountersResponse_IsTxBytes() {}
2181
2182func (m *GetOnuCountersResponse) GetIsTxBytes() isGetOnuCountersResponse_IsTxBytes {
2183 if m != nil {
2184 return m.IsTxBytes
2185 }
2186 return nil
2187}
2188
2189func (m *GetOnuCountersResponse) GetTxBytes() uint64 {
2190 if x, ok := m.GetIsTxBytes().(*GetOnuCountersResponse_TxBytes); ok {
2191 return x.TxBytes
2192 }
2193 return 0
2194}
2195
2196type isGetOnuCountersResponse_IsTxPackets interface {
2197 isGetOnuCountersResponse_IsTxPackets()
2198}
2199
2200type GetOnuCountersResponse_TxPackets struct {
2201 TxPackets uint64 `protobuf:"fixed64,23,opt,name=tx_packets,json=txPackets,proto3,oneof"`
2202}
2203
2204func (*GetOnuCountersResponse_TxPackets) isGetOnuCountersResponse_IsTxPackets() {}
2205
2206func (m *GetOnuCountersResponse) GetIsTxPackets() isGetOnuCountersResponse_IsTxPackets {
2207 if m != nil {
2208 return m.IsTxPackets
2209 }
2210 return nil
2211}
2212
2213func (m *GetOnuCountersResponse) GetTxPackets() uint64 {
2214 if x, ok := m.GetIsTxPackets().(*GetOnuCountersResponse_TxPackets); ok {
2215 return x.TxPackets
2216 }
2217 return 0
2218}
2219
2220type isGetOnuCountersResponse_IsBerReported interface {
2221 isGetOnuCountersResponse_IsBerReported()
2222}
2223
2224type GetOnuCountersResponse_BerReported struct {
2225 BerReported uint64 `protobuf:"fixed64,24,opt,name=ber_reported,json=berReported,proto3,oneof"`
2226}
2227
2228func (*GetOnuCountersResponse_BerReported) isGetOnuCountersResponse_IsBerReported() {}
2229
2230func (m *GetOnuCountersResponse) GetIsBerReported() isGetOnuCountersResponse_IsBerReported {
2231 if m != nil {
2232 return m.IsBerReported
2233 }
2234 return nil
2235}
2236
2237func (m *GetOnuCountersResponse) GetBerReported() uint64 {
2238 if x, ok := m.GetIsBerReported().(*GetOnuCountersResponse_BerReported); ok {
2239 return x.BerReported
2240 }
2241 return 0
2242}
2243
2244type isGetOnuCountersResponse_IsLcdgErrors interface {
2245 isGetOnuCountersResponse_IsLcdgErrors()
2246}
2247
2248type GetOnuCountersResponse_LcdgErrors struct {
2249 LcdgErrors uint64 `protobuf:"fixed64,25,opt,name=lcdg_errors,json=lcdgErrors,proto3,oneof"`
2250}
2251
2252func (*GetOnuCountersResponse_LcdgErrors) isGetOnuCountersResponse_IsLcdgErrors() {}
2253
2254func (m *GetOnuCountersResponse) GetIsLcdgErrors() isGetOnuCountersResponse_IsLcdgErrors {
2255 if m != nil {
2256 return m.IsLcdgErrors
2257 }
2258 return nil
2259}
2260
2261func (m *GetOnuCountersResponse) GetLcdgErrors() uint64 {
2262 if x, ok := m.GetIsLcdgErrors().(*GetOnuCountersResponse_LcdgErrors); ok {
2263 return x.LcdgErrors
2264 }
2265 return 0
2266}
2267
2268type isGetOnuCountersResponse_IsRdiErrors interface {
2269 isGetOnuCountersResponse_IsRdiErrors()
2270}
2271
2272type GetOnuCountersResponse_RdiErrors struct {
2273 RdiErrors uint64 `protobuf:"fixed64,26,opt,name=rdi_errors,json=rdiErrors,proto3,oneof"`
2274}
2275
2276func (*GetOnuCountersResponse_RdiErrors) isGetOnuCountersResponse_IsRdiErrors() {}
2277
2278func (m *GetOnuCountersResponse) GetIsRdiErrors() isGetOnuCountersResponse_IsRdiErrors {
2279 if m != nil {
2280 return m.IsRdiErrors
2281 }
2282 return nil
2283}
2284
2285func (m *GetOnuCountersResponse) GetRdiErrors() uint64 {
2286 if x, ok := m.GetIsRdiErrors().(*GetOnuCountersResponse_RdiErrors); ok {
2287 return x.RdiErrors
2288 }
2289 return 0
2290}
2291
2292type isGetOnuCountersResponse_IsTimestamp interface {
2293 isGetOnuCountersResponse_IsTimestamp()
2294}
2295
2296type GetOnuCountersResponse_Timestamp struct {
2297 Timestamp uint32 `protobuf:"fixed32,27,opt,name=timestamp,proto3,oneof"`
2298}
2299
2300func (*GetOnuCountersResponse_Timestamp) isGetOnuCountersResponse_IsTimestamp() {}
2301
2302func (m *GetOnuCountersResponse) GetIsTimestamp() isGetOnuCountersResponse_IsTimestamp {
2303 if m != nil {
2304 return m.IsTimestamp
2305 }
2306 return nil
2307}
2308
2309func (m *GetOnuCountersResponse) GetTimestamp() uint32 {
2310 if x, ok := m.GetIsTimestamp().(*GetOnuCountersResponse_Timestamp); ok {
2311 return x.Timestamp
2312 }
2313 return 0
2314}
2315
2316// XXX_OneofWrappers is for the internal use of the proto package.
2317func (*GetOnuCountersResponse) XXX_OneofWrappers() []interface{} {
2318 return []interface{}{
2319 (*GetOnuCountersResponse_IntfId)(nil),
2320 (*GetOnuCountersResponse_OnuId)(nil),
2321 (*GetOnuCountersResponse_PositiveDrift)(nil),
2322 (*GetOnuCountersResponse_NegativeDrift)(nil),
2323 (*GetOnuCountersResponse_DelimiterMissDetection)(nil),
2324 (*GetOnuCountersResponse_BipErrors)(nil),
2325 (*GetOnuCountersResponse_BipUnits)(nil),
2326 (*GetOnuCountersResponse_FecCorrectedSymbols)(nil),
2327 (*GetOnuCountersResponse_FecCodewordsCorrected)(nil),
2328 (*GetOnuCountersResponse_FecCodewordsUncorrectable)(nil),
2329 (*GetOnuCountersResponse_FecCodewords)(nil),
2330 (*GetOnuCountersResponse_FecCorrectedUnits)(nil),
2331 (*GetOnuCountersResponse_XgemKeyErrors)(nil),
2332 (*GetOnuCountersResponse_XgemLoss)(nil),
2333 (*GetOnuCountersResponse_RxPloamsError)(nil),
2334 (*GetOnuCountersResponse_RxPloamsNonIdle)(nil),
2335 (*GetOnuCountersResponse_RxOmci)(nil),
2336 (*GetOnuCountersResponse_TxOmci)(nil),
2337 (*GetOnuCountersResponse_RxOmciPacketsCrcError)(nil),
2338 (*GetOnuCountersResponse_RxBytes)(nil),
2339 (*GetOnuCountersResponse_RxPackets)(nil),
2340 (*GetOnuCountersResponse_TxBytes)(nil),
2341 (*GetOnuCountersResponse_TxPackets)(nil),
2342 (*GetOnuCountersResponse_BerReported)(nil),
2343 (*GetOnuCountersResponse_LcdgErrors)(nil),
2344 (*GetOnuCountersResponse_RdiErrors)(nil),
2345 (*GetOnuCountersResponse_Timestamp)(nil),
2346 }
2347}
2348
2349type OmciEthernetFrameExtendedPm struct {
2350 DropEvents uint64 `protobuf:"fixed64,1,opt,name=drop_events,json=dropEvents,proto3" json:"drop_events,omitempty"`
2351 Octets uint64 `protobuf:"fixed64,2,opt,name=octets,proto3" json:"octets,omitempty"`
2352 Frames uint64 `protobuf:"fixed64,3,opt,name=frames,proto3" json:"frames,omitempty"`
2353 BroadcastFrames uint64 `protobuf:"fixed64,4,opt,name=broadcast_frames,json=broadcastFrames,proto3" json:"broadcast_frames,omitempty"`
2354 MulticastFrames uint64 `protobuf:"fixed64,5,opt,name=multicast_frames,json=multicastFrames,proto3" json:"multicast_frames,omitempty"`
2355 CrcErroredFrames uint64 `protobuf:"fixed64,6,opt,name=crc_errored_frames,json=crcErroredFrames,proto3" json:"crc_errored_frames,omitempty"`
2356 UndersizeFrames uint64 `protobuf:"fixed64,7,opt,name=undersize_frames,json=undersizeFrames,proto3" json:"undersize_frames,omitempty"`
2357 OversizeFrames uint64 `protobuf:"fixed64,8,opt,name=oversize_frames,json=oversizeFrames,proto3" json:"oversize_frames,omitempty"`
2358 Frames_64Octets uint64 `protobuf:"fixed64,9,opt,name=frames_64_octets,json=frames64Octets,proto3" json:"frames_64_octets,omitempty"`
2359 Frames_65To_127Octets uint64 `protobuf:"fixed64,10,opt,name=frames_65_to_127_octets,json=frames65To127Octets,proto3" json:"frames_65_to_127_octets,omitempty"`
2360 Frames_128To_255Octets uint64 `protobuf:"fixed64,11,opt,name=frames_128_to_255_octets,json=frames128To255Octets,proto3" json:"frames_128_to_255_octets,omitempty"`
2361 Frames_256To_511Octets uint64 `protobuf:"fixed64,12,opt,name=frames_256_to_511_octets,json=frames256To511Octets,proto3" json:"frames_256_to_511_octets,omitempty"`
2362 Frames_512To_1023Octets uint64 `protobuf:"fixed64,13,opt,name=frames_512_to_1023_octets,json=frames512To1023Octets,proto3" json:"frames_512_to_1023_octets,omitempty"`
2363 Frames_1024To_1518Octets uint64 `protobuf:"fixed64,14,opt,name=frames_1024_to_1518_octets,json=frames1024To1518Octets,proto3" json:"frames_1024_to_1518_octets,omitempty"`
2364 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2365 XXX_unrecognized []byte `json:"-"`
2366 XXX_sizecache int32 `json:"-"`
2367}
2368
2369func (m *OmciEthernetFrameExtendedPm) Reset() { *m = OmciEthernetFrameExtendedPm{} }
2370func (m *OmciEthernetFrameExtendedPm) String() string { return proto.CompactTextString(m) }
2371func (*OmciEthernetFrameExtendedPm) ProtoMessage() {}
2372func (*OmciEthernetFrameExtendedPm) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302373 return fileDescriptor_7ecf6e9799a9202d, []int{21}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00002374}
2375
2376func (m *OmciEthernetFrameExtendedPm) XXX_Unmarshal(b []byte) error {
2377 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Unmarshal(m, b)
2378}
2379func (m *OmciEthernetFrameExtendedPm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2380 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Marshal(b, m, deterministic)
2381}
2382func (m *OmciEthernetFrameExtendedPm) XXX_Merge(src proto.Message) {
2383 xxx_messageInfo_OmciEthernetFrameExtendedPm.Merge(m, src)
2384}
2385func (m *OmciEthernetFrameExtendedPm) XXX_Size() int {
2386 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Size(m)
2387}
2388func (m *OmciEthernetFrameExtendedPm) XXX_DiscardUnknown() {
2389 xxx_messageInfo_OmciEthernetFrameExtendedPm.DiscardUnknown(m)
2390}
2391
2392var xxx_messageInfo_OmciEthernetFrameExtendedPm proto.InternalMessageInfo
2393
2394func (m *OmciEthernetFrameExtendedPm) GetDropEvents() uint64 {
2395 if m != nil {
2396 return m.DropEvents
2397 }
2398 return 0
2399}
2400
2401func (m *OmciEthernetFrameExtendedPm) GetOctets() uint64 {
2402 if m != nil {
2403 return m.Octets
2404 }
2405 return 0
2406}
2407
2408func (m *OmciEthernetFrameExtendedPm) GetFrames() uint64 {
2409 if m != nil {
2410 return m.Frames
2411 }
2412 return 0
2413}
2414
2415func (m *OmciEthernetFrameExtendedPm) GetBroadcastFrames() uint64 {
2416 if m != nil {
2417 return m.BroadcastFrames
2418 }
2419 return 0
2420}
2421
2422func (m *OmciEthernetFrameExtendedPm) GetMulticastFrames() uint64 {
2423 if m != nil {
2424 return m.MulticastFrames
2425 }
2426 return 0
2427}
2428
2429func (m *OmciEthernetFrameExtendedPm) GetCrcErroredFrames() uint64 {
2430 if m != nil {
2431 return m.CrcErroredFrames
2432 }
2433 return 0
2434}
2435
2436func (m *OmciEthernetFrameExtendedPm) GetUndersizeFrames() uint64 {
2437 if m != nil {
2438 return m.UndersizeFrames
2439 }
2440 return 0
2441}
2442
2443func (m *OmciEthernetFrameExtendedPm) GetOversizeFrames() uint64 {
2444 if m != nil {
2445 return m.OversizeFrames
2446 }
2447 return 0
2448}
2449
2450func (m *OmciEthernetFrameExtendedPm) GetFrames_64Octets() uint64 {
2451 if m != nil {
2452 return m.Frames_64Octets
2453 }
2454 return 0
2455}
2456
2457func (m *OmciEthernetFrameExtendedPm) GetFrames_65To_127Octets() uint64 {
2458 if m != nil {
2459 return m.Frames_65To_127Octets
2460 }
2461 return 0
2462}
2463
2464func (m *OmciEthernetFrameExtendedPm) GetFrames_128To_255Octets() uint64 {
2465 if m != nil {
2466 return m.Frames_128To_255Octets
2467 }
2468 return 0
2469}
2470
2471func (m *OmciEthernetFrameExtendedPm) GetFrames_256To_511Octets() uint64 {
2472 if m != nil {
2473 return m.Frames_256To_511Octets
2474 }
2475 return 0
2476}
2477
2478func (m *OmciEthernetFrameExtendedPm) GetFrames_512To_1023Octets() uint64 {
2479 if m != nil {
2480 return m.Frames_512To_1023Octets
2481 }
2482 return 0
2483}
2484
2485func (m *OmciEthernetFrameExtendedPm) GetFrames_1024To_1518Octets() uint64 {
2486 if m != nil {
2487 return m.Frames_1024To_1518Octets
2488 }
2489 return 0
2490}
2491
2492type GetOmciEthernetFrameExtendedPmResponse struct {
Himani Chawlabac0f892021-08-25 17:14:06 +05302493 Upstream *OmciEthernetFrameExtendedPm `protobuf:"bytes,1,opt,name=upstream,proto3" json:"upstream,omitempty"`
2494 Downstream *OmciEthernetFrameExtendedPm `protobuf:"bytes,2,opt,name=downstream,proto3" json:"downstream,omitempty"`
2495 OmciEthernetFrameExtendedPmFormat GetOmciEthernetFrameExtendedPmResponse_Format `protobuf:"varint,3,opt,name=omci_ethernet_frame_extended_pm_format,json=omciEthernetFrameExtendedPmFormat,proto3,enum=extension.GetOmciEthernetFrameExtendedPmResponse_Format" json:"omci_ethernet_frame_extended_pm_format,omitempty"`
2496 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2497 XXX_unrecognized []byte `json:"-"`
2498 XXX_sizecache int32 `json:"-"`
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00002499}
2500
2501func (m *GetOmciEthernetFrameExtendedPmResponse) Reset() {
2502 *m = GetOmciEthernetFrameExtendedPmResponse{}
2503}
2504func (m *GetOmciEthernetFrameExtendedPmResponse) String() string { return proto.CompactTextString(m) }
2505func (*GetOmciEthernetFrameExtendedPmResponse) ProtoMessage() {}
2506func (*GetOmciEthernetFrameExtendedPmResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302507 return fileDescriptor_7ecf6e9799a9202d, []int{22}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00002508}
2509
2510func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Unmarshal(b []byte) error {
2511 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Unmarshal(m, b)
2512}
2513func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2514 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Marshal(b, m, deterministic)
2515}
2516func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Merge(src proto.Message) {
2517 xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Merge(m, src)
2518}
2519func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Size() int {
2520 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Size(m)
2521}
2522func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_DiscardUnknown() {
2523 xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.DiscardUnknown(m)
2524}
2525
2526var xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse proto.InternalMessageInfo
2527
2528func (m *GetOmciEthernetFrameExtendedPmResponse) GetUpstream() *OmciEthernetFrameExtendedPm {
2529 if m != nil {
2530 return m.Upstream
2531 }
2532 return nil
2533}
2534
2535func (m *GetOmciEthernetFrameExtendedPmResponse) GetDownstream() *OmciEthernetFrameExtendedPm {
2536 if m != nil {
2537 return m.Downstream
2538 }
2539 return nil
2540}
2541
Himani Chawlabac0f892021-08-25 17:14:06 +05302542func (m *GetOmciEthernetFrameExtendedPmResponse) GetOmciEthernetFrameExtendedPmFormat() GetOmciEthernetFrameExtendedPmResponse_Format {
2543 if m != nil {
2544 return m.OmciEthernetFrameExtendedPmFormat
2545 }
2546 return GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT
2547}
2548
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302549type RxPower struct {
2550 OnuSn string `protobuf:"bytes,1,opt,name=onu_sn,json=onuSn,proto3" json:"onu_sn,omitempty"`
2551 Status string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
2552 FailReason string `protobuf:"bytes,3,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"`
2553 RxPower float64 `protobuf:"fixed64,4,opt,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
2554 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2555 XXX_unrecognized []byte `json:"-"`
2556 XXX_sizecache int32 `json:"-"`
2557}
2558
2559func (m *RxPower) Reset() { *m = RxPower{} }
2560func (m *RxPower) String() string { return proto.CompactTextString(m) }
2561func (*RxPower) ProtoMessage() {}
2562func (*RxPower) Descriptor() ([]byte, []int) {
2563 return fileDescriptor_7ecf6e9799a9202d, []int{23}
2564}
2565
2566func (m *RxPower) XXX_Unmarshal(b []byte) error {
2567 return xxx_messageInfo_RxPower.Unmarshal(m, b)
2568}
2569func (m *RxPower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2570 return xxx_messageInfo_RxPower.Marshal(b, m, deterministic)
2571}
2572func (m *RxPower) XXX_Merge(src proto.Message) {
2573 xxx_messageInfo_RxPower.Merge(m, src)
2574}
2575func (m *RxPower) XXX_Size() int {
2576 return xxx_messageInfo_RxPower.Size(m)
2577}
2578func (m *RxPower) XXX_DiscardUnknown() {
2579 xxx_messageInfo_RxPower.DiscardUnknown(m)
2580}
2581
2582var xxx_messageInfo_RxPower proto.InternalMessageInfo
2583
2584func (m *RxPower) GetOnuSn() string {
2585 if m != nil {
2586 return m.OnuSn
2587 }
2588 return ""
2589}
2590
2591func (m *RxPower) GetStatus() string {
2592 if m != nil {
2593 return m.Status
2594 }
2595 return ""
2596}
2597
2598func (m *RxPower) GetFailReason() string {
2599 if m != nil {
2600 return m.FailReason
2601 }
2602 return ""
2603}
2604
2605func (m *RxPower) GetRxPower() float64 {
2606 if m != nil {
2607 return m.RxPower
2608 }
2609 return 0
2610}
2611
2612type GetOltRxPowerResponse struct {
2613 PortLabel string `protobuf:"bytes,1,opt,name=port_label,json=portLabel,proto3" json:"port_label,omitempty"`
2614 RxPower []*RxPower `protobuf:"bytes,2,rep,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
2615 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2616 XXX_unrecognized []byte `json:"-"`
2617 XXX_sizecache int32 `json:"-"`
2618}
2619
2620func (m *GetOltRxPowerResponse) Reset() { *m = GetOltRxPowerResponse{} }
2621func (m *GetOltRxPowerResponse) String() string { return proto.CompactTextString(m) }
2622func (*GetOltRxPowerResponse) ProtoMessage() {}
2623func (*GetOltRxPowerResponse) Descriptor() ([]byte, []int) {
2624 return fileDescriptor_7ecf6e9799a9202d, []int{24}
2625}
2626
2627func (m *GetOltRxPowerResponse) XXX_Unmarshal(b []byte) error {
2628 return xxx_messageInfo_GetOltRxPowerResponse.Unmarshal(m, b)
2629}
2630func (m *GetOltRxPowerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2631 return xxx_messageInfo_GetOltRxPowerResponse.Marshal(b, m, deterministic)
2632}
2633func (m *GetOltRxPowerResponse) XXX_Merge(src proto.Message) {
2634 xxx_messageInfo_GetOltRxPowerResponse.Merge(m, src)
2635}
2636func (m *GetOltRxPowerResponse) XXX_Size() int {
2637 return xxx_messageInfo_GetOltRxPowerResponse.Size(m)
2638}
2639func (m *GetOltRxPowerResponse) XXX_DiscardUnknown() {
2640 xxx_messageInfo_GetOltRxPowerResponse.DiscardUnknown(m)
2641}
2642
2643var xxx_messageInfo_GetOltRxPowerResponse proto.InternalMessageInfo
2644
2645func (m *GetOltRxPowerResponse) GetPortLabel() string {
2646 if m != nil {
2647 return m.PortLabel
2648 }
2649 return ""
2650}
2651
2652func (m *GetOltRxPowerResponse) GetRxPower() []*RxPower {
2653 if m != nil {
2654 return m.RxPower
2655 }
2656 return nil
2657}
2658
2659// DEPRECATED
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00002660type GetRxPowerResponse struct {
2661 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
2662 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
2663 Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
2664 FailReason string `protobuf:"bytes,4,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"`
2665 RxPower float64 `protobuf:"fixed64,5,opt,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
2666 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2667 XXX_unrecognized []byte `json:"-"`
2668 XXX_sizecache int32 `json:"-"`
2669}
2670
2671func (m *GetRxPowerResponse) Reset() { *m = GetRxPowerResponse{} }
2672func (m *GetRxPowerResponse) String() string { return proto.CompactTextString(m) }
2673func (*GetRxPowerResponse) ProtoMessage() {}
2674func (*GetRxPowerResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302675 return fileDescriptor_7ecf6e9799a9202d, []int{25}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00002676}
2677
2678func (m *GetRxPowerResponse) XXX_Unmarshal(b []byte) error {
2679 return xxx_messageInfo_GetRxPowerResponse.Unmarshal(m, b)
2680}
2681func (m *GetRxPowerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2682 return xxx_messageInfo_GetRxPowerResponse.Marshal(b, m, deterministic)
2683}
2684func (m *GetRxPowerResponse) XXX_Merge(src proto.Message) {
2685 xxx_messageInfo_GetRxPowerResponse.Merge(m, src)
2686}
2687func (m *GetRxPowerResponse) XXX_Size() int {
2688 return xxx_messageInfo_GetRxPowerResponse.Size(m)
2689}
2690func (m *GetRxPowerResponse) XXX_DiscardUnknown() {
2691 xxx_messageInfo_GetRxPowerResponse.DiscardUnknown(m)
2692}
2693
2694var xxx_messageInfo_GetRxPowerResponse proto.InternalMessageInfo
2695
2696func (m *GetRxPowerResponse) GetIntfId() uint32 {
2697 if m != nil {
2698 return m.IntfId
2699 }
2700 return 0
2701}
2702
2703func (m *GetRxPowerResponse) GetOnuId() uint32 {
2704 if m != nil {
2705 return m.OnuId
2706 }
2707 return 0
2708}
2709
2710func (m *GetRxPowerResponse) GetStatus() string {
2711 if m != nil {
2712 return m.Status
2713 }
2714 return ""
2715}
2716
2717func (m *GetRxPowerResponse) GetFailReason() string {
2718 if m != nil {
2719 return m.FailReason
2720 }
2721 return ""
2722}
2723
2724func (m *GetRxPowerResponse) GetRxPower() float64 {
2725 if m != nil {
2726 return m.RxPower
2727 }
2728 return 0
2729}
2730
serkantul3d22fc72022-09-14 12:22:56 +03002731type GetOnuOmciTxRxStatsRequest struct {
2732 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
2733 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2734 XXX_unrecognized []byte `json:"-"`
2735 XXX_sizecache int32 `json:"-"`
2736}
2737
2738func (m *GetOnuOmciTxRxStatsRequest) Reset() { *m = GetOnuOmciTxRxStatsRequest{} }
2739func (m *GetOnuOmciTxRxStatsRequest) String() string { return proto.CompactTextString(m) }
2740func (*GetOnuOmciTxRxStatsRequest) ProtoMessage() {}
2741func (*GetOnuOmciTxRxStatsRequest) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302742 return fileDescriptor_7ecf6e9799a9202d, []int{26}
serkantul3d22fc72022-09-14 12:22:56 +03002743}
2744
2745func (m *GetOnuOmciTxRxStatsRequest) XXX_Unmarshal(b []byte) error {
2746 return xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Unmarshal(m, b)
2747}
2748func (m *GetOnuOmciTxRxStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2749 return xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Marshal(b, m, deterministic)
2750}
2751func (m *GetOnuOmciTxRxStatsRequest) XXX_Merge(src proto.Message) {
2752 xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Merge(m, src)
2753}
2754func (m *GetOnuOmciTxRxStatsRequest) XXX_Size() int {
2755 return xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Size(m)
2756}
2757func (m *GetOnuOmciTxRxStatsRequest) XXX_DiscardUnknown() {
2758 xxx_messageInfo_GetOnuOmciTxRxStatsRequest.DiscardUnknown(m)
2759}
2760
2761var xxx_messageInfo_GetOnuOmciTxRxStatsRequest proto.InternalMessageInfo
2762
2763func (m *GetOnuOmciTxRxStatsRequest) GetEmpty() *empty.Empty {
2764 if m != nil {
2765 return m.Empty
2766 }
2767 return nil
2768}
2769
2770// see ITU-T G.988 clause 11.2.2
2771type GetOnuOmciTxRxStatsResponse struct {
2772 // OMCI baseline Tx frames with AR bit set
2773 BaseTxArFrames uint32 `protobuf:"varint,1,opt,name=base_tx_ar_frames,json=baseTxArFrames,proto3" json:"base_tx_ar_frames,omitempty"`
2774 // OMCI baseline Rx frames with AK bit set
2775 BaseRxAkFrames uint32 `protobuf:"varint,2,opt,name=base_rx_ak_frames,json=baseRxAkFrames,proto3" json:"base_rx_ak_frames,omitempty"`
2776 // OMCI baseline Tx frames with AR bit unset
2777 BaseTxNoArFrames uint32 `protobuf:"varint,3,opt,name=base_tx_no_ar_frames,json=baseTxNoArFrames,proto3" json:"base_tx_no_ar_frames,omitempty"`
2778 // OMCI baseline Rx frames with AK bit unset
2779 BaseRxNoAkFrames uint32 `protobuf:"varint,4,opt,name=base_rx_no_ak_frames,json=baseRxNoAkFrames,proto3" json:"base_rx_no_ak_frames,omitempty"`
2780 // OMCI extended Tx frames with AR bit set
2781 ExtTxArFrames uint32 `protobuf:"varint,5,opt,name=ext_tx_ar_frames,json=extTxArFrames,proto3" json:"ext_tx_ar_frames,omitempty"`
2782 // OMCI extended Rx frames with AK bit set
2783 ExtRxAkFrames uint32 `protobuf:"varint,6,opt,name=ext_rx_ak_frames,json=extRxAkFrames,proto3" json:"ext_rx_ak_frames,omitempty"`
2784 // OMCI extended Tx frames with AR bit unset
2785 ExtTxNoArFrames uint32 `protobuf:"varint,7,opt,name=ext_tx_no_ar_frames,json=extTxNoArFrames,proto3" json:"ext_tx_no_ar_frames,omitempty"`
2786 // OMCI extended Rx frames with AK bit unset
2787 ExtRxNoAkFrames uint32 `protobuf:"varint,8,opt,name=ext_rx_no_ak_frames,json=extRxNoAkFrames,proto3" json:"ext_rx_no_ak_frames,omitempty"`
2788 // Number of retries of requests (tx) due to not received responses (Rx)
2789 TxOmciCounterRetries uint32 `protobuf:"varint,9,opt,name=tx_omci_counter_retries,json=txOmciCounterRetries,proto3" json:"tx_omci_counter_retries,omitempty"`
2790 // Number of timeouts of requests (tx) due to not received responses (Rx) after configured number of retries
2791 TxOmciCounterTimeouts uint32 `protobuf:"varint,10,opt,name=tx_omci_counter_timeouts,json=txOmciCounterTimeouts,proto3" json:"tx_omci_counter_timeouts,omitempty"`
2792 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2793 XXX_unrecognized []byte `json:"-"`
2794 XXX_sizecache int32 `json:"-"`
2795}
2796
2797func (m *GetOnuOmciTxRxStatsResponse) Reset() { *m = GetOnuOmciTxRxStatsResponse{} }
2798func (m *GetOnuOmciTxRxStatsResponse) String() string { return proto.CompactTextString(m) }
2799func (*GetOnuOmciTxRxStatsResponse) ProtoMessage() {}
2800func (*GetOnuOmciTxRxStatsResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302801 return fileDescriptor_7ecf6e9799a9202d, []int{27}
serkantul3d22fc72022-09-14 12:22:56 +03002802}
2803
2804func (m *GetOnuOmciTxRxStatsResponse) XXX_Unmarshal(b []byte) error {
2805 return xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Unmarshal(m, b)
2806}
2807func (m *GetOnuOmciTxRxStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2808 return xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Marshal(b, m, deterministic)
2809}
2810func (m *GetOnuOmciTxRxStatsResponse) XXX_Merge(src proto.Message) {
2811 xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Merge(m, src)
2812}
2813func (m *GetOnuOmciTxRxStatsResponse) XXX_Size() int {
2814 return xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Size(m)
2815}
2816func (m *GetOnuOmciTxRxStatsResponse) XXX_DiscardUnknown() {
2817 xxx_messageInfo_GetOnuOmciTxRxStatsResponse.DiscardUnknown(m)
2818}
2819
2820var xxx_messageInfo_GetOnuOmciTxRxStatsResponse proto.InternalMessageInfo
2821
2822func (m *GetOnuOmciTxRxStatsResponse) GetBaseTxArFrames() uint32 {
2823 if m != nil {
2824 return m.BaseTxArFrames
2825 }
2826 return 0
2827}
2828
2829func (m *GetOnuOmciTxRxStatsResponse) GetBaseRxAkFrames() uint32 {
2830 if m != nil {
2831 return m.BaseRxAkFrames
2832 }
2833 return 0
2834}
2835
2836func (m *GetOnuOmciTxRxStatsResponse) GetBaseTxNoArFrames() uint32 {
2837 if m != nil {
2838 return m.BaseTxNoArFrames
2839 }
2840 return 0
2841}
2842
2843func (m *GetOnuOmciTxRxStatsResponse) GetBaseRxNoAkFrames() uint32 {
2844 if m != nil {
2845 return m.BaseRxNoAkFrames
2846 }
2847 return 0
2848}
2849
2850func (m *GetOnuOmciTxRxStatsResponse) GetExtTxArFrames() uint32 {
2851 if m != nil {
2852 return m.ExtTxArFrames
2853 }
2854 return 0
2855}
2856
2857func (m *GetOnuOmciTxRxStatsResponse) GetExtRxAkFrames() uint32 {
2858 if m != nil {
2859 return m.ExtRxAkFrames
2860 }
2861 return 0
2862}
2863
2864func (m *GetOnuOmciTxRxStatsResponse) GetExtTxNoArFrames() uint32 {
2865 if m != nil {
2866 return m.ExtTxNoArFrames
2867 }
2868 return 0
2869}
2870
2871func (m *GetOnuOmciTxRxStatsResponse) GetExtRxNoAkFrames() uint32 {
2872 if m != nil {
2873 return m.ExtRxNoAkFrames
2874 }
2875 return 0
2876}
2877
2878func (m *GetOnuOmciTxRxStatsResponse) GetTxOmciCounterRetries() uint32 {
2879 if m != nil {
2880 return m.TxOmciCounterRetries
2881 }
2882 return 0
2883}
2884
2885func (m *GetOnuOmciTxRxStatsResponse) GetTxOmciCounterTimeouts() uint32 {
2886 if m != nil {
2887 return m.TxOmciCounterTimeouts
2888 }
2889 return 0
2890}
2891
praneeth nalmas1dd094c2022-12-22 14:15:13 +05302892type GetOnuOmciActiveAlarmsRequest struct {
2893 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
2894 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2895 XXX_unrecognized []byte `json:"-"`
2896 XXX_sizecache int32 `json:"-"`
2897}
2898
2899func (m *GetOnuOmciActiveAlarmsRequest) Reset() { *m = GetOnuOmciActiveAlarmsRequest{} }
2900func (m *GetOnuOmciActiveAlarmsRequest) String() string { return proto.CompactTextString(m) }
2901func (*GetOnuOmciActiveAlarmsRequest) ProtoMessage() {}
2902func (*GetOnuOmciActiveAlarmsRequest) Descriptor() ([]byte, []int) {
2903 return fileDescriptor_7ecf6e9799a9202d, []int{28}
2904}
2905
2906func (m *GetOnuOmciActiveAlarmsRequest) XXX_Unmarshal(b []byte) error {
2907 return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Unmarshal(m, b)
2908}
2909func (m *GetOnuOmciActiveAlarmsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2910 return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Marshal(b, m, deterministic)
2911}
2912func (m *GetOnuOmciActiveAlarmsRequest) XXX_Merge(src proto.Message) {
2913 xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Merge(m, src)
2914}
2915func (m *GetOnuOmciActiveAlarmsRequest) XXX_Size() int {
2916 return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Size(m)
2917}
2918func (m *GetOnuOmciActiveAlarmsRequest) XXX_DiscardUnknown() {
2919 xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.DiscardUnknown(m)
2920}
2921
2922var xxx_messageInfo_GetOnuOmciActiveAlarmsRequest proto.InternalMessageInfo
2923
2924func (m *GetOnuOmciActiveAlarmsRequest) GetEmpty() *empty.Empty {
2925 if m != nil {
2926 return m.Empty
2927 }
2928 return nil
2929}
2930
2931type AlarmData struct {
2932 ClassId uint32 `protobuf:"varint,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
2933 InstanceId uint32 `protobuf:"varint,2,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`
2934 Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
2935 Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
2936 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2937 XXX_unrecognized []byte `json:"-"`
2938 XXX_sizecache int32 `json:"-"`
2939}
2940
2941func (m *AlarmData) Reset() { *m = AlarmData{} }
2942func (m *AlarmData) String() string { return proto.CompactTextString(m) }
2943func (*AlarmData) ProtoMessage() {}
2944func (*AlarmData) Descriptor() ([]byte, []int) {
2945 return fileDescriptor_7ecf6e9799a9202d, []int{29}
2946}
2947
2948func (m *AlarmData) XXX_Unmarshal(b []byte) error {
2949 return xxx_messageInfo_AlarmData.Unmarshal(m, b)
2950}
2951func (m *AlarmData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2952 return xxx_messageInfo_AlarmData.Marshal(b, m, deterministic)
2953}
2954func (m *AlarmData) XXX_Merge(src proto.Message) {
2955 xxx_messageInfo_AlarmData.Merge(m, src)
2956}
2957func (m *AlarmData) XXX_Size() int {
2958 return xxx_messageInfo_AlarmData.Size(m)
2959}
2960func (m *AlarmData) XXX_DiscardUnknown() {
2961 xxx_messageInfo_AlarmData.DiscardUnknown(m)
2962}
2963
2964var xxx_messageInfo_AlarmData proto.InternalMessageInfo
2965
2966func (m *AlarmData) GetClassId() uint32 {
2967 if m != nil {
2968 return m.ClassId
2969 }
2970 return 0
2971}
2972
2973func (m *AlarmData) GetInstanceId() uint32 {
2974 if m != nil {
2975 return m.InstanceId
2976 }
2977 return 0
2978}
2979
2980func (m *AlarmData) GetName() string {
2981 if m != nil {
2982 return m.Name
2983 }
2984 return ""
2985}
2986
2987func (m *AlarmData) GetDescription() string {
2988 if m != nil {
2989 return m.Description
2990 }
2991 return ""
2992}
2993
2994type GetOnuOmciActiveAlarmsResponse struct {
2995 ActiveAlarms []*AlarmData `protobuf:"bytes,1,rep,name=active_alarms,json=activeAlarms,proto3" json:"active_alarms,omitempty"`
2996 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2997 XXX_unrecognized []byte `json:"-"`
2998 XXX_sizecache int32 `json:"-"`
2999}
3000
3001func (m *GetOnuOmciActiveAlarmsResponse) Reset() { *m = GetOnuOmciActiveAlarmsResponse{} }
3002func (m *GetOnuOmciActiveAlarmsResponse) String() string { return proto.CompactTextString(m) }
3003func (*GetOnuOmciActiveAlarmsResponse) ProtoMessage() {}
3004func (*GetOnuOmciActiveAlarmsResponse) Descriptor() ([]byte, []int) {
3005 return fileDescriptor_7ecf6e9799a9202d, []int{30}
3006}
3007
3008func (m *GetOnuOmciActiveAlarmsResponse) XXX_Unmarshal(b []byte) error {
3009 return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Unmarshal(m, b)
3010}
3011func (m *GetOnuOmciActiveAlarmsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3012 return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Marshal(b, m, deterministic)
3013}
3014func (m *GetOnuOmciActiveAlarmsResponse) XXX_Merge(src proto.Message) {
3015 xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Merge(m, src)
3016}
3017func (m *GetOnuOmciActiveAlarmsResponse) XXX_Size() int {
3018 return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Size(m)
3019}
3020func (m *GetOnuOmciActiveAlarmsResponse) XXX_DiscardUnknown() {
3021 xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.DiscardUnknown(m)
3022}
3023
3024var xxx_messageInfo_GetOnuOmciActiveAlarmsResponse proto.InternalMessageInfo
3025
3026func (m *GetOnuOmciActiveAlarmsResponse) GetActiveAlarms() []*AlarmData {
3027 if m != nil {
3028 return m.ActiveAlarms
3029 }
3030 return nil
3031}
3032
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003033type GetValueRequest struct {
3034 // Types that are valid to be assigned to Request:
3035 // *GetValueRequest_Distance
3036 // *GetValueRequest_UniInfo
3037 // *GetValueRequest_OltPortInfo
3038 // *GetValueRequest_OnuOpticalInfo
3039 // *GetValueRequest_EthBridgePort
3040 // *GetValueRequest_FecHistory
3041 // *GetValueRequest_OnuPonInfo
3042 // *GetValueRequest_OnuInfo
3043 // *GetValueRequest_RxPower
serkantul3d22fc72022-09-14 12:22:56 +03003044 // *GetValueRequest_OnuOmciStats
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303045 // *GetValueRequest_OltRxPower
3046 // *GetValueRequest_OnuActiveAlarms
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003047 Request isGetValueRequest_Request `protobuf_oneof:"request"`
3048 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3049 XXX_unrecognized []byte `json:"-"`
3050 XXX_sizecache int32 `json:"-"`
3051}
3052
3053func (m *GetValueRequest) Reset() { *m = GetValueRequest{} }
3054func (m *GetValueRequest) String() string { return proto.CompactTextString(m) }
3055func (*GetValueRequest) ProtoMessage() {}
3056func (*GetValueRequest) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303057 return fileDescriptor_7ecf6e9799a9202d, []int{31}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003058}
3059
3060func (m *GetValueRequest) XXX_Unmarshal(b []byte) error {
3061 return xxx_messageInfo_GetValueRequest.Unmarshal(m, b)
3062}
3063func (m *GetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3064 return xxx_messageInfo_GetValueRequest.Marshal(b, m, deterministic)
3065}
3066func (m *GetValueRequest) XXX_Merge(src proto.Message) {
3067 xxx_messageInfo_GetValueRequest.Merge(m, src)
3068}
3069func (m *GetValueRequest) XXX_Size() int {
3070 return xxx_messageInfo_GetValueRequest.Size(m)
3071}
3072func (m *GetValueRequest) XXX_DiscardUnknown() {
3073 xxx_messageInfo_GetValueRequest.DiscardUnknown(m)
3074}
3075
3076var xxx_messageInfo_GetValueRequest proto.InternalMessageInfo
3077
3078type isGetValueRequest_Request interface {
3079 isGetValueRequest_Request()
3080}
3081
3082type GetValueRequest_Distance struct {
3083 Distance *GetDistanceRequest `protobuf:"bytes,1,opt,name=distance,proto3,oneof"`
3084}
3085
3086type GetValueRequest_UniInfo struct {
3087 UniInfo *GetOnuUniInfoRequest `protobuf:"bytes,2,opt,name=uniInfo,proto3,oneof"`
3088}
3089
3090type GetValueRequest_OltPortInfo struct {
3091 OltPortInfo *GetOltPortCounters `protobuf:"bytes,3,opt,name=oltPortInfo,proto3,oneof"`
3092}
3093
3094type GetValueRequest_OnuOpticalInfo struct {
3095 OnuOpticalInfo *GetOnuPonOpticalInfo `protobuf:"bytes,4,opt,name=onuOpticalInfo,proto3,oneof"`
3096}
3097
3098type GetValueRequest_EthBridgePort struct {
3099 EthBridgePort *GetOnuEthernetBridgePortHistory `protobuf:"bytes,5,opt,name=ethBridgePort,proto3,oneof"`
3100}
3101
3102type GetValueRequest_FecHistory struct {
3103 FecHistory *GetOnuFecHistory `protobuf:"bytes,6,opt,name=fecHistory,proto3,oneof"`
3104}
3105
3106type GetValueRequest_OnuPonInfo struct {
3107 OnuPonInfo *GetOnuCountersRequest `protobuf:"bytes,7,opt,name=onuPonInfo,proto3,oneof"`
3108}
3109
3110type GetValueRequest_OnuInfo struct {
3111 OnuInfo *GetOmciEthernetFrameExtendedPmRequest `protobuf:"bytes,8,opt,name=onuInfo,proto3,oneof"`
3112}
3113
3114type GetValueRequest_RxPower struct {
3115 RxPower *GetRxPowerRequest `protobuf:"bytes,9,opt,name=rxPower,proto3,oneof"`
3116}
3117
serkantul3d22fc72022-09-14 12:22:56 +03003118type GetValueRequest_OnuOmciStats struct {
3119 OnuOmciStats *GetOnuOmciTxRxStatsRequest `protobuf:"bytes,10,opt,name=onuOmciStats,proto3,oneof"`
3120}
3121
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303122type GetValueRequest_OltRxPower struct {
3123 OltRxPower *GetOltRxPowerRequest `protobuf:"bytes,11,opt,name=oltRxPower,proto3,oneof"`
3124}
3125
3126type GetValueRequest_OnuActiveAlarms struct {
3127 OnuActiveAlarms *GetOnuOmciActiveAlarmsRequest `protobuf:"bytes,12,opt,name=onuActiveAlarms,proto3,oneof"`
3128}
3129
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003130func (*GetValueRequest_Distance) isGetValueRequest_Request() {}
3131
3132func (*GetValueRequest_UniInfo) isGetValueRequest_Request() {}
3133
3134func (*GetValueRequest_OltPortInfo) isGetValueRequest_Request() {}
3135
3136func (*GetValueRequest_OnuOpticalInfo) isGetValueRequest_Request() {}
3137
3138func (*GetValueRequest_EthBridgePort) isGetValueRequest_Request() {}
3139
3140func (*GetValueRequest_FecHistory) isGetValueRequest_Request() {}
3141
3142func (*GetValueRequest_OnuPonInfo) isGetValueRequest_Request() {}
3143
3144func (*GetValueRequest_OnuInfo) isGetValueRequest_Request() {}
3145
3146func (*GetValueRequest_RxPower) isGetValueRequest_Request() {}
3147
serkantul3d22fc72022-09-14 12:22:56 +03003148func (*GetValueRequest_OnuOmciStats) isGetValueRequest_Request() {}
3149
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303150func (*GetValueRequest_OltRxPower) isGetValueRequest_Request() {}
3151
3152func (*GetValueRequest_OnuActiveAlarms) isGetValueRequest_Request() {}
3153
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003154func (m *GetValueRequest) GetRequest() isGetValueRequest_Request {
3155 if m != nil {
3156 return m.Request
3157 }
3158 return nil
3159}
3160
3161func (m *GetValueRequest) GetDistance() *GetDistanceRequest {
3162 if x, ok := m.GetRequest().(*GetValueRequest_Distance); ok {
3163 return x.Distance
3164 }
3165 return nil
3166}
3167
3168func (m *GetValueRequest) GetUniInfo() *GetOnuUniInfoRequest {
3169 if x, ok := m.GetRequest().(*GetValueRequest_UniInfo); ok {
3170 return x.UniInfo
3171 }
3172 return nil
3173}
3174
3175func (m *GetValueRequest) GetOltPortInfo() *GetOltPortCounters {
3176 if x, ok := m.GetRequest().(*GetValueRequest_OltPortInfo); ok {
3177 return x.OltPortInfo
3178 }
3179 return nil
3180}
3181
3182func (m *GetValueRequest) GetOnuOpticalInfo() *GetOnuPonOpticalInfo {
3183 if x, ok := m.GetRequest().(*GetValueRequest_OnuOpticalInfo); ok {
3184 return x.OnuOpticalInfo
3185 }
3186 return nil
3187}
3188
3189func (m *GetValueRequest) GetEthBridgePort() *GetOnuEthernetBridgePortHistory {
3190 if x, ok := m.GetRequest().(*GetValueRequest_EthBridgePort); ok {
3191 return x.EthBridgePort
3192 }
3193 return nil
3194}
3195
3196func (m *GetValueRequest) GetFecHistory() *GetOnuFecHistory {
3197 if x, ok := m.GetRequest().(*GetValueRequest_FecHistory); ok {
3198 return x.FecHistory
3199 }
3200 return nil
3201}
3202
3203func (m *GetValueRequest) GetOnuPonInfo() *GetOnuCountersRequest {
3204 if x, ok := m.GetRequest().(*GetValueRequest_OnuPonInfo); ok {
3205 return x.OnuPonInfo
3206 }
3207 return nil
3208}
3209
3210func (m *GetValueRequest) GetOnuInfo() *GetOmciEthernetFrameExtendedPmRequest {
3211 if x, ok := m.GetRequest().(*GetValueRequest_OnuInfo); ok {
3212 return x.OnuInfo
3213 }
3214 return nil
3215}
3216
3217func (m *GetValueRequest) GetRxPower() *GetRxPowerRequest {
3218 if x, ok := m.GetRequest().(*GetValueRequest_RxPower); ok {
3219 return x.RxPower
3220 }
3221 return nil
3222}
3223
serkantul3d22fc72022-09-14 12:22:56 +03003224func (m *GetValueRequest) GetOnuOmciStats() *GetOnuOmciTxRxStatsRequest {
3225 if x, ok := m.GetRequest().(*GetValueRequest_OnuOmciStats); ok {
3226 return x.OnuOmciStats
3227 }
3228 return nil
3229}
3230
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303231func (m *GetValueRequest) GetOltRxPower() *GetOltRxPowerRequest {
3232 if x, ok := m.GetRequest().(*GetValueRequest_OltRxPower); ok {
3233 return x.OltRxPower
3234 }
3235 return nil
3236}
3237
3238func (m *GetValueRequest) GetOnuActiveAlarms() *GetOnuOmciActiveAlarmsRequest {
3239 if x, ok := m.GetRequest().(*GetValueRequest_OnuActiveAlarms); ok {
3240 return x.OnuActiveAlarms
3241 }
3242 return nil
3243}
3244
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003245// XXX_OneofWrappers is for the internal use of the proto package.
3246func (*GetValueRequest) XXX_OneofWrappers() []interface{} {
3247 return []interface{}{
3248 (*GetValueRequest_Distance)(nil),
3249 (*GetValueRequest_UniInfo)(nil),
3250 (*GetValueRequest_OltPortInfo)(nil),
3251 (*GetValueRequest_OnuOpticalInfo)(nil),
3252 (*GetValueRequest_EthBridgePort)(nil),
3253 (*GetValueRequest_FecHistory)(nil),
3254 (*GetValueRequest_OnuPonInfo)(nil),
3255 (*GetValueRequest_OnuInfo)(nil),
3256 (*GetValueRequest_RxPower)(nil),
serkantul3d22fc72022-09-14 12:22:56 +03003257 (*GetValueRequest_OnuOmciStats)(nil),
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303258 (*GetValueRequest_OltRxPower)(nil),
3259 (*GetValueRequest_OnuActiveAlarms)(nil),
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003260 }
3261}
3262
3263type GetValueResponse struct {
3264 Status GetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.GetValueResponse_Status" json:"status,omitempty"`
3265 ErrReason GetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.GetValueResponse_ErrorReason" json:"errReason,omitempty"`
3266 // Types that are valid to be assigned to Response:
3267 // *GetValueResponse_Distance
3268 // *GetValueResponse_UniInfo
3269 // *GetValueResponse_PortCoutners
3270 // *GetValueResponse_OnuOpticalInfo
3271 // *GetValueResponse_EthBridgePortInfo
3272 // *GetValueResponse_FecHistory
3273 // *GetValueResponse_OnuPonCounters
3274 // *GetValueResponse_OnuCounters
3275 // *GetValueResponse_RxPower
serkantul3d22fc72022-09-14 12:22:56 +03003276 // *GetValueResponse_OnuOmciStats
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303277 // *GetValueResponse_OltRxPower
3278 // *GetValueResponse_OnuActiveAlarms
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003279 Response isGetValueResponse_Response `protobuf_oneof:"response"`
3280 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3281 XXX_unrecognized []byte `json:"-"`
3282 XXX_sizecache int32 `json:"-"`
3283}
3284
3285func (m *GetValueResponse) Reset() { *m = GetValueResponse{} }
3286func (m *GetValueResponse) String() string { return proto.CompactTextString(m) }
3287func (*GetValueResponse) ProtoMessage() {}
3288func (*GetValueResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303289 return fileDescriptor_7ecf6e9799a9202d, []int{32}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003290}
3291
3292func (m *GetValueResponse) XXX_Unmarshal(b []byte) error {
3293 return xxx_messageInfo_GetValueResponse.Unmarshal(m, b)
3294}
3295func (m *GetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3296 return xxx_messageInfo_GetValueResponse.Marshal(b, m, deterministic)
3297}
3298func (m *GetValueResponse) XXX_Merge(src proto.Message) {
3299 xxx_messageInfo_GetValueResponse.Merge(m, src)
3300}
3301func (m *GetValueResponse) XXX_Size() int {
3302 return xxx_messageInfo_GetValueResponse.Size(m)
3303}
3304func (m *GetValueResponse) XXX_DiscardUnknown() {
3305 xxx_messageInfo_GetValueResponse.DiscardUnknown(m)
3306}
3307
3308var xxx_messageInfo_GetValueResponse proto.InternalMessageInfo
3309
3310func (m *GetValueResponse) GetStatus() GetValueResponse_Status {
3311 if m != nil {
3312 return m.Status
3313 }
3314 return GetValueResponse_STATUS_UNDEFINED
3315}
3316
3317func (m *GetValueResponse) GetErrReason() GetValueResponse_ErrorReason {
3318 if m != nil {
3319 return m.ErrReason
3320 }
3321 return GetValueResponse_REASON_UNDEFINED
3322}
3323
3324type isGetValueResponse_Response interface {
3325 isGetValueResponse_Response()
3326}
3327
3328type GetValueResponse_Distance struct {
3329 Distance *GetDistanceResponse `protobuf:"bytes,3,opt,name=distance,proto3,oneof"`
3330}
3331
3332type GetValueResponse_UniInfo struct {
3333 UniInfo *GetOnuUniInfoResponse `protobuf:"bytes,4,opt,name=uniInfo,proto3,oneof"`
3334}
3335
3336type GetValueResponse_PortCoutners struct {
3337 PortCoutners *GetOltPortCountersResponse `protobuf:"bytes,5,opt,name=portCoutners,proto3,oneof"`
3338}
3339
3340type GetValueResponse_OnuOpticalInfo struct {
3341 OnuOpticalInfo *GetOnuPonOpticalInfoResponse `protobuf:"bytes,6,opt,name=onuOpticalInfo,proto3,oneof"`
3342}
3343
3344type GetValueResponse_EthBridgePortInfo struct {
3345 EthBridgePortInfo *GetOnuEthernetBridgePortHistoryResponse `protobuf:"bytes,7,opt,name=ethBridgePortInfo,proto3,oneof"`
3346}
3347
3348type GetValueResponse_FecHistory struct {
3349 FecHistory *GetOnuFecHistoryResponse `protobuf:"bytes,8,opt,name=fecHistory,proto3,oneof"`
3350}
3351
3352type GetValueResponse_OnuPonCounters struct {
3353 OnuPonCounters *GetOnuCountersResponse `protobuf:"bytes,9,opt,name=onuPonCounters,proto3,oneof"`
3354}
3355
3356type GetValueResponse_OnuCounters struct {
3357 OnuCounters *GetOmciEthernetFrameExtendedPmResponse `protobuf:"bytes,10,opt,name=onuCounters,proto3,oneof"`
3358}
3359
3360type GetValueResponse_RxPower struct {
3361 RxPower *GetRxPowerResponse `protobuf:"bytes,11,opt,name=rxPower,proto3,oneof"`
3362}
3363
serkantul3d22fc72022-09-14 12:22:56 +03003364type GetValueResponse_OnuOmciStats struct {
3365 OnuOmciStats *GetOnuOmciTxRxStatsResponse `protobuf:"bytes,12,opt,name=onuOmciStats,proto3,oneof"`
3366}
3367
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303368type GetValueResponse_OltRxPower struct {
3369 OltRxPower *GetOltRxPowerResponse `protobuf:"bytes,13,opt,name=oltRxPower,proto3,oneof"`
3370}
3371
3372type GetValueResponse_OnuActiveAlarms struct {
3373 OnuActiveAlarms *GetOnuOmciActiveAlarmsResponse `protobuf:"bytes,14,opt,name=onuActiveAlarms,proto3,oneof"`
3374}
3375
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003376func (*GetValueResponse_Distance) isGetValueResponse_Response() {}
3377
3378func (*GetValueResponse_UniInfo) isGetValueResponse_Response() {}
3379
3380func (*GetValueResponse_PortCoutners) isGetValueResponse_Response() {}
3381
3382func (*GetValueResponse_OnuOpticalInfo) isGetValueResponse_Response() {}
3383
3384func (*GetValueResponse_EthBridgePortInfo) isGetValueResponse_Response() {}
3385
3386func (*GetValueResponse_FecHistory) isGetValueResponse_Response() {}
3387
3388func (*GetValueResponse_OnuPonCounters) isGetValueResponse_Response() {}
3389
3390func (*GetValueResponse_OnuCounters) isGetValueResponse_Response() {}
3391
3392func (*GetValueResponse_RxPower) isGetValueResponse_Response() {}
3393
serkantul3d22fc72022-09-14 12:22:56 +03003394func (*GetValueResponse_OnuOmciStats) isGetValueResponse_Response() {}
3395
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303396func (*GetValueResponse_OltRxPower) isGetValueResponse_Response() {}
3397
3398func (*GetValueResponse_OnuActiveAlarms) isGetValueResponse_Response() {}
3399
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003400func (m *GetValueResponse) GetResponse() isGetValueResponse_Response {
3401 if m != nil {
3402 return m.Response
3403 }
3404 return nil
3405}
3406
3407func (m *GetValueResponse) GetDistance() *GetDistanceResponse {
3408 if x, ok := m.GetResponse().(*GetValueResponse_Distance); ok {
3409 return x.Distance
3410 }
3411 return nil
3412}
3413
3414func (m *GetValueResponse) GetUniInfo() *GetOnuUniInfoResponse {
3415 if x, ok := m.GetResponse().(*GetValueResponse_UniInfo); ok {
3416 return x.UniInfo
3417 }
3418 return nil
3419}
3420
3421func (m *GetValueResponse) GetPortCoutners() *GetOltPortCountersResponse {
3422 if x, ok := m.GetResponse().(*GetValueResponse_PortCoutners); ok {
3423 return x.PortCoutners
3424 }
3425 return nil
3426}
3427
3428func (m *GetValueResponse) GetOnuOpticalInfo() *GetOnuPonOpticalInfoResponse {
3429 if x, ok := m.GetResponse().(*GetValueResponse_OnuOpticalInfo); ok {
3430 return x.OnuOpticalInfo
3431 }
3432 return nil
3433}
3434
3435func (m *GetValueResponse) GetEthBridgePortInfo() *GetOnuEthernetBridgePortHistoryResponse {
3436 if x, ok := m.GetResponse().(*GetValueResponse_EthBridgePortInfo); ok {
3437 return x.EthBridgePortInfo
3438 }
3439 return nil
3440}
3441
3442func (m *GetValueResponse) GetFecHistory() *GetOnuFecHistoryResponse {
3443 if x, ok := m.GetResponse().(*GetValueResponse_FecHistory); ok {
3444 return x.FecHistory
3445 }
3446 return nil
3447}
3448
3449func (m *GetValueResponse) GetOnuPonCounters() *GetOnuCountersResponse {
3450 if x, ok := m.GetResponse().(*GetValueResponse_OnuPonCounters); ok {
3451 return x.OnuPonCounters
3452 }
3453 return nil
3454}
3455
3456func (m *GetValueResponse) GetOnuCounters() *GetOmciEthernetFrameExtendedPmResponse {
3457 if x, ok := m.GetResponse().(*GetValueResponse_OnuCounters); ok {
3458 return x.OnuCounters
3459 }
3460 return nil
3461}
3462
3463func (m *GetValueResponse) GetRxPower() *GetRxPowerResponse {
3464 if x, ok := m.GetResponse().(*GetValueResponse_RxPower); ok {
3465 return x.RxPower
3466 }
3467 return nil
3468}
3469
serkantul3d22fc72022-09-14 12:22:56 +03003470func (m *GetValueResponse) GetOnuOmciStats() *GetOnuOmciTxRxStatsResponse {
3471 if x, ok := m.GetResponse().(*GetValueResponse_OnuOmciStats); ok {
3472 return x.OnuOmciStats
3473 }
3474 return nil
3475}
3476
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303477func (m *GetValueResponse) GetOltRxPower() *GetOltRxPowerResponse {
3478 if x, ok := m.GetResponse().(*GetValueResponse_OltRxPower); ok {
3479 return x.OltRxPower
3480 }
3481 return nil
3482}
3483
3484func (m *GetValueResponse) GetOnuActiveAlarms() *GetOnuOmciActiveAlarmsResponse {
3485 if x, ok := m.GetResponse().(*GetValueResponse_OnuActiveAlarms); ok {
3486 return x.OnuActiveAlarms
3487 }
3488 return nil
3489}
3490
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003491// XXX_OneofWrappers is for the internal use of the proto package.
3492func (*GetValueResponse) XXX_OneofWrappers() []interface{} {
3493 return []interface{}{
3494 (*GetValueResponse_Distance)(nil),
3495 (*GetValueResponse_UniInfo)(nil),
3496 (*GetValueResponse_PortCoutners)(nil),
3497 (*GetValueResponse_OnuOpticalInfo)(nil),
3498 (*GetValueResponse_EthBridgePortInfo)(nil),
3499 (*GetValueResponse_FecHistory)(nil),
3500 (*GetValueResponse_OnuPonCounters)(nil),
3501 (*GetValueResponse_OnuCounters)(nil),
3502 (*GetValueResponse_RxPower)(nil),
serkantul3d22fc72022-09-14 12:22:56 +03003503 (*GetValueResponse_OnuOmciStats)(nil),
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303504 (*GetValueResponse_OltRxPower)(nil),
3505 (*GetValueResponse_OnuActiveAlarms)(nil),
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003506 }
3507}
3508
3509type SetValueRequest struct {
3510 // Types that are valid to be assigned to Request:
3511 // *SetValueRequest_AlarmConfig
3512 Request isSetValueRequest_Request `protobuf_oneof:"request"`
3513 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3514 XXX_unrecognized []byte `json:"-"`
3515 XXX_sizecache int32 `json:"-"`
3516}
3517
3518func (m *SetValueRequest) Reset() { *m = SetValueRequest{} }
3519func (m *SetValueRequest) String() string { return proto.CompactTextString(m) }
3520func (*SetValueRequest) ProtoMessage() {}
3521func (*SetValueRequest) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303522 return fileDescriptor_7ecf6e9799a9202d, []int{33}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003523}
3524
3525func (m *SetValueRequest) XXX_Unmarshal(b []byte) error {
3526 return xxx_messageInfo_SetValueRequest.Unmarshal(m, b)
3527}
3528func (m *SetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3529 return xxx_messageInfo_SetValueRequest.Marshal(b, m, deterministic)
3530}
3531func (m *SetValueRequest) XXX_Merge(src proto.Message) {
3532 xxx_messageInfo_SetValueRequest.Merge(m, src)
3533}
3534func (m *SetValueRequest) XXX_Size() int {
3535 return xxx_messageInfo_SetValueRequest.Size(m)
3536}
3537func (m *SetValueRequest) XXX_DiscardUnknown() {
3538 xxx_messageInfo_SetValueRequest.DiscardUnknown(m)
3539}
3540
3541var xxx_messageInfo_SetValueRequest proto.InternalMessageInfo
3542
3543type isSetValueRequest_Request interface {
3544 isSetValueRequest_Request()
3545}
3546
3547type SetValueRequest_AlarmConfig struct {
3548 AlarmConfig *config.AlarmConfig `protobuf:"bytes,1,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
3549}
3550
3551func (*SetValueRequest_AlarmConfig) isSetValueRequest_Request() {}
3552
3553func (m *SetValueRequest) GetRequest() isSetValueRequest_Request {
3554 if m != nil {
3555 return m.Request
3556 }
3557 return nil
3558}
3559
3560func (m *SetValueRequest) GetAlarmConfig() *config.AlarmConfig {
3561 if x, ok := m.GetRequest().(*SetValueRequest_AlarmConfig); ok {
3562 return x.AlarmConfig
3563 }
3564 return nil
3565}
3566
3567// XXX_OneofWrappers is for the internal use of the proto package.
3568func (*SetValueRequest) XXX_OneofWrappers() []interface{} {
3569 return []interface{}{
3570 (*SetValueRequest_AlarmConfig)(nil),
3571 }
3572}
3573
3574type SetValueResponse struct {
3575 Status SetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.SetValueResponse_Status" json:"status,omitempty"`
3576 ErrReason SetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.SetValueResponse_ErrorReason" json:"errReason,omitempty"`
3577 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3578 XXX_unrecognized []byte `json:"-"`
3579 XXX_sizecache int32 `json:"-"`
3580}
3581
3582func (m *SetValueResponse) Reset() { *m = SetValueResponse{} }
3583func (m *SetValueResponse) String() string { return proto.CompactTextString(m) }
3584func (*SetValueResponse) ProtoMessage() {}
3585func (*SetValueResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303586 return fileDescriptor_7ecf6e9799a9202d, []int{34}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003587}
3588
3589func (m *SetValueResponse) XXX_Unmarshal(b []byte) error {
3590 return xxx_messageInfo_SetValueResponse.Unmarshal(m, b)
3591}
3592func (m *SetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3593 return xxx_messageInfo_SetValueResponse.Marshal(b, m, deterministic)
3594}
3595func (m *SetValueResponse) XXX_Merge(src proto.Message) {
3596 xxx_messageInfo_SetValueResponse.Merge(m, src)
3597}
3598func (m *SetValueResponse) XXX_Size() int {
3599 return xxx_messageInfo_SetValueResponse.Size(m)
3600}
3601func (m *SetValueResponse) XXX_DiscardUnknown() {
3602 xxx_messageInfo_SetValueResponse.DiscardUnknown(m)
3603}
3604
3605var xxx_messageInfo_SetValueResponse proto.InternalMessageInfo
3606
3607func (m *SetValueResponse) GetStatus() SetValueResponse_Status {
3608 if m != nil {
3609 return m.Status
3610 }
3611 return SetValueResponse_STATUS_UNDEFINED
3612}
3613
3614func (m *SetValueResponse) GetErrReason() SetValueResponse_ErrorReason {
3615 if m != nil {
3616 return m.ErrReason
3617 }
3618 return SetValueResponse_REASON_UNDEFINED
3619}
3620
3621type SingleGetValueRequest struct {
3622 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
3623 Request *GetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
3624 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3625 XXX_unrecognized []byte `json:"-"`
3626 XXX_sizecache int32 `json:"-"`
3627}
3628
3629func (m *SingleGetValueRequest) Reset() { *m = SingleGetValueRequest{} }
3630func (m *SingleGetValueRequest) String() string { return proto.CompactTextString(m) }
3631func (*SingleGetValueRequest) ProtoMessage() {}
3632func (*SingleGetValueRequest) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303633 return fileDescriptor_7ecf6e9799a9202d, []int{35}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003634}
3635
3636func (m *SingleGetValueRequest) XXX_Unmarshal(b []byte) error {
3637 return xxx_messageInfo_SingleGetValueRequest.Unmarshal(m, b)
3638}
3639func (m *SingleGetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3640 return xxx_messageInfo_SingleGetValueRequest.Marshal(b, m, deterministic)
3641}
3642func (m *SingleGetValueRequest) XXX_Merge(src proto.Message) {
3643 xxx_messageInfo_SingleGetValueRequest.Merge(m, src)
3644}
3645func (m *SingleGetValueRequest) XXX_Size() int {
3646 return xxx_messageInfo_SingleGetValueRequest.Size(m)
3647}
3648func (m *SingleGetValueRequest) XXX_DiscardUnknown() {
3649 xxx_messageInfo_SingleGetValueRequest.DiscardUnknown(m)
3650}
3651
3652var xxx_messageInfo_SingleGetValueRequest proto.InternalMessageInfo
3653
3654func (m *SingleGetValueRequest) GetTargetId() string {
3655 if m != nil {
3656 return m.TargetId
3657 }
3658 return ""
3659}
3660
3661func (m *SingleGetValueRequest) GetRequest() *GetValueRequest {
3662 if m != nil {
3663 return m.Request
3664 }
3665 return nil
3666}
3667
3668type SingleGetValueResponse struct {
3669 Response *GetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
3670 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3671 XXX_unrecognized []byte `json:"-"`
3672 XXX_sizecache int32 `json:"-"`
3673}
3674
3675func (m *SingleGetValueResponse) Reset() { *m = SingleGetValueResponse{} }
3676func (m *SingleGetValueResponse) String() string { return proto.CompactTextString(m) }
3677func (*SingleGetValueResponse) ProtoMessage() {}
3678func (*SingleGetValueResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303679 return fileDescriptor_7ecf6e9799a9202d, []int{36}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003680}
3681
3682func (m *SingleGetValueResponse) XXX_Unmarshal(b []byte) error {
3683 return xxx_messageInfo_SingleGetValueResponse.Unmarshal(m, b)
3684}
3685func (m *SingleGetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3686 return xxx_messageInfo_SingleGetValueResponse.Marshal(b, m, deterministic)
3687}
3688func (m *SingleGetValueResponse) XXX_Merge(src proto.Message) {
3689 xxx_messageInfo_SingleGetValueResponse.Merge(m, src)
3690}
3691func (m *SingleGetValueResponse) XXX_Size() int {
3692 return xxx_messageInfo_SingleGetValueResponse.Size(m)
3693}
3694func (m *SingleGetValueResponse) XXX_DiscardUnknown() {
3695 xxx_messageInfo_SingleGetValueResponse.DiscardUnknown(m)
3696}
3697
3698var xxx_messageInfo_SingleGetValueResponse proto.InternalMessageInfo
3699
3700func (m *SingleGetValueResponse) GetResponse() *GetValueResponse {
3701 if m != nil {
3702 return m.Response
3703 }
3704 return nil
3705}
3706
3707type SingleSetValueRequest struct {
3708 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
3709 Request *SetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
3710 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3711 XXX_unrecognized []byte `json:"-"`
3712 XXX_sizecache int32 `json:"-"`
3713}
3714
3715func (m *SingleSetValueRequest) Reset() { *m = SingleSetValueRequest{} }
3716func (m *SingleSetValueRequest) String() string { return proto.CompactTextString(m) }
3717func (*SingleSetValueRequest) ProtoMessage() {}
3718func (*SingleSetValueRequest) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303719 return fileDescriptor_7ecf6e9799a9202d, []int{37}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003720}
3721
3722func (m *SingleSetValueRequest) XXX_Unmarshal(b []byte) error {
3723 return xxx_messageInfo_SingleSetValueRequest.Unmarshal(m, b)
3724}
3725func (m *SingleSetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3726 return xxx_messageInfo_SingleSetValueRequest.Marshal(b, m, deterministic)
3727}
3728func (m *SingleSetValueRequest) XXX_Merge(src proto.Message) {
3729 xxx_messageInfo_SingleSetValueRequest.Merge(m, src)
3730}
3731func (m *SingleSetValueRequest) XXX_Size() int {
3732 return xxx_messageInfo_SingleSetValueRequest.Size(m)
3733}
3734func (m *SingleSetValueRequest) XXX_DiscardUnknown() {
3735 xxx_messageInfo_SingleSetValueRequest.DiscardUnknown(m)
3736}
3737
3738var xxx_messageInfo_SingleSetValueRequest proto.InternalMessageInfo
3739
3740func (m *SingleSetValueRequest) GetTargetId() string {
3741 if m != nil {
3742 return m.TargetId
3743 }
3744 return ""
3745}
3746
3747func (m *SingleSetValueRequest) GetRequest() *SetValueRequest {
3748 if m != nil {
3749 return m.Request
3750 }
3751 return nil
3752}
3753
3754type SingleSetValueResponse struct {
3755 Response *SetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
3756 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3757 XXX_unrecognized []byte `json:"-"`
3758 XXX_sizecache int32 `json:"-"`
3759}
3760
3761func (m *SingleSetValueResponse) Reset() { *m = SingleSetValueResponse{} }
3762func (m *SingleSetValueResponse) String() string { return proto.CompactTextString(m) }
3763func (*SingleSetValueResponse) ProtoMessage() {}
3764func (*SingleSetValueResponse) Descriptor() ([]byte, []int) {
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303765 return fileDescriptor_7ecf6e9799a9202d, []int{38}
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003766}
3767
3768func (m *SingleSetValueResponse) XXX_Unmarshal(b []byte) error {
3769 return xxx_messageInfo_SingleSetValueResponse.Unmarshal(m, b)
3770}
3771func (m *SingleSetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3772 return xxx_messageInfo_SingleSetValueResponse.Marshal(b, m, deterministic)
3773}
3774func (m *SingleSetValueResponse) XXX_Merge(src proto.Message) {
3775 xxx_messageInfo_SingleSetValueResponse.Merge(m, src)
3776}
3777func (m *SingleSetValueResponse) XXX_Size() int {
3778 return xxx_messageInfo_SingleSetValueResponse.Size(m)
3779}
3780func (m *SingleSetValueResponse) XXX_DiscardUnknown() {
3781 xxx_messageInfo_SingleSetValueResponse.DiscardUnknown(m)
3782}
3783
3784var xxx_messageInfo_SingleSetValueResponse proto.InternalMessageInfo
3785
3786func (m *SingleSetValueResponse) GetResponse() *SetValueResponse {
3787 if m != nil {
3788 return m.Response
3789 }
3790 return nil
3791}
3792
3793func init() {
khenaidoo080ce882021-10-19 17:35:08 -04003794 proto.RegisterEnum("extension.ValueType_Type", ValueType_Type_name, ValueType_Type_value)
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003795 proto.RegisterEnum("extension.GetOnuUniInfoResponse_ConfigurationInd", GetOnuUniInfoResponse_ConfigurationInd_name, GetOnuUniInfoResponse_ConfigurationInd_value)
3796 proto.RegisterEnum("extension.GetOnuUniInfoResponse_AdministrativeState", GetOnuUniInfoResponse_AdministrativeState_name, GetOnuUniInfoResponse_AdministrativeState_value)
3797 proto.RegisterEnum("extension.GetOnuUniInfoResponse_OperationalState", GetOnuUniInfoResponse_OperationalState_name, GetOnuUniInfoResponse_OperationalState_value)
3798 proto.RegisterEnum("extension.GetOltPortCounters_PortType", GetOltPortCounters_PortType_name, GetOltPortCounters_PortType_value)
3799 proto.RegisterEnum("extension.GetOnuEthernetBridgePortHistory_Direction", GetOnuEthernetBridgePortHistory_Direction_name, GetOnuEthernetBridgePortHistory_Direction_value)
Himani Chawlabac0f892021-08-25 17:14:06 +05303800 proto.RegisterEnum("extension.GetOmciEthernetFrameExtendedPmResponse_Format", GetOmciEthernetFrameExtendedPmResponse_Format_name, GetOmciEthernetFrameExtendedPmResponse_Format_value)
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003801 proto.RegisterEnum("extension.GetValueResponse_Status", GetValueResponse_Status_name, GetValueResponse_Status_value)
3802 proto.RegisterEnum("extension.GetValueResponse_ErrorReason", GetValueResponse_ErrorReason_name, GetValueResponse_ErrorReason_value)
3803 proto.RegisterEnum("extension.SetValueResponse_Status", SetValueResponse_Status_name, SetValueResponse_Status_value)
3804 proto.RegisterEnum("extension.SetValueResponse_ErrorReason", SetValueResponse_ErrorReason_name, SetValueResponse_ErrorReason_value)
khenaidoo080ce882021-10-19 17:35:08 -04003805 proto.RegisterType((*ValueSet)(nil), "extension.ValueSet")
3806 proto.RegisterType((*ValueType)(nil), "extension.ValueType")
3807 proto.RegisterType((*ValueSpecifier)(nil), "extension.ValueSpecifier")
3808 proto.RegisterType((*ReturnValues)(nil), "extension.ReturnValues")
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003809 proto.RegisterType((*GetDistanceRequest)(nil), "extension.GetDistanceRequest")
3810 proto.RegisterType((*GetDistanceResponse)(nil), "extension.GetDistanceResponse")
3811 proto.RegisterType((*GetOnuUniInfoRequest)(nil), "extension.GetOnuUniInfoRequest")
3812 proto.RegisterType((*GetOnuUniInfoResponse)(nil), "extension.GetOnuUniInfoResponse")
3813 proto.RegisterType((*GetOltPortCounters)(nil), "extension.GetOltPortCounters")
3814 proto.RegisterType((*GetOltPortCountersResponse)(nil), "extension.GetOltPortCountersResponse")
3815 proto.RegisterType((*GetOnuPonOpticalInfo)(nil), "extension.GetOnuPonOpticalInfo")
3816 proto.RegisterType((*GetOnuPonOpticalInfoResponse)(nil), "extension.GetOnuPonOpticalInfoResponse")
3817 proto.RegisterType((*GetOnuEthernetBridgePortHistory)(nil), "extension.GetOnuEthernetBridgePortHistory")
3818 proto.RegisterType((*GetOnuEthernetBridgePortHistoryResponse)(nil), "extension.GetOnuEthernetBridgePortHistoryResponse")
3819 proto.RegisterType((*GetOnuFecHistory)(nil), "extension.GetOnuFecHistory")
3820 proto.RegisterType((*GetOnuFecHistoryResponse)(nil), "extension.GetOnuFecHistoryResponse")
3821 proto.RegisterType((*GetOnuCountersRequest)(nil), "extension.GetOnuCountersRequest")
3822 proto.RegisterType((*GetOmciEthernetFrameExtendedPmRequest)(nil), "extension.GetOmciEthernetFrameExtendedPmRequest")
3823 proto.RegisterType((*GetRxPowerRequest)(nil), "extension.GetRxPowerRequest")
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303824 proto.RegisterType((*GetOltRxPowerRequest)(nil), "extension.GetOltRxPowerRequest")
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003825 proto.RegisterType((*GetOnuCountersResponse)(nil), "extension.GetOnuCountersResponse")
3826 proto.RegisterType((*OmciEthernetFrameExtendedPm)(nil), "extension.OmciEthernetFrameExtendedPm")
3827 proto.RegisterType((*GetOmciEthernetFrameExtendedPmResponse)(nil), "extension.GetOmciEthernetFrameExtendedPmResponse")
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303828 proto.RegisterType((*RxPower)(nil), "extension.RxPower")
3829 proto.RegisterType((*GetOltRxPowerResponse)(nil), "extension.GetOltRxPowerResponse")
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003830 proto.RegisterType((*GetRxPowerResponse)(nil), "extension.GetRxPowerResponse")
serkantul3d22fc72022-09-14 12:22:56 +03003831 proto.RegisterType((*GetOnuOmciTxRxStatsRequest)(nil), "extension.GetOnuOmciTxRxStatsRequest")
3832 proto.RegisterType((*GetOnuOmciTxRxStatsResponse)(nil), "extension.GetOnuOmciTxRxStatsResponse")
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303833 proto.RegisterType((*GetOnuOmciActiveAlarmsRequest)(nil), "extension.GetOnuOmciActiveAlarmsRequest")
3834 proto.RegisterType((*AlarmData)(nil), "extension.AlarmData")
3835 proto.RegisterType((*GetOnuOmciActiveAlarmsResponse)(nil), "extension.GetOnuOmciActiveAlarmsResponse")
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00003836 proto.RegisterType((*GetValueRequest)(nil), "extension.GetValueRequest")
3837 proto.RegisterType((*GetValueResponse)(nil), "extension.GetValueResponse")
3838 proto.RegisterType((*SetValueRequest)(nil), "extension.SetValueRequest")
3839 proto.RegisterType((*SetValueResponse)(nil), "extension.SetValueResponse")
3840 proto.RegisterType((*SingleGetValueRequest)(nil), "extension.SingleGetValueRequest")
3841 proto.RegisterType((*SingleGetValueResponse)(nil), "extension.SingleGetValueResponse")
3842 proto.RegisterType((*SingleSetValueRequest)(nil), "extension.SingleSetValueRequest")
3843 proto.RegisterType((*SingleSetValueResponse)(nil), "extension.SingleSetValueResponse")
3844}
3845
3846func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
3847
3848var fileDescriptor_7ecf6e9799a9202d = []byte{
praneeth nalmas1dd094c2022-12-22 14:15:13 +05303849 // 3710 bytes of a gzipped FileDescriptorProto
3850 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x73, 0xdb, 0xc8,
3851 0x72, 0x17, 0x29, 0x89, 0x22, 0x9b, 0xa2, 0x44, 0x8d, 0x3e, 0x4c, 0x4b, 0xfe, 0x5a, 0xbc, 0x5a,
3852 0xdb, 0xfb, 0xca, 0x4b, 0x9b, 0x5c, 0xc9, 0xab, 0xb7, 0xef, 0xa5, 0xea, 0x91, 0x22, 0x25, 0x32,
3853 0x96, 0x49, 0xed, 0x90, 0xf4, 0xee, 0x26, 0x95, 0x42, 0x41, 0xc4, 0x48, 0x46, 0x99, 0x04, 0x18,
3854 0x60, 0xe8, 0xa5, 0x53, 0x95, 0x5b, 0x6e, 0x49, 0x4e, 0xef, 0x92, 0x7f, 0x22, 0x95, 0x43, 0x0e,
3855 0xb9, 0xe7, 0x9c, 0x7f, 0x22, 0x55, 0xb9, 0xe4, 0x98, 0x54, 0xce, 0xa9, 0xd4, 0x7c, 0x01, 0x03,
3856 0x90, 0x92, 0xed, 0xcd, 0xbb, 0xd8, 0x9a, 0xee, 0x5f, 0xff, 0xa6, 0x31, 0xd3, 0xdd, 0xd3, 0x18,
3857 0x10, 0x1e, 0xbc, 0xf7, 0x46, 0xf4, 0xad, 0x65, 0x4e, 0x7c, 0x8f, 0x7a, 0xc1, 0x73, 0x32, 0xa3,
3858 0xc4, 0x0d, 0x1c, 0xcf, 0x0d, 0xca, 0x5c, 0x82, 0x72, 0xa1, 0x64, 0x7f, 0x1e, 0x6a, 0x0e, 0x3d,
3859 0xf7, 0xca, 0xb9, 0x16, 0xd0, 0xfd, 0x83, 0x6b, 0xcf, 0xbb, 0x1e, 0x91, 0xe7, 0x7c, 0x74, 0x39,
3860 0xbd, 0x7a, 0x4e, 0xc6, 0x13, 0xfa, 0x41, 0x28, 0x8d, 0xbf, 0x80, 0xec, 0x1b, 0x6b, 0x34, 0x25,
3861 0x3d, 0x42, 0xd1, 0x06, 0xa4, 0x1d, 0xbb, 0x94, 0x7a, 0x94, 0x7a, 0x9a, 0xc3, 0x69, 0xc7, 0x46,
3862 0xc7, 0xb0, 0x6e, 0x8d, 0x2c, 0x7f, 0x2c, 0xe9, 0x4a, 0xe9, 0x47, 0xa9, 0xa7, 0xf9, 0xea, 0x76,
3863 0x59, 0xb2, 0xd7, 0x98, 0xee, 0x84, 0xff, 0xdd, 0x5a, 0xc2, 0x79, 0x2b, 0x1a, 0xd6, 0xd7, 0x60,
3864 0xf5, 0x3d, 0x63, 0x35, 0x9e, 0x41, 0x8e, 0xd3, 0xf7, 0x3f, 0x4c, 0x88, 0xf1, 0x10, 0x56, 0xd8,
3865 0xff, 0x28, 0x07, 0xab, 0xcd, 0xd7, 0x17, 0xfd, 0x9f, 0x8a, 0x4b, 0x68, 0x1d, 0xb2, 0x8d, 0x76,
3866 0xaf, 0x5f, 0xeb, 0x9c, 0x34, 0x8b, 0x29, 0xe3, 0x7b, 0xd8, 0x10, 0xce, 0x4c, 0xc8, 0xd0, 0xb9,
3867 0x72, 0x88, 0x3f, 0xe7, 0xd2, 0x73, 0x49, 0xcc, 0x7d, 0xd9, 0xa8, 0xde, 0x2d, 0x87, 0xcb, 0x50,
3868 0x0e, 0xe7, 0x29, 0xb3, 0x7f, 0xb0, 0x74, 0x80, 0xc2, 0x3a, 0x26, 0x74, 0xea, 0xbb, 0x5c, 0x1d,
3869 0xa0, 0x22, 0x2c, 0xf7, 0x08, 0xe5, 0x8c, 0x05, 0xcc, 0xfe, 0x44, 0x8f, 0x20, 0x3f, 0x70, 0x83,
3870 0xe9, 0x64, 0xe2, 0xf9, 0x94, 0xd8, 0x9c, 0xb8, 0x80, 0x75, 0x11, 0xda, 0x81, 0xd5, 0xa6, 0xef,
3871 0x7b, 0x7e, 0x69, 0x99, 0xeb, 0xc4, 0x00, 0xed, 0x43, 0xb6, 0xe1, 0x04, 0xd4, 0x72, 0x87, 0xa4,
3872 0xb4, 0xc2, 0x15, 0xe1, 0xd8, 0x78, 0x09, 0xe8, 0x8c, 0x50, 0x35, 0xc4, 0xe4, 0x2f, 0xa7, 0x24,
3873 0xe0, 0x33, 0x79, 0xee, 0xb4, 0x41, 0xde, 0x3b, 0x43, 0xd2, 0x56, 0x4f, 0xa5, 0x8b, 0x8c, 0x0a,
3874 0x6c, 0xc7, 0xec, 0x82, 0x89, 0xe7, 0x06, 0x84, 0x4d, 0x65, 0xab, 0xa9, 0x84, 0xe7, 0xe1, 0xd8,
3875 0xa8, 0xc2, 0xce, 0x19, 0xa1, 0x5d, 0x77, 0x3a, 0x70, 0x9d, 0xb6, 0x7b, 0xe5, 0xa9, 0xc9, 0xf6,
3876 0x21, 0x3b, 0x65, 0x12, 0x9b, 0xcc, 0x94, 0x8d, 0x1a, 0x1b, 0xff, 0xbe, 0x02, 0xbb, 0x09, 0x23,
3877 0x39, 0xd3, 0x05, 0x64, 0x2d, 0x7b, 0xdc, 0xa3, 0x16, 0x15, 0x33, 0x6d, 0x54, 0x0f, 0xb5, 0x25,
3878 0x5e, 0x68, 0x53, 0xae, 0xd9, 0x63, 0xc7, 0x75, 0x02, 0xea, 0x5b, 0xd4, 0x79, 0x4f, 0xb8, 0x2d,
3879 0x0e, 0x59, 0x50, 0x17, 0x72, 0xde, 0x84, 0xf8, 0x82, 0x52, 0xec, 0x5a, 0xe5, 0xa3, 0x94, 0xdd,
3880 0x09, 0x61, 0x6c, 0x9e, 0x6b, 0x8d, 0x04, 0x5f, 0xc4, 0xc1, 0x08, 0x45, 0x00, 0xb6, 0x5d, 0x9b,
3881 0xef, 0xc8, 0xa7, 0x10, 0x8a, 0xb8, 0x9c, 0x0a, 0xd2, 0xb6, 0x6b, 0xe3, 0x88, 0xc3, 0xf8, 0xd7,
3882 0x14, 0x14, 0x93, 0x7a, 0x04, 0x90, 0x19, 0x74, 0x5e, 0x75, 0x7f, 0xe8, 0x14, 0x97, 0x10, 0x82,
3883 0x8d, 0x7e, 0xb3, 0x63, 0xd6, 0x6b, 0xbd, 0xa6, 0xd9, 0x37, 0x4f, 0x1b, 0x3f, 0x16, 0x53, 0x68,
3884 0x0f, 0x50, 0x6b, 0xd0, 0x69, 0xe0, 0x66, 0x43, 0x97, 0xa7, 0x51, 0x09, 0x76, 0xce, 0xda, 0x67,
3885 0xb5, 0x7a, 0xbb, 0x6f, 0x36, 0xfb, 0xad, 0x26, 0xee, 0x34, 0x85, 0x66, 0x99, 0x59, 0x30, 0x96,
3886 0xb3, 0xb8, 0x7c, 0x25, 0xc1, 0xde, 0x6a, 0xfc, 0x58, 0x5c, 0x5d, 0xc0, 0xce, 0xe4, 0x99, 0x85,
3887 0xec, 0x4c, 0xb3, 0x66, 0x9c, 0xc1, 0xf6, 0x82, 0x7d, 0x60, 0x44, 0xb5, 0xc6, 0xeb, 0x5e, 0xbf,
3888 0xd6, 0x6f, 0x9a, 0x83, 0x4e, 0xa3, 0x79, 0xda, 0xee, 0x34, 0x1b, 0xc5, 0x25, 0xf6, 0x78, 0xe7,
3889 0xdd, 0x93, 0x57, 0xcd, 0x46, 0x31, 0xc5, 0x72, 0x70, 0xd0, 0x91, 0xa3, 0xb4, 0x71, 0x0a, 0xc5,
3890 0xe4, 0xea, 0xa3, 0x3b, 0xb0, 0xdd, 0xbd, 0x68, 0xe2, 0x79, 0x9a, 0x3c, 0xac, 0x35, 0x3b, 0xb5,
3891 0xfa, 0xb9, 0xe2, 0x69, 0xb4, 0x7b, 0x62, 0x94, 0x36, 0xfe, 0x25, 0xc5, 0x73, 0xa0, 0x3b, 0xa2,
3892 0x17, 0x9e, 0x4f, 0x4f, 0xbc, 0xa9, 0x4b, 0x89, 0x1f, 0xa0, 0x3d, 0xc8, 0xb0, 0xac, 0xea, 0x78,
3893 0x32, 0x28, 0xe5, 0x08, 0xd5, 0x21, 0xcb, 0xfe, 0x62, 0xa9, 0x2b, 0xa3, 0xe4, 0x71, 0x62, 0x53,
3894 0xe3, 0x44, 0xe5, 0x0b, 0x89, 0xc6, 0xa1, 0x9d, 0xd1, 0x84, 0xac, 0x92, 0xa2, 0x22, 0xac, 0xb3,
3895 0xbf, 0xcd, 0x41, 0xe7, 0x55, 0x47, 0xec, 0xe2, 0x2e, 0x6c, 0x71, 0x49, 0xb8, 0x70, 0x9d, 0x4e,
3896 0xbb, 0x98, 0x0a, 0x81, 0x17, 0xdd, 0x8e, 0xd9, 0x3d, 0xef, 0x17, 0xd3, 0xc6, 0xbf, 0x2d, 0xc3,
3897 0xfe, 0xfc, 0x84, 0x61, 0x8a, 0x94, 0x60, 0x8d, 0xce, 0xea, 0x1f, 0x28, 0x09, 0xf8, 0x23, 0xac,
3898 0x60, 0x35, 0x64, 0x1a, 0x5f, 0x6a, 0xd2, 0x42, 0x23, 0x87, 0xe8, 0x1e, 0xe4, 0xe8, 0xec, 0xc2,
3899 0x1a, 0xbe, 0x23, 0x34, 0xe0, 0x31, 0xbb, 0x82, 0x23, 0x01, 0xd3, 0xfa, 0xa1, 0x76, 0x45, 0x68,
3900 0x43, 0x01, 0x7a, 0x0c, 0x1b, 0x74, 0xc6, 0x4b, 0x8e, 0x82, 0xac, 0x72, 0x48, 0x42, 0xca, 0x70,
3901 0x7e, 0x1c, 0x97, 0x11, 0x38, 0x7f, 0x0e, 0x47, 0x67, 0xf5, 0xa1, 0x15, 0x50, 0x85, 0x5b, 0x53,
3902 0x7c, 0xba, 0x54, 0xf0, 0xc5, 0x70, 0x59, 0xc5, 0x97, 0xc4, 0xd1, 0xd9, 0x40, 0xc7, 0xe5, 0x14,
3903 0xdf, 0x60, 0x8e, 0x2f, 0x86, 0x03, 0xc5, 0x37, 0x98, 0xe3, 0x7b, 0xad, 0xe3, 0xf2, 0x8a, 0xef,
3904 0xf5, 0x1c, 0x5f, 0x0c, 0xb7, 0xae, 0xf8, 0x74, 0xa9, 0xd1, 0x50, 0x05, 0xf2, 0xc2, 0x73, 0xbb,
3905 0x13, 0xea, 0x0c, 0xad, 0x11, 0x2b, 0x0d, 0xe8, 0x19, 0xac, 0xf2, 0x83, 0x90, 0xef, 0x62, 0xbe,
3906 0xba, 0x57, 0x16, 0xc7, 0x64, 0x59, 0x1d, 0x93, 0xe5, 0x26, 0xd3, 0x62, 0x01, 0x32, 0xfe, 0x26,
3907 0x0d, 0xf7, 0x16, 0xd1, 0x84, 0x61, 0xf1, 0x6b, 0x28, 0x4e, 0xbc, 0x9f, 0x89, 0x7f, 0x4a, 0x88,
3908 0xfd, 0xc6, 0x1b, 0x51, 0xeb, 0x5a, 0x54, 0xd0, 0x34, 0x9e, 0x93, 0xa3, 0x2a, 0xec, 0xf8, 0x64,
3909 0x48, 0x9c, 0xf7, 0xc4, 0x96, 0x54, 0x17, 0x0c, 0xc2, 0xa3, 0x26, 0x8d, 0x17, 0xea, 0xd0, 0x4b,
3910 0xd8, 0x1b, 0x13, 0x4b, 0x4d, 0x7d, 0x6e, 0x4d, 0xdd, 0xe1, 0x5b, 0x61, 0xb5, 0xcc, 0xad, 0x6e,
3911 0xd0, 0x32, 0xbf, 0x46, 0x56, 0x40, 0xfc, 0xba, 0x63, 0x05, 0x27, 0x53, 0xdf, 0x27, 0x2e, 0xe5,
3912 0x31, 0x96, 0xc6, 0x73, 0x72, 0x76, 0x40, 0x51, 0x32, 0xe6, 0xd9, 0x3f, 0xf5, 0x09, 0x8f, 0xb3,
3913 0x34, 0xd6, 0x45, 0xc6, 0x3f, 0xa5, 0xe0, 0xa1, 0x58, 0x86, 0x26, 0x7d, 0x4b, 0x7c, 0x97, 0xd0,
3914 0xba, 0xef, 0xd8, 0xd7, 0x84, 0x65, 0x4a, 0xcb, 0x09, 0xa8, 0xe7, 0x7f, 0x40, 0x18, 0x72, 0xb6,
3915 0xe3, 0x93, 0x21, 0xab, 0x20, 0x37, 0x1e, 0x22, 0x37, 0x9a, 0x97, 0x1b, 0xca, 0x16, 0x47, 0x34,
3916 0xc6, 0x31, 0xe4, 0x42, 0x39, 0x2a, 0x40, 0x4e, 0x2f, 0x42, 0xac, 0x7e, 0x5d, 0xf4, 0xfa, 0xb8,
3917 0x59, 0x7b, 0x5d, 0x4c, 0xa1, 0x0d, 0x80, 0x46, 0xf7, 0x87, 0x8e, 0x1c, 0xa7, 0x8d, 0x3f, 0xac,
3918 0xc2, 0x93, 0x8f, 0x4c, 0x19, 0xee, 0xe1, 0x03, 0x00, 0xdb, 0xf7, 0x26, 0xcd, 0xf7, 0xc4, 0xa5,
3919 0x81, 0x2c, 0x50, 0x9a, 0x84, 0x15, 0x2f, 0x6f, 0x48, 0x59, 0xa8, 0x89, 0x2e, 0x41, 0x8e, 0x58,
3920 0xe2, 0x4f, 0xb4, 0xe4, 0x2e, 0x60, 0x35, 0x64, 0xab, 0x7f, 0xe9, 0x7b, 0x96, 0xad, 0x87, 0xa9,
3921 0x68, 0x16, 0xe6, 0xe4, 0x0c, 0x3b, 0x9e, 0x8e, 0xd8, 0x06, 0x46, 0xd8, 0x55, 0x81, 0x4d, 0xca,
3922 0xd1, 0x33, 0xd8, 0x1a, 0xfa, 0x43, 0x9e, 0xd7, 0xc4, 0xd6, 0xf3, 0xbd, 0x80, 0xe7, 0x15, 0x8c,
3923 0x79, 0xea, 0xda, 0xc4, 0x0f, 0x9c, 0xbf, 0x22, 0x7a, 0xd2, 0x17, 0xf0, 0x9c, 0x1c, 0x3d, 0x85,
3924 0x4d, 0xef, 0x7d, 0x1c, 0x9a, 0xe5, 0xd0, 0xa4, 0x98, 0x21, 0xe5, 0x63, 0xbe, 0x3c, 0x94, 0xcb,
3925 0x92, 0x13, 0xc8, 0x84, 0x98, 0xc5, 0xbb, 0x12, 0x1d, 0xf5, 0xbd, 0x4a, 0xf5, 0x5b, 0x09, 0x07,
3926 0x0e, 0x5f, 0xa8, 0x43, 0x87, 0xb0, 0x2b, 0xe5, 0x95, 0xea, 0x71, 0xdf, 0xab, 0x1e, 0x1d, 0x75,
3927 0x85, 0x51, 0x9e, 0x1b, 0x2d, 0x56, 0x6a, 0x56, 0xd5, 0xa3, 0x97, 0x7d, 0xef, 0xa8, 0x52, 0x91,
3928 0x53, 0xad, 0xc7, 0xac, 0xe2, 0x4a, 0x96, 0x5b, 0x52, 0x71, 0x54, 0xa9, 0xf6, 0xbd, 0xca, 0x8b,
3929 0xea, 0x37, 0xd2, 0xac, 0xc0, 0xcd, 0x6e, 0xd0, 0xa2, 0x63, 0xb8, 0xa3, 0xdc, 0x78, 0x51, 0x3d,
3930 0xec, 0x7b, 0x95, 0xa3, 0xca, 0xb1, 0x34, 0xdc, 0xe0, 0x86, 0x37, 0xa9, 0x8d, 0xdf, 0x43, 0x51,
3931 0x04, 0xe5, 0x29, 0x19, 0xaa, 0xbc, 0xf9, 0xbc, 0x82, 0xf4, 0xdf, 0x29, 0x28, 0x25, 0x29, 0xc2,
3932 0x40, 0x7e, 0x0c, 0x1b, 0x43, 0xcf, 0x67, 0xf9, 0x42, 0xec, 0xe8, 0xa8, 0x2a, 0xe0, 0x84, 0x14,
3933 0x95, 0x01, 0x85, 0x92, 0x13, 0xcf, 0x26, 0x3f, 0x78, 0xbe, 0xad, 0x82, 0x7b, 0x81, 0x86, 0x25,
3934 0xc8, 0x15, 0x19, 0xf6, 0xc8, 0xd0, 0x73, 0x6d, 0x15, 0xeb, 0x9a, 0x84, 0xd7, 0x6e, 0x8f, 0x5a,
3935 0xa3, 0x88, 0x4b, 0x04, 0x7b, 0x42, 0xca, 0x16, 0x7c, 0xea, 0x4a, 0x7e, 0xeb, 0x72, 0x44, 0x22,
3936 0xbc, 0x08, 0xf8, 0x1b, 0xb4, 0xc6, 0x99, 0xea, 0x5b, 0xa3, 0x53, 0x59, 0x74, 0xbb, 0x77, 0x60,
3937 0xcd, 0x71, 0xe9, 0x95, 0x29, 0x5f, 0x16, 0xd6, 0x70, 0x86, 0x0d, 0xdb, 0x36, 0xda, 0x85, 0x8c,
3938 0xe7, 0x4e, 0x99, 0x3c, 0xcd, 0xe5, 0xab, 0x9e, 0x3b, 0x6d, 0xdb, 0xc6, 0xdf, 0xa7, 0xe0, 0x4b,
3939 0xc6, 0x34, 0x1e, 0x3a, 0xaa, 0x2c, 0x9c, 0xfa, 0xd6, 0x98, 0x34, 0x59, 0x99, 0xb2, 0x89, 0x7d,
3940 0x31, 0xfe, 0xe4, 0xa6, 0x1d, 0xdd, 0xd3, 0x3a, 0x6d, 0xbe, 0x74, 0xad, 0xa5, 0xa8, 0xd7, 0x66,
3941 0x2f, 0x0f, 0x3e, 0x09, 0x08, 0xe5, 0xab, 0x95, 0xc5, 0x62, 0x50, 0xdf, 0x80, 0x75, 0x27, 0x30,
3942 0xa7, 0xae, 0x63, 0x3a, 0xbc, 0x23, 0x3f, 0x81, 0xad, 0x33, 0x42, 0xf1, 0x8c, 0xd7, 0xec, 0x5f,
3943 0xfa, 0x50, 0xe7, 0xe2, 0xa4, 0x1b, 0x25, 0x79, 0xee, 0x03, 0xb0, 0x1e, 0xc9, 0x1c, 0x59, 0x97,
3944 0x64, 0x24, 0x9f, 0x20, 0xc7, 0x24, 0xe7, 0x4c, 0xa0, 0xd8, 0x02, 0x97, 0xb3, 0xe5, 0x38, 0x5b,
3945 0xcf, 0x35, 0xfe, 0x63, 0x1d, 0xf6, 0x92, 0x8b, 0x2d, 0xc3, 0xeb, 0x6e, 0xc2, 0xb1, 0xd6, 0x52,
3946 0xe8, 0xda, 0x9d, 0xb8, 0x6b, 0xad, 0x94, 0x74, 0x0e, 0x3d, 0x81, 0x8d, 0x89, 0x17, 0x38, 0xac,
3947 0x35, 0x35, 0x6d, 0xdf, 0xb9, 0x12, 0x0b, 0x92, 0x69, 0xa5, 0x71, 0x41, 0xc9, 0x1b, 0x4c, 0xcc,
3948 0x80, 0x2e, 0xb9, 0xb6, 0x34, 0xe0, 0x0a, 0x07, 0x2e, 0xe3, 0x82, 0x92, 0x0b, 0xe0, 0x77, 0x50,
3949 0xb2, 0xc9, 0xc8, 0x19, 0x3b, 0x94, 0xf8, 0xe6, 0xd8, 0x09, 0x02, 0xd3, 0x26, 0x54, 0x1e, 0x3b,
3950 0xab, 0xdc, 0x64, 0x05, 0xef, 0x85, 0x88, 0xd7, 0x4e, 0x10, 0x34, 0x94, 0x1e, 0x3d, 0x04, 0xb8,
3951 0x74, 0x26, 0x26, 0x61, 0x75, 0x52, 0x14, 0xce, 0x4c, 0x6b, 0x15, 0xe7, 0x2e, 0x9d, 0x09, 0x2f,
3952 0x9d, 0x01, 0xba, 0x0f, 0x6c, 0xc0, 0x76, 0x48, 0xd6, 0xca, 0x4c, 0x2b, 0x83, 0xb3, 0x97, 0xce,
3953 0x64, 0xc0, 0x24, 0xac, 0xce, 0x5c, 0x91, 0xa1, 0x19, 0xa6, 0x88, 0x19, 0x7c, 0x18, 0x5f, 0x7a,
3954 0x23, 0x51, 0x2b, 0x33, 0xad, 0x35, 0xbc, 0x7d, 0x45, 0x86, 0x27, 0x4a, 0xdb, 0x13, 0x4a, 0x56,
3955 0x2f, 0x84, 0x95, 0x4d, 0x7e, 0x66, 0xf1, 0x1c, 0xd9, 0xf3, 0xca, 0x99, 0x69, 0x65, 0xf1, 0x2e,
3956 0xb7, 0x93, 0xfa, 0x90, 0x00, 0xfd, 0x1e, 0x0e, 0xe2, 0x96, 0xb1, 0x04, 0xe1, 0x85, 0x34, 0xd3,
3957 0xca, 0xe1, 0xbb, 0xba, 0xf5, 0x40, 0x87, 0xa0, 0x2f, 0xa1, 0x10, 0x63, 0xe0, 0x75, 0x34, 0xd3,
3958 0x02, 0xbc, 0xae, 0xdb, 0xa0, 0x17, 0xb0, 0x1d, 0x7f, 0x30, 0xb1, 0x02, 0xeb, 0x1c, 0x9c, 0xc7,
3959 0x5b, 0xfa, 0x63, 0x89, 0xa5, 0x78, 0x0a, 0x9b, 0xb3, 0x6b, 0x32, 0x36, 0xdf, 0x91, 0x0f, 0x6a,
3960 0x3d, 0x0b, 0x1c, 0xbd, 0x8e, 0x0b, 0x4c, 0xf1, 0x8a, 0x7c, 0x88, 0xd6, 0x94, 0x23, 0x47, 0x5e,
3961 0x20, 0x0a, 0x64, 0xa6, 0x55, 0xc0, 0x59, 0x26, 0x3a, 0xf7, 0x02, 0x4e, 0xe4, 0xcf, 0xcc, 0xc9,
3962 0xc8, 0xb3, 0xc6, 0x81, 0x60, 0x2a, 0x6d, 0x72, 0xd0, 0x06, 0x2e, 0xf8, 0xb3, 0x0b, 0x2e, 0x17,
3963 0xaf, 0xde, 0x5f, 0x03, 0x8a, 0x90, 0xae, 0xe7, 0x9a, 0x8e, 0x3d, 0x22, 0xa5, 0x22, 0x07, 0x6f,
3964 0xe2, 0x4d, 0x05, 0xee, 0x78, 0x6e, 0xdb, 0x1e, 0xf1, 0x70, 0xf5, 0x67, 0xa6, 0x37, 0x1e, 0x3a,
3965 0xa5, 0x2d, 0x8e, 0x29, 0xe2, 0x8c, 0x3f, 0x63, 0xb9, 0xcf, 0x54, 0x54, 0xaa, 0x10, 0x57, 0x6d,
3966 0xe1, 0x0c, 0x15, 0xaa, 0xef, 0xe0, 0xae, 0xb4, 0x32, 0x65, 0x15, 0x37, 0x87, 0xfe, 0x50, 0x3a,
3967 0xb6, 0xcd, 0xc1, 0x08, 0xef, 0x0a, 0x1e, 0x79, 0x24, 0x9e, 0xc8, 0x93, 0x17, 0x1d, 0x40, 0xd6,
3968 0x9f, 0x99, 0x97, 0xbc, 0xf2, 0xee, 0x70, 0xe8, 0x76, 0xf4, 0x32, 0xf0, 0x10, 0x80, 0x79, 0x2f,
3969 0x0f, 0xd7, 0x5d, 0xae, 0xde, 0xd1, 0x3b, 0xfe, 0x03, 0xc8, 0x52, 0x65, 0xbd, 0xc7, 0xd5, 0xbb,
3970 0xd1, 0x4b, 0xc6, 0x43, 0x00, 0x1a, 0x59, 0xdf, 0xe1, 0xea, 0x3d, 0xfd, 0x6d, 0xe2, 0x57, 0xb0,
3971 0x7e, 0x49, 0x7c, 0xd3, 0x27, 0xf2, 0x42, 0xa3, 0xc4, 0x21, 0x77, 0x70, 0xfe, 0x92, 0x55, 0x04,
3972 0x79, 0xa5, 0xf1, 0x05, 0xe4, 0x47, 0x43, 0xfb, 0x5a, 0x6d, 0xd8, 0x5d, 0x8e, 0x29, 0x61, 0x60,
3973 0x42, 0xb9, 0x5b, 0xcc, 0x4d, 0xdb, 0x51, 0x88, 0x7d, 0x8e, 0xb8, 0x8b, 0x73, 0xbe, 0xed, 0x48,
3974 0xc0, 0x03, 0xc8, 0x51, 0x67, 0x4c, 0x02, 0x6a, 0x8d, 0x27, 0xa5, 0x03, 0x9e, 0xed, 0xfb, 0x38,
3975 0x12, 0xd5, 0xd7, 0x01, 0x9c, 0xc0, 0x94, 0x85, 0xa2, 0x9e, 0x87, 0x9c, 0x13, 0x98, 0xa2, 0x36,
3976 0xd4, 0xb7, 0x61, 0xcb, 0x09, 0xcc, 0x78, 0x3d, 0x90, 0xc2, 0x78, 0xee, 0xd7, 0xef, 0xc3, 0x81,
3977 0xc3, 0x12, 0x7b, 0x71, 0x9e, 0xd7, 0x37, 0xa1, 0xe0, 0x04, 0x66, 0x94, 0xca, 0xb2, 0xb0, 0x86,
3978 0xa9, 0x5b, 0xdf, 0x87, 0x92, 0x13, 0x98, 0x0b, 0x73, 0xb5, 0x7e, 0x0f, 0xf6, 0x43, 0xdd, 0x5c,
3979 0x46, 0xd6, 0x1f, 0xc1, 0x83, 0x39, 0x6d, 0x2c, 0xeb, 0xea, 0x08, 0x8a, 0x49, 0x44, 0xbd, 0x04,
3980 0x7b, 0x73, 0xf3, 0x09, 0x4f, 0x76, 0x00, 0x39, 0x81, 0x99, 0x48, 0x15, 0xe9, 0x6f, 0x98, 0x16,
3981 0x12, 0x95, 0xc8, 0x83, 0xfa, 0x1d, 0xd8, 0x8d, 0x49, 0x55, 0xcc, 0xcb, 0x35, 0x96, 0x71, 0x2a,
3982 0x47, 0x32, 0xa0, 0xeb, 0x0f, 0xe0, 0x5e, 0xa4, 0x9b, 0x8f, 0xe1, 0x7a, 0x01, 0xf2, 0x42, 0xcf,
3983 0x23, 0x4d, 0x2e, 0x65, 0x14, 0x99, 0x52, 0x4f, 0xe3, 0xfa, 0x28, 0xf6, 0xea, 0x5b, 0xb0, 0xc9,
3984 0x96, 0x5a, 0x8b, 0xb5, 0x7a, 0x11, 0x36, 0x9c, 0xc0, 0xd4, 0x22, 0x4b, 0xb1, 0x86, 0x81, 0x24,
3985 0x1f, 0x38, 0x8c, 0x12, 0xe3, 0xef, 0x56, 0xe1, 0xe0, 0x96, 0x63, 0x18, 0x3d, 0x84, 0x3c, 0xeb,
3986 0xc0, 0x4d, 0x12, 0x35, 0xe5, 0x99, 0x5b, 0x9a, 0xf2, 0x4c, 0xd8, 0x94, 0xef, 0x41, 0xe6, 0x8a,
3987 0x71, 0x89, 0x3e, 0x25, 0x83, 0xe5, 0x08, 0x7d, 0xa5, 0xb5, 0xe4, 0xa6, 0x44, 0xf0, 0x13, 0x06,
3988 0x6f, 0x86, 0xf2, 0xd3, 0x10, 0x1a, 0x76, 0xde, 0x0a, 0xba, 0x2a, 0xa0, 0xa1, 0x5c, 0x42, 0x9f,
3989 0x01, 0x0a, 0x57, 0x96, 0xd8, 0x0a, 0xcc, 0x0f, 0x16, 0x5c, 0x8c, 0x3a, 0xf2, 0x88, 0x38, 0x6c,
3990 0xbc, 0x15, 0x76, 0x4d, 0x10, 0x87, 0x72, 0x09, 0x7d, 0x12, 0xf5, 0xe3, 0x0a, 0xc9, 0xcf, 0x18,
3991 0xbc, 0xa1, 0xc4, 0x12, 0xf8, 0x14, 0x8a, 0x42, 0x6f, 0xbe, 0x3c, 0x34, 0xb5, 0x7e, 0x3c, 0x83,
3992 0x37, 0x84, 0xfc, 0xe5, 0x61, 0xd8, 0x24, 0xdf, 0x51, 0xc8, 0x23, 0x93, 0x7a, 0x66, 0xa5, 0xfa,
3993 0xad, 0xa9, 0x75, 0xe4, 0x19, 0xbc, 0x2d, 0x0d, 0x44, 0x43, 0xde, 0x55, 0x4d, 0x72, 0x49, 0x5a,
3994 0x55, 0xaa, 0xc7, 0xcc, 0xac, 0x7a, 0x74, 0xa4, 0xcc, 0xf8, 0x59, 0x82, 0x77, 0x84, 0x3e, 0xd1,
3995 0x92, 0x47, 0x76, 0xd5, 0xa3, 0x97, 0xcc, 0xee, 0xa8, 0x52, 0x31, 0xb5, 0xae, 0x3c, 0xb4, 0x53,
3996 0x4d, 0x79, 0x57, 0x35, 0xd7, 0x77, 0xa5, 0xdd, 0x51, 0xa5, 0xca, 0xdd, 0x7c, 0x51, 0xfd, 0xc6,
3997 0xd4, 0xfa, 0xf2, 0x0c, 0xde, 0x15, 0x80, 0xb0, 0x2d, 0x97, 0x96, 0xdf, 0xc1, 0xbe, 0xf2, 0xf4,
3998 0x45, 0xf5, 0x90, 0x9b, 0x1e, 0x55, 0x8e, 0x4d, 0xad, 0x33, 0xcf, 0xe0, 0x3d, 0xe9, 0x6b, 0xd8,
3999 0x98, 0x0b, 0x5b, 0xe3, 0x7f, 0xd2, 0xf0, 0xf8, 0x63, 0x8d, 0xa1, 0xec, 0x82, 0xea, 0x90, 0x9d,
4000 0x4e, 0x02, 0xea, 0x13, 0x6b, 0x2c, 0x5b, 0x76, 0xfd, 0xca, 0xea, 0x36, 0x86, 0xd0, 0x0e, 0x9d,
4001 0x02, 0xd8, 0xde, 0xcf, 0xae, 0x64, 0x49, 0x7f, 0x16, 0x8b, 0x66, 0x89, 0xfe, 0x36, 0x05, 0x8f,
4002 0x79, 0x9a, 0x13, 0x09, 0x16, 0xb1, 0x62, 0x12, 0x09, 0x37, 0x27, 0x63, 0xf3, 0xca, 0xf3, 0xc7,
4003 0x16, 0x95, 0x57, 0xa6, 0xc7, 0x89, 0x37, 0xf2, 0x8f, 0x3f, 0x6f, 0xf9, 0x94, 0xdb, 0xe3, 0x2f,
4004 0xbc, 0x9b, 0xb1, 0x02, 0x62, 0xbc, 0x80, 0x8c, 0xf8, 0x8b, 0x5f, 0x6e, 0xb6, 0xda, 0xb8, 0xff,
4005 0x93, 0xd9, 0xff, 0xa1, 0x6b, 0xd6, 0xdb, 0x7d, 0x71, 0x9d, 0xda, 0x6b, 0xff, 0xd8, 0xff, 0xc9,
4006 0x3c, 0xed, 0x0e, 0x30, 0x97, 0xa5, 0x0c, 0x0a, 0x6b, 0xb2, 0x69, 0xd5, 0xda, 0xd1, 0x94, 0xd6,
4007 0x8e, 0xb2, 0x74, 0x0e, 0xa8, 0x45, 0xa7, 0x81, 0xec, 0x52, 0xe5, 0x88, 0xd5, 0x87, 0x2b, 0xcb,
4008 0x19, 0x99, 0x3e, 0xb1, 0x02, 0xcf, 0xe5, 0x4f, 0x97, 0xc3, 0xc0, 0x44, 0x98, 0x4b, 0xd0, 0x5d,
4009 0x7e, 0x16, 0xf3, 0x3b, 0x18, 0x9e, 0xe7, 0x29, 0x76, 0x12, 0xf3, 0xa9, 0x0c, 0x22, 0x5e, 0x27,
4010 0xb4, 0x86, 0x59, 0x6e, 0xed, 0x47, 0x3a, 0xe6, 0xaf, 0x35, 0xca, 0xf4, 0xa3, 0xe5, 0xa7, 0xf9,
4011 0x2a, 0xd2, 0x96, 0x53, 0x91, 0x85, 0xd3, 0xfc, 0x83, 0xb8, 0x0a, 0x4d, 0x4e, 0xf2, 0x99, 0xed,
4012 0xbd, 0xb6, 0x02, 0xcb, 0xb7, 0xad, 0xc0, 0xca, 0xad, 0x2b, 0xb0, 0x1a, 0x5f, 0x81, 0x3f, 0x15,
4013 0x57, 0x9d, 0xee, 0x94, 0x05, 0x40, 0x7f, 0x86, 0x67, 0x3d, 0x6a, 0xd1, 0xf0, 0xad, 0xea, 0xf3,
4014 0xde, 0x48, 0xff, 0x6b, 0x19, 0x0e, 0x16, 0x92, 0xc9, 0xe7, 0xfd, 0x0a, 0xb6, 0x2e, 0xad, 0x80,
4015 0xb0, 0x23, 0xc4, 0xf2, 0x55, 0x2d, 0x93, 0xef, 0xa5, 0x4c, 0xd1, 0x9f, 0xd5, 0xfc, 0xb0, 0x3e,
4016 0x0a, 0xa8, 0x3f, 0x33, 0xad, 0x77, 0x0a, 0x9a, 0x8e, 0xa0, 0x78, 0x56, 0x7b, 0x27, 0xa1, 0x65,
4017 0xd8, 0x51, 0xac, 0xae, 0xa7, 0x11, 0x2f, 0xcb, 0x5b, 0x16, 0x4e, 0xdc, 0xf1, 0x42, 0x6a, 0x85,
4018 0xf7, 0x05, 0xfe, 0x9d, 0x7e, 0x04, 0x48, 0x3c, 0x66, 0xf8, 0x77, 0x61, 0xfd, 0x2d, 0x92, 0x19,
4019 0x8d, 0x3b, 0x2d, 0x5e, 0x52, 0x0b, 0x64, 0x46, 0x35, 0x9f, 0x25, 0x30, 0xe6, 0x72, 0x26, 0x04,
4020 0x6a, 0x1e, 0x3f, 0x83, 0x6d, 0xc9, 0x18, 0x73, 0x58, 0x5c, 0xc8, 0x6c, 0x72, 0x52, 0xcd, 0x5f,
4021 0x89, 0x4e, 0xba, 0x9b, 0x0d, 0xd1, 0x31, 0x6f, 0x8f, 0xe0, 0x8e, 0x3c, 0xfe, 0xcd, 0xa1, 0x78,
4022 0x6b, 0x33, 0x7d, 0x42, 0x7d, 0x87, 0xa8, 0xbb, 0x99, 0x1d, 0xd1, 0xdd, 0xca, 0x57, 0x3a, 0x2c,
4023 0x74, 0xe8, 0x5b, 0x28, 0x25, 0xcd, 0xd8, 0x09, 0xed, 0x4d, 0xc3, 0x4b, 0x9a, 0xdd, 0x98, 0x5d,
4024 0x5f, 0x2a, 0x8d, 0xd7, 0x70, 0x3f, 0xda, 0xf2, 0xda, 0x90, 0x35, 0x6e, 0xfc, 0xb3, 0xe0, 0x2f,
4025 0x0c, 0xa1, 0xbf, 0x86, 0x1c, 0x37, 0x6f, 0x58, 0xd4, 0x62, 0x61, 0x3b, 0x1c, 0x59, 0x41, 0xa0,
4026 0x12, 0xa4, 0x80, 0xd7, 0xf8, 0xb8, 0x6d, 0xb3, 0x90, 0x77, 0x5c, 0xf1, 0x01, 0x4c, 0xa5, 0x49,
4027 0x01, 0x83, 0x12, 0xb5, 0x6d, 0x84, 0x60, 0xc5, 0xb5, 0xc6, 0x44, 0x66, 0x0a, 0xff, 0x9b, 0xbd,
4028 0xc9, 0xdb, 0x24, 0x18, 0xfa, 0xce, 0x84, 0xbf, 0x22, 0x8a, 0x3c, 0xd1, 0x45, 0xc6, 0x9f, 0xc3,
4029 0x83, 0x9b, 0x9e, 0x46, 0xc6, 0xf0, 0x6f, 0xa0, 0x60, 0x71, 0xb9, 0xc9, 0x3f, 0x77, 0xb2, 0xf8,
4030 0x65, 0xe9, 0xbf, 0xa3, 0xa5, 0x7f, 0xf8, 0x00, 0x78, 0xdd, 0xd2, 0x28, 0x8c, 0xff, 0xcc, 0xc0,
4031 0xe6, 0x19, 0xa1, 0xfc, 0x3b, 0xa4, 0x5a, 0x9d, 0xdf, 0x26, 0x3e, 0xec, 0xe5, 0xab, 0xf7, 0xe3,
4032 0x75, 0x39, 0xf1, 0x09, 0xb1, 0xb5, 0x14, 0x7d, 0xf9, 0x43, 0xbf, 0x85, 0xb5, 0xa9, 0xf8, 0xcc,
4033 0x25, 0x0f, 0x8e, 0x87, 0x37, 0x7f, 0x06, 0x53, 0xd6, 0xca, 0x02, 0xd5, 0x20, 0xef, 0x89, 0x0f,
4034 0x1c, 0x9c, 0x60, 0x79, 0xd1, 0xe4, 0x89, 0x2f, 0x20, 0xad, 0x25, 0xac, 0xdb, 0xa0, 0x36, 0x6c,
4035 0x78, 0xee, 0x54, 0xbb, 0x0b, 0xe7, 0x4b, 0xba, 0xc8, 0x8d, 0xf8, 0x95, 0x79, 0x6b, 0x09, 0x27,
4036 0x0c, 0x11, 0x86, 0x02, 0xa1, 0x6f, 0xa3, 0x8b, 0x59, 0x9e, 0x61, 0xf9, 0xea, 0xaf, 0x3f, 0xfd,
4037 0xda, 0xb8, 0xb5, 0x84, 0xe3, 0x14, 0xe8, 0x4f, 0xf8, 0x5d, 0x95, 0x54, 0xf3, 0x4c, 0xcc, 0x57,
4038 0x0f, 0xe6, 0x08, 0xa3, 0xcb, 0xb3, 0xd6, 0x12, 0xd6, 0x0c, 0x50, 0x1d, 0xc0, 0xe3, 0x9e, 0xf3,
4039 0x27, 0x5b, 0xe3, 0xe6, 0x8f, 0xe6, 0xcc, 0x13, 0xf7, 0x50, 0x8c, 0x23, 0xb2, 0x42, 0xe7, 0xb0,
4040 0xc6, 0x4a, 0x37, 0x23, 0xc8, 0x72, 0x82, 0x17, 0x9f, 0x71, 0xea, 0x86, 0x5b, 0x26, 0x29, 0xd0,
4041 0x31, 0xa8, 0xb2, 0xcd, 0x73, 0x39, 0x5f, 0xbd, 0x17, 0x67, 0x8b, 0xdf, 0xfa, 0x30, 0x4b, 0x09,
4042 0x47, 0xaf, 0x60, 0xdd, 0x13, 0x41, 0xcd, 0x2b, 0x32, 0x4f, 0xe9, 0x7c, 0xf5, 0xcb, 0xb9, 0xa7,
4043 0x59, 0x74, 0x08, 0xb4, 0x96, 0x70, 0xcc, 0x18, 0xd5, 0x00, 0xbc, 0xf0, 0xc4, 0xe4, 0x9d, 0xdf,
4044 0xfc, 0x96, 0x8f, 0xe6, 0x9d, 0xd1, 0x8c, 0x50, 0x1f, 0x36, 0x3d, 0x77, 0xaa, 0x27, 0x18, 0xef,
4045 0x04, 0xf3, 0xd5, 0xa7, 0x0b, 0x5d, 0x5a, 0x50, 0x57, 0x5a, 0x4b, 0x38, 0x49, 0x51, 0xcf, 0xc1,
4046 0x9a, 0x2f, 0xb4, 0xc6, 0x1f, 0x80, 0xdf, 0xaf, 0xca, 0x5c, 0x93, 0xb9, 0xfb, 0x5d, 0x78, 0x7e,
4047 0x8a, 0x8f, 0x12, 0x46, 0x7c, 0xb2, 0x18, 0xb8, 0xdc, 0xe3, 0xc8, 0xf0, 0x8c, 0x6d, 0x42, 0x8e,
4048 0xf8, 0xbe, 0x38, 0x4f, 0xe5, 0xf7, 0xc9, 0x27, 0xb7, 0x99, 0xf3, 0x76, 0x5f, 0xc0, 0x71, 0x64,
4049 0x89, 0x7e, 0xa7, 0xe5, 0xbb, 0x48, 0xb9, 0x07, 0x37, 0xe5, 0xbb, 0x20, 0x8a, 0x25, 0xfc, 0xef,
4050 0xa2, 0x84, 0x5f, 0xb9, 0x21, 0x1e, 0x13, 0xdf, 0xbd, 0xf5, 0x8c, 0x7f, 0x05, 0xeb, 0x13, 0x91,
4051 0xcd, 0xd4, 0x25, 0x7e, 0x20, 0x53, 0xec, 0xcb, 0x5b, 0x53, 0x5e, 0xe3, 0x89, 0x19, 0xa3, 0xef,
4052 0xe7, 0x72, 0x5f, 0x24, 0xd8, 0x93, 0x8f, 0xe4, 0xbe, 0x46, 0x98, 0xac, 0x01, 0x97, 0xb0, 0x15,
4053 0x4b, 0x60, 0x2d, 0xef, 0xaa, 0x9f, 0x5e, 0x07, 0xb4, 0x09, 0xe6, 0xe9, 0x50, 0x33, 0x56, 0x13,
4054 0x44, 0x4e, 0xfe, 0xea, 0x96, 0x9a, 0xa0, 0xb1, 0xe9, 0xb5, 0xe1, 0x15, 0x7f, 0xfa, 0x0b, 0xcf,
4055 0x55, 0xeb, 0x24, 0x13, 0xf2, 0x8b, 0x5b, 0xea, 0x43, 0xec, 0xb9, 0x35, 0x53, 0x34, 0xe0, 0x17,
4056 0xcc, 0x21, 0x93, 0xc8, 0xcd, 0xca, 0x67, 0xb7, 0xe7, 0xbc, 0x3a, 0x47, 0x3c, 0xe8, 0x37, 0x51,
4057 0xb5, 0xc8, 0x2f, 0x2a, 0xee, 0x89, 0x6e, 0x54, 0x2f, 0x17, 0xe7, 0x89, 0x72, 0xb1, 0x3e, 0xf7,
4058 0x5a, 0x72, 0x4b, 0x9b, 0x37, 0x57, 0x2f, 0xea, 0xb1, 0x7a, 0x51, 0x58, 0x18, 0xb8, 0xa3, 0x05,
4059 0xee, 0xe8, 0x05, 0x63, 0x30, 0x5f, 0x30, 0x36, 0x38, 0xd1, 0x57, 0x9f, 0x50, 0x30, 0x42, 0xc6,
4060 0x24, 0x87, 0x51, 0x81, 0x8c, 0xc8, 0x73, 0xb4, 0x03, 0xc5, 0x5e, 0xbf, 0xd6, 0x1f, 0xf4, 0x62,
4061 0x3f, 0x6f, 0xc8, 0x40, 0xba, 0xfb, 0xaa, 0x98, 0xe2, 0x3f, 0x58, 0xc2, 0xb8, 0x8b, 0x8b, 0x69,
4062 0xe3, 0x1f, 0x53, 0x90, 0xd7, 0x92, 0x9b, 0x19, 0xe2, 0x66, 0xad, 0xd7, 0xed, 0xc4, 0x0c, 0x37,
4063 0x21, 0x3f, 0xe8, 0xf4, 0x06, 0x17, 0x17, 0x5d, 0xdc, 0xe7, 0xbf, 0x8d, 0xd8, 0x85, 0xad, 0x76,
4064 0xe7, 0x4d, 0xed, 0xbc, 0xdd, 0x30, 0x1b, 0xcd, 0x37, 0xed, 0x93, 0xa6, 0xd9, 0x6e, 0x14, 0xd3,
4065 0xba, 0x98, 0x41, 0xcd, 0xfe, 0x4f, 0x17, 0xcd, 0xe2, 0x32, 0xca, 0xc3, 0x5a, 0xbf, 0xfd, 0xba,
4066 0xd9, 0x1d, 0xf4, 0x8b, 0x2b, 0x6c, 0x06, 0x85, 0xc1, 0xcd, 0xef, 0x05, 0x64, 0x95, 0xbd, 0x44,
4067 0xb5, 0x3b, 0xfd, 0x26, 0xee, 0xd4, 0xce, 0x4d, 0xe1, 0x5b, 0x46, 0xc8, 0xf4, 0x49, 0x8a, 0x6b,
4068 0x75, 0x80, 0xac, 0x2f, 0x57, 0xc0, 0x78, 0x03, 0x9b, 0xbd, 0x44, 0x03, 0x92, 0xfc, 0x89, 0x57,
4069 0xea, 0x93, 0x7f, 0xe2, 0xa5, 0x55, 0xdb, 0xff, 0x4d, 0x41, 0xb1, 0xf7, 0x39, 0xd5, 0xb6, 0xf7,
4070 0xff, 0xab, 0xb6, 0xbd, 0x4f, 0xab, 0xb6, 0xbf, 0x64, 0x7b, 0x0f, 0x7f, 0xc9, 0xee, 0x1a, 0x0e,
4071 0xec, 0xf6, 0x1c, 0xf7, 0x7a, 0x44, 0x92, 0xfd, 0xdd, 0x3e, 0x64, 0xa9, 0xe5, 0x5f, 0x13, 0x1a,
4072 0x7e, 0x39, 0x0a, 0xc7, 0xe8, 0x30, 0x5c, 0x40, 0xd9, 0xbe, 0xed, 0x2f, 0x3c, 0x50, 0x38, 0x02,
4073 0x87, 0x6b, 0xfd, 0x3d, 0xec, 0x25, 0xa7, 0x92, 0x0b, 0xfe, 0x6d, 0xb4, 0xd3, 0x72, 0x1b, 0x0f,
4074 0x6e, 0x39, 0xa1, 0x70, 0x14, 0x16, 0xa1, 0xf7, 0xbd, 0x3f, 0x96, 0xf7, 0xbd, 0x8f, 0x7a, 0xdf,
4075 0xfb, 0x3c, 0xef, 0x7b, 0x37, 0x7a, 0x5f, 0xfd, 0xe7, 0x14, 0xe4, 0x9a, 0x0a, 0x88, 0x30, 0xe4,
4076 0xcf, 0x08, 0x6d, 0xce, 0x04, 0x1c, 0xe9, 0x75, 0x66, 0xe1, 0x0e, 0xed, 0x7f, 0x71, 0x0b, 0x42,
4077 0xba, 0x86, 0x21, 0xdf, 0xbb, 0x95, 0xb3, 0xf7, 0x51, 0xce, 0xa4, 0xff, 0x75, 0x0c, 0xf7, 0x3d,
4078 0xff, 0xba, 0xec, 0x4d, 0x88, 0x3b, 0xf4, 0x7c, 0xbb, 0x2c, 0x7e, 0xc2, 0x19, 0xd9, 0xfd, 0x59,
4079 0xe5, 0xda, 0xa1, 0x6f, 0xa7, 0x97, 0xe5, 0xa1, 0x37, 0x7e, 0xae, 0x50, 0xcf, 0x05, 0xea, 0x6b,
4080 0xf9, 0x43, 0xcf, 0xf7, 0x47, 0xcf, 0xaf, 0xbd, 0xe8, 0x97, 0xa1, 0x97, 0x19, 0x2e, 0xff, 0xe6,
4081 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x1c, 0x44, 0x89, 0x74, 0x3b, 0x2a, 0x00, 0x00,
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00004082}
4083
4084// Reference imports to suppress errors if they are not otherwise used.
4085var _ context.Context
4086var _ grpc.ClientConn
4087
4088// This is a compile-time assertion to ensure that this generated file
4089// is compatible with the grpc package it is being compiled against.
4090const _ = grpc.SupportPackageIsVersion4
4091
4092// ExtensionClient is the client API for Extension service.
4093//
4094// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
4095type ExtensionClient interface {
4096 // Get a single attribute
4097 GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error)
4098 // Set a single attribute
4099 SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error)
4100}
4101
4102type extensionClient struct {
4103 cc *grpc.ClientConn
4104}
4105
4106func NewExtensionClient(cc *grpc.ClientConn) ExtensionClient {
4107 return &extensionClient{cc}
4108}
4109
4110func (c *extensionClient) GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error) {
4111 out := new(SingleGetValueResponse)
4112 err := c.cc.Invoke(ctx, "/extension.Extension/GetExtValue", in, out, opts...)
4113 if err != nil {
4114 return nil, err
4115 }
4116 return out, nil
4117}
4118
4119func (c *extensionClient) SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error) {
4120 out := new(SingleSetValueResponse)
4121 err := c.cc.Invoke(ctx, "/extension.Extension/SetExtValue", in, out, opts...)
4122 if err != nil {
4123 return nil, err
4124 }
4125 return out, nil
4126}
4127
4128// ExtensionServer is the server API for Extension service.
4129type ExtensionServer interface {
4130 // Get a single attribute
4131 GetExtValue(context.Context, *SingleGetValueRequest) (*SingleGetValueResponse, error)
4132 // Set a single attribute
4133 SetExtValue(context.Context, *SingleSetValueRequest) (*SingleSetValueResponse, error)
4134}
4135
4136// UnimplementedExtensionServer can be embedded to have forward compatible implementations.
4137type UnimplementedExtensionServer struct {
4138}
4139
4140func (*UnimplementedExtensionServer) GetExtValue(ctx context.Context, req *SingleGetValueRequest) (*SingleGetValueResponse, error) {
4141 return nil, status.Errorf(codes.Unimplemented, "method GetExtValue not implemented")
4142}
4143func (*UnimplementedExtensionServer) SetExtValue(ctx context.Context, req *SingleSetValueRequest) (*SingleSetValueResponse, error) {
4144 return nil, status.Errorf(codes.Unimplemented, "method SetExtValue not implemented")
4145}
4146
4147func RegisterExtensionServer(s *grpc.Server, srv ExtensionServer) {
4148 s.RegisterService(&_Extension_serviceDesc, srv)
4149}
4150
4151func _Extension_GetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
4152 in := new(SingleGetValueRequest)
4153 if err := dec(in); err != nil {
4154 return nil, err
4155 }
4156 if interceptor == nil {
4157 return srv.(ExtensionServer).GetExtValue(ctx, in)
4158 }
4159 info := &grpc.UnaryServerInfo{
4160 Server: srv,
4161 FullMethod: "/extension.Extension/GetExtValue",
4162 }
4163 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
4164 return srv.(ExtensionServer).GetExtValue(ctx, req.(*SingleGetValueRequest))
4165 }
4166 return interceptor(ctx, in, info, handler)
4167}
4168
4169func _Extension_SetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
4170 in := new(SingleSetValueRequest)
4171 if err := dec(in); err != nil {
4172 return nil, err
4173 }
4174 if interceptor == nil {
4175 return srv.(ExtensionServer).SetExtValue(ctx, in)
4176 }
4177 info := &grpc.UnaryServerInfo{
4178 Server: srv,
4179 FullMethod: "/extension.Extension/SetExtValue",
4180 }
4181 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
4182 return srv.(ExtensionServer).SetExtValue(ctx, req.(*SingleSetValueRequest))
4183 }
4184 return interceptor(ctx, in, info, handler)
4185}
4186
4187var _Extension_serviceDesc = grpc.ServiceDesc{
4188 ServiceName: "extension.Extension",
4189 HandlerType: (*ExtensionServer)(nil),
4190 Methods: []grpc.MethodDesc{
4191 {
4192 MethodName: "GetExtValue",
4193 Handler: _Extension_GetExtValue_Handler,
4194 },
4195 {
4196 MethodName: "SetExtValue",
4197 Handler: _Extension_SetExtValue_Handler,
4198 },
4199 },
4200 Streams: []grpc.StreamDesc{},
4201 Metadata: "voltha_protos/extensions.proto",
4202}