blob: a6c7a43e929ea0b049ad1282161e78cdd7d02f09 [file] [log] [blame]
khenaidoo106c61a2021-08-11 18:05:46 -04001// 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
khenaidoodc2116e2021-10-19 17:33:19 -040029type ValueType_Type int32
khenaidoo106c61a2021-08-11 18:05:46 -040030
khenaidoodc2116e2021-10-19 17:33:19 -040031const (
32 ValueType_EMPTY ValueType_Type = 0
33 ValueType_DISTANCE ValueType_Type = 1
34)
khenaidoo106c61a2021-08-11 18:05:46 -040035
khenaidoodc2116e2021-10-19 17:33:19 -040036var ValueType_Type_name = map[int32]string{
37 0: "EMPTY",
38 1: "DISTANCE",
39}
khenaidoo106c61a2021-08-11 18:05:46 -040040
khenaidoodc2116e2021-10-19 17:33:19 -040041var ValueType_Type_value = map[string]int32{
42 "EMPTY": 0,
43 "DISTANCE": 1,
44}
khenaidoo106c61a2021-08-11 18:05:46 -040045
khenaidoodc2116e2021-10-19 17:33:19 -040046func (x ValueType_Type) String() string {
47 return proto.EnumName(ValueType_Type_name, int32(x))
48}
khenaidoo106c61a2021-08-11 18:05:46 -040049
khenaidoodc2116e2021-10-19 17:33:19 -040050func (ValueType_Type) EnumDescriptor() ([]byte, []int) {
51 return fileDescriptor_7ecf6e9799a9202d, []int{1, 0}
52}
khenaidoo106c61a2021-08-11 18:05:46 -040053
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) {
khenaidoodc2116e2021-10-19 17:33:19 -040094 return fileDescriptor_7ecf6e9799a9202d, []int{7, 0}
khenaidoo106c61a2021-08-11 18:05:46 -040095}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400122 return fileDescriptor_7ecf6e9799a9202d, []int{7, 1}
khenaidoo106c61a2021-08-11 18:05:46 -0400123}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400150 return fileDescriptor_7ecf6e9799a9202d, []int{7, 2}
khenaidoo106c61a2021-08-11 18:05:46 -0400151}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400178 return fileDescriptor_7ecf6e9799a9202d, []int{8, 0}
khenaidoo106c61a2021-08-11 18:05:46 -0400179}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400206 return fileDescriptor_7ecf6e9799a9202d, []int{12, 0}
207}
208
209type 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) {
Joey Armstronga6af1522023-01-17 16:06:16 -0500231 return fileDescriptor_7ecf6e9799a9202d, []int{22, 0}
khenaidoo106c61a2021-08-11 18:05:46 -0400232}
233
234type 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) {
Joey Armstronga6af1522023-01-17 16:06:16 -0500259 return fileDescriptor_7ecf6e9799a9202d, []int{29, 0}
khenaidoo106c61a2021-08-11 18:05:46 -0400260}
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) {
Joey Armstronga6af1522023-01-17 16:06:16 -0500302 return fileDescriptor_7ecf6e9799a9202d, []int{29, 1}
khenaidoo106c61a2021-08-11 18:05:46 -0400303}
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) {
Joey Armstronga6af1522023-01-17 16:06:16 -0500330 return fileDescriptor_7ecf6e9799a9202d, []int{31, 0}
khenaidoo106c61a2021-08-11 18:05:46 -0400331}
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) {
Joey Armstronga6af1522023-01-17 16:06:16 -0500355 return fileDescriptor_7ecf6e9799a9202d, []int{31, 1}
khenaidoodc2116e2021-10-19 17:33:19 -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
khenaidoo106c61a2021-08-11 18:05:46 -0400570}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400583 return fileDescriptor_7ecf6e9799a9202d, []int{4}
khenaidoo106c61a2021-08-11 18:05:46 -0400584}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400622 return fileDescriptor_7ecf6e9799a9202d, []int{5}
khenaidoo106c61a2021-08-11 18:05:46 -0400623}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400661 return fileDescriptor_7ecf6e9799a9202d, []int{6}
khenaidoo106c61a2021-08-11 18:05:46 -0400662}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400702 return fileDescriptor_7ecf6e9799a9202d, []int{7}
khenaidoo106c61a2021-08-11 18:05:46 -0400703}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400756 return fileDescriptor_7ecf6e9799a9202d, []int{8}
khenaidoo106c61a2021-08-11 18:05:46 -0400757}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400813 return fileDescriptor_7ecf6e9799a9202d, []int{9}
khenaidoo106c61a2021-08-11 18:05:46 -0400814}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400929 return fileDescriptor_7ecf6e9799a9202d, []int{10}
khenaidoo106c61a2021-08-11 18:05:46 -0400930}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400974 return fileDescriptor_7ecf6e9799a9202d, []int{11}
khenaidoo106c61a2021-08-11 18:05:46 -0400975}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -04001041 return fileDescriptor_7ecf6e9799a9202d, []int{12}
khenaidoo106c61a2021-08-11 18:05:46 -04001042}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -04001095 return fileDescriptor_7ecf6e9799a9202d, []int{13}
khenaidoo106c61a2021-08-11 18:05:46 -04001096}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -04001225 return fileDescriptor_7ecf6e9799a9202d, []int{14}
khenaidoo106c61a2021-08-11 18:05:46 -04001226}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -04001268 return fileDescriptor_7ecf6e9799a9202d, []int{15}
khenaidoo106c61a2021-08-11 18:05:46 -04001269}
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) {
khenaidoodc2116e2021-10-19 17:33:19 -04001336 return fileDescriptor_7ecf6e9799a9202d, []int{16}
khenaidoo106c61a2021-08-11 18:05:46 -04001337}
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 {
khenaidoodc2116e2021-10-19 17:33:19 -04001372 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:"-"`
khenaidoo106c61a2021-08-11 18:05:46 -04001380}
1381
1382func (m *GetOmciEthernetFrameExtendedPmRequest) Reset() { *m = GetOmciEthernetFrameExtendedPmRequest{} }
1383func (m *GetOmciEthernetFrameExtendedPmRequest) String() string { return proto.CompactTextString(m) }
1384func (*GetOmciEthernetFrameExtendedPmRequest) ProtoMessage() {}
1385func (*GetOmciEthernetFrameExtendedPmRequest) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04001386 return fileDescriptor_7ecf6e9799a9202d, []int{17}
khenaidoo106c61a2021-08-11 18:05:46 -04001387}
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
khenaidoodc2116e2021-10-19 17:33:19 -04001414type 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
Joey Armstronga6af1522023-01-17 16:06:16 -05001453// DEPRECATED
khenaidoo106c61a2021-08-11 18:05:46 -04001454type 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) {
khenaidoodc2116e2021-10-19 17:33:19 -04001466 return fileDescriptor_7ecf6e9799a9202d, []int{18}
khenaidoo106c61a2021-08-11 18:05:46 -04001467}
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
Joey Armstronga6af1522023-01-17 16:06:16 -05001501type 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
khenaidoo106c61a2021-08-11 18:05:46 -04001552type 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) {
Joey Armstronga6af1522023-01-17 16:06:16 -05001643 return fileDescriptor_7ecf6e9799a9202d, []int{20}
khenaidoo106c61a2021-08-11 18:05:46 -04001644}
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) {
Joey Armstronga6af1522023-01-17 16:06:16 -05002373 return fileDescriptor_7ecf6e9799a9202d, []int{21}
khenaidoo106c61a2021-08-11 18:05:46 -04002374}
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 {
khenaidoodc2116e2021-10-19 17:33:19 -04002493 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:"-"`
khenaidoo106c61a2021-08-11 18:05:46 -04002499}
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) {
Joey Armstronga6af1522023-01-17 16:06:16 -05002507 return fileDescriptor_7ecf6e9799a9202d, []int{22}
khenaidoo106c61a2021-08-11 18:05:46 -04002508}
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
khenaidoodc2116e2021-10-19 17:33:19 -04002542func (m *GetOmciEthernetFrameExtendedPmResponse) GetOmciEthernetFrameExtendedPmFormat() GetOmciEthernetFrameExtendedPmResponse_Format {
2543 if m != nil {
2544 return m.OmciEthernetFrameExtendedPmFormat
2545 }
2546 return GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT
2547}
2548
Joey Armstronga6af1522023-01-17 16:06:16 -05002549type 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
khenaidoo106c61a2021-08-11 18:05:46 -04002660type 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) {
Joey Armstronga6af1522023-01-17 16:06:16 -05002675 return fileDescriptor_7ecf6e9799a9202d, []int{25}
khenaidoo106c61a2021-08-11 18:05:46 -04002676}
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
Joey Armstronga6af1522023-01-17 16:06:16 -05002731type 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) {
2742 return fileDescriptor_7ecf6e9799a9202d, []int{26}
2743}
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) {
2801 return fileDescriptor_7ecf6e9799a9202d, []int{27}
2802}
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
khenaidoo106c61a2021-08-11 18:05:46 -04002892type GetValueRequest struct {
2893 // Types that are valid to be assigned to Request:
2894 // *GetValueRequest_Distance
2895 // *GetValueRequest_UniInfo
2896 // *GetValueRequest_OltPortInfo
2897 // *GetValueRequest_OnuOpticalInfo
2898 // *GetValueRequest_EthBridgePort
2899 // *GetValueRequest_FecHistory
2900 // *GetValueRequest_OnuPonInfo
2901 // *GetValueRequest_OnuInfo
2902 // *GetValueRequest_RxPower
Joey Armstronga6af1522023-01-17 16:06:16 -05002903 // *GetValueRequest_OnuOmciStats
2904 // *GetValueRequest_OltRxPower
khenaidoo106c61a2021-08-11 18:05:46 -04002905 Request isGetValueRequest_Request `protobuf_oneof:"request"`
2906 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2907 XXX_unrecognized []byte `json:"-"`
2908 XXX_sizecache int32 `json:"-"`
2909}
2910
2911func (m *GetValueRequest) Reset() { *m = GetValueRequest{} }
2912func (m *GetValueRequest) String() string { return proto.CompactTextString(m) }
2913func (*GetValueRequest) ProtoMessage() {}
2914func (*GetValueRequest) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05002915 return fileDescriptor_7ecf6e9799a9202d, []int{28}
khenaidoo106c61a2021-08-11 18:05:46 -04002916}
2917
2918func (m *GetValueRequest) XXX_Unmarshal(b []byte) error {
2919 return xxx_messageInfo_GetValueRequest.Unmarshal(m, b)
2920}
2921func (m *GetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2922 return xxx_messageInfo_GetValueRequest.Marshal(b, m, deterministic)
2923}
2924func (m *GetValueRequest) XXX_Merge(src proto.Message) {
2925 xxx_messageInfo_GetValueRequest.Merge(m, src)
2926}
2927func (m *GetValueRequest) XXX_Size() int {
2928 return xxx_messageInfo_GetValueRequest.Size(m)
2929}
2930func (m *GetValueRequest) XXX_DiscardUnknown() {
2931 xxx_messageInfo_GetValueRequest.DiscardUnknown(m)
2932}
2933
2934var xxx_messageInfo_GetValueRequest proto.InternalMessageInfo
2935
2936type isGetValueRequest_Request interface {
2937 isGetValueRequest_Request()
2938}
2939
2940type GetValueRequest_Distance struct {
2941 Distance *GetDistanceRequest `protobuf:"bytes,1,opt,name=distance,proto3,oneof"`
2942}
2943
2944type GetValueRequest_UniInfo struct {
2945 UniInfo *GetOnuUniInfoRequest `protobuf:"bytes,2,opt,name=uniInfo,proto3,oneof"`
2946}
2947
2948type GetValueRequest_OltPortInfo struct {
2949 OltPortInfo *GetOltPortCounters `protobuf:"bytes,3,opt,name=oltPortInfo,proto3,oneof"`
2950}
2951
2952type GetValueRequest_OnuOpticalInfo struct {
2953 OnuOpticalInfo *GetOnuPonOpticalInfo `protobuf:"bytes,4,opt,name=onuOpticalInfo,proto3,oneof"`
2954}
2955
2956type GetValueRequest_EthBridgePort struct {
2957 EthBridgePort *GetOnuEthernetBridgePortHistory `protobuf:"bytes,5,opt,name=ethBridgePort,proto3,oneof"`
2958}
2959
2960type GetValueRequest_FecHistory struct {
2961 FecHistory *GetOnuFecHistory `protobuf:"bytes,6,opt,name=fecHistory,proto3,oneof"`
2962}
2963
2964type GetValueRequest_OnuPonInfo struct {
2965 OnuPonInfo *GetOnuCountersRequest `protobuf:"bytes,7,opt,name=onuPonInfo,proto3,oneof"`
2966}
2967
2968type GetValueRequest_OnuInfo struct {
2969 OnuInfo *GetOmciEthernetFrameExtendedPmRequest `protobuf:"bytes,8,opt,name=onuInfo,proto3,oneof"`
2970}
2971
2972type GetValueRequest_RxPower struct {
2973 RxPower *GetRxPowerRequest `protobuf:"bytes,9,opt,name=rxPower,proto3,oneof"`
2974}
2975
Joey Armstronga6af1522023-01-17 16:06:16 -05002976type GetValueRequest_OnuOmciStats struct {
2977 OnuOmciStats *GetOnuOmciTxRxStatsRequest `protobuf:"bytes,10,opt,name=onuOmciStats,proto3,oneof"`
2978}
2979
2980type GetValueRequest_OltRxPower struct {
2981 OltRxPower *GetOltRxPowerRequest `protobuf:"bytes,11,opt,name=oltRxPower,proto3,oneof"`
2982}
2983
khenaidoo106c61a2021-08-11 18:05:46 -04002984func (*GetValueRequest_Distance) isGetValueRequest_Request() {}
2985
2986func (*GetValueRequest_UniInfo) isGetValueRequest_Request() {}
2987
2988func (*GetValueRequest_OltPortInfo) isGetValueRequest_Request() {}
2989
2990func (*GetValueRequest_OnuOpticalInfo) isGetValueRequest_Request() {}
2991
2992func (*GetValueRequest_EthBridgePort) isGetValueRequest_Request() {}
2993
2994func (*GetValueRequest_FecHistory) isGetValueRequest_Request() {}
2995
2996func (*GetValueRequest_OnuPonInfo) isGetValueRequest_Request() {}
2997
2998func (*GetValueRequest_OnuInfo) isGetValueRequest_Request() {}
2999
3000func (*GetValueRequest_RxPower) isGetValueRequest_Request() {}
3001
Joey Armstronga6af1522023-01-17 16:06:16 -05003002func (*GetValueRequest_OnuOmciStats) isGetValueRequest_Request() {}
3003
3004func (*GetValueRequest_OltRxPower) isGetValueRequest_Request() {}
3005
khenaidoo106c61a2021-08-11 18:05:46 -04003006func (m *GetValueRequest) GetRequest() isGetValueRequest_Request {
3007 if m != nil {
3008 return m.Request
3009 }
3010 return nil
3011}
3012
3013func (m *GetValueRequest) GetDistance() *GetDistanceRequest {
3014 if x, ok := m.GetRequest().(*GetValueRequest_Distance); ok {
3015 return x.Distance
3016 }
3017 return nil
3018}
3019
3020func (m *GetValueRequest) GetUniInfo() *GetOnuUniInfoRequest {
3021 if x, ok := m.GetRequest().(*GetValueRequest_UniInfo); ok {
3022 return x.UniInfo
3023 }
3024 return nil
3025}
3026
3027func (m *GetValueRequest) GetOltPortInfo() *GetOltPortCounters {
3028 if x, ok := m.GetRequest().(*GetValueRequest_OltPortInfo); ok {
3029 return x.OltPortInfo
3030 }
3031 return nil
3032}
3033
3034func (m *GetValueRequest) GetOnuOpticalInfo() *GetOnuPonOpticalInfo {
3035 if x, ok := m.GetRequest().(*GetValueRequest_OnuOpticalInfo); ok {
3036 return x.OnuOpticalInfo
3037 }
3038 return nil
3039}
3040
3041func (m *GetValueRequest) GetEthBridgePort() *GetOnuEthernetBridgePortHistory {
3042 if x, ok := m.GetRequest().(*GetValueRequest_EthBridgePort); ok {
3043 return x.EthBridgePort
3044 }
3045 return nil
3046}
3047
3048func (m *GetValueRequest) GetFecHistory() *GetOnuFecHistory {
3049 if x, ok := m.GetRequest().(*GetValueRequest_FecHistory); ok {
3050 return x.FecHistory
3051 }
3052 return nil
3053}
3054
3055func (m *GetValueRequest) GetOnuPonInfo() *GetOnuCountersRequest {
3056 if x, ok := m.GetRequest().(*GetValueRequest_OnuPonInfo); ok {
3057 return x.OnuPonInfo
3058 }
3059 return nil
3060}
3061
3062func (m *GetValueRequest) GetOnuInfo() *GetOmciEthernetFrameExtendedPmRequest {
3063 if x, ok := m.GetRequest().(*GetValueRequest_OnuInfo); ok {
3064 return x.OnuInfo
3065 }
3066 return nil
3067}
3068
3069func (m *GetValueRequest) GetRxPower() *GetRxPowerRequest {
3070 if x, ok := m.GetRequest().(*GetValueRequest_RxPower); ok {
3071 return x.RxPower
3072 }
3073 return nil
3074}
3075
Joey Armstronga6af1522023-01-17 16:06:16 -05003076func (m *GetValueRequest) GetOnuOmciStats() *GetOnuOmciTxRxStatsRequest {
3077 if x, ok := m.GetRequest().(*GetValueRequest_OnuOmciStats); ok {
3078 return x.OnuOmciStats
3079 }
3080 return nil
3081}
3082
3083func (m *GetValueRequest) GetOltRxPower() *GetOltRxPowerRequest {
3084 if x, ok := m.GetRequest().(*GetValueRequest_OltRxPower); ok {
3085 return x.OltRxPower
3086 }
3087 return nil
3088}
3089
khenaidoo106c61a2021-08-11 18:05:46 -04003090// XXX_OneofWrappers is for the internal use of the proto package.
3091func (*GetValueRequest) XXX_OneofWrappers() []interface{} {
3092 return []interface{}{
3093 (*GetValueRequest_Distance)(nil),
3094 (*GetValueRequest_UniInfo)(nil),
3095 (*GetValueRequest_OltPortInfo)(nil),
3096 (*GetValueRequest_OnuOpticalInfo)(nil),
3097 (*GetValueRequest_EthBridgePort)(nil),
3098 (*GetValueRequest_FecHistory)(nil),
3099 (*GetValueRequest_OnuPonInfo)(nil),
3100 (*GetValueRequest_OnuInfo)(nil),
3101 (*GetValueRequest_RxPower)(nil),
Joey Armstronga6af1522023-01-17 16:06:16 -05003102 (*GetValueRequest_OnuOmciStats)(nil),
3103 (*GetValueRequest_OltRxPower)(nil),
khenaidoo106c61a2021-08-11 18:05:46 -04003104 }
3105}
3106
3107type GetValueResponse struct {
3108 Status GetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.GetValueResponse_Status" json:"status,omitempty"`
3109 ErrReason GetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.GetValueResponse_ErrorReason" json:"errReason,omitempty"`
3110 // Types that are valid to be assigned to Response:
3111 // *GetValueResponse_Distance
3112 // *GetValueResponse_UniInfo
3113 // *GetValueResponse_PortCoutners
3114 // *GetValueResponse_OnuOpticalInfo
3115 // *GetValueResponse_EthBridgePortInfo
3116 // *GetValueResponse_FecHistory
3117 // *GetValueResponse_OnuPonCounters
3118 // *GetValueResponse_OnuCounters
3119 // *GetValueResponse_RxPower
Joey Armstronga6af1522023-01-17 16:06:16 -05003120 // *GetValueResponse_OnuOmciStats
3121 // *GetValueResponse_OltRxPower
khenaidoo106c61a2021-08-11 18:05:46 -04003122 Response isGetValueResponse_Response `protobuf_oneof:"response"`
3123 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3124 XXX_unrecognized []byte `json:"-"`
3125 XXX_sizecache int32 `json:"-"`
3126}
3127
3128func (m *GetValueResponse) Reset() { *m = GetValueResponse{} }
3129func (m *GetValueResponse) String() string { return proto.CompactTextString(m) }
3130func (*GetValueResponse) ProtoMessage() {}
3131func (*GetValueResponse) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003132 return fileDescriptor_7ecf6e9799a9202d, []int{29}
khenaidoo106c61a2021-08-11 18:05:46 -04003133}
3134
3135func (m *GetValueResponse) XXX_Unmarshal(b []byte) error {
3136 return xxx_messageInfo_GetValueResponse.Unmarshal(m, b)
3137}
3138func (m *GetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3139 return xxx_messageInfo_GetValueResponse.Marshal(b, m, deterministic)
3140}
3141func (m *GetValueResponse) XXX_Merge(src proto.Message) {
3142 xxx_messageInfo_GetValueResponse.Merge(m, src)
3143}
3144func (m *GetValueResponse) XXX_Size() int {
3145 return xxx_messageInfo_GetValueResponse.Size(m)
3146}
3147func (m *GetValueResponse) XXX_DiscardUnknown() {
3148 xxx_messageInfo_GetValueResponse.DiscardUnknown(m)
3149}
3150
3151var xxx_messageInfo_GetValueResponse proto.InternalMessageInfo
3152
3153func (m *GetValueResponse) GetStatus() GetValueResponse_Status {
3154 if m != nil {
3155 return m.Status
3156 }
3157 return GetValueResponse_STATUS_UNDEFINED
3158}
3159
3160func (m *GetValueResponse) GetErrReason() GetValueResponse_ErrorReason {
3161 if m != nil {
3162 return m.ErrReason
3163 }
3164 return GetValueResponse_REASON_UNDEFINED
3165}
3166
3167type isGetValueResponse_Response interface {
3168 isGetValueResponse_Response()
3169}
3170
3171type GetValueResponse_Distance struct {
3172 Distance *GetDistanceResponse `protobuf:"bytes,3,opt,name=distance,proto3,oneof"`
3173}
3174
3175type GetValueResponse_UniInfo struct {
3176 UniInfo *GetOnuUniInfoResponse `protobuf:"bytes,4,opt,name=uniInfo,proto3,oneof"`
3177}
3178
3179type GetValueResponse_PortCoutners struct {
3180 PortCoutners *GetOltPortCountersResponse `protobuf:"bytes,5,opt,name=portCoutners,proto3,oneof"`
3181}
3182
3183type GetValueResponse_OnuOpticalInfo struct {
3184 OnuOpticalInfo *GetOnuPonOpticalInfoResponse `protobuf:"bytes,6,opt,name=onuOpticalInfo,proto3,oneof"`
3185}
3186
3187type GetValueResponse_EthBridgePortInfo struct {
3188 EthBridgePortInfo *GetOnuEthernetBridgePortHistoryResponse `protobuf:"bytes,7,opt,name=ethBridgePortInfo,proto3,oneof"`
3189}
3190
3191type GetValueResponse_FecHistory struct {
3192 FecHistory *GetOnuFecHistoryResponse `protobuf:"bytes,8,opt,name=fecHistory,proto3,oneof"`
3193}
3194
3195type GetValueResponse_OnuPonCounters struct {
3196 OnuPonCounters *GetOnuCountersResponse `protobuf:"bytes,9,opt,name=onuPonCounters,proto3,oneof"`
3197}
3198
3199type GetValueResponse_OnuCounters struct {
3200 OnuCounters *GetOmciEthernetFrameExtendedPmResponse `protobuf:"bytes,10,opt,name=onuCounters,proto3,oneof"`
3201}
3202
3203type GetValueResponse_RxPower struct {
3204 RxPower *GetRxPowerResponse `protobuf:"bytes,11,opt,name=rxPower,proto3,oneof"`
3205}
3206
Joey Armstronga6af1522023-01-17 16:06:16 -05003207type GetValueResponse_OnuOmciStats struct {
3208 OnuOmciStats *GetOnuOmciTxRxStatsResponse `protobuf:"bytes,12,opt,name=onuOmciStats,proto3,oneof"`
3209}
3210
3211type GetValueResponse_OltRxPower struct {
3212 OltRxPower *GetOltRxPowerResponse `protobuf:"bytes,13,opt,name=oltRxPower,proto3,oneof"`
3213}
3214
khenaidoo106c61a2021-08-11 18:05:46 -04003215func (*GetValueResponse_Distance) isGetValueResponse_Response() {}
3216
3217func (*GetValueResponse_UniInfo) isGetValueResponse_Response() {}
3218
3219func (*GetValueResponse_PortCoutners) isGetValueResponse_Response() {}
3220
3221func (*GetValueResponse_OnuOpticalInfo) isGetValueResponse_Response() {}
3222
3223func (*GetValueResponse_EthBridgePortInfo) isGetValueResponse_Response() {}
3224
3225func (*GetValueResponse_FecHistory) isGetValueResponse_Response() {}
3226
3227func (*GetValueResponse_OnuPonCounters) isGetValueResponse_Response() {}
3228
3229func (*GetValueResponse_OnuCounters) isGetValueResponse_Response() {}
3230
3231func (*GetValueResponse_RxPower) isGetValueResponse_Response() {}
3232
Joey Armstronga6af1522023-01-17 16:06:16 -05003233func (*GetValueResponse_OnuOmciStats) isGetValueResponse_Response() {}
3234
3235func (*GetValueResponse_OltRxPower) isGetValueResponse_Response() {}
3236
khenaidoo106c61a2021-08-11 18:05:46 -04003237func (m *GetValueResponse) GetResponse() isGetValueResponse_Response {
3238 if m != nil {
3239 return m.Response
3240 }
3241 return nil
3242}
3243
3244func (m *GetValueResponse) GetDistance() *GetDistanceResponse {
3245 if x, ok := m.GetResponse().(*GetValueResponse_Distance); ok {
3246 return x.Distance
3247 }
3248 return nil
3249}
3250
3251func (m *GetValueResponse) GetUniInfo() *GetOnuUniInfoResponse {
3252 if x, ok := m.GetResponse().(*GetValueResponse_UniInfo); ok {
3253 return x.UniInfo
3254 }
3255 return nil
3256}
3257
3258func (m *GetValueResponse) GetPortCoutners() *GetOltPortCountersResponse {
3259 if x, ok := m.GetResponse().(*GetValueResponse_PortCoutners); ok {
3260 return x.PortCoutners
3261 }
3262 return nil
3263}
3264
3265func (m *GetValueResponse) GetOnuOpticalInfo() *GetOnuPonOpticalInfoResponse {
3266 if x, ok := m.GetResponse().(*GetValueResponse_OnuOpticalInfo); ok {
3267 return x.OnuOpticalInfo
3268 }
3269 return nil
3270}
3271
3272func (m *GetValueResponse) GetEthBridgePortInfo() *GetOnuEthernetBridgePortHistoryResponse {
3273 if x, ok := m.GetResponse().(*GetValueResponse_EthBridgePortInfo); ok {
3274 return x.EthBridgePortInfo
3275 }
3276 return nil
3277}
3278
3279func (m *GetValueResponse) GetFecHistory() *GetOnuFecHistoryResponse {
3280 if x, ok := m.GetResponse().(*GetValueResponse_FecHistory); ok {
3281 return x.FecHistory
3282 }
3283 return nil
3284}
3285
3286func (m *GetValueResponse) GetOnuPonCounters() *GetOnuCountersResponse {
3287 if x, ok := m.GetResponse().(*GetValueResponse_OnuPonCounters); ok {
3288 return x.OnuPonCounters
3289 }
3290 return nil
3291}
3292
3293func (m *GetValueResponse) GetOnuCounters() *GetOmciEthernetFrameExtendedPmResponse {
3294 if x, ok := m.GetResponse().(*GetValueResponse_OnuCounters); ok {
3295 return x.OnuCounters
3296 }
3297 return nil
3298}
3299
3300func (m *GetValueResponse) GetRxPower() *GetRxPowerResponse {
3301 if x, ok := m.GetResponse().(*GetValueResponse_RxPower); ok {
3302 return x.RxPower
3303 }
3304 return nil
3305}
3306
Joey Armstronga6af1522023-01-17 16:06:16 -05003307func (m *GetValueResponse) GetOnuOmciStats() *GetOnuOmciTxRxStatsResponse {
3308 if x, ok := m.GetResponse().(*GetValueResponse_OnuOmciStats); ok {
3309 return x.OnuOmciStats
3310 }
3311 return nil
3312}
3313
3314func (m *GetValueResponse) GetOltRxPower() *GetOltRxPowerResponse {
3315 if x, ok := m.GetResponse().(*GetValueResponse_OltRxPower); ok {
3316 return x.OltRxPower
3317 }
3318 return nil
3319}
3320
khenaidoo106c61a2021-08-11 18:05:46 -04003321// XXX_OneofWrappers is for the internal use of the proto package.
3322func (*GetValueResponse) XXX_OneofWrappers() []interface{} {
3323 return []interface{}{
3324 (*GetValueResponse_Distance)(nil),
3325 (*GetValueResponse_UniInfo)(nil),
3326 (*GetValueResponse_PortCoutners)(nil),
3327 (*GetValueResponse_OnuOpticalInfo)(nil),
3328 (*GetValueResponse_EthBridgePortInfo)(nil),
3329 (*GetValueResponse_FecHistory)(nil),
3330 (*GetValueResponse_OnuPonCounters)(nil),
3331 (*GetValueResponse_OnuCounters)(nil),
3332 (*GetValueResponse_RxPower)(nil),
Joey Armstronga6af1522023-01-17 16:06:16 -05003333 (*GetValueResponse_OnuOmciStats)(nil),
3334 (*GetValueResponse_OltRxPower)(nil),
khenaidoo106c61a2021-08-11 18:05:46 -04003335 }
3336}
3337
3338type SetValueRequest struct {
3339 // Types that are valid to be assigned to Request:
3340 // *SetValueRequest_AlarmConfig
3341 Request isSetValueRequest_Request `protobuf_oneof:"request"`
3342 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3343 XXX_unrecognized []byte `json:"-"`
3344 XXX_sizecache int32 `json:"-"`
3345}
3346
3347func (m *SetValueRequest) Reset() { *m = SetValueRequest{} }
3348func (m *SetValueRequest) String() string { return proto.CompactTextString(m) }
3349func (*SetValueRequest) ProtoMessage() {}
3350func (*SetValueRequest) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003351 return fileDescriptor_7ecf6e9799a9202d, []int{30}
khenaidoo106c61a2021-08-11 18:05:46 -04003352}
3353
3354func (m *SetValueRequest) XXX_Unmarshal(b []byte) error {
3355 return xxx_messageInfo_SetValueRequest.Unmarshal(m, b)
3356}
3357func (m *SetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3358 return xxx_messageInfo_SetValueRequest.Marshal(b, m, deterministic)
3359}
3360func (m *SetValueRequest) XXX_Merge(src proto.Message) {
3361 xxx_messageInfo_SetValueRequest.Merge(m, src)
3362}
3363func (m *SetValueRequest) XXX_Size() int {
3364 return xxx_messageInfo_SetValueRequest.Size(m)
3365}
3366func (m *SetValueRequest) XXX_DiscardUnknown() {
3367 xxx_messageInfo_SetValueRequest.DiscardUnknown(m)
3368}
3369
3370var xxx_messageInfo_SetValueRequest proto.InternalMessageInfo
3371
3372type isSetValueRequest_Request interface {
3373 isSetValueRequest_Request()
3374}
3375
3376type SetValueRequest_AlarmConfig struct {
3377 AlarmConfig *config.AlarmConfig `protobuf:"bytes,1,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
3378}
3379
3380func (*SetValueRequest_AlarmConfig) isSetValueRequest_Request() {}
3381
3382func (m *SetValueRequest) GetRequest() isSetValueRequest_Request {
3383 if m != nil {
3384 return m.Request
3385 }
3386 return nil
3387}
3388
3389func (m *SetValueRequest) GetAlarmConfig() *config.AlarmConfig {
3390 if x, ok := m.GetRequest().(*SetValueRequest_AlarmConfig); ok {
3391 return x.AlarmConfig
3392 }
3393 return nil
3394}
3395
3396// XXX_OneofWrappers is for the internal use of the proto package.
3397func (*SetValueRequest) XXX_OneofWrappers() []interface{} {
3398 return []interface{}{
3399 (*SetValueRequest_AlarmConfig)(nil),
3400 }
3401}
3402
3403type SetValueResponse struct {
3404 Status SetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.SetValueResponse_Status" json:"status,omitempty"`
3405 ErrReason SetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.SetValueResponse_ErrorReason" json:"errReason,omitempty"`
3406 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3407 XXX_unrecognized []byte `json:"-"`
3408 XXX_sizecache int32 `json:"-"`
3409}
3410
3411func (m *SetValueResponse) Reset() { *m = SetValueResponse{} }
3412func (m *SetValueResponse) String() string { return proto.CompactTextString(m) }
3413func (*SetValueResponse) ProtoMessage() {}
3414func (*SetValueResponse) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003415 return fileDescriptor_7ecf6e9799a9202d, []int{31}
khenaidoo106c61a2021-08-11 18:05:46 -04003416}
3417
3418func (m *SetValueResponse) XXX_Unmarshal(b []byte) error {
3419 return xxx_messageInfo_SetValueResponse.Unmarshal(m, b)
3420}
3421func (m *SetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3422 return xxx_messageInfo_SetValueResponse.Marshal(b, m, deterministic)
3423}
3424func (m *SetValueResponse) XXX_Merge(src proto.Message) {
3425 xxx_messageInfo_SetValueResponse.Merge(m, src)
3426}
3427func (m *SetValueResponse) XXX_Size() int {
3428 return xxx_messageInfo_SetValueResponse.Size(m)
3429}
3430func (m *SetValueResponse) XXX_DiscardUnknown() {
3431 xxx_messageInfo_SetValueResponse.DiscardUnknown(m)
3432}
3433
3434var xxx_messageInfo_SetValueResponse proto.InternalMessageInfo
3435
3436func (m *SetValueResponse) GetStatus() SetValueResponse_Status {
3437 if m != nil {
3438 return m.Status
3439 }
3440 return SetValueResponse_STATUS_UNDEFINED
3441}
3442
3443func (m *SetValueResponse) GetErrReason() SetValueResponse_ErrorReason {
3444 if m != nil {
3445 return m.ErrReason
3446 }
3447 return SetValueResponse_REASON_UNDEFINED
3448}
3449
3450type SingleGetValueRequest struct {
3451 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
3452 Request *GetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
3453 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3454 XXX_unrecognized []byte `json:"-"`
3455 XXX_sizecache int32 `json:"-"`
3456}
3457
3458func (m *SingleGetValueRequest) Reset() { *m = SingleGetValueRequest{} }
3459func (m *SingleGetValueRequest) String() string { return proto.CompactTextString(m) }
3460func (*SingleGetValueRequest) ProtoMessage() {}
3461func (*SingleGetValueRequest) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003462 return fileDescriptor_7ecf6e9799a9202d, []int{32}
khenaidoo106c61a2021-08-11 18:05:46 -04003463}
3464
3465func (m *SingleGetValueRequest) XXX_Unmarshal(b []byte) error {
3466 return xxx_messageInfo_SingleGetValueRequest.Unmarshal(m, b)
3467}
3468func (m *SingleGetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3469 return xxx_messageInfo_SingleGetValueRequest.Marshal(b, m, deterministic)
3470}
3471func (m *SingleGetValueRequest) XXX_Merge(src proto.Message) {
3472 xxx_messageInfo_SingleGetValueRequest.Merge(m, src)
3473}
3474func (m *SingleGetValueRequest) XXX_Size() int {
3475 return xxx_messageInfo_SingleGetValueRequest.Size(m)
3476}
3477func (m *SingleGetValueRequest) XXX_DiscardUnknown() {
3478 xxx_messageInfo_SingleGetValueRequest.DiscardUnknown(m)
3479}
3480
3481var xxx_messageInfo_SingleGetValueRequest proto.InternalMessageInfo
3482
3483func (m *SingleGetValueRequest) GetTargetId() string {
3484 if m != nil {
3485 return m.TargetId
3486 }
3487 return ""
3488}
3489
3490func (m *SingleGetValueRequest) GetRequest() *GetValueRequest {
3491 if m != nil {
3492 return m.Request
3493 }
3494 return nil
3495}
3496
3497type SingleGetValueResponse struct {
3498 Response *GetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
3499 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3500 XXX_unrecognized []byte `json:"-"`
3501 XXX_sizecache int32 `json:"-"`
3502}
3503
3504func (m *SingleGetValueResponse) Reset() { *m = SingleGetValueResponse{} }
3505func (m *SingleGetValueResponse) String() string { return proto.CompactTextString(m) }
3506func (*SingleGetValueResponse) ProtoMessage() {}
3507func (*SingleGetValueResponse) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003508 return fileDescriptor_7ecf6e9799a9202d, []int{33}
khenaidoo106c61a2021-08-11 18:05:46 -04003509}
3510
3511func (m *SingleGetValueResponse) XXX_Unmarshal(b []byte) error {
3512 return xxx_messageInfo_SingleGetValueResponse.Unmarshal(m, b)
3513}
3514func (m *SingleGetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3515 return xxx_messageInfo_SingleGetValueResponse.Marshal(b, m, deterministic)
3516}
3517func (m *SingleGetValueResponse) XXX_Merge(src proto.Message) {
3518 xxx_messageInfo_SingleGetValueResponse.Merge(m, src)
3519}
3520func (m *SingleGetValueResponse) XXX_Size() int {
3521 return xxx_messageInfo_SingleGetValueResponse.Size(m)
3522}
3523func (m *SingleGetValueResponse) XXX_DiscardUnknown() {
3524 xxx_messageInfo_SingleGetValueResponse.DiscardUnknown(m)
3525}
3526
3527var xxx_messageInfo_SingleGetValueResponse proto.InternalMessageInfo
3528
3529func (m *SingleGetValueResponse) GetResponse() *GetValueResponse {
3530 if m != nil {
3531 return m.Response
3532 }
3533 return nil
3534}
3535
3536type SingleSetValueRequest struct {
3537 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
3538 Request *SetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
3539 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3540 XXX_unrecognized []byte `json:"-"`
3541 XXX_sizecache int32 `json:"-"`
3542}
3543
3544func (m *SingleSetValueRequest) Reset() { *m = SingleSetValueRequest{} }
3545func (m *SingleSetValueRequest) String() string { return proto.CompactTextString(m) }
3546func (*SingleSetValueRequest) ProtoMessage() {}
3547func (*SingleSetValueRequest) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003548 return fileDescriptor_7ecf6e9799a9202d, []int{34}
khenaidoo106c61a2021-08-11 18:05:46 -04003549}
3550
3551func (m *SingleSetValueRequest) XXX_Unmarshal(b []byte) error {
3552 return xxx_messageInfo_SingleSetValueRequest.Unmarshal(m, b)
3553}
3554func (m *SingleSetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3555 return xxx_messageInfo_SingleSetValueRequest.Marshal(b, m, deterministic)
3556}
3557func (m *SingleSetValueRequest) XXX_Merge(src proto.Message) {
3558 xxx_messageInfo_SingleSetValueRequest.Merge(m, src)
3559}
3560func (m *SingleSetValueRequest) XXX_Size() int {
3561 return xxx_messageInfo_SingleSetValueRequest.Size(m)
3562}
3563func (m *SingleSetValueRequest) XXX_DiscardUnknown() {
3564 xxx_messageInfo_SingleSetValueRequest.DiscardUnknown(m)
3565}
3566
3567var xxx_messageInfo_SingleSetValueRequest proto.InternalMessageInfo
3568
3569func (m *SingleSetValueRequest) GetTargetId() string {
3570 if m != nil {
3571 return m.TargetId
3572 }
3573 return ""
3574}
3575
3576func (m *SingleSetValueRequest) GetRequest() *SetValueRequest {
3577 if m != nil {
3578 return m.Request
3579 }
3580 return nil
3581}
3582
3583type SingleSetValueResponse struct {
3584 Response *SetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
3585 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3586 XXX_unrecognized []byte `json:"-"`
3587 XXX_sizecache int32 `json:"-"`
3588}
3589
3590func (m *SingleSetValueResponse) Reset() { *m = SingleSetValueResponse{} }
3591func (m *SingleSetValueResponse) String() string { return proto.CompactTextString(m) }
3592func (*SingleSetValueResponse) ProtoMessage() {}
3593func (*SingleSetValueResponse) Descriptor() ([]byte, []int) {
Joey Armstronga6af1522023-01-17 16:06:16 -05003594 return fileDescriptor_7ecf6e9799a9202d, []int{35}
khenaidoo106c61a2021-08-11 18:05:46 -04003595}
3596
3597func (m *SingleSetValueResponse) XXX_Unmarshal(b []byte) error {
3598 return xxx_messageInfo_SingleSetValueResponse.Unmarshal(m, b)
3599}
3600func (m *SingleSetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3601 return xxx_messageInfo_SingleSetValueResponse.Marshal(b, m, deterministic)
3602}
3603func (m *SingleSetValueResponse) XXX_Merge(src proto.Message) {
3604 xxx_messageInfo_SingleSetValueResponse.Merge(m, src)
3605}
3606func (m *SingleSetValueResponse) XXX_Size() int {
3607 return xxx_messageInfo_SingleSetValueResponse.Size(m)
3608}
3609func (m *SingleSetValueResponse) XXX_DiscardUnknown() {
3610 xxx_messageInfo_SingleSetValueResponse.DiscardUnknown(m)
3611}
3612
3613var xxx_messageInfo_SingleSetValueResponse proto.InternalMessageInfo
3614
3615func (m *SingleSetValueResponse) GetResponse() *SetValueResponse {
3616 if m != nil {
3617 return m.Response
3618 }
3619 return nil
3620}
3621
3622func init() {
khenaidoodc2116e2021-10-19 17:33:19 -04003623 proto.RegisterEnum("extension.ValueType_Type", ValueType_Type_name, ValueType_Type_value)
khenaidoo106c61a2021-08-11 18:05:46 -04003624 proto.RegisterEnum("extension.GetOnuUniInfoResponse_ConfigurationInd", GetOnuUniInfoResponse_ConfigurationInd_name, GetOnuUniInfoResponse_ConfigurationInd_value)
3625 proto.RegisterEnum("extension.GetOnuUniInfoResponse_AdministrativeState", GetOnuUniInfoResponse_AdministrativeState_name, GetOnuUniInfoResponse_AdministrativeState_value)
3626 proto.RegisterEnum("extension.GetOnuUniInfoResponse_OperationalState", GetOnuUniInfoResponse_OperationalState_name, GetOnuUniInfoResponse_OperationalState_value)
3627 proto.RegisterEnum("extension.GetOltPortCounters_PortType", GetOltPortCounters_PortType_name, GetOltPortCounters_PortType_value)
3628 proto.RegisterEnum("extension.GetOnuEthernetBridgePortHistory_Direction", GetOnuEthernetBridgePortHistory_Direction_name, GetOnuEthernetBridgePortHistory_Direction_value)
khenaidoodc2116e2021-10-19 17:33:19 -04003629 proto.RegisterEnum("extension.GetOmciEthernetFrameExtendedPmResponse_Format", GetOmciEthernetFrameExtendedPmResponse_Format_name, GetOmciEthernetFrameExtendedPmResponse_Format_value)
khenaidoo106c61a2021-08-11 18:05:46 -04003630 proto.RegisterEnum("extension.GetValueResponse_Status", GetValueResponse_Status_name, GetValueResponse_Status_value)
3631 proto.RegisterEnum("extension.GetValueResponse_ErrorReason", GetValueResponse_ErrorReason_name, GetValueResponse_ErrorReason_value)
3632 proto.RegisterEnum("extension.SetValueResponse_Status", SetValueResponse_Status_name, SetValueResponse_Status_value)
3633 proto.RegisterEnum("extension.SetValueResponse_ErrorReason", SetValueResponse_ErrorReason_name, SetValueResponse_ErrorReason_value)
khenaidoodc2116e2021-10-19 17:33:19 -04003634 proto.RegisterType((*ValueSet)(nil), "extension.ValueSet")
3635 proto.RegisterType((*ValueType)(nil), "extension.ValueType")
3636 proto.RegisterType((*ValueSpecifier)(nil), "extension.ValueSpecifier")
3637 proto.RegisterType((*ReturnValues)(nil), "extension.ReturnValues")
khenaidoo106c61a2021-08-11 18:05:46 -04003638 proto.RegisterType((*GetDistanceRequest)(nil), "extension.GetDistanceRequest")
3639 proto.RegisterType((*GetDistanceResponse)(nil), "extension.GetDistanceResponse")
3640 proto.RegisterType((*GetOnuUniInfoRequest)(nil), "extension.GetOnuUniInfoRequest")
3641 proto.RegisterType((*GetOnuUniInfoResponse)(nil), "extension.GetOnuUniInfoResponse")
3642 proto.RegisterType((*GetOltPortCounters)(nil), "extension.GetOltPortCounters")
3643 proto.RegisterType((*GetOltPortCountersResponse)(nil), "extension.GetOltPortCountersResponse")
3644 proto.RegisterType((*GetOnuPonOpticalInfo)(nil), "extension.GetOnuPonOpticalInfo")
3645 proto.RegisterType((*GetOnuPonOpticalInfoResponse)(nil), "extension.GetOnuPonOpticalInfoResponse")
3646 proto.RegisterType((*GetOnuEthernetBridgePortHistory)(nil), "extension.GetOnuEthernetBridgePortHistory")
3647 proto.RegisterType((*GetOnuEthernetBridgePortHistoryResponse)(nil), "extension.GetOnuEthernetBridgePortHistoryResponse")
3648 proto.RegisterType((*GetOnuFecHistory)(nil), "extension.GetOnuFecHistory")
3649 proto.RegisterType((*GetOnuFecHistoryResponse)(nil), "extension.GetOnuFecHistoryResponse")
3650 proto.RegisterType((*GetOnuCountersRequest)(nil), "extension.GetOnuCountersRequest")
3651 proto.RegisterType((*GetOmciEthernetFrameExtendedPmRequest)(nil), "extension.GetOmciEthernetFrameExtendedPmRequest")
3652 proto.RegisterType((*GetRxPowerRequest)(nil), "extension.GetRxPowerRequest")
Joey Armstronga6af1522023-01-17 16:06:16 -05003653 proto.RegisterType((*GetOltRxPowerRequest)(nil), "extension.GetOltRxPowerRequest")
khenaidoo106c61a2021-08-11 18:05:46 -04003654 proto.RegisterType((*GetOnuCountersResponse)(nil), "extension.GetOnuCountersResponse")
3655 proto.RegisterType((*OmciEthernetFrameExtendedPm)(nil), "extension.OmciEthernetFrameExtendedPm")
3656 proto.RegisterType((*GetOmciEthernetFrameExtendedPmResponse)(nil), "extension.GetOmciEthernetFrameExtendedPmResponse")
Joey Armstronga6af1522023-01-17 16:06:16 -05003657 proto.RegisterType((*RxPower)(nil), "extension.RxPower")
3658 proto.RegisterType((*GetOltRxPowerResponse)(nil), "extension.GetOltRxPowerResponse")
khenaidoo106c61a2021-08-11 18:05:46 -04003659 proto.RegisterType((*GetRxPowerResponse)(nil), "extension.GetRxPowerResponse")
Joey Armstronga6af1522023-01-17 16:06:16 -05003660 proto.RegisterType((*GetOnuOmciTxRxStatsRequest)(nil), "extension.GetOnuOmciTxRxStatsRequest")
3661 proto.RegisterType((*GetOnuOmciTxRxStatsResponse)(nil), "extension.GetOnuOmciTxRxStatsResponse")
khenaidoo106c61a2021-08-11 18:05:46 -04003662 proto.RegisterType((*GetValueRequest)(nil), "extension.GetValueRequest")
3663 proto.RegisterType((*GetValueResponse)(nil), "extension.GetValueResponse")
3664 proto.RegisterType((*SetValueRequest)(nil), "extension.SetValueRequest")
3665 proto.RegisterType((*SetValueResponse)(nil), "extension.SetValueResponse")
3666 proto.RegisterType((*SingleGetValueRequest)(nil), "extension.SingleGetValueRequest")
3667 proto.RegisterType((*SingleGetValueResponse)(nil), "extension.SingleGetValueResponse")
3668 proto.RegisterType((*SingleSetValueRequest)(nil), "extension.SingleSetValueRequest")
3669 proto.RegisterType((*SingleSetValueResponse)(nil), "extension.SingleSetValueResponse")
3670}
3671
3672func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
3673
3674var fileDescriptor_7ecf6e9799a9202d = []byte{
Joey Armstronga6af1522023-01-17 16:06:16 -05003675 // 3562 bytes of a gzipped FileDescriptorProto
3676 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4f, 0x73, 0xdb, 0xc8,
3677 0x72, 0x17, 0x29, 0x89, 0x22, 0x9b, 0xa2, 0x44, 0x8d, 0xfe, 0xd1, 0x92, 0xff, 0x2d, 0x5e, 0xad,
3678 0xed, 0xf7, 0xca, 0x8f, 0x36, 0xb9, 0x92, 0x57, 0xd9, 0xf7, 0x52, 0xf5, 0x48, 0x91, 0x12, 0x19,
3679 0xcb, 0xa4, 0x76, 0x48, 0x7a, 0x77, 0x53, 0x95, 0x42, 0x41, 0xc4, 0x48, 0x46, 0x99, 0x04, 0x18,
3680 0x60, 0xe8, 0xa5, 0x73, 0xce, 0x2d, 0xc9, 0xe9, 0x5d, 0xf2, 0x25, 0x52, 0x39, 0xe4, 0x90, 0x4b,
3681 0x4e, 0x39, 0xe7, 0x4b, 0xa4, 0x2a, 0x5f, 0x20, 0xa9, 0x9c, 0x53, 0xa9, 0xf9, 0x07, 0x0c, 0x40,
3682 0x4a, 0xb6, 0x37, 0xb9, 0xd8, 0x9a, 0xee, 0x5f, 0xff, 0xa6, 0x31, 0xd3, 0xdd, 0xd3, 0x18, 0x10,
3683 0x1e, 0x7e, 0xf0, 0x46, 0xf4, 0x9d, 0x65, 0x4e, 0x7c, 0x8f, 0x7a, 0xc1, 0x0b, 0x32, 0xa3, 0xc4,
3684 0x0d, 0x1c, 0xcf, 0x0d, 0xca, 0x5c, 0x82, 0x72, 0xa1, 0xe4, 0x60, 0x1e, 0x6a, 0x0e, 0x3d, 0xf7,
3685 0xda, 0xb9, 0x11, 0xd0, 0x83, 0xc3, 0x1b, 0xcf, 0xbb, 0x19, 0x91, 0x17, 0x7c, 0x74, 0x35, 0xbd,
3686 0x7e, 0x41, 0xc6, 0x13, 0xfa, 0x51, 0x28, 0x8d, 0xbf, 0x80, 0xec, 0x5b, 0x6b, 0x34, 0x25, 0x3d,
3687 0x42, 0xd1, 0x06, 0xa4, 0x1d, 0xbb, 0x94, 0x7a, 0x9c, 0x7a, 0x96, 0xc3, 0x69, 0xc7, 0x46, 0x27,
3688 0xb0, 0x6e, 0x8d, 0x2c, 0x7f, 0x2c, 0xe9, 0x4a, 0xe9, 0xc7, 0xa9, 0x67, 0xf9, 0xea, 0x76, 0x59,
3689 0xb2, 0xd7, 0x98, 0xee, 0x94, 0xff, 0xdd, 0x5a, 0xc2, 0x79, 0x2b, 0x1a, 0xd6, 0xd7, 0x60, 0xf5,
3690 0x03, 0x63, 0x35, 0x9e, 0x43, 0x8e, 0xd3, 0xf7, 0x3f, 0x4e, 0x88, 0xf1, 0x08, 0x56, 0xd8, 0xff,
3691 0x28, 0x07, 0xab, 0xcd, 0x37, 0x97, 0xfd, 0x9f, 0x8a, 0x4b, 0x68, 0x1d, 0xb2, 0x8d, 0x76, 0xaf,
3692 0x5f, 0xeb, 0x9c, 0x36, 0x8b, 0x29, 0xe3, 0x7b, 0xd8, 0x10, 0xce, 0x4c, 0xc8, 0xd0, 0xb9, 0x76,
3693 0x88, 0x3f, 0xe7, 0xd2, 0x0b, 0x49, 0xcc, 0x7d, 0xd9, 0xa8, 0xde, 0x2b, 0x87, 0xcb, 0x50, 0x0e,
3694 0xe7, 0x29, 0xb3, 0x7f, 0xb0, 0x74, 0x80, 0xc2, 0x3a, 0x26, 0x74, 0xea, 0xbb, 0x5c, 0x1d, 0xa0,
3695 0x22, 0x2c, 0xf7, 0x08, 0xe5, 0x8c, 0x05, 0xcc, 0xfe, 0x44, 0x8f, 0x21, 0x3f, 0x70, 0x83, 0xe9,
3696 0x64, 0xe2, 0xf9, 0x94, 0xd8, 0x9c, 0xb8, 0x80, 0x75, 0x11, 0xda, 0x81, 0xd5, 0xa6, 0xef, 0x7b,
3697 0x7e, 0x69, 0x99, 0xeb, 0xc4, 0x00, 0x1d, 0x40, 0xb6, 0xe1, 0x04, 0xd4, 0x72, 0x87, 0xa4, 0xb4,
3698 0xc2, 0x15, 0xe1, 0xd8, 0x78, 0x05, 0xe8, 0x9c, 0x50, 0x35, 0xc4, 0xe4, 0x2f, 0xa7, 0x24, 0xe0,
3699 0x33, 0x79, 0xee, 0xb4, 0x41, 0x3e, 0x38, 0x43, 0xd2, 0x56, 0x4f, 0xa5, 0x8b, 0x8c, 0x0a, 0x6c,
3700 0xc7, 0xec, 0x82, 0x89, 0xe7, 0x06, 0x84, 0x4d, 0x65, 0xab, 0xa9, 0x84, 0xe7, 0xe1, 0xd8, 0xa8,
3701 0xc2, 0xce, 0x39, 0xa1, 0x5d, 0x77, 0x3a, 0x70, 0x9d, 0xb6, 0x7b, 0xed, 0xa9, 0xc9, 0x0e, 0x20,
3702 0x3b, 0x65, 0x12, 0x9b, 0xcc, 0x94, 0x8d, 0x1a, 0x1b, 0xff, 0xbe, 0x02, 0xbb, 0x09, 0x23, 0x39,
3703 0xd3, 0x25, 0x64, 0x2d, 0x7b, 0xdc, 0xa3, 0x16, 0x15, 0x33, 0x6d, 0x54, 0x8f, 0xb4, 0x25, 0x5e,
3704 0x68, 0x53, 0xae, 0xd9, 0x63, 0xc7, 0x75, 0x02, 0xea, 0x5b, 0xd4, 0xf9, 0x40, 0xb8, 0x2d, 0x0e,
3705 0x59, 0x50, 0x17, 0x72, 0xde, 0x84, 0xf8, 0x82, 0x52, 0xec, 0x5a, 0xe5, 0x93, 0x94, 0xdd, 0x09,
3706 0x61, 0x6c, 0x9e, 0x6b, 0x8d, 0x04, 0x5f, 0xc4, 0xc1, 0x08, 0x45, 0x00, 0xb6, 0x5d, 0x9b, 0xef,
3707 0xc8, 0xe7, 0x10, 0x8a, 0xb8, 0x9c, 0x0a, 0xd2, 0xb6, 0x6b, 0xe3, 0x88, 0xc3, 0xf8, 0xd7, 0x14,
3708 0x14, 0x93, 0x7a, 0x04, 0x90, 0x19, 0x74, 0x5e, 0x77, 0x7f, 0xe8, 0x14, 0x97, 0x10, 0x82, 0x8d,
3709 0x7e, 0xb3, 0x63, 0xd6, 0x6b, 0xbd, 0xa6, 0xd9, 0x37, 0xcf, 0x1a, 0x3f, 0x16, 0x53, 0x68, 0x0f,
3710 0x50, 0x6b, 0xd0, 0x69, 0xe0, 0x66, 0x43, 0x97, 0xa7, 0x51, 0x09, 0x76, 0xce, 0xdb, 0xe7, 0xb5,
3711 0x7a, 0xbb, 0x6f, 0x36, 0xfb, 0xad, 0x26, 0xee, 0x34, 0x85, 0x66, 0x99, 0x59, 0x30, 0x96, 0xf3,
3712 0xb8, 0x7c, 0x25, 0xc1, 0xde, 0x6a, 0xfc, 0x58, 0x5c, 0x5d, 0xc0, 0xce, 0xe4, 0x99, 0x85, 0xec,
3713 0x4c, 0xb3, 0x66, 0x9c, 0xc3, 0xf6, 0x82, 0x7d, 0x60, 0x44, 0xb5, 0xc6, 0x9b, 0x5e, 0xbf, 0xd6,
3714 0x6f, 0x9a, 0x83, 0x4e, 0xa3, 0x79, 0xd6, 0xee, 0x34, 0x1b, 0xc5, 0x25, 0xf6, 0x78, 0x17, 0xdd,
3715 0xd3, 0xd7, 0xcd, 0x46, 0x31, 0xc5, 0x72, 0x70, 0xd0, 0x91, 0xa3, 0xb4, 0x71, 0x06, 0xc5, 0xe4,
3716 0xea, 0xa3, 0x7d, 0xd8, 0xee, 0x5e, 0x36, 0xf1, 0x3c, 0x4d, 0x1e, 0xd6, 0x9a, 0x9d, 0x5a, 0xfd,
3717 0x42, 0xf1, 0x34, 0xda, 0x3d, 0x31, 0x4a, 0x1b, 0xff, 0x9c, 0xe2, 0x39, 0xd0, 0x1d, 0xd1, 0x4b,
3718 0xcf, 0xa7, 0xa7, 0xde, 0xd4, 0xa5, 0xc4, 0x0f, 0xd0, 0x1e, 0x64, 0x58, 0x56, 0x75, 0x3c, 0x19,
3719 0x94, 0x72, 0x84, 0xea, 0x90, 0x65, 0x7f, 0xb1, 0xd4, 0x95, 0x51, 0xf2, 0x24, 0xb1, 0xa9, 0x71,
3720 0xa2, 0xf2, 0xa5, 0x44, 0xe3, 0xd0, 0xce, 0x68, 0x42, 0x56, 0x49, 0x51, 0x11, 0xd6, 0xd9, 0xdf,
3721 0xe6, 0xa0, 0xf3, 0xba, 0x23, 0x76, 0x71, 0x17, 0xb6, 0xb8, 0x24, 0x5c, 0xb8, 0x4e, 0xa7, 0x5d,
3722 0x4c, 0x85, 0xc0, 0xcb, 0x6e, 0xc7, 0xec, 0x5e, 0xf4, 0x8b, 0x69, 0xe3, 0xdf, 0x96, 0xe1, 0x60,
3723 0x7e, 0xc2, 0x30, 0x45, 0x4a, 0xb0, 0x46, 0x67, 0xf5, 0x8f, 0x94, 0x04, 0xfc, 0x11, 0x56, 0xb0,
3724 0x1a, 0x32, 0x8d, 0x2f, 0x35, 0x69, 0xa1, 0x91, 0x43, 0x74, 0x1f, 0x72, 0x74, 0x76, 0x69, 0x0d,
3725 0xdf, 0x13, 0x1a, 0xf0, 0x98, 0x5d, 0xc1, 0x91, 0x80, 0x69, 0xfd, 0x50, 0xbb, 0x22, 0xb4, 0xa1,
3726 0x00, 0x3d, 0x81, 0x0d, 0x3a, 0xe3, 0x25, 0x47, 0x41, 0x56, 0x39, 0x24, 0x21, 0x65, 0x38, 0x3f,
3727 0x8e, 0xcb, 0x08, 0x9c, 0x3f, 0x87, 0xa3, 0xb3, 0xfa, 0xd0, 0x0a, 0xa8, 0xc2, 0xad, 0x29, 0x3e,
3728 0x5d, 0x2a, 0xf8, 0x62, 0xb8, 0xac, 0xe2, 0x4b, 0xe2, 0xe8, 0x6c, 0xa0, 0xe3, 0x72, 0x8a, 0x6f,
3729 0x30, 0xc7, 0x17, 0xc3, 0x81, 0xe2, 0x1b, 0xcc, 0xf1, 0xbd, 0xd1, 0x71, 0x79, 0xc5, 0xf7, 0x66,
3730 0x8e, 0x2f, 0x86, 0x5b, 0x57, 0x7c, 0xba, 0xd4, 0x68, 0xa8, 0x02, 0x79, 0xe9, 0xb9, 0xdd, 0x09,
3731 0x75, 0x86, 0xd6, 0x88, 0x95, 0x06, 0xf4, 0x1c, 0x56, 0xf9, 0x41, 0xc8, 0x77, 0x31, 0x5f, 0xdd,
3732 0x2b, 0x8b, 0x63, 0xb2, 0xac, 0x8e, 0xc9, 0x72, 0x93, 0x69, 0xb1, 0x00, 0x19, 0x7f, 0x9d, 0x86,
3733 0xfb, 0x8b, 0x68, 0xc2, 0xb0, 0xf8, 0x0d, 0x14, 0x27, 0xde, 0xcf, 0xc4, 0x3f, 0x23, 0xc4, 0x7e,
3734 0xeb, 0x8d, 0xa8, 0x75, 0x23, 0x2a, 0x68, 0x1a, 0xcf, 0xc9, 0x51, 0x15, 0x76, 0x7c, 0x32, 0x24,
3735 0xce, 0x07, 0x62, 0x4b, 0xaa, 0x4b, 0x06, 0xe1, 0x51, 0x93, 0xc6, 0x0b, 0x75, 0xe8, 0x15, 0xec,
3736 0x8d, 0x89, 0xa5, 0xa6, 0xbe, 0xb0, 0xa6, 0xee, 0xf0, 0x9d, 0xb0, 0x5a, 0xe6, 0x56, 0xb7, 0x68,
3737 0x99, 0x5f, 0x23, 0x2b, 0x20, 0x7e, 0xdd, 0xb1, 0x82, 0xd3, 0xa9, 0xef, 0x13, 0x97, 0xf2, 0x18,
3738 0x4b, 0xe3, 0x39, 0x39, 0x3b, 0xa0, 0x28, 0x19, 0xf3, 0xec, 0x9f, 0xfa, 0x84, 0xc7, 0x59, 0x1a,
3739 0xeb, 0x22, 0xe3, 0x1f, 0x53, 0xf0, 0x48, 0x2c, 0x43, 0x93, 0xbe, 0x23, 0xbe, 0x4b, 0x68, 0xdd,
3740 0x77, 0xec, 0x1b, 0xc2, 0x32, 0xa5, 0xe5, 0x04, 0xd4, 0xf3, 0x3f, 0x22, 0x0c, 0x39, 0xdb, 0xf1,
3741 0xc9, 0x90, 0x55, 0x90, 0x5b, 0x0f, 0x91, 0x5b, 0xcd, 0xcb, 0x0d, 0x65, 0x8b, 0x23, 0x1a, 0xe3,
3742 0x04, 0x72, 0xa1, 0x1c, 0x15, 0x20, 0xa7, 0x17, 0x21, 0x56, 0xbf, 0x2e, 0x7b, 0x7d, 0xdc, 0xac,
3743 0xbd, 0x29, 0xa6, 0xd0, 0x06, 0x40, 0xa3, 0xfb, 0x43, 0x47, 0x8e, 0xd3, 0xc6, 0x1f, 0x57, 0xe1,
3744 0xe9, 0x27, 0xa6, 0x0c, 0xf7, 0xf0, 0x21, 0x80, 0xed, 0x7b, 0x93, 0xe6, 0x07, 0xe2, 0xd2, 0x40,
3745 0x16, 0x28, 0x4d, 0xc2, 0x8a, 0x97, 0x37, 0xa4, 0x2c, 0xd4, 0x44, 0x97, 0x20, 0x47, 0x2c, 0xf1,
3746 0x27, 0x5a, 0x72, 0x17, 0xb0, 0x1a, 0xb2, 0xd5, 0xbf, 0xf2, 0x3d, 0xcb, 0xd6, 0xc3, 0x54, 0x34,
3747 0x0b, 0x73, 0x72, 0x86, 0x1d, 0x4f, 0x47, 0x6c, 0x03, 0x23, 0xec, 0xaa, 0xc0, 0x26, 0xe5, 0xe8,
3748 0x39, 0x6c, 0x0d, 0xfd, 0x21, 0xcf, 0x6b, 0x62, 0xeb, 0xf9, 0x5e, 0xc0, 0xf3, 0x0a, 0xc6, 0x3c,
3749 0x75, 0x6d, 0xe2, 0x07, 0xce, 0x5f, 0x11, 0x3d, 0xe9, 0x0b, 0x78, 0x4e, 0x8e, 0x9e, 0xc1, 0xa6,
3750 0xf7, 0x21, 0x0e, 0xcd, 0x72, 0x68, 0x52, 0xcc, 0x90, 0xf2, 0x31, 0x5f, 0x1d, 0xc9, 0x65, 0xc9,
3751 0x09, 0x64, 0x42, 0xcc, 0xe2, 0x5d, 0x89, 0x8e, 0xfb, 0x5e, 0xa5, 0xfa, 0xad, 0x84, 0x03, 0x87,
3752 0x2f, 0xd4, 0xa1, 0x23, 0xd8, 0x95, 0xf2, 0x4a, 0xf5, 0xa4, 0xef, 0x55, 0x8f, 0x8f, 0xbb, 0xc2,
3753 0x28, 0xcf, 0x8d, 0x16, 0x2b, 0x35, 0xab, 0xea, 0xf1, 0xab, 0xbe, 0x77, 0x5c, 0xa9, 0xc8, 0xa9,
3754 0xd6, 0x63, 0x56, 0x71, 0x25, 0xcb, 0x2d, 0xa9, 0x38, 0xae, 0x54, 0xfb, 0x5e, 0xe5, 0x65, 0xf5,
3755 0x1b, 0x69, 0x56, 0xe0, 0x66, 0xb7, 0x68, 0xd1, 0x09, 0xec, 0x2b, 0x37, 0x5e, 0x56, 0x8f, 0xfa,
3756 0x5e, 0xe5, 0xb8, 0x72, 0x22, 0x0d, 0x37, 0xb8, 0xe1, 0x6d, 0x6a, 0xe3, 0x0f, 0x50, 0x14, 0x41,
3757 0x79, 0x46, 0x86, 0x2a, 0x6f, 0xbe, 0xac, 0x20, 0xfd, 0x57, 0x0a, 0x4a, 0x49, 0x8a, 0x30, 0x90,
3758 0x9f, 0xc0, 0xc6, 0xd0, 0xf3, 0x59, 0xbe, 0x10, 0x3b, 0x3a, 0xaa, 0x0a, 0x38, 0x21, 0x45, 0x65,
3759 0x40, 0xa1, 0xe4, 0xd4, 0xb3, 0xc9, 0x0f, 0x9e, 0x6f, 0xab, 0xe0, 0x5e, 0xa0, 0x61, 0x09, 0x72,
3760 0x4d, 0x86, 0x3d, 0x32, 0xf4, 0x5c, 0x5b, 0xc5, 0xba, 0x26, 0xe1, 0xb5, 0xdb, 0xa3, 0xd6, 0x28,
3761 0xe2, 0x12, 0xc1, 0x9e, 0x90, 0xb2, 0x05, 0x9f, 0xba, 0x92, 0xdf, 0xba, 0x1a, 0x91, 0x08, 0x2f,
3762 0x02, 0xfe, 0x16, 0xad, 0x71, 0xae, 0xfa, 0xd6, 0xe8, 0x54, 0x16, 0xdd, 0xee, 0x3e, 0xac, 0x39,
3763 0x2e, 0xbd, 0x36, 0xe5, 0xcb, 0xc2, 0x1a, 0xce, 0xb0, 0x61, 0xdb, 0x46, 0xbb, 0x90, 0xf1, 0xdc,
3764 0x29, 0x93, 0xa7, 0xb9, 0x7c, 0xd5, 0x73, 0xa7, 0x6d, 0xdb, 0xf8, 0xbb, 0x14, 0x7c, 0xcd, 0x98,
3765 0xc6, 0x43, 0x47, 0x95, 0x85, 0x33, 0xdf, 0x1a, 0x93, 0x26, 0x2b, 0x53, 0x36, 0xb1, 0x2f, 0xc7,
3766 0x9f, 0xdd, 0xb4, 0xa3, 0xfb, 0x5a, 0xa7, 0xcd, 0x97, 0xae, 0xb5, 0x14, 0xf5, 0xda, 0xec, 0xe5,
3767 0xc1, 0x27, 0x01, 0xa1, 0x7c, 0xb5, 0xb2, 0x58, 0x0c, 0xea, 0x1b, 0xb0, 0xee, 0x04, 0xe6, 0xd4,
3768 0x75, 0x4c, 0x87, 0x77, 0xe4, 0xa7, 0xb0, 0x75, 0x4e, 0x28, 0x9e, 0xf1, 0x9a, 0xfd, 0x4b, 0x1f,
3769 0xea, 0x42, 0x9c, 0x74, 0xa3, 0x24, 0xcf, 0x03, 0x00, 0xd6, 0x23, 0x99, 0x23, 0xeb, 0x8a, 0x8c,
3770 0xe4, 0x13, 0xe4, 0x98, 0xe4, 0x82, 0x09, 0x14, 0x5b, 0xe0, 0x72, 0xb6, 0x1c, 0x67, 0xeb, 0xb9,
3771 0xc6, 0x7f, 0xac, 0xc3, 0x5e, 0x72, 0xb1, 0x65, 0x78, 0xdd, 0x4b, 0x38, 0xd6, 0x5a, 0x0a, 0x5d,
3772 0xdb, 0x8f, 0xbb, 0xd6, 0x4a, 0x49, 0xe7, 0xd0, 0x53, 0xd8, 0x98, 0x78, 0x81, 0xc3, 0x5a, 0x53,
3773 0xd3, 0xf6, 0x9d, 0x6b, 0xb1, 0x20, 0x99, 0x56, 0x1a, 0x17, 0x94, 0xbc, 0xc1, 0xc4, 0x0c, 0xe8,
3774 0x92, 0x1b, 0x4b, 0x03, 0xae, 0x70, 0xe0, 0x32, 0x2e, 0x28, 0xb9, 0x00, 0x7e, 0x07, 0x25, 0x9b,
3775 0x8c, 0x9c, 0xb1, 0x43, 0x89, 0x6f, 0x8e, 0x9d, 0x20, 0x30, 0x6d, 0x42, 0xe5, 0xb1, 0xb3, 0xca,
3776 0x4d, 0x56, 0xf0, 0x5e, 0x88, 0x78, 0xe3, 0x04, 0x41, 0x43, 0xe9, 0xd1, 0x23, 0x80, 0x2b, 0x67,
3777 0x62, 0x12, 0x56, 0x27, 0x45, 0xe1, 0xcc, 0xb4, 0x56, 0x71, 0xee, 0xca, 0x99, 0xf0, 0xd2, 0x19,
3778 0xa0, 0x07, 0xc0, 0x06, 0x6c, 0x87, 0x64, 0xad, 0xcc, 0xb4, 0x32, 0x38, 0x7b, 0xe5, 0x4c, 0x06,
3779 0x4c, 0xc2, 0xea, 0xcc, 0x35, 0x19, 0x9a, 0x61, 0x8a, 0x98, 0xc1, 0xc7, 0xf1, 0x95, 0x37, 0x12,
3780 0xb5, 0x32, 0xd3, 0x5a, 0xc3, 0xdb, 0xd7, 0x64, 0x78, 0xaa, 0xb4, 0x3d, 0xa1, 0x64, 0xf5, 0x42,
3781 0x58, 0xd9, 0xe4, 0x67, 0x16, 0xcf, 0x91, 0x3d, 0xaf, 0x9c, 0x99, 0x56, 0x16, 0xef, 0x72, 0x3b,
3782 0xa9, 0x0f, 0x09, 0xd0, 0x1f, 0xe0, 0x30, 0x6e, 0x19, 0x4b, 0x10, 0x5e, 0x48, 0x33, 0xad, 0x1c,
3783 0xbe, 0xa7, 0x5b, 0x0f, 0x74, 0x08, 0xfa, 0x1a, 0x0a, 0x31, 0x06, 0x5e, 0x47, 0x33, 0x2d, 0xc0,
3784 0xeb, 0xba, 0x0d, 0x7a, 0x09, 0xdb, 0xf1, 0x07, 0x13, 0x2b, 0xb0, 0xce, 0xc1, 0x79, 0xbc, 0xa5,
3785 0x3f, 0x96, 0x58, 0x8a, 0x67, 0xb0, 0x39, 0xbb, 0x21, 0x63, 0xf3, 0x3d, 0xf9, 0xa8, 0xd6, 0xb3,
3786 0xc0, 0xd1, 0xeb, 0xb8, 0xc0, 0x14, 0xaf, 0xc9, 0xc7, 0x68, 0x4d, 0x39, 0x72, 0xe4, 0x05, 0xa2,
3787 0x40, 0x66, 0x5a, 0x05, 0x9c, 0x65, 0xa2, 0x0b, 0x2f, 0xe0, 0x44, 0xfe, 0xcc, 0x9c, 0x8c, 0x3c,
3788 0x6b, 0x1c, 0x08, 0xa6, 0xd2, 0x26, 0x07, 0x6d, 0xe0, 0x82, 0x3f, 0xbb, 0xe4, 0x72, 0xf1, 0xea,
3789 0xfd, 0x5b, 0x40, 0x11, 0xd2, 0xf5, 0x5c, 0xd3, 0xb1, 0x47, 0xa4, 0x54, 0xe4, 0xe0, 0x4d, 0xbc,
3790 0xa9, 0xc0, 0x1d, 0xcf, 0x6d, 0xdb, 0x23, 0x1e, 0xae, 0xfe, 0xcc, 0xf4, 0xc6, 0x43, 0xa7, 0xb4,
3791 0xc5, 0x31, 0x45, 0x9c, 0xf1, 0x67, 0x2c, 0xf7, 0x99, 0x8a, 0x4a, 0x15, 0xe2, 0xaa, 0x2d, 0x9c,
3792 0xa1, 0x42, 0xf5, 0x1d, 0xdc, 0x93, 0x56, 0xa6, 0xac, 0xe2, 0xe6, 0xd0, 0x1f, 0x4a, 0xc7, 0xb6,
3793 0x39, 0x18, 0xe1, 0x5d, 0xc1, 0x23, 0x8f, 0xc4, 0x53, 0x79, 0xf2, 0xa2, 0x43, 0xc8, 0xfa, 0x33,
3794 0xf3, 0x8a, 0x57, 0xde, 0x1d, 0x0e, 0xdd, 0x8e, 0x5e, 0x06, 0x1e, 0x01, 0x30, 0xef, 0xe5, 0xe1,
3795 0xba, 0xcb, 0xd5, 0x3b, 0x7a, 0xc7, 0x7f, 0x08, 0x59, 0xaa, 0xac, 0xf7, 0xb8, 0x7a, 0x37, 0x7a,
3796 0xc9, 0x78, 0x04, 0x40, 0x23, 0xeb, 0x7d, 0xae, 0xde, 0xd3, 0xdf, 0x26, 0x7e, 0x05, 0xeb, 0x57,
3797 0xc4, 0x37, 0x7d, 0x22, 0x2f, 0x34, 0x4a, 0x1c, 0xb2, 0x8f, 0xf3, 0x57, 0xac, 0x22, 0xc8, 0x2b,
3798 0x8d, 0xaf, 0x20, 0x3f, 0x1a, 0xda, 0x37, 0x6a, 0xc3, 0xee, 0x71, 0x4c, 0x09, 0x03, 0x13, 0xca,
3799 0xdd, 0x62, 0x6e, 0xda, 0x8e, 0x42, 0x1c, 0x70, 0xc4, 0x3d, 0x9c, 0xf3, 0x6d, 0x47, 0x02, 0x1e,
3800 0x42, 0x8e, 0x3a, 0x63, 0x12, 0x50, 0x6b, 0x3c, 0x29, 0x1d, 0xf2, 0x6c, 0x3f, 0xc0, 0x91, 0xa8,
3801 0xbe, 0x0e, 0xe0, 0x04, 0xa6, 0x2c, 0x14, 0xf5, 0x3c, 0xe4, 0x9c, 0xc0, 0x14, 0xb5, 0xa1, 0xbe,
3802 0x0d, 0x5b, 0x4e, 0x60, 0xc6, 0xeb, 0x81, 0x14, 0xc6, 0x73, 0xbf, 0xfe, 0x00, 0x0e, 0x1d, 0x96,
3803 0xd8, 0x8b, 0xf3, 0xbc, 0xbe, 0x09, 0x05, 0x27, 0x30, 0xa3, 0x54, 0x96, 0x85, 0x35, 0x4c, 0xdd,
3804 0xfa, 0x01, 0x94, 0x9c, 0xc0, 0x5c, 0x98, 0xab, 0xf5, 0xfb, 0x70, 0x10, 0xea, 0xe6, 0x32, 0xb2,
3805 0xfe, 0x18, 0x1e, 0xce, 0x69, 0x63, 0x59, 0x57, 0x47, 0x50, 0x4c, 0x22, 0xea, 0x25, 0xd8, 0x9b,
3806 0x9b, 0x4f, 0x78, 0xb2, 0x03, 0xc8, 0x09, 0xcc, 0x44, 0xaa, 0x48, 0x7f, 0xc3, 0xb4, 0x90, 0xa8,
3807 0x44, 0x1e, 0xd4, 0xf7, 0x61, 0x37, 0x26, 0x55, 0x31, 0x2f, 0xd7, 0x58, 0xc6, 0xa9, 0x1c, 0xc9,
3808 0x80, 0xae, 0x3f, 0x84, 0xfb, 0x91, 0x6e, 0x3e, 0x86, 0xeb, 0x05, 0xc8, 0x0b, 0x3d, 0x8f, 0x34,
3809 0xb9, 0x94, 0x51, 0x64, 0x4a, 0x3d, 0x8d, 0xeb, 0xa3, 0xd8, 0xab, 0x6f, 0xc1, 0x26, 0x5b, 0x6a,
3810 0x2d, 0xd6, 0xea, 0x45, 0xd8, 0x70, 0x02, 0x53, 0x8b, 0x2c, 0xc5, 0x1a, 0x06, 0x92, 0x7c, 0xe0,
3811 0x30, 0x4a, 0x8c, 0xbf, 0x5d, 0x85, 0xc3, 0x3b, 0x8e, 0x61, 0xf4, 0x08, 0xf2, 0xac, 0x03, 0x37,
3812 0x49, 0xd4, 0x94, 0x67, 0xee, 0x68, 0xca, 0x33, 0x61, 0x53, 0xbe, 0x07, 0x99, 0x6b, 0xc6, 0x25,
3813 0xfa, 0x94, 0x0c, 0x96, 0x23, 0xf4, 0x6b, 0xad, 0x25, 0x37, 0x25, 0x82, 0x9f, 0x30, 0x78, 0x33,
3814 0x94, 0x9f, 0x85, 0xd0, 0xb0, 0xf3, 0x56, 0xd0, 0x55, 0x01, 0x0d, 0xe5, 0x12, 0xfa, 0x1c, 0x50,
3815 0xb8, 0xb2, 0xc4, 0x56, 0x60, 0x7e, 0xb0, 0xe0, 0x62, 0xd4, 0x91, 0x47, 0xc4, 0x61, 0xe3, 0xad,
3816 0xb0, 0x6b, 0x82, 0x38, 0x94, 0x4b, 0xe8, 0xd3, 0xa8, 0x1f, 0x57, 0x48, 0x7e, 0xc6, 0xe0, 0x0d,
3817 0x25, 0x96, 0xc0, 0x67, 0x50, 0x14, 0x7a, 0xf3, 0xd5, 0x91, 0xa9, 0xf5, 0xe3, 0x19, 0xbc, 0x21,
3818 0xe4, 0xaf, 0x8e, 0xc2, 0x26, 0x79, 0x5f, 0x21, 0x8f, 0x4d, 0xea, 0x99, 0x95, 0xea, 0xb7, 0xa6,
3819 0xd6, 0x91, 0x67, 0xf0, 0xb6, 0x34, 0x10, 0x0d, 0x79, 0x57, 0x35, 0xc9, 0x25, 0x69, 0x55, 0xa9,
3820 0x9e, 0x30, 0xb3, 0xea, 0xf1, 0xb1, 0x32, 0xe3, 0x67, 0x09, 0xde, 0x11, 0xfa, 0x44, 0x4b, 0x1e,
3821 0xd9, 0x55, 0x8f, 0x5f, 0x31, 0xbb, 0xe3, 0x4a, 0xc5, 0xd4, 0xba, 0xf2, 0xd0, 0x4e, 0x35, 0xe5,
3822 0x5d, 0xd5, 0x5c, 0xdf, 0x93, 0x76, 0xc7, 0x95, 0x2a, 0x77, 0xf3, 0x65, 0xf5, 0x1b, 0x53, 0xeb,
3823 0xcb, 0x33, 0x78, 0x57, 0x00, 0xc2, 0xb6, 0x5c, 0x5a, 0x7e, 0x07, 0x07, 0xca, 0xd3, 0x97, 0xd5,
3824 0x23, 0x6e, 0x7a, 0x5c, 0x39, 0x31, 0xb5, 0xce, 0x3c, 0x83, 0xf7, 0xa4, 0xaf, 0x61, 0x63, 0x2e,
3825 0x6c, 0x8d, 0xff, 0x4e, 0xc3, 0x93, 0x4f, 0x35, 0x86, 0xb2, 0x0b, 0xaa, 0x43, 0x76, 0x3a, 0x09,
3826 0xa8, 0x4f, 0xac, 0xb1, 0x6c, 0xd9, 0xf5, 0x2b, 0xab, 0xbb, 0x18, 0x42, 0x3b, 0x74, 0x06, 0x60,
3827 0x7b, 0x3f, 0xbb, 0x92, 0x25, 0xfd, 0x45, 0x2c, 0x9a, 0x25, 0xfa, 0x9b, 0x14, 0x3c, 0xe1, 0x69,
3828 0x4e, 0x24, 0x58, 0xc4, 0x8a, 0x49, 0x24, 0xdc, 0x9c, 0x8c, 0xcd, 0x6b, 0xcf, 0x1f, 0x5b, 0x54,
3829 0x5e, 0x99, 0x9e, 0x24, 0xde, 0xc8, 0x3f, 0xfd, 0xbc, 0xe5, 0x33, 0x6e, 0x8f, 0xbf, 0xf2, 0x6e,
3830 0xc7, 0x0a, 0x88, 0xf1, 0x12, 0x32, 0xe2, 0x2f, 0x7e, 0xb9, 0xd9, 0x6a, 0xe3, 0xfe, 0x4f, 0x66,
3831 0xff, 0x87, 0xae, 0x59, 0x6f, 0xf7, 0xc5, 0x75, 0x6a, 0xaf, 0xfd, 0x63, 0xff, 0x27, 0xf3, 0xac,
3832 0x3b, 0xc0, 0x5c, 0x96, 0x32, 0x28, 0xac, 0xc9, 0xa6, 0x55, 0x6b, 0x47, 0x53, 0x5a, 0x3b, 0xca,
3833 0xd2, 0x39, 0xa0, 0x16, 0x9d, 0x06, 0xb2, 0x4b, 0x95, 0x23, 0x56, 0x1f, 0xae, 0x2d, 0x67, 0x64,
3834 0xfa, 0xc4, 0x0a, 0x3c, 0x97, 0x3f, 0x5d, 0x0e, 0x03, 0x13, 0x61, 0x2e, 0x41, 0xf7, 0xf8, 0x59,
3835 0xcc, 0xef, 0x60, 0x78, 0x9e, 0xa7, 0xd8, 0x49, 0xcc, 0xa7, 0x32, 0x88, 0x78, 0x9d, 0xd0, 0x1a,
3836 0x66, 0xb9, 0xb5, 0x9f, 0xe8, 0x98, 0x7f, 0xab, 0x51, 0xa6, 0x1f, 0x2f, 0x3f, 0xcb, 0x57, 0x91,
3837 0xb6, 0x9c, 0x8a, 0x2c, 0x9c, 0xe6, 0xef, 0xc5, 0x55, 0x68, 0x72, 0x92, 0x2f, 0x6c, 0xef, 0xb5,
3838 0x15, 0x58, 0xbe, 0x6b, 0x05, 0x56, 0xee, 0x5c, 0x81, 0xd5, 0xf8, 0x0a, 0xfc, 0x99, 0xb8, 0xea,
3839 0x74, 0xa7, 0x2c, 0x00, 0xfa, 0x33, 0x3c, 0xeb, 0x51, 0x8b, 0x86, 0x6f, 0x55, 0x5f, 0xf6, 0x46,
3840 0xfa, 0x9f, 0xcb, 0x70, 0xb8, 0x90, 0x4c, 0x3e, 0xef, 0xaf, 0x61, 0xeb, 0xca, 0x0a, 0x08, 0x3b,
3841 0x42, 0x2c, 0x5f, 0xd5, 0x32, 0xf9, 0x5e, 0xca, 0x14, 0xfd, 0x59, 0xcd, 0x0f, 0xeb, 0xa3, 0x80,
3842 0xfa, 0x33, 0xd3, 0x7a, 0xaf, 0xa0, 0xe9, 0x08, 0x8a, 0x67, 0xb5, 0xf7, 0x12, 0x5a, 0x86, 0x1d,
3843 0xc5, 0xea, 0x7a, 0x1a, 0xf1, 0xb2, 0xbc, 0x65, 0xe1, 0xc4, 0x1d, 0x2f, 0xa4, 0x56, 0x78, 0x5f,
3844 0xe0, 0xdf, 0xeb, 0x47, 0x80, 0xc4, 0x63, 0x86, 0x7f, 0x1f, 0xd6, 0xdf, 0x22, 0x99, 0xd1, 0xb8,
3845 0xd3, 0xe2, 0x25, 0xb5, 0x40, 0x66, 0x54, 0xf3, 0x59, 0x02, 0x63, 0x2e, 0x67, 0x42, 0xa0, 0xe6,
3846 0xf1, 0x73, 0xd8, 0x96, 0x8c, 0x31, 0x87, 0xc5, 0x85, 0xcc, 0x26, 0x27, 0xd5, 0xfc, 0x95, 0xe8,
3847 0xa4, 0xbb, 0xd9, 0x10, 0x1d, 0xf3, 0xf6, 0x18, 0xf6, 0xe5, 0xf1, 0x6f, 0x0e, 0xc5, 0x5b, 0x9b,
3848 0xe9, 0x13, 0xea, 0x3b, 0x44, 0xdd, 0xcd, 0xec, 0x88, 0xee, 0x56, 0xbe, 0xd2, 0x61, 0xa1, 0x43,
3849 0xdf, 0x42, 0x29, 0x69, 0xc6, 0x4e, 0x68, 0x6f, 0x1a, 0x5e, 0xd2, 0xec, 0xc6, 0xec, 0xfa, 0x52,
3850 0x69, 0xfc, 0x31, 0x03, 0x9b, 0xe7, 0x84, 0xf2, 0x8f, 0x6b, 0x2a, 0x6a, 0x7e, 0x97, 0xf8, 0x5a,
3851 0x95, 0xaf, 0x3e, 0x88, 0x17, 0x9b, 0xc4, 0x77, 0x31, 0xf6, 0xba, 0xac, 0x0c, 0xd0, 0xef, 0x60,
3852 0x6d, 0x2a, 0xbe, 0xdd, 0xc8, 0x6a, 0xf8, 0xe8, 0xf6, 0x6f, 0x3b, 0xca, 0x5a, 0x59, 0xa0, 0x1a,
3853 0xe4, 0x3d, 0x71, 0x6b, 0xcf, 0x09, 0x96, 0x17, 0x4d, 0x9e, 0xb8, 0xd6, 0x6f, 0x2d, 0x61, 0xdd,
3854 0x06, 0xb5, 0x61, 0xc3, 0x73, 0xa7, 0xda, 0x05, 0x2f, 0x0f, 0x8c, 0x45, 0x6e, 0xc4, 0xef, 0x81,
3855 0x5b, 0x4b, 0x38, 0x61, 0x88, 0x30, 0x14, 0x08, 0x7d, 0x17, 0xdd, 0x36, 0xf2, 0xb0, 0xc9, 0x57,
3856 0x7f, 0xf3, 0xf9, 0x77, 0xa1, 0xad, 0x25, 0x1c, 0xa7, 0x40, 0x7f, 0xca, 0x2f, 0x60, 0xa4, 0x9a,
3857 0x87, 0x57, 0xbe, 0x7a, 0x38, 0x47, 0x18, 0xdd, 0x08, 0xb5, 0x96, 0xb0, 0x66, 0x80, 0xea, 0x00,
3858 0x1e, 0xf7, 0x9c, 0x3f, 0xd9, 0x1a, 0x37, 0x7f, 0x3c, 0x67, 0x9e, 0xb8, 0x5c, 0x61, 0x1c, 0x91,
3859 0x15, 0xba, 0x80, 0x35, 0x56, 0x8f, 0x18, 0x41, 0x96, 0x13, 0xbc, 0xfc, 0x82, 0xa3, 0x24, 0xdc,
3860 0x32, 0x49, 0x81, 0x4e, 0x40, 0xd5, 0x22, 0x1e, 0xa0, 0xf9, 0xea, 0xfd, 0x38, 0x5b, 0xfc, 0x2a,
3861 0x83, 0x59, 0x4a, 0x38, 0x7a, 0x0d, 0xeb, 0x9e, 0x28, 0x35, 0xbc, 0xcc, 0xf0, 0x38, 0xcd, 0x57,
3862 0xbf, 0x9e, 0x7b, 0x9a, 0x45, 0x95, 0xad, 0xb5, 0x84, 0x63, 0xc6, 0xa8, 0x06, 0xe0, 0x85, 0xc7,
3863 0x00, 0x6f, 0x67, 0xe6, 0xb7, 0x7c, 0x34, 0xef, 0x8c, 0x66, 0x54, 0xcf, 0xc1, 0x9a, 0x2f, 0x14,
3864 0xc6, 0xbf, 0xe4, 0xf8, 0xf5, 0x9e, 0xcc, 0x0a, 0x59, 0xfe, 0xbe, 0x0b, 0xcb, 0xb7, 0xb8, 0x13,
3865 0x37, 0xe2, 0xf4, 0x31, 0x70, 0xb9, 0xc7, 0x91, 0x61, 0x89, 0x6f, 0x42, 0x8e, 0xf8, 0xbe, 0x28,
3866 0xe7, 0xf2, 0xf3, 0xd8, 0xd3, 0xbb, 0xcc, 0x79, 0xb7, 0x29, 0xe0, 0x38, 0xb2, 0x44, 0xbf, 0xd7,
3867 0x32, 0x53, 0x24, 0xc7, 0xc3, 0xdb, 0x32, 0x53, 0x10, 0xc5, 0x52, 0xf3, 0xf7, 0x51, 0x6a, 0xae,
3868 0xdc, 0x12, 0x39, 0x89, 0xcf, 0xae, 0x7a, 0x6e, 0xbe, 0x86, 0xf5, 0x89, 0xc8, 0x3b, 0xea, 0x12,
3869 0x3f, 0x90, 0xc9, 0xf0, 0xf5, 0x9d, 0xc9, 0xa9, 0xf1, 0xc4, 0x8c, 0xd1, 0xf7, 0x73, 0x59, 0x2a,
3870 0x52, 0xe1, 0xe9, 0x27, 0xb2, 0x54, 0x23, 0x4c, 0x66, 0xeb, 0x15, 0x6c, 0xc5, 0x52, 0x4d, 0xcb,
3871 0x90, 0xea, 0xe7, 0x67, 0xac, 0x36, 0xc1, 0x3c, 0x1d, 0x6a, 0xc6, 0xb2, 0x57, 0x64, 0xcf, 0xaf,
3872 0xee, 0xc8, 0x5e, 0x8d, 0x4d, 0xcf, 0xe2, 0xd7, 0xfc, 0xe9, 0x2f, 0x3d, 0x57, 0xad, 0x93, 0x4c,
3873 0x9d, 0xaf, 0xee, 0xc8, 0xe4, 0xd8, 0x73, 0x6b, 0xa6, 0x68, 0xc0, 0xef, 0x37, 0x43, 0x26, 0x91,
3874 0x45, 0x95, 0x2f, 0xee, 0x0e, 0x79, 0x1d, 0x8d, 0x78, 0xd0, 0x9f, 0x44, 0x79, 0x9d, 0x5f, 0x54,
3875 0x86, 0x13, 0xcd, 0x90, 0x9e, 0xd8, 0x17, 0x89, 0xc4, 0x5e, 0x9f, 0xeb, 0x8a, 0xef, 0xe8, 0x32,
3876 0xe6, 0x32, 0xbb, 0x1e, 0xcb, 0xec, 0xc2, 0xc2, 0xc0, 0x1d, 0x2d, 0x70, 0x47, 0xb3, 0x32, 0x2a,
3877 0x90, 0x11, 0x09, 0x89, 0x76, 0xa0, 0xd8, 0xeb, 0xd7, 0xfa, 0x83, 0x5e, 0xec, 0x33, 0x78, 0x06,
3878 0xd2, 0xdd, 0xd7, 0xc5, 0x14, 0xff, 0x61, 0x0b, 0xc6, 0x5d, 0x5c, 0x4c, 0x1b, 0xff, 0x90, 0x82,
3879 0xbc, 0x96, 0x85, 0xcc, 0x10, 0x37, 0x6b, 0xbd, 0x6e, 0x27, 0x66, 0xb8, 0x09, 0xf9, 0x41, 0xa7,
3880 0x37, 0xb8, 0xbc, 0xec, 0xe2, 0x3e, 0xff, 0x86, 0xbe, 0x0b, 0x5b, 0xed, 0xce, 0xdb, 0xda, 0x45,
3881 0xbb, 0x61, 0x36, 0x9a, 0x6f, 0xdb, 0xa7, 0x4d, 0xb3, 0xdd, 0x28, 0xa6, 0x75, 0x31, 0x83, 0x9a,
3882 0xfd, 0x9f, 0x2e, 0x9b, 0xc5, 0x65, 0x94, 0x87, 0xb5, 0x7e, 0xfb, 0x4d, 0xb3, 0x3b, 0xe8, 0x17,
3883 0x57, 0xd8, 0x0c, 0x0a, 0x83, 0x9b, 0xdf, 0x0b, 0xc8, 0x2a, 0x6b, 0xb6, 0xdb, 0x9d, 0x7e, 0x13,
3884 0x77, 0x6a, 0x17, 0xa6, 0xf0, 0x2d, 0x23, 0x64, 0xfa, 0x24, 0xc5, 0xb5, 0x3a, 0x40, 0xd6, 0x97,
3885 0x0f, 0x6f, 0xbc, 0x85, 0xcd, 0x5e, 0xe2, 0x4c, 0x4f, 0xfe, 0x14, 0x28, 0xf5, 0xd9, 0x3f, 0x05,
3886 0xd2, 0xca, 0xe2, 0xff, 0xa4, 0xa0, 0xd8, 0xfb, 0x92, 0xb2, 0xd8, 0xfb, 0xbf, 0x95, 0xc5, 0xde,
3887 0xe7, 0x95, 0xc5, 0x5f, 0xb2, 0xbd, 0x47, 0xbf, 0x64, 0x77, 0x0d, 0x07, 0x76, 0x7b, 0x8e, 0x7b,
3888 0x33, 0x22, 0xc9, 0x96, 0xe9, 0x00, 0xb2, 0xd4, 0xf2, 0x6f, 0x08, 0x0d, 0xbf, 0x30, 0x84, 0x63,
3889 0x74, 0x14, 0x2e, 0xa0, 0xec, 0x88, 0x0e, 0x16, 0x56, 0x7e, 0x8e, 0xc0, 0xe1, 0x5a, 0x7f, 0x0f,
3890 0x7b, 0xc9, 0xa9, 0xe4, 0x82, 0x7f, 0x1b, 0xed, 0xb4, 0xdc, 0xc6, 0xc3, 0x3b, 0x8e, 0x12, 0x1c,
3891 0x85, 0x45, 0xe8, 0x7d, 0xef, 0xff, 0xcb, 0xfb, 0xde, 0x27, 0xbd, 0xef, 0x7d, 0x99, 0xf7, 0xbd,
3892 0x5b, 0xbd, 0xaf, 0xfe, 0x53, 0x0a, 0x72, 0x4d, 0x05, 0x44, 0x18, 0xf2, 0xe7, 0x84, 0x36, 0x67,
3893 0x02, 0x8e, 0xf4, 0x82, 0xb0, 0x70, 0x87, 0x0e, 0xbe, 0xba, 0x03, 0x21, 0x5d, 0xc3, 0x90, 0xef,
3894 0xdd, 0xc9, 0xd9, 0xfb, 0x24, 0x67, 0xd2, 0xff, 0x3a, 0x86, 0x07, 0x9e, 0x7f, 0x53, 0xf6, 0x26,
3895 0xc4, 0x1d, 0x7a, 0xbe, 0x5d, 0x16, 0x3f, 0xf5, 0x8b, 0xec, 0xfe, 0xbc, 0x72, 0xe3, 0xd0, 0x77,
3896 0xd3, 0xab, 0xf2, 0xd0, 0x1b, 0xbf, 0x50, 0xa8, 0x17, 0x02, 0xf5, 0x5b, 0xf9, 0x83, 0xc0, 0x0f,
3897 0xc7, 0x2f, 0x6e, 0xbc, 0xe8, 0x17, 0x84, 0x57, 0x19, 0x2e, 0xff, 0xe6, 0x7f, 0x03, 0x00, 0x00,
3898 0xff, 0xff, 0x66, 0x2e, 0xdd, 0x3c, 0x63, 0x28, 0x00, 0x00,
khenaidoo106c61a2021-08-11 18:05:46 -04003899}
3900
3901// Reference imports to suppress errors if they are not otherwise used.
3902var _ context.Context
3903var _ grpc.ClientConn
3904
3905// This is a compile-time assertion to ensure that this generated file
3906// is compatible with the grpc package it is being compiled against.
3907const _ = grpc.SupportPackageIsVersion4
3908
3909// ExtensionClient is the client API for Extension service.
3910//
3911// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
3912type ExtensionClient interface {
3913 // Get a single attribute
3914 GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error)
3915 // Set a single attribute
3916 SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error)
3917}
3918
3919type extensionClient struct {
3920 cc *grpc.ClientConn
3921}
3922
3923func NewExtensionClient(cc *grpc.ClientConn) ExtensionClient {
3924 return &extensionClient{cc}
3925}
3926
3927func (c *extensionClient) GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error) {
3928 out := new(SingleGetValueResponse)
3929 err := c.cc.Invoke(ctx, "/extension.Extension/GetExtValue", in, out, opts...)
3930 if err != nil {
3931 return nil, err
3932 }
3933 return out, nil
3934}
3935
3936func (c *extensionClient) SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error) {
3937 out := new(SingleSetValueResponse)
3938 err := c.cc.Invoke(ctx, "/extension.Extension/SetExtValue", in, out, opts...)
3939 if err != nil {
3940 return nil, err
3941 }
3942 return out, nil
3943}
3944
3945// ExtensionServer is the server API for Extension service.
3946type ExtensionServer interface {
3947 // Get a single attribute
3948 GetExtValue(context.Context, *SingleGetValueRequest) (*SingleGetValueResponse, error)
3949 // Set a single attribute
3950 SetExtValue(context.Context, *SingleSetValueRequest) (*SingleSetValueResponse, error)
3951}
3952
3953// UnimplementedExtensionServer can be embedded to have forward compatible implementations.
3954type UnimplementedExtensionServer struct {
3955}
3956
3957func (*UnimplementedExtensionServer) GetExtValue(ctx context.Context, req *SingleGetValueRequest) (*SingleGetValueResponse, error) {
3958 return nil, status.Errorf(codes.Unimplemented, "method GetExtValue not implemented")
3959}
3960func (*UnimplementedExtensionServer) SetExtValue(ctx context.Context, req *SingleSetValueRequest) (*SingleSetValueResponse, error) {
3961 return nil, status.Errorf(codes.Unimplemented, "method SetExtValue not implemented")
3962}
3963
3964func RegisterExtensionServer(s *grpc.Server, srv ExtensionServer) {
3965 s.RegisterService(&_Extension_serviceDesc, srv)
3966}
3967
3968func _Extension_GetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
3969 in := new(SingleGetValueRequest)
3970 if err := dec(in); err != nil {
3971 return nil, err
3972 }
3973 if interceptor == nil {
3974 return srv.(ExtensionServer).GetExtValue(ctx, in)
3975 }
3976 info := &grpc.UnaryServerInfo{
3977 Server: srv,
3978 FullMethod: "/extension.Extension/GetExtValue",
3979 }
3980 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3981 return srv.(ExtensionServer).GetExtValue(ctx, req.(*SingleGetValueRequest))
3982 }
3983 return interceptor(ctx, in, info, handler)
3984}
3985
3986func _Extension_SetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
3987 in := new(SingleSetValueRequest)
3988 if err := dec(in); err != nil {
3989 return nil, err
3990 }
3991 if interceptor == nil {
3992 return srv.(ExtensionServer).SetExtValue(ctx, in)
3993 }
3994 info := &grpc.UnaryServerInfo{
3995 Server: srv,
3996 FullMethod: "/extension.Extension/SetExtValue",
3997 }
3998 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3999 return srv.(ExtensionServer).SetExtValue(ctx, req.(*SingleSetValueRequest))
4000 }
4001 return interceptor(ctx, in, info, handler)
4002}
4003
4004var _Extension_serviceDesc = grpc.ServiceDesc{
4005 ServiceName: "extension.Extension",
4006 HandlerType: (*ExtensionServer)(nil),
4007 Methods: []grpc.MethodDesc{
4008 {
4009 MethodName: "GetExtValue",
4010 Handler: _Extension_GetExtValue_Handler,
4011 },
4012 {
4013 MethodName: "SetExtValue",
4014 Handler: _Extension_SetExtValue_Handler,
4015 },
4016 },
4017 Streams: []grpc.StreamDesc{},
4018 Metadata: "voltha_protos/extensions.proto",
4019}