blob: e6105b66bf34297b9602e5d7a5f468adc698bd05 [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) {
231 return fileDescriptor_7ecf6e9799a9202d, []int{21, 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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400259 return fileDescriptor_7ecf6e9799a9202d, []int{24, 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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400302 return fileDescriptor_7ecf6e9799a9202d, []int{24, 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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400330 return fileDescriptor_7ecf6e9799a9202d, []int{26, 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) {
khenaidoodc2116e2021-10-19 17:33:19 -0400355 return fileDescriptor_7ecf6e9799a9202d, []int{26, 1}
356}
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
khenaidoo106c61a2021-08-11 18:05:46 -04001453type GetRxPowerRequest struct {
1454 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
1455 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
1456 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1457 XXX_unrecognized []byte `json:"-"`
1458 XXX_sizecache int32 `json:"-"`
1459}
1460
1461func (m *GetRxPowerRequest) Reset() { *m = GetRxPowerRequest{} }
1462func (m *GetRxPowerRequest) String() string { return proto.CompactTextString(m) }
1463func (*GetRxPowerRequest) ProtoMessage() {}
1464func (*GetRxPowerRequest) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04001465 return fileDescriptor_7ecf6e9799a9202d, []int{18}
khenaidoo106c61a2021-08-11 18:05:46 -04001466}
1467
1468func (m *GetRxPowerRequest) XXX_Unmarshal(b []byte) error {
1469 return xxx_messageInfo_GetRxPowerRequest.Unmarshal(m, b)
1470}
1471func (m *GetRxPowerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1472 return xxx_messageInfo_GetRxPowerRequest.Marshal(b, m, deterministic)
1473}
1474func (m *GetRxPowerRequest) XXX_Merge(src proto.Message) {
1475 xxx_messageInfo_GetRxPowerRequest.Merge(m, src)
1476}
1477func (m *GetRxPowerRequest) XXX_Size() int {
1478 return xxx_messageInfo_GetRxPowerRequest.Size(m)
1479}
1480func (m *GetRxPowerRequest) XXX_DiscardUnknown() {
1481 xxx_messageInfo_GetRxPowerRequest.DiscardUnknown(m)
1482}
1483
1484var xxx_messageInfo_GetRxPowerRequest proto.InternalMessageInfo
1485
1486func (m *GetRxPowerRequest) GetIntfId() uint32 {
1487 if m != nil {
1488 return m.IntfId
1489 }
1490 return 0
1491}
1492
1493func (m *GetRxPowerRequest) GetOnuId() uint32 {
1494 if m != nil {
1495 return m.OnuId
1496 }
1497 return 0
1498}
1499
1500type GetOnuCountersResponse struct {
1501 // Types that are valid to be assigned to IsIntfId:
1502 // *GetOnuCountersResponse_IntfId
1503 IsIntfId isGetOnuCountersResponse_IsIntfId `protobuf_oneof:"is_intf_id"`
1504 // Types that are valid to be assigned to IsOnuId:
1505 // *GetOnuCountersResponse_OnuId
1506 IsOnuId isGetOnuCountersResponse_IsOnuId `protobuf_oneof:"is_onu_id"`
1507 // Types that are valid to be assigned to IsPositiveDrift:
1508 // *GetOnuCountersResponse_PositiveDrift
1509 IsPositiveDrift isGetOnuCountersResponse_IsPositiveDrift `protobuf_oneof:"is_positive_drift"`
1510 // Types that are valid to be assigned to IsNegativeDrift:
1511 // *GetOnuCountersResponse_NegativeDrift
1512 IsNegativeDrift isGetOnuCountersResponse_IsNegativeDrift `protobuf_oneof:"is_negative_drift"`
1513 // Types that are valid to be assigned to IsDelimiterMissDetection:
1514 // *GetOnuCountersResponse_DelimiterMissDetection
1515 IsDelimiterMissDetection isGetOnuCountersResponse_IsDelimiterMissDetection `protobuf_oneof:"is_delimiter_miss_detection"`
1516 // Types that are valid to be assigned to IsBipErrors:
1517 // *GetOnuCountersResponse_BipErrors
1518 IsBipErrors isGetOnuCountersResponse_IsBipErrors `protobuf_oneof:"is_bip_errors"`
1519 // Types that are valid to be assigned to IsBipUnits:
1520 // *GetOnuCountersResponse_BipUnits
1521 IsBipUnits isGetOnuCountersResponse_IsBipUnits `protobuf_oneof:"is_bip_units"`
1522 // Types that are valid to be assigned to IsFecCorrectedSymbols:
1523 // *GetOnuCountersResponse_FecCorrectedSymbols
1524 IsFecCorrectedSymbols isGetOnuCountersResponse_IsFecCorrectedSymbols `protobuf_oneof:"is_fec_corrected_symbols"`
1525 // Types that are valid to be assigned to IsFecCodewordsCorrected:
1526 // *GetOnuCountersResponse_FecCodewordsCorrected
1527 IsFecCodewordsCorrected isGetOnuCountersResponse_IsFecCodewordsCorrected `protobuf_oneof:"is_fec_codewords_corrected"`
1528 // Types that are valid to be assigned to IsFecCodewordsUncorrectable:
1529 // *GetOnuCountersResponse_FecCodewordsUncorrectable
1530 IsFecCodewordsUncorrectable isGetOnuCountersResponse_IsFecCodewordsUncorrectable `protobuf_oneof:"is_fec_codewords_uncorrectable"`
1531 // Types that are valid to be assigned to IsFecCodewords:
1532 // *GetOnuCountersResponse_FecCodewords
1533 IsFecCodewords isGetOnuCountersResponse_IsFecCodewords `protobuf_oneof:"is_fec_codewords"`
1534 // Types that are valid to be assigned to IsFecCorrectedUnits:
1535 // *GetOnuCountersResponse_FecCorrectedUnits
1536 IsFecCorrectedUnits isGetOnuCountersResponse_IsFecCorrectedUnits `protobuf_oneof:"is_fec_corrected_units"`
1537 // Types that are valid to be assigned to IsXgemKeyErrors:
1538 // *GetOnuCountersResponse_XgemKeyErrors
1539 IsXgemKeyErrors isGetOnuCountersResponse_IsXgemKeyErrors `protobuf_oneof:"is_xgem_key_errors"`
1540 // Types that are valid to be assigned to IsXgemLoss:
1541 // *GetOnuCountersResponse_XgemLoss
1542 IsXgemLoss isGetOnuCountersResponse_IsXgemLoss `protobuf_oneof:"is_xgem_loss"`
1543 // Types that are valid to be assigned to IsRxPloamsError:
1544 // *GetOnuCountersResponse_RxPloamsError
1545 IsRxPloamsError isGetOnuCountersResponse_IsRxPloamsError `protobuf_oneof:"is_rx_ploams_error"`
1546 // Types that are valid to be assigned to IsRxPloamsNonIdle:
1547 // *GetOnuCountersResponse_RxPloamsNonIdle
1548 IsRxPloamsNonIdle isGetOnuCountersResponse_IsRxPloamsNonIdle `protobuf_oneof:"is_rx_ploams_non_idle"`
1549 // Types that are valid to be assigned to IsRxOmci:
1550 // *GetOnuCountersResponse_RxOmci
1551 IsRxOmci isGetOnuCountersResponse_IsRxOmci `protobuf_oneof:"is_rx_omci"`
1552 // Types that are valid to be assigned to IsTxOmci:
1553 // *GetOnuCountersResponse_TxOmci
1554 IsTxOmci isGetOnuCountersResponse_IsTxOmci `protobuf_oneof:"is_tx_omci"`
1555 // Types that are valid to be assigned to IsRxOmciPacketsCrcError:
1556 // *GetOnuCountersResponse_RxOmciPacketsCrcError
1557 IsRxOmciPacketsCrcError isGetOnuCountersResponse_IsRxOmciPacketsCrcError `protobuf_oneof:"is_rx_omci_packets_crc_error"`
1558 // Types that are valid to be assigned to IsRxBytes:
1559 // *GetOnuCountersResponse_RxBytes
1560 IsRxBytes isGetOnuCountersResponse_IsRxBytes `protobuf_oneof:"is_rx_bytes"`
1561 // Types that are valid to be assigned to IsRxPackets:
1562 // *GetOnuCountersResponse_RxPackets
1563 IsRxPackets isGetOnuCountersResponse_IsRxPackets `protobuf_oneof:"is_rx_packets"`
1564 // Types that are valid to be assigned to IsTxBytes:
1565 // *GetOnuCountersResponse_TxBytes
1566 IsTxBytes isGetOnuCountersResponse_IsTxBytes `protobuf_oneof:"is_tx_bytes"`
1567 // Types that are valid to be assigned to IsTxPackets:
1568 // *GetOnuCountersResponse_TxPackets
1569 IsTxPackets isGetOnuCountersResponse_IsTxPackets `protobuf_oneof:"is_tx_packets"`
1570 // Types that are valid to be assigned to IsBerReported:
1571 // *GetOnuCountersResponse_BerReported
1572 IsBerReported isGetOnuCountersResponse_IsBerReported `protobuf_oneof:"is_ber_reported"`
1573 // Types that are valid to be assigned to IsLcdgErrors:
1574 // *GetOnuCountersResponse_LcdgErrors
1575 IsLcdgErrors isGetOnuCountersResponse_IsLcdgErrors `protobuf_oneof:"is_lcdg_errors"`
1576 // Types that are valid to be assigned to IsRdiErrors:
1577 // *GetOnuCountersResponse_RdiErrors
1578 IsRdiErrors isGetOnuCountersResponse_IsRdiErrors `protobuf_oneof:"is_rdi_errors"`
1579 // Types that are valid to be assigned to IsTimestamp:
1580 // *GetOnuCountersResponse_Timestamp
1581 IsTimestamp isGetOnuCountersResponse_IsTimestamp `protobuf_oneof:"is_timestamp"`
1582 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1583 XXX_unrecognized []byte `json:"-"`
1584 XXX_sizecache int32 `json:"-"`
1585}
1586
1587func (m *GetOnuCountersResponse) Reset() { *m = GetOnuCountersResponse{} }
1588func (m *GetOnuCountersResponse) String() string { return proto.CompactTextString(m) }
1589func (*GetOnuCountersResponse) ProtoMessage() {}
1590func (*GetOnuCountersResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04001591 return fileDescriptor_7ecf6e9799a9202d, []int{19}
khenaidoo106c61a2021-08-11 18:05:46 -04001592}
1593
1594func (m *GetOnuCountersResponse) XXX_Unmarshal(b []byte) error {
1595 return xxx_messageInfo_GetOnuCountersResponse.Unmarshal(m, b)
1596}
1597func (m *GetOnuCountersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1598 return xxx_messageInfo_GetOnuCountersResponse.Marshal(b, m, deterministic)
1599}
1600func (m *GetOnuCountersResponse) XXX_Merge(src proto.Message) {
1601 xxx_messageInfo_GetOnuCountersResponse.Merge(m, src)
1602}
1603func (m *GetOnuCountersResponse) XXX_Size() int {
1604 return xxx_messageInfo_GetOnuCountersResponse.Size(m)
1605}
1606func (m *GetOnuCountersResponse) XXX_DiscardUnknown() {
1607 xxx_messageInfo_GetOnuCountersResponse.DiscardUnknown(m)
1608}
1609
1610var xxx_messageInfo_GetOnuCountersResponse proto.InternalMessageInfo
1611
1612type isGetOnuCountersResponse_IsIntfId interface {
1613 isGetOnuCountersResponse_IsIntfId()
1614}
1615
1616type GetOnuCountersResponse_IntfId struct {
1617 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3,oneof"`
1618}
1619
1620func (*GetOnuCountersResponse_IntfId) isGetOnuCountersResponse_IsIntfId() {}
1621
1622func (m *GetOnuCountersResponse) GetIsIntfId() isGetOnuCountersResponse_IsIntfId {
1623 if m != nil {
1624 return m.IsIntfId
1625 }
1626 return nil
1627}
1628
1629func (m *GetOnuCountersResponse) GetIntfId() uint32 {
1630 if x, ok := m.GetIsIntfId().(*GetOnuCountersResponse_IntfId); ok {
1631 return x.IntfId
1632 }
1633 return 0
1634}
1635
1636type isGetOnuCountersResponse_IsOnuId interface {
1637 isGetOnuCountersResponse_IsOnuId()
1638}
1639
1640type GetOnuCountersResponse_OnuId struct {
1641 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3,oneof"`
1642}
1643
1644func (*GetOnuCountersResponse_OnuId) isGetOnuCountersResponse_IsOnuId() {}
1645
1646func (m *GetOnuCountersResponse) GetIsOnuId() isGetOnuCountersResponse_IsOnuId {
1647 if m != nil {
1648 return m.IsOnuId
1649 }
1650 return nil
1651}
1652
1653func (m *GetOnuCountersResponse) GetOnuId() uint32 {
1654 if x, ok := m.GetIsOnuId().(*GetOnuCountersResponse_OnuId); ok {
1655 return x.OnuId
1656 }
1657 return 0
1658}
1659
1660type isGetOnuCountersResponse_IsPositiveDrift interface {
1661 isGetOnuCountersResponse_IsPositiveDrift()
1662}
1663
1664type GetOnuCountersResponse_PositiveDrift struct {
1665 PositiveDrift uint64 `protobuf:"fixed64,3,opt,name=positive_drift,json=positiveDrift,proto3,oneof"`
1666}
1667
1668func (*GetOnuCountersResponse_PositiveDrift) isGetOnuCountersResponse_IsPositiveDrift() {}
1669
1670func (m *GetOnuCountersResponse) GetIsPositiveDrift() isGetOnuCountersResponse_IsPositiveDrift {
1671 if m != nil {
1672 return m.IsPositiveDrift
1673 }
1674 return nil
1675}
1676
1677func (m *GetOnuCountersResponse) GetPositiveDrift() uint64 {
1678 if x, ok := m.GetIsPositiveDrift().(*GetOnuCountersResponse_PositiveDrift); ok {
1679 return x.PositiveDrift
1680 }
1681 return 0
1682}
1683
1684type isGetOnuCountersResponse_IsNegativeDrift interface {
1685 isGetOnuCountersResponse_IsNegativeDrift()
1686}
1687
1688type GetOnuCountersResponse_NegativeDrift struct {
1689 NegativeDrift uint64 `protobuf:"fixed64,4,opt,name=negative_drift,json=negativeDrift,proto3,oneof"`
1690}
1691
1692func (*GetOnuCountersResponse_NegativeDrift) isGetOnuCountersResponse_IsNegativeDrift() {}
1693
1694func (m *GetOnuCountersResponse) GetIsNegativeDrift() isGetOnuCountersResponse_IsNegativeDrift {
1695 if m != nil {
1696 return m.IsNegativeDrift
1697 }
1698 return nil
1699}
1700
1701func (m *GetOnuCountersResponse) GetNegativeDrift() uint64 {
1702 if x, ok := m.GetIsNegativeDrift().(*GetOnuCountersResponse_NegativeDrift); ok {
1703 return x.NegativeDrift
1704 }
1705 return 0
1706}
1707
1708type isGetOnuCountersResponse_IsDelimiterMissDetection interface {
1709 isGetOnuCountersResponse_IsDelimiterMissDetection()
1710}
1711
1712type GetOnuCountersResponse_DelimiterMissDetection struct {
1713 DelimiterMissDetection uint64 `protobuf:"fixed64,5,opt,name=delimiter_miss_detection,json=delimiterMissDetection,proto3,oneof"`
1714}
1715
1716func (*GetOnuCountersResponse_DelimiterMissDetection) isGetOnuCountersResponse_IsDelimiterMissDetection() {
1717}
1718
1719func (m *GetOnuCountersResponse) GetIsDelimiterMissDetection() isGetOnuCountersResponse_IsDelimiterMissDetection {
1720 if m != nil {
1721 return m.IsDelimiterMissDetection
1722 }
1723 return nil
1724}
1725
1726func (m *GetOnuCountersResponse) GetDelimiterMissDetection() uint64 {
1727 if x, ok := m.GetIsDelimiterMissDetection().(*GetOnuCountersResponse_DelimiterMissDetection); ok {
1728 return x.DelimiterMissDetection
1729 }
1730 return 0
1731}
1732
1733type isGetOnuCountersResponse_IsBipErrors interface {
1734 isGetOnuCountersResponse_IsBipErrors()
1735}
1736
1737type GetOnuCountersResponse_BipErrors struct {
1738 BipErrors uint64 `protobuf:"fixed64,6,opt,name=bip_errors,json=bipErrors,proto3,oneof"`
1739}
1740
1741func (*GetOnuCountersResponse_BipErrors) isGetOnuCountersResponse_IsBipErrors() {}
1742
1743func (m *GetOnuCountersResponse) GetIsBipErrors() isGetOnuCountersResponse_IsBipErrors {
1744 if m != nil {
1745 return m.IsBipErrors
1746 }
1747 return nil
1748}
1749
1750func (m *GetOnuCountersResponse) GetBipErrors() uint64 {
1751 if x, ok := m.GetIsBipErrors().(*GetOnuCountersResponse_BipErrors); ok {
1752 return x.BipErrors
1753 }
1754 return 0
1755}
1756
1757type isGetOnuCountersResponse_IsBipUnits interface {
1758 isGetOnuCountersResponse_IsBipUnits()
1759}
1760
1761type GetOnuCountersResponse_BipUnits struct {
1762 BipUnits uint64 `protobuf:"fixed64,7,opt,name=bip_units,json=bipUnits,proto3,oneof"`
1763}
1764
1765func (*GetOnuCountersResponse_BipUnits) isGetOnuCountersResponse_IsBipUnits() {}
1766
1767func (m *GetOnuCountersResponse) GetIsBipUnits() isGetOnuCountersResponse_IsBipUnits {
1768 if m != nil {
1769 return m.IsBipUnits
1770 }
1771 return nil
1772}
1773
1774func (m *GetOnuCountersResponse) GetBipUnits() uint64 {
1775 if x, ok := m.GetIsBipUnits().(*GetOnuCountersResponse_BipUnits); ok {
1776 return x.BipUnits
1777 }
1778 return 0
1779}
1780
1781type isGetOnuCountersResponse_IsFecCorrectedSymbols interface {
1782 isGetOnuCountersResponse_IsFecCorrectedSymbols()
1783}
1784
1785type GetOnuCountersResponse_FecCorrectedSymbols struct {
1786 FecCorrectedSymbols uint64 `protobuf:"fixed64,8,opt,name=fec_corrected_symbols,json=fecCorrectedSymbols,proto3,oneof"`
1787}
1788
1789func (*GetOnuCountersResponse_FecCorrectedSymbols) isGetOnuCountersResponse_IsFecCorrectedSymbols() {}
1790
1791func (m *GetOnuCountersResponse) GetIsFecCorrectedSymbols() isGetOnuCountersResponse_IsFecCorrectedSymbols {
1792 if m != nil {
1793 return m.IsFecCorrectedSymbols
1794 }
1795 return nil
1796}
1797
1798func (m *GetOnuCountersResponse) GetFecCorrectedSymbols() uint64 {
1799 if x, ok := m.GetIsFecCorrectedSymbols().(*GetOnuCountersResponse_FecCorrectedSymbols); ok {
1800 return x.FecCorrectedSymbols
1801 }
1802 return 0
1803}
1804
1805type isGetOnuCountersResponse_IsFecCodewordsCorrected interface {
1806 isGetOnuCountersResponse_IsFecCodewordsCorrected()
1807}
1808
1809type GetOnuCountersResponse_FecCodewordsCorrected struct {
1810 FecCodewordsCorrected uint64 `protobuf:"fixed64,9,opt,name=fec_codewords_corrected,json=fecCodewordsCorrected,proto3,oneof"`
1811}
1812
1813func (*GetOnuCountersResponse_FecCodewordsCorrected) isGetOnuCountersResponse_IsFecCodewordsCorrected() {
1814}
1815
1816func (m *GetOnuCountersResponse) GetIsFecCodewordsCorrected() isGetOnuCountersResponse_IsFecCodewordsCorrected {
1817 if m != nil {
1818 return m.IsFecCodewordsCorrected
1819 }
1820 return nil
1821}
1822
1823func (m *GetOnuCountersResponse) GetFecCodewordsCorrected() uint64 {
1824 if x, ok := m.GetIsFecCodewordsCorrected().(*GetOnuCountersResponse_FecCodewordsCorrected); ok {
1825 return x.FecCodewordsCorrected
1826 }
1827 return 0
1828}
1829
1830type isGetOnuCountersResponse_IsFecCodewordsUncorrectable interface {
1831 isGetOnuCountersResponse_IsFecCodewordsUncorrectable()
1832}
1833
1834type GetOnuCountersResponse_FecCodewordsUncorrectable struct {
1835 FecCodewordsUncorrectable uint64 `protobuf:"fixed64,10,opt,name=fec_codewords_uncorrectable,json=fecCodewordsUncorrectable,proto3,oneof"`
1836}
1837
1838func (*GetOnuCountersResponse_FecCodewordsUncorrectable) isGetOnuCountersResponse_IsFecCodewordsUncorrectable() {
1839}
1840
1841func (m *GetOnuCountersResponse) GetIsFecCodewordsUncorrectable() isGetOnuCountersResponse_IsFecCodewordsUncorrectable {
1842 if m != nil {
1843 return m.IsFecCodewordsUncorrectable
1844 }
1845 return nil
1846}
1847
1848func (m *GetOnuCountersResponse) GetFecCodewordsUncorrectable() uint64 {
1849 if x, ok := m.GetIsFecCodewordsUncorrectable().(*GetOnuCountersResponse_FecCodewordsUncorrectable); ok {
1850 return x.FecCodewordsUncorrectable
1851 }
1852 return 0
1853}
1854
1855type isGetOnuCountersResponse_IsFecCodewords interface {
1856 isGetOnuCountersResponse_IsFecCodewords()
1857}
1858
1859type GetOnuCountersResponse_FecCodewords struct {
1860 FecCodewords uint64 `protobuf:"fixed64,11,opt,name=fec_codewords,json=fecCodewords,proto3,oneof"`
1861}
1862
1863func (*GetOnuCountersResponse_FecCodewords) isGetOnuCountersResponse_IsFecCodewords() {}
1864
1865func (m *GetOnuCountersResponse) GetIsFecCodewords() isGetOnuCountersResponse_IsFecCodewords {
1866 if m != nil {
1867 return m.IsFecCodewords
1868 }
1869 return nil
1870}
1871
1872func (m *GetOnuCountersResponse) GetFecCodewords() uint64 {
1873 if x, ok := m.GetIsFecCodewords().(*GetOnuCountersResponse_FecCodewords); ok {
1874 return x.FecCodewords
1875 }
1876 return 0
1877}
1878
1879type isGetOnuCountersResponse_IsFecCorrectedUnits interface {
1880 isGetOnuCountersResponse_IsFecCorrectedUnits()
1881}
1882
1883type GetOnuCountersResponse_FecCorrectedUnits struct {
1884 FecCorrectedUnits uint64 `protobuf:"fixed64,12,opt,name=fec_corrected_units,json=fecCorrectedUnits,proto3,oneof"`
1885}
1886
1887func (*GetOnuCountersResponse_FecCorrectedUnits) isGetOnuCountersResponse_IsFecCorrectedUnits() {}
1888
1889func (m *GetOnuCountersResponse) GetIsFecCorrectedUnits() isGetOnuCountersResponse_IsFecCorrectedUnits {
1890 if m != nil {
1891 return m.IsFecCorrectedUnits
1892 }
1893 return nil
1894}
1895
1896func (m *GetOnuCountersResponse) GetFecCorrectedUnits() uint64 {
1897 if x, ok := m.GetIsFecCorrectedUnits().(*GetOnuCountersResponse_FecCorrectedUnits); ok {
1898 return x.FecCorrectedUnits
1899 }
1900 return 0
1901}
1902
1903type isGetOnuCountersResponse_IsXgemKeyErrors interface {
1904 isGetOnuCountersResponse_IsXgemKeyErrors()
1905}
1906
1907type GetOnuCountersResponse_XgemKeyErrors struct {
1908 XgemKeyErrors uint64 `protobuf:"fixed64,13,opt,name=xgem_key_errors,json=xgemKeyErrors,proto3,oneof"`
1909}
1910
1911func (*GetOnuCountersResponse_XgemKeyErrors) isGetOnuCountersResponse_IsXgemKeyErrors() {}
1912
1913func (m *GetOnuCountersResponse) GetIsXgemKeyErrors() isGetOnuCountersResponse_IsXgemKeyErrors {
1914 if m != nil {
1915 return m.IsXgemKeyErrors
1916 }
1917 return nil
1918}
1919
1920func (m *GetOnuCountersResponse) GetXgemKeyErrors() uint64 {
1921 if x, ok := m.GetIsXgemKeyErrors().(*GetOnuCountersResponse_XgemKeyErrors); ok {
1922 return x.XgemKeyErrors
1923 }
1924 return 0
1925}
1926
1927type isGetOnuCountersResponse_IsXgemLoss interface {
1928 isGetOnuCountersResponse_IsXgemLoss()
1929}
1930
1931type GetOnuCountersResponse_XgemLoss struct {
1932 XgemLoss uint64 `protobuf:"fixed64,14,opt,name=xgem_loss,json=xgemLoss,proto3,oneof"`
1933}
1934
1935func (*GetOnuCountersResponse_XgemLoss) isGetOnuCountersResponse_IsXgemLoss() {}
1936
1937func (m *GetOnuCountersResponse) GetIsXgemLoss() isGetOnuCountersResponse_IsXgemLoss {
1938 if m != nil {
1939 return m.IsXgemLoss
1940 }
1941 return nil
1942}
1943
1944func (m *GetOnuCountersResponse) GetXgemLoss() uint64 {
1945 if x, ok := m.GetIsXgemLoss().(*GetOnuCountersResponse_XgemLoss); ok {
1946 return x.XgemLoss
1947 }
1948 return 0
1949}
1950
1951type isGetOnuCountersResponse_IsRxPloamsError interface {
1952 isGetOnuCountersResponse_IsRxPloamsError()
1953}
1954
1955type GetOnuCountersResponse_RxPloamsError struct {
1956 RxPloamsError uint64 `protobuf:"fixed64,15,opt,name=rx_ploams_error,json=rxPloamsError,proto3,oneof"`
1957}
1958
1959func (*GetOnuCountersResponse_RxPloamsError) isGetOnuCountersResponse_IsRxPloamsError() {}
1960
1961func (m *GetOnuCountersResponse) GetIsRxPloamsError() isGetOnuCountersResponse_IsRxPloamsError {
1962 if m != nil {
1963 return m.IsRxPloamsError
1964 }
1965 return nil
1966}
1967
1968func (m *GetOnuCountersResponse) GetRxPloamsError() uint64 {
1969 if x, ok := m.GetIsRxPloamsError().(*GetOnuCountersResponse_RxPloamsError); ok {
1970 return x.RxPloamsError
1971 }
1972 return 0
1973}
1974
1975type isGetOnuCountersResponse_IsRxPloamsNonIdle interface {
1976 isGetOnuCountersResponse_IsRxPloamsNonIdle()
1977}
1978
1979type GetOnuCountersResponse_RxPloamsNonIdle struct {
1980 RxPloamsNonIdle uint64 `protobuf:"fixed64,16,opt,name=rx_ploams_non_idle,json=rxPloamsNonIdle,proto3,oneof"`
1981}
1982
1983func (*GetOnuCountersResponse_RxPloamsNonIdle) isGetOnuCountersResponse_IsRxPloamsNonIdle() {}
1984
1985func (m *GetOnuCountersResponse) GetIsRxPloamsNonIdle() isGetOnuCountersResponse_IsRxPloamsNonIdle {
1986 if m != nil {
1987 return m.IsRxPloamsNonIdle
1988 }
1989 return nil
1990}
1991
1992func (m *GetOnuCountersResponse) GetRxPloamsNonIdle() uint64 {
1993 if x, ok := m.GetIsRxPloamsNonIdle().(*GetOnuCountersResponse_RxPloamsNonIdle); ok {
1994 return x.RxPloamsNonIdle
1995 }
1996 return 0
1997}
1998
1999type isGetOnuCountersResponse_IsRxOmci interface {
2000 isGetOnuCountersResponse_IsRxOmci()
2001}
2002
2003type GetOnuCountersResponse_RxOmci struct {
2004 RxOmci uint64 `protobuf:"fixed64,17,opt,name=rx_omci,json=rxOmci,proto3,oneof"`
2005}
2006
2007func (*GetOnuCountersResponse_RxOmci) isGetOnuCountersResponse_IsRxOmci() {}
2008
2009func (m *GetOnuCountersResponse) GetIsRxOmci() isGetOnuCountersResponse_IsRxOmci {
2010 if m != nil {
2011 return m.IsRxOmci
2012 }
2013 return nil
2014}
2015
2016func (m *GetOnuCountersResponse) GetRxOmci() uint64 {
2017 if x, ok := m.GetIsRxOmci().(*GetOnuCountersResponse_RxOmci); ok {
2018 return x.RxOmci
2019 }
2020 return 0
2021}
2022
2023type isGetOnuCountersResponse_IsTxOmci interface {
2024 isGetOnuCountersResponse_IsTxOmci()
2025}
2026
2027type GetOnuCountersResponse_TxOmci struct {
2028 TxOmci uint64 `protobuf:"fixed64,18,opt,name=tx_omci,json=txOmci,proto3,oneof"`
2029}
2030
2031func (*GetOnuCountersResponse_TxOmci) isGetOnuCountersResponse_IsTxOmci() {}
2032
2033func (m *GetOnuCountersResponse) GetIsTxOmci() isGetOnuCountersResponse_IsTxOmci {
2034 if m != nil {
2035 return m.IsTxOmci
2036 }
2037 return nil
2038}
2039
2040func (m *GetOnuCountersResponse) GetTxOmci() uint64 {
2041 if x, ok := m.GetIsTxOmci().(*GetOnuCountersResponse_TxOmci); ok {
2042 return x.TxOmci
2043 }
2044 return 0
2045}
2046
2047type isGetOnuCountersResponse_IsRxOmciPacketsCrcError interface {
2048 isGetOnuCountersResponse_IsRxOmciPacketsCrcError()
2049}
2050
2051type GetOnuCountersResponse_RxOmciPacketsCrcError struct {
2052 RxOmciPacketsCrcError uint64 `protobuf:"fixed64,19,opt,name=rx_omci_packets_crc_error,json=rxOmciPacketsCrcError,proto3,oneof"`
2053}
2054
2055func (*GetOnuCountersResponse_RxOmciPacketsCrcError) isGetOnuCountersResponse_IsRxOmciPacketsCrcError() {
2056}
2057
2058func (m *GetOnuCountersResponse) GetIsRxOmciPacketsCrcError() isGetOnuCountersResponse_IsRxOmciPacketsCrcError {
2059 if m != nil {
2060 return m.IsRxOmciPacketsCrcError
2061 }
2062 return nil
2063}
2064
2065func (m *GetOnuCountersResponse) GetRxOmciPacketsCrcError() uint64 {
2066 if x, ok := m.GetIsRxOmciPacketsCrcError().(*GetOnuCountersResponse_RxOmciPacketsCrcError); ok {
2067 return x.RxOmciPacketsCrcError
2068 }
2069 return 0
2070}
2071
2072type isGetOnuCountersResponse_IsRxBytes interface {
2073 isGetOnuCountersResponse_IsRxBytes()
2074}
2075
2076type GetOnuCountersResponse_RxBytes struct {
2077 RxBytes uint64 `protobuf:"fixed64,20,opt,name=rx_bytes,json=rxBytes,proto3,oneof"`
2078}
2079
2080func (*GetOnuCountersResponse_RxBytes) isGetOnuCountersResponse_IsRxBytes() {}
2081
2082func (m *GetOnuCountersResponse) GetIsRxBytes() isGetOnuCountersResponse_IsRxBytes {
2083 if m != nil {
2084 return m.IsRxBytes
2085 }
2086 return nil
2087}
2088
2089func (m *GetOnuCountersResponse) GetRxBytes() uint64 {
2090 if x, ok := m.GetIsRxBytes().(*GetOnuCountersResponse_RxBytes); ok {
2091 return x.RxBytes
2092 }
2093 return 0
2094}
2095
2096type isGetOnuCountersResponse_IsRxPackets interface {
2097 isGetOnuCountersResponse_IsRxPackets()
2098}
2099
2100type GetOnuCountersResponse_RxPackets struct {
2101 RxPackets uint64 `protobuf:"fixed64,21,opt,name=rx_packets,json=rxPackets,proto3,oneof"`
2102}
2103
2104func (*GetOnuCountersResponse_RxPackets) isGetOnuCountersResponse_IsRxPackets() {}
2105
2106func (m *GetOnuCountersResponse) GetIsRxPackets() isGetOnuCountersResponse_IsRxPackets {
2107 if m != nil {
2108 return m.IsRxPackets
2109 }
2110 return nil
2111}
2112
2113func (m *GetOnuCountersResponse) GetRxPackets() uint64 {
2114 if x, ok := m.GetIsRxPackets().(*GetOnuCountersResponse_RxPackets); ok {
2115 return x.RxPackets
2116 }
2117 return 0
2118}
2119
2120type isGetOnuCountersResponse_IsTxBytes interface {
2121 isGetOnuCountersResponse_IsTxBytes()
2122}
2123
2124type GetOnuCountersResponse_TxBytes struct {
2125 TxBytes uint64 `protobuf:"fixed64,22,opt,name=tx_bytes,json=txBytes,proto3,oneof"`
2126}
2127
2128func (*GetOnuCountersResponse_TxBytes) isGetOnuCountersResponse_IsTxBytes() {}
2129
2130func (m *GetOnuCountersResponse) GetIsTxBytes() isGetOnuCountersResponse_IsTxBytes {
2131 if m != nil {
2132 return m.IsTxBytes
2133 }
2134 return nil
2135}
2136
2137func (m *GetOnuCountersResponse) GetTxBytes() uint64 {
2138 if x, ok := m.GetIsTxBytes().(*GetOnuCountersResponse_TxBytes); ok {
2139 return x.TxBytes
2140 }
2141 return 0
2142}
2143
2144type isGetOnuCountersResponse_IsTxPackets interface {
2145 isGetOnuCountersResponse_IsTxPackets()
2146}
2147
2148type GetOnuCountersResponse_TxPackets struct {
2149 TxPackets uint64 `protobuf:"fixed64,23,opt,name=tx_packets,json=txPackets,proto3,oneof"`
2150}
2151
2152func (*GetOnuCountersResponse_TxPackets) isGetOnuCountersResponse_IsTxPackets() {}
2153
2154func (m *GetOnuCountersResponse) GetIsTxPackets() isGetOnuCountersResponse_IsTxPackets {
2155 if m != nil {
2156 return m.IsTxPackets
2157 }
2158 return nil
2159}
2160
2161func (m *GetOnuCountersResponse) GetTxPackets() uint64 {
2162 if x, ok := m.GetIsTxPackets().(*GetOnuCountersResponse_TxPackets); ok {
2163 return x.TxPackets
2164 }
2165 return 0
2166}
2167
2168type isGetOnuCountersResponse_IsBerReported interface {
2169 isGetOnuCountersResponse_IsBerReported()
2170}
2171
2172type GetOnuCountersResponse_BerReported struct {
2173 BerReported uint64 `protobuf:"fixed64,24,opt,name=ber_reported,json=berReported,proto3,oneof"`
2174}
2175
2176func (*GetOnuCountersResponse_BerReported) isGetOnuCountersResponse_IsBerReported() {}
2177
2178func (m *GetOnuCountersResponse) GetIsBerReported() isGetOnuCountersResponse_IsBerReported {
2179 if m != nil {
2180 return m.IsBerReported
2181 }
2182 return nil
2183}
2184
2185func (m *GetOnuCountersResponse) GetBerReported() uint64 {
2186 if x, ok := m.GetIsBerReported().(*GetOnuCountersResponse_BerReported); ok {
2187 return x.BerReported
2188 }
2189 return 0
2190}
2191
2192type isGetOnuCountersResponse_IsLcdgErrors interface {
2193 isGetOnuCountersResponse_IsLcdgErrors()
2194}
2195
2196type GetOnuCountersResponse_LcdgErrors struct {
2197 LcdgErrors uint64 `protobuf:"fixed64,25,opt,name=lcdg_errors,json=lcdgErrors,proto3,oneof"`
2198}
2199
2200func (*GetOnuCountersResponse_LcdgErrors) isGetOnuCountersResponse_IsLcdgErrors() {}
2201
2202func (m *GetOnuCountersResponse) GetIsLcdgErrors() isGetOnuCountersResponse_IsLcdgErrors {
2203 if m != nil {
2204 return m.IsLcdgErrors
2205 }
2206 return nil
2207}
2208
2209func (m *GetOnuCountersResponse) GetLcdgErrors() uint64 {
2210 if x, ok := m.GetIsLcdgErrors().(*GetOnuCountersResponse_LcdgErrors); ok {
2211 return x.LcdgErrors
2212 }
2213 return 0
2214}
2215
2216type isGetOnuCountersResponse_IsRdiErrors interface {
2217 isGetOnuCountersResponse_IsRdiErrors()
2218}
2219
2220type GetOnuCountersResponse_RdiErrors struct {
2221 RdiErrors uint64 `protobuf:"fixed64,26,opt,name=rdi_errors,json=rdiErrors,proto3,oneof"`
2222}
2223
2224func (*GetOnuCountersResponse_RdiErrors) isGetOnuCountersResponse_IsRdiErrors() {}
2225
2226func (m *GetOnuCountersResponse) GetIsRdiErrors() isGetOnuCountersResponse_IsRdiErrors {
2227 if m != nil {
2228 return m.IsRdiErrors
2229 }
2230 return nil
2231}
2232
2233func (m *GetOnuCountersResponse) GetRdiErrors() uint64 {
2234 if x, ok := m.GetIsRdiErrors().(*GetOnuCountersResponse_RdiErrors); ok {
2235 return x.RdiErrors
2236 }
2237 return 0
2238}
2239
2240type isGetOnuCountersResponse_IsTimestamp interface {
2241 isGetOnuCountersResponse_IsTimestamp()
2242}
2243
2244type GetOnuCountersResponse_Timestamp struct {
2245 Timestamp uint32 `protobuf:"fixed32,27,opt,name=timestamp,proto3,oneof"`
2246}
2247
2248func (*GetOnuCountersResponse_Timestamp) isGetOnuCountersResponse_IsTimestamp() {}
2249
2250func (m *GetOnuCountersResponse) GetIsTimestamp() isGetOnuCountersResponse_IsTimestamp {
2251 if m != nil {
2252 return m.IsTimestamp
2253 }
2254 return nil
2255}
2256
2257func (m *GetOnuCountersResponse) GetTimestamp() uint32 {
2258 if x, ok := m.GetIsTimestamp().(*GetOnuCountersResponse_Timestamp); ok {
2259 return x.Timestamp
2260 }
2261 return 0
2262}
2263
2264// XXX_OneofWrappers is for the internal use of the proto package.
2265func (*GetOnuCountersResponse) XXX_OneofWrappers() []interface{} {
2266 return []interface{}{
2267 (*GetOnuCountersResponse_IntfId)(nil),
2268 (*GetOnuCountersResponse_OnuId)(nil),
2269 (*GetOnuCountersResponse_PositiveDrift)(nil),
2270 (*GetOnuCountersResponse_NegativeDrift)(nil),
2271 (*GetOnuCountersResponse_DelimiterMissDetection)(nil),
2272 (*GetOnuCountersResponse_BipErrors)(nil),
2273 (*GetOnuCountersResponse_BipUnits)(nil),
2274 (*GetOnuCountersResponse_FecCorrectedSymbols)(nil),
2275 (*GetOnuCountersResponse_FecCodewordsCorrected)(nil),
2276 (*GetOnuCountersResponse_FecCodewordsUncorrectable)(nil),
2277 (*GetOnuCountersResponse_FecCodewords)(nil),
2278 (*GetOnuCountersResponse_FecCorrectedUnits)(nil),
2279 (*GetOnuCountersResponse_XgemKeyErrors)(nil),
2280 (*GetOnuCountersResponse_XgemLoss)(nil),
2281 (*GetOnuCountersResponse_RxPloamsError)(nil),
2282 (*GetOnuCountersResponse_RxPloamsNonIdle)(nil),
2283 (*GetOnuCountersResponse_RxOmci)(nil),
2284 (*GetOnuCountersResponse_TxOmci)(nil),
2285 (*GetOnuCountersResponse_RxOmciPacketsCrcError)(nil),
2286 (*GetOnuCountersResponse_RxBytes)(nil),
2287 (*GetOnuCountersResponse_RxPackets)(nil),
2288 (*GetOnuCountersResponse_TxBytes)(nil),
2289 (*GetOnuCountersResponse_TxPackets)(nil),
2290 (*GetOnuCountersResponse_BerReported)(nil),
2291 (*GetOnuCountersResponse_LcdgErrors)(nil),
2292 (*GetOnuCountersResponse_RdiErrors)(nil),
2293 (*GetOnuCountersResponse_Timestamp)(nil),
2294 }
2295}
2296
2297type OmciEthernetFrameExtendedPm struct {
2298 DropEvents uint64 `protobuf:"fixed64,1,opt,name=drop_events,json=dropEvents,proto3" json:"drop_events,omitempty"`
2299 Octets uint64 `protobuf:"fixed64,2,opt,name=octets,proto3" json:"octets,omitempty"`
2300 Frames uint64 `protobuf:"fixed64,3,opt,name=frames,proto3" json:"frames,omitempty"`
2301 BroadcastFrames uint64 `protobuf:"fixed64,4,opt,name=broadcast_frames,json=broadcastFrames,proto3" json:"broadcast_frames,omitempty"`
2302 MulticastFrames uint64 `protobuf:"fixed64,5,opt,name=multicast_frames,json=multicastFrames,proto3" json:"multicast_frames,omitempty"`
2303 CrcErroredFrames uint64 `protobuf:"fixed64,6,opt,name=crc_errored_frames,json=crcErroredFrames,proto3" json:"crc_errored_frames,omitempty"`
2304 UndersizeFrames uint64 `protobuf:"fixed64,7,opt,name=undersize_frames,json=undersizeFrames,proto3" json:"undersize_frames,omitempty"`
2305 OversizeFrames uint64 `protobuf:"fixed64,8,opt,name=oversize_frames,json=oversizeFrames,proto3" json:"oversize_frames,omitempty"`
2306 Frames_64Octets uint64 `protobuf:"fixed64,9,opt,name=frames_64_octets,json=frames64Octets,proto3" json:"frames_64_octets,omitempty"`
2307 Frames_65To_127Octets uint64 `protobuf:"fixed64,10,opt,name=frames_65_to_127_octets,json=frames65To127Octets,proto3" json:"frames_65_to_127_octets,omitempty"`
2308 Frames_128To_255Octets uint64 `protobuf:"fixed64,11,opt,name=frames_128_to_255_octets,json=frames128To255Octets,proto3" json:"frames_128_to_255_octets,omitempty"`
2309 Frames_256To_511Octets uint64 `protobuf:"fixed64,12,opt,name=frames_256_to_511_octets,json=frames256To511Octets,proto3" json:"frames_256_to_511_octets,omitempty"`
2310 Frames_512To_1023Octets uint64 `protobuf:"fixed64,13,opt,name=frames_512_to_1023_octets,json=frames512To1023Octets,proto3" json:"frames_512_to_1023_octets,omitempty"`
2311 Frames_1024To_1518Octets uint64 `protobuf:"fixed64,14,opt,name=frames_1024_to_1518_octets,json=frames1024To1518Octets,proto3" json:"frames_1024_to_1518_octets,omitempty"`
2312 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2313 XXX_unrecognized []byte `json:"-"`
2314 XXX_sizecache int32 `json:"-"`
2315}
2316
2317func (m *OmciEthernetFrameExtendedPm) Reset() { *m = OmciEthernetFrameExtendedPm{} }
2318func (m *OmciEthernetFrameExtendedPm) String() string { return proto.CompactTextString(m) }
2319func (*OmciEthernetFrameExtendedPm) ProtoMessage() {}
2320func (*OmciEthernetFrameExtendedPm) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04002321 return fileDescriptor_7ecf6e9799a9202d, []int{20}
khenaidoo106c61a2021-08-11 18:05:46 -04002322}
2323
2324func (m *OmciEthernetFrameExtendedPm) XXX_Unmarshal(b []byte) error {
2325 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Unmarshal(m, b)
2326}
2327func (m *OmciEthernetFrameExtendedPm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2328 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Marshal(b, m, deterministic)
2329}
2330func (m *OmciEthernetFrameExtendedPm) XXX_Merge(src proto.Message) {
2331 xxx_messageInfo_OmciEthernetFrameExtendedPm.Merge(m, src)
2332}
2333func (m *OmciEthernetFrameExtendedPm) XXX_Size() int {
2334 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Size(m)
2335}
2336func (m *OmciEthernetFrameExtendedPm) XXX_DiscardUnknown() {
2337 xxx_messageInfo_OmciEthernetFrameExtendedPm.DiscardUnknown(m)
2338}
2339
2340var xxx_messageInfo_OmciEthernetFrameExtendedPm proto.InternalMessageInfo
2341
2342func (m *OmciEthernetFrameExtendedPm) GetDropEvents() uint64 {
2343 if m != nil {
2344 return m.DropEvents
2345 }
2346 return 0
2347}
2348
2349func (m *OmciEthernetFrameExtendedPm) GetOctets() uint64 {
2350 if m != nil {
2351 return m.Octets
2352 }
2353 return 0
2354}
2355
2356func (m *OmciEthernetFrameExtendedPm) GetFrames() uint64 {
2357 if m != nil {
2358 return m.Frames
2359 }
2360 return 0
2361}
2362
2363func (m *OmciEthernetFrameExtendedPm) GetBroadcastFrames() uint64 {
2364 if m != nil {
2365 return m.BroadcastFrames
2366 }
2367 return 0
2368}
2369
2370func (m *OmciEthernetFrameExtendedPm) GetMulticastFrames() uint64 {
2371 if m != nil {
2372 return m.MulticastFrames
2373 }
2374 return 0
2375}
2376
2377func (m *OmciEthernetFrameExtendedPm) GetCrcErroredFrames() uint64 {
2378 if m != nil {
2379 return m.CrcErroredFrames
2380 }
2381 return 0
2382}
2383
2384func (m *OmciEthernetFrameExtendedPm) GetUndersizeFrames() uint64 {
2385 if m != nil {
2386 return m.UndersizeFrames
2387 }
2388 return 0
2389}
2390
2391func (m *OmciEthernetFrameExtendedPm) GetOversizeFrames() uint64 {
2392 if m != nil {
2393 return m.OversizeFrames
2394 }
2395 return 0
2396}
2397
2398func (m *OmciEthernetFrameExtendedPm) GetFrames_64Octets() uint64 {
2399 if m != nil {
2400 return m.Frames_64Octets
2401 }
2402 return 0
2403}
2404
2405func (m *OmciEthernetFrameExtendedPm) GetFrames_65To_127Octets() uint64 {
2406 if m != nil {
2407 return m.Frames_65To_127Octets
2408 }
2409 return 0
2410}
2411
2412func (m *OmciEthernetFrameExtendedPm) GetFrames_128To_255Octets() uint64 {
2413 if m != nil {
2414 return m.Frames_128To_255Octets
2415 }
2416 return 0
2417}
2418
2419func (m *OmciEthernetFrameExtendedPm) GetFrames_256To_511Octets() uint64 {
2420 if m != nil {
2421 return m.Frames_256To_511Octets
2422 }
2423 return 0
2424}
2425
2426func (m *OmciEthernetFrameExtendedPm) GetFrames_512To_1023Octets() uint64 {
2427 if m != nil {
2428 return m.Frames_512To_1023Octets
2429 }
2430 return 0
2431}
2432
2433func (m *OmciEthernetFrameExtendedPm) GetFrames_1024To_1518Octets() uint64 {
2434 if m != nil {
2435 return m.Frames_1024To_1518Octets
2436 }
2437 return 0
2438}
2439
2440type GetOmciEthernetFrameExtendedPmResponse struct {
khenaidoodc2116e2021-10-19 17:33:19 -04002441 Upstream *OmciEthernetFrameExtendedPm `protobuf:"bytes,1,opt,name=upstream,proto3" json:"upstream,omitempty"`
2442 Downstream *OmciEthernetFrameExtendedPm `protobuf:"bytes,2,opt,name=downstream,proto3" json:"downstream,omitempty"`
2443 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"`
2444 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2445 XXX_unrecognized []byte `json:"-"`
2446 XXX_sizecache int32 `json:"-"`
khenaidoo106c61a2021-08-11 18:05:46 -04002447}
2448
2449func (m *GetOmciEthernetFrameExtendedPmResponse) Reset() {
2450 *m = GetOmciEthernetFrameExtendedPmResponse{}
2451}
2452func (m *GetOmciEthernetFrameExtendedPmResponse) String() string { return proto.CompactTextString(m) }
2453func (*GetOmciEthernetFrameExtendedPmResponse) ProtoMessage() {}
2454func (*GetOmciEthernetFrameExtendedPmResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04002455 return fileDescriptor_7ecf6e9799a9202d, []int{21}
khenaidoo106c61a2021-08-11 18:05:46 -04002456}
2457
2458func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Unmarshal(b []byte) error {
2459 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Unmarshal(m, b)
2460}
2461func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2462 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Marshal(b, m, deterministic)
2463}
2464func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Merge(src proto.Message) {
2465 xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Merge(m, src)
2466}
2467func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Size() int {
2468 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Size(m)
2469}
2470func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_DiscardUnknown() {
2471 xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.DiscardUnknown(m)
2472}
2473
2474var xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse proto.InternalMessageInfo
2475
2476func (m *GetOmciEthernetFrameExtendedPmResponse) GetUpstream() *OmciEthernetFrameExtendedPm {
2477 if m != nil {
2478 return m.Upstream
2479 }
2480 return nil
2481}
2482
2483func (m *GetOmciEthernetFrameExtendedPmResponse) GetDownstream() *OmciEthernetFrameExtendedPm {
2484 if m != nil {
2485 return m.Downstream
2486 }
2487 return nil
2488}
2489
khenaidoodc2116e2021-10-19 17:33:19 -04002490func (m *GetOmciEthernetFrameExtendedPmResponse) GetOmciEthernetFrameExtendedPmFormat() GetOmciEthernetFrameExtendedPmResponse_Format {
2491 if m != nil {
2492 return m.OmciEthernetFrameExtendedPmFormat
2493 }
2494 return GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT
2495}
2496
khenaidoo106c61a2021-08-11 18:05:46 -04002497type GetRxPowerResponse struct {
2498 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
2499 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
2500 Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
2501 FailReason string `protobuf:"bytes,4,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"`
2502 RxPower float64 `protobuf:"fixed64,5,opt,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
2503 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2504 XXX_unrecognized []byte `json:"-"`
2505 XXX_sizecache int32 `json:"-"`
2506}
2507
2508func (m *GetRxPowerResponse) Reset() { *m = GetRxPowerResponse{} }
2509func (m *GetRxPowerResponse) String() string { return proto.CompactTextString(m) }
2510func (*GetRxPowerResponse) ProtoMessage() {}
2511func (*GetRxPowerResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04002512 return fileDescriptor_7ecf6e9799a9202d, []int{22}
khenaidoo106c61a2021-08-11 18:05:46 -04002513}
2514
2515func (m *GetRxPowerResponse) XXX_Unmarshal(b []byte) error {
2516 return xxx_messageInfo_GetRxPowerResponse.Unmarshal(m, b)
2517}
2518func (m *GetRxPowerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2519 return xxx_messageInfo_GetRxPowerResponse.Marshal(b, m, deterministic)
2520}
2521func (m *GetRxPowerResponse) XXX_Merge(src proto.Message) {
2522 xxx_messageInfo_GetRxPowerResponse.Merge(m, src)
2523}
2524func (m *GetRxPowerResponse) XXX_Size() int {
2525 return xxx_messageInfo_GetRxPowerResponse.Size(m)
2526}
2527func (m *GetRxPowerResponse) XXX_DiscardUnknown() {
2528 xxx_messageInfo_GetRxPowerResponse.DiscardUnknown(m)
2529}
2530
2531var xxx_messageInfo_GetRxPowerResponse proto.InternalMessageInfo
2532
2533func (m *GetRxPowerResponse) GetIntfId() uint32 {
2534 if m != nil {
2535 return m.IntfId
2536 }
2537 return 0
2538}
2539
2540func (m *GetRxPowerResponse) GetOnuId() uint32 {
2541 if m != nil {
2542 return m.OnuId
2543 }
2544 return 0
2545}
2546
2547func (m *GetRxPowerResponse) GetStatus() string {
2548 if m != nil {
2549 return m.Status
2550 }
2551 return ""
2552}
2553
2554func (m *GetRxPowerResponse) GetFailReason() string {
2555 if m != nil {
2556 return m.FailReason
2557 }
2558 return ""
2559}
2560
2561func (m *GetRxPowerResponse) GetRxPower() float64 {
2562 if m != nil {
2563 return m.RxPower
2564 }
2565 return 0
2566}
2567
2568type GetValueRequest struct {
2569 // Types that are valid to be assigned to Request:
2570 // *GetValueRequest_Distance
2571 // *GetValueRequest_UniInfo
2572 // *GetValueRequest_OltPortInfo
2573 // *GetValueRequest_OnuOpticalInfo
2574 // *GetValueRequest_EthBridgePort
2575 // *GetValueRequest_FecHistory
2576 // *GetValueRequest_OnuPonInfo
2577 // *GetValueRequest_OnuInfo
2578 // *GetValueRequest_RxPower
2579 Request isGetValueRequest_Request `protobuf_oneof:"request"`
2580 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2581 XXX_unrecognized []byte `json:"-"`
2582 XXX_sizecache int32 `json:"-"`
2583}
2584
2585func (m *GetValueRequest) Reset() { *m = GetValueRequest{} }
2586func (m *GetValueRequest) String() string { return proto.CompactTextString(m) }
2587func (*GetValueRequest) ProtoMessage() {}
2588func (*GetValueRequest) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04002589 return fileDescriptor_7ecf6e9799a9202d, []int{23}
khenaidoo106c61a2021-08-11 18:05:46 -04002590}
2591
2592func (m *GetValueRequest) XXX_Unmarshal(b []byte) error {
2593 return xxx_messageInfo_GetValueRequest.Unmarshal(m, b)
2594}
2595func (m *GetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2596 return xxx_messageInfo_GetValueRequest.Marshal(b, m, deterministic)
2597}
2598func (m *GetValueRequest) XXX_Merge(src proto.Message) {
2599 xxx_messageInfo_GetValueRequest.Merge(m, src)
2600}
2601func (m *GetValueRequest) XXX_Size() int {
2602 return xxx_messageInfo_GetValueRequest.Size(m)
2603}
2604func (m *GetValueRequest) XXX_DiscardUnknown() {
2605 xxx_messageInfo_GetValueRequest.DiscardUnknown(m)
2606}
2607
2608var xxx_messageInfo_GetValueRequest proto.InternalMessageInfo
2609
2610type isGetValueRequest_Request interface {
2611 isGetValueRequest_Request()
2612}
2613
2614type GetValueRequest_Distance struct {
2615 Distance *GetDistanceRequest `protobuf:"bytes,1,opt,name=distance,proto3,oneof"`
2616}
2617
2618type GetValueRequest_UniInfo struct {
2619 UniInfo *GetOnuUniInfoRequest `protobuf:"bytes,2,opt,name=uniInfo,proto3,oneof"`
2620}
2621
2622type GetValueRequest_OltPortInfo struct {
2623 OltPortInfo *GetOltPortCounters `protobuf:"bytes,3,opt,name=oltPortInfo,proto3,oneof"`
2624}
2625
2626type GetValueRequest_OnuOpticalInfo struct {
2627 OnuOpticalInfo *GetOnuPonOpticalInfo `protobuf:"bytes,4,opt,name=onuOpticalInfo,proto3,oneof"`
2628}
2629
2630type GetValueRequest_EthBridgePort struct {
2631 EthBridgePort *GetOnuEthernetBridgePortHistory `protobuf:"bytes,5,opt,name=ethBridgePort,proto3,oneof"`
2632}
2633
2634type GetValueRequest_FecHistory struct {
2635 FecHistory *GetOnuFecHistory `protobuf:"bytes,6,opt,name=fecHistory,proto3,oneof"`
2636}
2637
2638type GetValueRequest_OnuPonInfo struct {
2639 OnuPonInfo *GetOnuCountersRequest `protobuf:"bytes,7,opt,name=onuPonInfo,proto3,oneof"`
2640}
2641
2642type GetValueRequest_OnuInfo struct {
2643 OnuInfo *GetOmciEthernetFrameExtendedPmRequest `protobuf:"bytes,8,opt,name=onuInfo,proto3,oneof"`
2644}
2645
2646type GetValueRequest_RxPower struct {
2647 RxPower *GetRxPowerRequest `protobuf:"bytes,9,opt,name=rxPower,proto3,oneof"`
2648}
2649
2650func (*GetValueRequest_Distance) isGetValueRequest_Request() {}
2651
2652func (*GetValueRequest_UniInfo) isGetValueRequest_Request() {}
2653
2654func (*GetValueRequest_OltPortInfo) isGetValueRequest_Request() {}
2655
2656func (*GetValueRequest_OnuOpticalInfo) isGetValueRequest_Request() {}
2657
2658func (*GetValueRequest_EthBridgePort) isGetValueRequest_Request() {}
2659
2660func (*GetValueRequest_FecHistory) isGetValueRequest_Request() {}
2661
2662func (*GetValueRequest_OnuPonInfo) isGetValueRequest_Request() {}
2663
2664func (*GetValueRequest_OnuInfo) isGetValueRequest_Request() {}
2665
2666func (*GetValueRequest_RxPower) isGetValueRequest_Request() {}
2667
2668func (m *GetValueRequest) GetRequest() isGetValueRequest_Request {
2669 if m != nil {
2670 return m.Request
2671 }
2672 return nil
2673}
2674
2675func (m *GetValueRequest) GetDistance() *GetDistanceRequest {
2676 if x, ok := m.GetRequest().(*GetValueRequest_Distance); ok {
2677 return x.Distance
2678 }
2679 return nil
2680}
2681
2682func (m *GetValueRequest) GetUniInfo() *GetOnuUniInfoRequest {
2683 if x, ok := m.GetRequest().(*GetValueRequest_UniInfo); ok {
2684 return x.UniInfo
2685 }
2686 return nil
2687}
2688
2689func (m *GetValueRequest) GetOltPortInfo() *GetOltPortCounters {
2690 if x, ok := m.GetRequest().(*GetValueRequest_OltPortInfo); ok {
2691 return x.OltPortInfo
2692 }
2693 return nil
2694}
2695
2696func (m *GetValueRequest) GetOnuOpticalInfo() *GetOnuPonOpticalInfo {
2697 if x, ok := m.GetRequest().(*GetValueRequest_OnuOpticalInfo); ok {
2698 return x.OnuOpticalInfo
2699 }
2700 return nil
2701}
2702
2703func (m *GetValueRequest) GetEthBridgePort() *GetOnuEthernetBridgePortHistory {
2704 if x, ok := m.GetRequest().(*GetValueRequest_EthBridgePort); ok {
2705 return x.EthBridgePort
2706 }
2707 return nil
2708}
2709
2710func (m *GetValueRequest) GetFecHistory() *GetOnuFecHistory {
2711 if x, ok := m.GetRequest().(*GetValueRequest_FecHistory); ok {
2712 return x.FecHistory
2713 }
2714 return nil
2715}
2716
2717func (m *GetValueRequest) GetOnuPonInfo() *GetOnuCountersRequest {
2718 if x, ok := m.GetRequest().(*GetValueRequest_OnuPonInfo); ok {
2719 return x.OnuPonInfo
2720 }
2721 return nil
2722}
2723
2724func (m *GetValueRequest) GetOnuInfo() *GetOmciEthernetFrameExtendedPmRequest {
2725 if x, ok := m.GetRequest().(*GetValueRequest_OnuInfo); ok {
2726 return x.OnuInfo
2727 }
2728 return nil
2729}
2730
2731func (m *GetValueRequest) GetRxPower() *GetRxPowerRequest {
2732 if x, ok := m.GetRequest().(*GetValueRequest_RxPower); ok {
2733 return x.RxPower
2734 }
2735 return nil
2736}
2737
2738// XXX_OneofWrappers is for the internal use of the proto package.
2739func (*GetValueRequest) XXX_OneofWrappers() []interface{} {
2740 return []interface{}{
2741 (*GetValueRequest_Distance)(nil),
2742 (*GetValueRequest_UniInfo)(nil),
2743 (*GetValueRequest_OltPortInfo)(nil),
2744 (*GetValueRequest_OnuOpticalInfo)(nil),
2745 (*GetValueRequest_EthBridgePort)(nil),
2746 (*GetValueRequest_FecHistory)(nil),
2747 (*GetValueRequest_OnuPonInfo)(nil),
2748 (*GetValueRequest_OnuInfo)(nil),
2749 (*GetValueRequest_RxPower)(nil),
2750 }
2751}
2752
2753type GetValueResponse struct {
2754 Status GetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.GetValueResponse_Status" json:"status,omitempty"`
2755 ErrReason GetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.GetValueResponse_ErrorReason" json:"errReason,omitempty"`
2756 // Types that are valid to be assigned to Response:
2757 // *GetValueResponse_Distance
2758 // *GetValueResponse_UniInfo
2759 // *GetValueResponse_PortCoutners
2760 // *GetValueResponse_OnuOpticalInfo
2761 // *GetValueResponse_EthBridgePortInfo
2762 // *GetValueResponse_FecHistory
2763 // *GetValueResponse_OnuPonCounters
2764 // *GetValueResponse_OnuCounters
2765 // *GetValueResponse_RxPower
2766 Response isGetValueResponse_Response `protobuf_oneof:"response"`
2767 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2768 XXX_unrecognized []byte `json:"-"`
2769 XXX_sizecache int32 `json:"-"`
2770}
2771
2772func (m *GetValueResponse) Reset() { *m = GetValueResponse{} }
2773func (m *GetValueResponse) String() string { return proto.CompactTextString(m) }
2774func (*GetValueResponse) ProtoMessage() {}
2775func (*GetValueResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04002776 return fileDescriptor_7ecf6e9799a9202d, []int{24}
khenaidoo106c61a2021-08-11 18:05:46 -04002777}
2778
2779func (m *GetValueResponse) XXX_Unmarshal(b []byte) error {
2780 return xxx_messageInfo_GetValueResponse.Unmarshal(m, b)
2781}
2782func (m *GetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2783 return xxx_messageInfo_GetValueResponse.Marshal(b, m, deterministic)
2784}
2785func (m *GetValueResponse) XXX_Merge(src proto.Message) {
2786 xxx_messageInfo_GetValueResponse.Merge(m, src)
2787}
2788func (m *GetValueResponse) XXX_Size() int {
2789 return xxx_messageInfo_GetValueResponse.Size(m)
2790}
2791func (m *GetValueResponse) XXX_DiscardUnknown() {
2792 xxx_messageInfo_GetValueResponse.DiscardUnknown(m)
2793}
2794
2795var xxx_messageInfo_GetValueResponse proto.InternalMessageInfo
2796
2797func (m *GetValueResponse) GetStatus() GetValueResponse_Status {
2798 if m != nil {
2799 return m.Status
2800 }
2801 return GetValueResponse_STATUS_UNDEFINED
2802}
2803
2804func (m *GetValueResponse) GetErrReason() GetValueResponse_ErrorReason {
2805 if m != nil {
2806 return m.ErrReason
2807 }
2808 return GetValueResponse_REASON_UNDEFINED
2809}
2810
2811type isGetValueResponse_Response interface {
2812 isGetValueResponse_Response()
2813}
2814
2815type GetValueResponse_Distance struct {
2816 Distance *GetDistanceResponse `protobuf:"bytes,3,opt,name=distance,proto3,oneof"`
2817}
2818
2819type GetValueResponse_UniInfo struct {
2820 UniInfo *GetOnuUniInfoResponse `protobuf:"bytes,4,opt,name=uniInfo,proto3,oneof"`
2821}
2822
2823type GetValueResponse_PortCoutners struct {
2824 PortCoutners *GetOltPortCountersResponse `protobuf:"bytes,5,opt,name=portCoutners,proto3,oneof"`
2825}
2826
2827type GetValueResponse_OnuOpticalInfo struct {
2828 OnuOpticalInfo *GetOnuPonOpticalInfoResponse `protobuf:"bytes,6,opt,name=onuOpticalInfo,proto3,oneof"`
2829}
2830
2831type GetValueResponse_EthBridgePortInfo struct {
2832 EthBridgePortInfo *GetOnuEthernetBridgePortHistoryResponse `protobuf:"bytes,7,opt,name=ethBridgePortInfo,proto3,oneof"`
2833}
2834
2835type GetValueResponse_FecHistory struct {
2836 FecHistory *GetOnuFecHistoryResponse `protobuf:"bytes,8,opt,name=fecHistory,proto3,oneof"`
2837}
2838
2839type GetValueResponse_OnuPonCounters struct {
2840 OnuPonCounters *GetOnuCountersResponse `protobuf:"bytes,9,opt,name=onuPonCounters,proto3,oneof"`
2841}
2842
2843type GetValueResponse_OnuCounters struct {
2844 OnuCounters *GetOmciEthernetFrameExtendedPmResponse `protobuf:"bytes,10,opt,name=onuCounters,proto3,oneof"`
2845}
2846
2847type GetValueResponse_RxPower struct {
2848 RxPower *GetRxPowerResponse `protobuf:"bytes,11,opt,name=rxPower,proto3,oneof"`
2849}
2850
2851func (*GetValueResponse_Distance) isGetValueResponse_Response() {}
2852
2853func (*GetValueResponse_UniInfo) isGetValueResponse_Response() {}
2854
2855func (*GetValueResponse_PortCoutners) isGetValueResponse_Response() {}
2856
2857func (*GetValueResponse_OnuOpticalInfo) isGetValueResponse_Response() {}
2858
2859func (*GetValueResponse_EthBridgePortInfo) isGetValueResponse_Response() {}
2860
2861func (*GetValueResponse_FecHistory) isGetValueResponse_Response() {}
2862
2863func (*GetValueResponse_OnuPonCounters) isGetValueResponse_Response() {}
2864
2865func (*GetValueResponse_OnuCounters) isGetValueResponse_Response() {}
2866
2867func (*GetValueResponse_RxPower) isGetValueResponse_Response() {}
2868
2869func (m *GetValueResponse) GetResponse() isGetValueResponse_Response {
2870 if m != nil {
2871 return m.Response
2872 }
2873 return nil
2874}
2875
2876func (m *GetValueResponse) GetDistance() *GetDistanceResponse {
2877 if x, ok := m.GetResponse().(*GetValueResponse_Distance); ok {
2878 return x.Distance
2879 }
2880 return nil
2881}
2882
2883func (m *GetValueResponse) GetUniInfo() *GetOnuUniInfoResponse {
2884 if x, ok := m.GetResponse().(*GetValueResponse_UniInfo); ok {
2885 return x.UniInfo
2886 }
2887 return nil
2888}
2889
2890func (m *GetValueResponse) GetPortCoutners() *GetOltPortCountersResponse {
2891 if x, ok := m.GetResponse().(*GetValueResponse_PortCoutners); ok {
2892 return x.PortCoutners
2893 }
2894 return nil
2895}
2896
2897func (m *GetValueResponse) GetOnuOpticalInfo() *GetOnuPonOpticalInfoResponse {
2898 if x, ok := m.GetResponse().(*GetValueResponse_OnuOpticalInfo); ok {
2899 return x.OnuOpticalInfo
2900 }
2901 return nil
2902}
2903
2904func (m *GetValueResponse) GetEthBridgePortInfo() *GetOnuEthernetBridgePortHistoryResponse {
2905 if x, ok := m.GetResponse().(*GetValueResponse_EthBridgePortInfo); ok {
2906 return x.EthBridgePortInfo
2907 }
2908 return nil
2909}
2910
2911func (m *GetValueResponse) GetFecHistory() *GetOnuFecHistoryResponse {
2912 if x, ok := m.GetResponse().(*GetValueResponse_FecHistory); ok {
2913 return x.FecHistory
2914 }
2915 return nil
2916}
2917
2918func (m *GetValueResponse) GetOnuPonCounters() *GetOnuCountersResponse {
2919 if x, ok := m.GetResponse().(*GetValueResponse_OnuPonCounters); ok {
2920 return x.OnuPonCounters
2921 }
2922 return nil
2923}
2924
2925func (m *GetValueResponse) GetOnuCounters() *GetOmciEthernetFrameExtendedPmResponse {
2926 if x, ok := m.GetResponse().(*GetValueResponse_OnuCounters); ok {
2927 return x.OnuCounters
2928 }
2929 return nil
2930}
2931
2932func (m *GetValueResponse) GetRxPower() *GetRxPowerResponse {
2933 if x, ok := m.GetResponse().(*GetValueResponse_RxPower); ok {
2934 return x.RxPower
2935 }
2936 return nil
2937}
2938
2939// XXX_OneofWrappers is for the internal use of the proto package.
2940func (*GetValueResponse) XXX_OneofWrappers() []interface{} {
2941 return []interface{}{
2942 (*GetValueResponse_Distance)(nil),
2943 (*GetValueResponse_UniInfo)(nil),
2944 (*GetValueResponse_PortCoutners)(nil),
2945 (*GetValueResponse_OnuOpticalInfo)(nil),
2946 (*GetValueResponse_EthBridgePortInfo)(nil),
2947 (*GetValueResponse_FecHistory)(nil),
2948 (*GetValueResponse_OnuPonCounters)(nil),
2949 (*GetValueResponse_OnuCounters)(nil),
2950 (*GetValueResponse_RxPower)(nil),
2951 }
2952}
2953
2954type SetValueRequest struct {
2955 // Types that are valid to be assigned to Request:
2956 // *SetValueRequest_AlarmConfig
2957 Request isSetValueRequest_Request `protobuf_oneof:"request"`
2958 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2959 XXX_unrecognized []byte `json:"-"`
2960 XXX_sizecache int32 `json:"-"`
2961}
2962
2963func (m *SetValueRequest) Reset() { *m = SetValueRequest{} }
2964func (m *SetValueRequest) String() string { return proto.CompactTextString(m) }
2965func (*SetValueRequest) ProtoMessage() {}
2966func (*SetValueRequest) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04002967 return fileDescriptor_7ecf6e9799a9202d, []int{25}
khenaidoo106c61a2021-08-11 18:05:46 -04002968}
2969
2970func (m *SetValueRequest) XXX_Unmarshal(b []byte) error {
2971 return xxx_messageInfo_SetValueRequest.Unmarshal(m, b)
2972}
2973func (m *SetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2974 return xxx_messageInfo_SetValueRequest.Marshal(b, m, deterministic)
2975}
2976func (m *SetValueRequest) XXX_Merge(src proto.Message) {
2977 xxx_messageInfo_SetValueRequest.Merge(m, src)
2978}
2979func (m *SetValueRequest) XXX_Size() int {
2980 return xxx_messageInfo_SetValueRequest.Size(m)
2981}
2982func (m *SetValueRequest) XXX_DiscardUnknown() {
2983 xxx_messageInfo_SetValueRequest.DiscardUnknown(m)
2984}
2985
2986var xxx_messageInfo_SetValueRequest proto.InternalMessageInfo
2987
2988type isSetValueRequest_Request interface {
2989 isSetValueRequest_Request()
2990}
2991
2992type SetValueRequest_AlarmConfig struct {
2993 AlarmConfig *config.AlarmConfig `protobuf:"bytes,1,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
2994}
2995
2996func (*SetValueRequest_AlarmConfig) isSetValueRequest_Request() {}
2997
2998func (m *SetValueRequest) GetRequest() isSetValueRequest_Request {
2999 if m != nil {
3000 return m.Request
3001 }
3002 return nil
3003}
3004
3005func (m *SetValueRequest) GetAlarmConfig() *config.AlarmConfig {
3006 if x, ok := m.GetRequest().(*SetValueRequest_AlarmConfig); ok {
3007 return x.AlarmConfig
3008 }
3009 return nil
3010}
3011
3012// XXX_OneofWrappers is for the internal use of the proto package.
3013func (*SetValueRequest) XXX_OneofWrappers() []interface{} {
3014 return []interface{}{
3015 (*SetValueRequest_AlarmConfig)(nil),
3016 }
3017}
3018
3019type SetValueResponse struct {
3020 Status SetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.SetValueResponse_Status" json:"status,omitempty"`
3021 ErrReason SetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.SetValueResponse_ErrorReason" json:"errReason,omitempty"`
3022 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3023 XXX_unrecognized []byte `json:"-"`
3024 XXX_sizecache int32 `json:"-"`
3025}
3026
3027func (m *SetValueResponse) Reset() { *m = SetValueResponse{} }
3028func (m *SetValueResponse) String() string { return proto.CompactTextString(m) }
3029func (*SetValueResponse) ProtoMessage() {}
3030func (*SetValueResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04003031 return fileDescriptor_7ecf6e9799a9202d, []int{26}
khenaidoo106c61a2021-08-11 18:05:46 -04003032}
3033
3034func (m *SetValueResponse) XXX_Unmarshal(b []byte) error {
3035 return xxx_messageInfo_SetValueResponse.Unmarshal(m, b)
3036}
3037func (m *SetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3038 return xxx_messageInfo_SetValueResponse.Marshal(b, m, deterministic)
3039}
3040func (m *SetValueResponse) XXX_Merge(src proto.Message) {
3041 xxx_messageInfo_SetValueResponse.Merge(m, src)
3042}
3043func (m *SetValueResponse) XXX_Size() int {
3044 return xxx_messageInfo_SetValueResponse.Size(m)
3045}
3046func (m *SetValueResponse) XXX_DiscardUnknown() {
3047 xxx_messageInfo_SetValueResponse.DiscardUnknown(m)
3048}
3049
3050var xxx_messageInfo_SetValueResponse proto.InternalMessageInfo
3051
3052func (m *SetValueResponse) GetStatus() SetValueResponse_Status {
3053 if m != nil {
3054 return m.Status
3055 }
3056 return SetValueResponse_STATUS_UNDEFINED
3057}
3058
3059func (m *SetValueResponse) GetErrReason() SetValueResponse_ErrorReason {
3060 if m != nil {
3061 return m.ErrReason
3062 }
3063 return SetValueResponse_REASON_UNDEFINED
3064}
3065
3066type SingleGetValueRequest struct {
3067 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
3068 Request *GetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
3069 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3070 XXX_unrecognized []byte `json:"-"`
3071 XXX_sizecache int32 `json:"-"`
3072}
3073
3074func (m *SingleGetValueRequest) Reset() { *m = SingleGetValueRequest{} }
3075func (m *SingleGetValueRequest) String() string { return proto.CompactTextString(m) }
3076func (*SingleGetValueRequest) ProtoMessage() {}
3077func (*SingleGetValueRequest) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04003078 return fileDescriptor_7ecf6e9799a9202d, []int{27}
khenaidoo106c61a2021-08-11 18:05:46 -04003079}
3080
3081func (m *SingleGetValueRequest) XXX_Unmarshal(b []byte) error {
3082 return xxx_messageInfo_SingleGetValueRequest.Unmarshal(m, b)
3083}
3084func (m *SingleGetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3085 return xxx_messageInfo_SingleGetValueRequest.Marshal(b, m, deterministic)
3086}
3087func (m *SingleGetValueRequest) XXX_Merge(src proto.Message) {
3088 xxx_messageInfo_SingleGetValueRequest.Merge(m, src)
3089}
3090func (m *SingleGetValueRequest) XXX_Size() int {
3091 return xxx_messageInfo_SingleGetValueRequest.Size(m)
3092}
3093func (m *SingleGetValueRequest) XXX_DiscardUnknown() {
3094 xxx_messageInfo_SingleGetValueRequest.DiscardUnknown(m)
3095}
3096
3097var xxx_messageInfo_SingleGetValueRequest proto.InternalMessageInfo
3098
3099func (m *SingleGetValueRequest) GetTargetId() string {
3100 if m != nil {
3101 return m.TargetId
3102 }
3103 return ""
3104}
3105
3106func (m *SingleGetValueRequest) GetRequest() *GetValueRequest {
3107 if m != nil {
3108 return m.Request
3109 }
3110 return nil
3111}
3112
3113type SingleGetValueResponse struct {
3114 Response *GetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
3115 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3116 XXX_unrecognized []byte `json:"-"`
3117 XXX_sizecache int32 `json:"-"`
3118}
3119
3120func (m *SingleGetValueResponse) Reset() { *m = SingleGetValueResponse{} }
3121func (m *SingleGetValueResponse) String() string { return proto.CompactTextString(m) }
3122func (*SingleGetValueResponse) ProtoMessage() {}
3123func (*SingleGetValueResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04003124 return fileDescriptor_7ecf6e9799a9202d, []int{28}
khenaidoo106c61a2021-08-11 18:05:46 -04003125}
3126
3127func (m *SingleGetValueResponse) XXX_Unmarshal(b []byte) error {
3128 return xxx_messageInfo_SingleGetValueResponse.Unmarshal(m, b)
3129}
3130func (m *SingleGetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3131 return xxx_messageInfo_SingleGetValueResponse.Marshal(b, m, deterministic)
3132}
3133func (m *SingleGetValueResponse) XXX_Merge(src proto.Message) {
3134 xxx_messageInfo_SingleGetValueResponse.Merge(m, src)
3135}
3136func (m *SingleGetValueResponse) XXX_Size() int {
3137 return xxx_messageInfo_SingleGetValueResponse.Size(m)
3138}
3139func (m *SingleGetValueResponse) XXX_DiscardUnknown() {
3140 xxx_messageInfo_SingleGetValueResponse.DiscardUnknown(m)
3141}
3142
3143var xxx_messageInfo_SingleGetValueResponse proto.InternalMessageInfo
3144
3145func (m *SingleGetValueResponse) GetResponse() *GetValueResponse {
3146 if m != nil {
3147 return m.Response
3148 }
3149 return nil
3150}
3151
3152type SingleSetValueRequest struct {
3153 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
3154 Request *SetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
3155 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3156 XXX_unrecognized []byte `json:"-"`
3157 XXX_sizecache int32 `json:"-"`
3158}
3159
3160func (m *SingleSetValueRequest) Reset() { *m = SingleSetValueRequest{} }
3161func (m *SingleSetValueRequest) String() string { return proto.CompactTextString(m) }
3162func (*SingleSetValueRequest) ProtoMessage() {}
3163func (*SingleSetValueRequest) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04003164 return fileDescriptor_7ecf6e9799a9202d, []int{29}
khenaidoo106c61a2021-08-11 18:05:46 -04003165}
3166
3167func (m *SingleSetValueRequest) XXX_Unmarshal(b []byte) error {
3168 return xxx_messageInfo_SingleSetValueRequest.Unmarshal(m, b)
3169}
3170func (m *SingleSetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3171 return xxx_messageInfo_SingleSetValueRequest.Marshal(b, m, deterministic)
3172}
3173func (m *SingleSetValueRequest) XXX_Merge(src proto.Message) {
3174 xxx_messageInfo_SingleSetValueRequest.Merge(m, src)
3175}
3176func (m *SingleSetValueRequest) XXX_Size() int {
3177 return xxx_messageInfo_SingleSetValueRequest.Size(m)
3178}
3179func (m *SingleSetValueRequest) XXX_DiscardUnknown() {
3180 xxx_messageInfo_SingleSetValueRequest.DiscardUnknown(m)
3181}
3182
3183var xxx_messageInfo_SingleSetValueRequest proto.InternalMessageInfo
3184
3185func (m *SingleSetValueRequest) GetTargetId() string {
3186 if m != nil {
3187 return m.TargetId
3188 }
3189 return ""
3190}
3191
3192func (m *SingleSetValueRequest) GetRequest() *SetValueRequest {
3193 if m != nil {
3194 return m.Request
3195 }
3196 return nil
3197}
3198
3199type SingleSetValueResponse struct {
3200 Response *SetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
3201 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3202 XXX_unrecognized []byte `json:"-"`
3203 XXX_sizecache int32 `json:"-"`
3204}
3205
3206func (m *SingleSetValueResponse) Reset() { *m = SingleSetValueResponse{} }
3207func (m *SingleSetValueResponse) String() string { return proto.CompactTextString(m) }
3208func (*SingleSetValueResponse) ProtoMessage() {}
3209func (*SingleSetValueResponse) Descriptor() ([]byte, []int) {
khenaidoodc2116e2021-10-19 17:33:19 -04003210 return fileDescriptor_7ecf6e9799a9202d, []int{30}
khenaidoo106c61a2021-08-11 18:05:46 -04003211}
3212
3213func (m *SingleSetValueResponse) XXX_Unmarshal(b []byte) error {
3214 return xxx_messageInfo_SingleSetValueResponse.Unmarshal(m, b)
3215}
3216func (m *SingleSetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3217 return xxx_messageInfo_SingleSetValueResponse.Marshal(b, m, deterministic)
3218}
3219func (m *SingleSetValueResponse) XXX_Merge(src proto.Message) {
3220 xxx_messageInfo_SingleSetValueResponse.Merge(m, src)
3221}
3222func (m *SingleSetValueResponse) XXX_Size() int {
3223 return xxx_messageInfo_SingleSetValueResponse.Size(m)
3224}
3225func (m *SingleSetValueResponse) XXX_DiscardUnknown() {
3226 xxx_messageInfo_SingleSetValueResponse.DiscardUnknown(m)
3227}
3228
3229var xxx_messageInfo_SingleSetValueResponse proto.InternalMessageInfo
3230
3231func (m *SingleSetValueResponse) GetResponse() *SetValueResponse {
3232 if m != nil {
3233 return m.Response
3234 }
3235 return nil
3236}
3237
3238func init() {
khenaidoodc2116e2021-10-19 17:33:19 -04003239 proto.RegisterEnum("extension.ValueType_Type", ValueType_Type_name, ValueType_Type_value)
khenaidoo106c61a2021-08-11 18:05:46 -04003240 proto.RegisterEnum("extension.GetOnuUniInfoResponse_ConfigurationInd", GetOnuUniInfoResponse_ConfigurationInd_name, GetOnuUniInfoResponse_ConfigurationInd_value)
3241 proto.RegisterEnum("extension.GetOnuUniInfoResponse_AdministrativeState", GetOnuUniInfoResponse_AdministrativeState_name, GetOnuUniInfoResponse_AdministrativeState_value)
3242 proto.RegisterEnum("extension.GetOnuUniInfoResponse_OperationalState", GetOnuUniInfoResponse_OperationalState_name, GetOnuUniInfoResponse_OperationalState_value)
3243 proto.RegisterEnum("extension.GetOltPortCounters_PortType", GetOltPortCounters_PortType_name, GetOltPortCounters_PortType_value)
3244 proto.RegisterEnum("extension.GetOnuEthernetBridgePortHistory_Direction", GetOnuEthernetBridgePortHistory_Direction_name, GetOnuEthernetBridgePortHistory_Direction_value)
khenaidoodc2116e2021-10-19 17:33:19 -04003245 proto.RegisterEnum("extension.GetOmciEthernetFrameExtendedPmResponse_Format", GetOmciEthernetFrameExtendedPmResponse_Format_name, GetOmciEthernetFrameExtendedPmResponse_Format_value)
khenaidoo106c61a2021-08-11 18:05:46 -04003246 proto.RegisterEnum("extension.GetValueResponse_Status", GetValueResponse_Status_name, GetValueResponse_Status_value)
3247 proto.RegisterEnum("extension.GetValueResponse_ErrorReason", GetValueResponse_ErrorReason_name, GetValueResponse_ErrorReason_value)
3248 proto.RegisterEnum("extension.SetValueResponse_Status", SetValueResponse_Status_name, SetValueResponse_Status_value)
3249 proto.RegisterEnum("extension.SetValueResponse_ErrorReason", SetValueResponse_ErrorReason_name, SetValueResponse_ErrorReason_value)
khenaidoodc2116e2021-10-19 17:33:19 -04003250 proto.RegisterType((*ValueSet)(nil), "extension.ValueSet")
3251 proto.RegisterType((*ValueType)(nil), "extension.ValueType")
3252 proto.RegisterType((*ValueSpecifier)(nil), "extension.ValueSpecifier")
3253 proto.RegisterType((*ReturnValues)(nil), "extension.ReturnValues")
khenaidoo106c61a2021-08-11 18:05:46 -04003254 proto.RegisterType((*GetDistanceRequest)(nil), "extension.GetDistanceRequest")
3255 proto.RegisterType((*GetDistanceResponse)(nil), "extension.GetDistanceResponse")
3256 proto.RegisterType((*GetOnuUniInfoRequest)(nil), "extension.GetOnuUniInfoRequest")
3257 proto.RegisterType((*GetOnuUniInfoResponse)(nil), "extension.GetOnuUniInfoResponse")
3258 proto.RegisterType((*GetOltPortCounters)(nil), "extension.GetOltPortCounters")
3259 proto.RegisterType((*GetOltPortCountersResponse)(nil), "extension.GetOltPortCountersResponse")
3260 proto.RegisterType((*GetOnuPonOpticalInfo)(nil), "extension.GetOnuPonOpticalInfo")
3261 proto.RegisterType((*GetOnuPonOpticalInfoResponse)(nil), "extension.GetOnuPonOpticalInfoResponse")
3262 proto.RegisterType((*GetOnuEthernetBridgePortHistory)(nil), "extension.GetOnuEthernetBridgePortHistory")
3263 proto.RegisterType((*GetOnuEthernetBridgePortHistoryResponse)(nil), "extension.GetOnuEthernetBridgePortHistoryResponse")
3264 proto.RegisterType((*GetOnuFecHistory)(nil), "extension.GetOnuFecHistory")
3265 proto.RegisterType((*GetOnuFecHistoryResponse)(nil), "extension.GetOnuFecHistoryResponse")
3266 proto.RegisterType((*GetOnuCountersRequest)(nil), "extension.GetOnuCountersRequest")
3267 proto.RegisterType((*GetOmciEthernetFrameExtendedPmRequest)(nil), "extension.GetOmciEthernetFrameExtendedPmRequest")
3268 proto.RegisterType((*GetRxPowerRequest)(nil), "extension.GetRxPowerRequest")
3269 proto.RegisterType((*GetOnuCountersResponse)(nil), "extension.GetOnuCountersResponse")
3270 proto.RegisterType((*OmciEthernetFrameExtendedPm)(nil), "extension.OmciEthernetFrameExtendedPm")
3271 proto.RegisterType((*GetOmciEthernetFrameExtendedPmResponse)(nil), "extension.GetOmciEthernetFrameExtendedPmResponse")
3272 proto.RegisterType((*GetRxPowerResponse)(nil), "extension.GetRxPowerResponse")
3273 proto.RegisterType((*GetValueRequest)(nil), "extension.GetValueRequest")
3274 proto.RegisterType((*GetValueResponse)(nil), "extension.GetValueResponse")
3275 proto.RegisterType((*SetValueRequest)(nil), "extension.SetValueRequest")
3276 proto.RegisterType((*SetValueResponse)(nil), "extension.SetValueResponse")
3277 proto.RegisterType((*SingleGetValueRequest)(nil), "extension.SingleGetValueRequest")
3278 proto.RegisterType((*SingleGetValueResponse)(nil), "extension.SingleGetValueResponse")
3279 proto.RegisterType((*SingleSetValueRequest)(nil), "extension.SingleSetValueRequest")
3280 proto.RegisterType((*SingleSetValueResponse)(nil), "extension.SingleSetValueResponse")
3281}
3282
3283func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
3284
3285var fileDescriptor_7ecf6e9799a9202d = []byte{
khenaidoodc2116e2021-10-19 17:33:19 -04003286 // 3230 bytes of a gzipped FileDescriptorProto
3287 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x6f, 0x1b, 0xc9,
3288 0xb1, 0x17, 0x29, 0x89, 0x22, 0x8b, 0x22, 0x45, 0xb5, 0xbe, 0x28, 0xc9, 0x9f, 0xb3, 0x58, 0xdb,
3289 0x6f, 0xe1, 0xa5, 0x4d, 0xae, 0xe4, 0xd5, 0xf3, 0xee, 0x03, 0x56, 0x23, 0x8e, 0x44, 0xc2, 0x32,
3290 0x49, 0x37, 0x49, 0x7b, 0xfd, 0x80, 0x87, 0xc1, 0x88, 0xd3, 0x92, 0x07, 0x4b, 0xce, 0xf0, 0xcd,
3291 0x34, 0xb5, 0x72, 0xae, 0xc9, 0x2d, 0xc9, 0x29, 0x97, 0xfc, 0x0d, 0x01, 0x82, 0x1c, 0x72, 0xc8,
3292 0x3d, 0xe7, 0xfc, 0x13, 0x01, 0xf2, 0x17, 0x04, 0x39, 0x07, 0x41, 0x7f, 0xcc, 0x27, 0x29, 0xd9,
3293 0xde, 0xe4, 0x62, 0xb3, 0xab, 0x7e, 0xf5, 0xeb, 0x9e, 0xea, 0xaa, 0xea, 0x9a, 0x1e, 0xc1, 0x9d,
3294 0x4b, 0x67, 0x48, 0xdf, 0x19, 0xfa, 0xd8, 0x75, 0xa8, 0xe3, 0x3d, 0x21, 0x57, 0x94, 0xd8, 0x9e,
3295 0xe5, 0xd8, 0x5e, 0x85, 0x4b, 0x50, 0x2e, 0x90, 0xec, 0x4c, 0x43, 0xf5, 0x81, 0x63, 0x9f, 0x5b,
3296 0x17, 0x02, 0xba, 0xb3, 0x7b, 0xe1, 0x38, 0x17, 0x43, 0xf2, 0x84, 0x8f, 0xce, 0x26, 0xe7, 0x4f,
3297 0xc8, 0x68, 0x4c, 0xdf, 0x0b, 0xa5, 0xf2, 0x7f, 0x90, 0x7d, 0x6d, 0x0c, 0x27, 0xa4, 0x4b, 0x28,
3298 0x2a, 0x42, 0xda, 0x32, 0xcb, 0xa9, 0x7b, 0xa9, 0x47, 0x39, 0x9c, 0xb6, 0x4c, 0x74, 0x00, 0xcb,
3299 0xc6, 0xd0, 0x70, 0x47, 0x92, 0xae, 0x9c, 0xbe, 0x97, 0x7a, 0x94, 0xaf, 0xad, 0x55, 0x24, 0xfb,
3300 0x21, 0xd3, 0x1d, 0xf1, 0xdf, 0x8d, 0x39, 0x9c, 0x37, 0xc2, 0xa1, 0xba, 0x04, 0x8b, 0x97, 0x8c,
3301 0x55, 0x79, 0x0c, 0x39, 0x4e, 0xdf, 0x7b, 0x3f, 0x26, 0xca, 0x5d, 0x58, 0x60, 0xff, 0xa3, 0x1c,
3302 0x2c, 0x6a, 0x2f, 0x3b, 0xbd, 0xb7, 0xa5, 0x39, 0xb4, 0x0c, 0xd9, 0x7a, 0xb3, 0xdb, 0x3b, 0x6c,
3303 0x1d, 0x69, 0xa5, 0x94, 0xf2, 0x0a, 0x8a, 0x62, 0x31, 0x63, 0x32, 0xb0, 0xce, 0x2d, 0xe2, 0x4e,
3304 0x2d, 0xe9, 0x89, 0x24, 0xe6, 0x6b, 0x29, 0xd6, 0xb6, 0x2b, 0x81, 0x1b, 0x2a, 0xc1, 0x3c, 0x15,
3305 0xf6, 0x0f, 0x96, 0x0b, 0xa0, 0xb0, 0x8c, 0x09, 0x9d, 0xb8, 0x36, 0x57, 0x7b, 0xa8, 0x04, 0xf3,
3306 0x5d, 0x42, 0x39, 0x63, 0x01, 0xb3, 0x9f, 0xe8, 0x1e, 0xe4, 0xfb, 0xb6, 0x37, 0x19, 0x8f, 0x1d,
3307 0x97, 0x12, 0x93, 0x13, 0x17, 0x70, 0x54, 0x84, 0xd6, 0x61, 0x51, 0x73, 0x5d, 0xc7, 0x2d, 0xcf,
3308 0x73, 0x9d, 0x18, 0xa0, 0x1d, 0xc8, 0xd6, 0x2d, 0x8f, 0x1a, 0xf6, 0x80, 0x94, 0x17, 0xb8, 0x22,
3309 0x18, 0x2b, 0xcf, 0x00, 0x9d, 0x10, 0xea, 0x0f, 0x31, 0xf9, 0xff, 0x09, 0xf1, 0xf8, 0x4c, 0x8e,
3310 0x3d, 0xa9, 0x93, 0x4b, 0x6b, 0x40, 0x9a, 0xfe, 0x53, 0x45, 0x45, 0x4a, 0x15, 0xd6, 0x62, 0x76,
3311 0xde, 0xd8, 0xb1, 0x3d, 0xc2, 0xa6, 0x32, 0xfd, 0xa9, 0xc4, 0xca, 0x83, 0xb1, 0x52, 0x83, 0xf5,
3312 0x13, 0x42, 0xdb, 0xf6, 0xa4, 0x6f, 0x5b, 0x4d, 0xfb, 0xdc, 0xf1, 0x27, 0xdb, 0x81, 0xec, 0x84,
3313 0x49, 0x4c, 0x72, 0xe5, 0xdb, 0xf8, 0x63, 0xe5, 0xaf, 0x0b, 0xb0, 0x91, 0x30, 0x92, 0x33, 0x75,
3314 0x20, 0x6b, 0x98, 0xa3, 0x2e, 0x35, 0xa8, 0x98, 0xa9, 0x58, 0xdb, 0x8b, 0xb8, 0x78, 0xa6, 0x4d,
3315 0xe5, 0xd0, 0x1c, 0x59, 0xb6, 0xe5, 0x51, 0xd7, 0xa0, 0xd6, 0x25, 0xe1, 0xb6, 0x38, 0x60, 0x41,
3316 0x6d, 0xc8, 0x39, 0x63, 0xe2, 0x0a, 0x4a, 0xb1, 0x6b, 0xd5, 0x0f, 0x52, 0xb6, 0xc7, 0x84, 0xb1,
3317 0x39, 0xb6, 0x31, 0x14, 0x7c, 0x21, 0x07, 0x23, 0x14, 0x01, 0xd8, 0xb4, 0x4d, 0xbe, 0x23, 0x1f,
3318 0x43, 0x28, 0xe2, 0x72, 0x22, 0x48, 0x9b, 0xb6, 0x89, 0x43, 0x0e, 0xe5, 0xcf, 0x29, 0x28, 0x25,
3319 0xf5, 0x08, 0x20, 0xd3, 0x6f, 0xbd, 0x68, 0xbf, 0x69, 0x95, 0xe6, 0x10, 0x82, 0x62, 0x4f, 0x6b,
3320 0xe9, 0xea, 0x61, 0x57, 0xd3, 0x7b, 0xfa, 0x71, 0xfd, 0xfb, 0x52, 0x0a, 0x6d, 0x02, 0x6a, 0xf4,
3321 0x5b, 0x75, 0xac, 0xd5, 0xa3, 0xf2, 0x34, 0x2a, 0xc3, 0xfa, 0x49, 0xf3, 0xe4, 0x50, 0x6d, 0xf6,
3322 0x74, 0xad, 0xd7, 0xd0, 0x70, 0x4b, 0x13, 0x9a, 0x79, 0x66, 0xc1, 0x58, 0x4e, 0xe2, 0xf2, 0x85,
3323 0x04, 0x7b, 0xa3, 0xfe, 0x7d, 0x69, 0x71, 0x06, 0x3b, 0x93, 0x67, 0x66, 0xb2, 0x33, 0xcd, 0x92,
3324 0x72, 0x02, 0x6b, 0x33, 0xf6, 0x81, 0x11, 0x1d, 0xd6, 0x5f, 0x76, 0x7b, 0x87, 0x3d, 0x4d, 0xef,
3325 0xb7, 0xea, 0xda, 0x71, 0xb3, 0xa5, 0xd5, 0x4b, 0x73, 0xec, 0xf1, 0x4e, 0xdb, 0x47, 0x2f, 0xb4,
3326 0x7a, 0x29, 0xc5, 0x72, 0xb0, 0xdf, 0x92, 0xa3, 0xb4, 0x72, 0x0c, 0xa5, 0xa4, 0xf7, 0xd1, 0x16,
3327 0xac, 0xb5, 0x3b, 0x1a, 0x9e, 0xa6, 0xc9, 0xc3, 0x92, 0xd6, 0x3a, 0x54, 0x4f, 0x7d, 0x9e, 0x7a,
3328 0xb3, 0x2b, 0x46, 0x69, 0xe5, 0x4f, 0x29, 0x9e, 0x03, 0xed, 0x21, 0xed, 0x38, 0x2e, 0x3d, 0x72,
3329 0x26, 0x36, 0x25, 0xae, 0x87, 0x36, 0x21, 0xc3, 0xb2, 0xaa, 0xe5, 0xc8, 0xa0, 0x94, 0x23, 0xa4,
3330 0x42, 0x96, 0xfd, 0x62, 0xa9, 0x2b, 0xa3, 0xe4, 0x41, 0x62, 0x53, 0xe3, 0x44, 0x95, 0x8e, 0x44,
3331 0xe3, 0xc0, 0x4e, 0xd1, 0x20, 0xeb, 0x4b, 0x51, 0x09, 0x96, 0xd9, 0x6f, 0xbd, 0xdf, 0x7a, 0xd1,
3332 0x12, 0xbb, 0xb8, 0x01, 0xab, 0x5c, 0x12, 0x38, 0xae, 0xd5, 0x6a, 0x96, 0x52, 0x01, 0xb0, 0xd3,
3333 0x6e, 0xe9, 0xed, 0xd3, 0x5e, 0x29, 0xad, 0xfc, 0x65, 0x1e, 0x76, 0xa6, 0x27, 0x0c, 0x52, 0xa4,
3334 0x0c, 0x4b, 0xf4, 0x4a, 0x7d, 0x4f, 0x89, 0xc7, 0x1f, 0x61, 0x01, 0xfb, 0x43, 0xa6, 0x71, 0xa5,
3335 0x26, 0x2d, 0x34, 0x72, 0x88, 0x6e, 0x41, 0x8e, 0x5e, 0x75, 0x8c, 0xc1, 0x0f, 0x84, 0x7a, 0x3c,
3336 0x66, 0x17, 0x70, 0x28, 0x60, 0x5a, 0x37, 0xd0, 0x2e, 0x08, 0x6d, 0x20, 0x40, 0x0f, 0xa0, 0x48,
3337 0xaf, 0x78, 0xc9, 0xf1, 0x21, 0x8b, 0x1c, 0x92, 0x90, 0x32, 0x9c, 0x1b, 0xc7, 0x65, 0x04, 0xce,
3338 0x9d, 0xc2, 0xd1, 0x2b, 0x75, 0x60, 0x78, 0xd4, 0xc7, 0x2d, 0xf9, 0x7c, 0x51, 0xa9, 0xe0, 0x8b,
3339 0xe1, 0xb2, 0x3e, 0x5f, 0x12, 0x47, 0xaf, 0xfa, 0x51, 0x5c, 0xce, 0xe7, 0xeb, 0x4f, 0xf1, 0xc5,
3340 0x70, 0xe0, 0xf3, 0xf5, 0xa7, 0xf8, 0x5e, 0x46, 0x71, 0x79, 0x9f, 0xef, 0xe5, 0x14, 0x5f, 0x0c,
3341 0xb7, 0xec, 0xf3, 0x45, 0xa5, 0x4a, 0xdd, 0x2f, 0x90, 0x1d, 0xc7, 0x6e, 0x8f, 0xa9, 0x35, 0x30,
3342 0x86, 0xac, 0x34, 0xa0, 0xc7, 0xb0, 0xc8, 0x0f, 0x42, 0xbe, 0x8b, 0xf9, 0xda, 0x66, 0x45, 0x1c,
3343 0x93, 0x15, 0xff, 0x98, 0xac, 0x68, 0x4c, 0x8b, 0x05, 0x48, 0xf9, 0x45, 0x1a, 0x6e, 0xcd, 0xa2,
3344 0x09, 0xc2, 0xe2, 0x0b, 0x28, 0x8d, 0x9d, 0x1f, 0x89, 0x7b, 0x4c, 0x88, 0xf9, 0xda, 0x19, 0x52,
3345 0xe3, 0x42, 0x54, 0xd0, 0x34, 0x9e, 0x92, 0xa3, 0x1a, 0xac, 0xbb, 0x64, 0x40, 0xac, 0x4b, 0x62,
3346 0x4a, 0xaa, 0x0e, 0x83, 0xf0, 0xa8, 0x49, 0xe3, 0x99, 0x3a, 0xf4, 0x0c, 0x36, 0x47, 0xc4, 0xf0,
3347 0xa7, 0x3e, 0x35, 0x26, 0xf6, 0xe0, 0x9d, 0xb0, 0x9a, 0xe7, 0x56, 0xd7, 0x68, 0xd9, 0xba, 0x86,
3348 0x86, 0x47, 0x5c, 0xd5, 0x32, 0xbc, 0xa3, 0x89, 0xeb, 0x12, 0x9b, 0xf2, 0x18, 0x4b, 0xe3, 0x29,
3349 0x39, 0x3b, 0xa0, 0x28, 0x19, 0xf1, 0xec, 0x9f, 0xb8, 0x84, 0xc7, 0x59, 0x1a, 0x47, 0x45, 0xca,
3350 0x1f, 0x52, 0x70, 0x57, 0xb8, 0x41, 0xa3, 0xef, 0x88, 0x6b, 0x13, 0xaa, 0xba, 0x96, 0x79, 0x41,
3351 0x58, 0xa6, 0x34, 0x2c, 0x8f, 0x3a, 0xee, 0x7b, 0x84, 0x21, 0x67, 0x5a, 0x2e, 0x19, 0xb0, 0x0a,
3352 0x72, 0xed, 0x21, 0x72, 0xad, 0x79, 0xa5, 0xee, 0xdb, 0xe2, 0x90, 0x46, 0x39, 0x80, 0x5c, 0x20,
3353 0x47, 0x05, 0xc8, 0x45, 0x8b, 0x10, 0xab, 0x5f, 0x9d, 0x6e, 0x0f, 0x6b, 0x87, 0x2f, 0x4b, 0x29,
3354 0x54, 0x04, 0xa8, 0xb7, 0xdf, 0xb4, 0xe4, 0x38, 0xad, 0xfc, 0x66, 0x11, 0x1e, 0x7e, 0x60, 0xca,
3355 0x60, 0x0f, 0xef, 0x00, 0x98, 0xae, 0x33, 0xd6, 0x2e, 0x89, 0x4d, 0x3d, 0x59, 0xa0, 0x22, 0x12,
3356 0x56, 0xbc, 0x9c, 0x01, 0x65, 0xa1, 0x26, 0xba, 0x04, 0x39, 0x62, 0x89, 0x3f, 0x8e, 0x24, 0x77,
3357 0x01, 0xfb, 0x43, 0xe6, 0xfd, 0x33, 0xd7, 0x31, 0xcc, 0x68, 0x98, 0x8a, 0x66, 0x61, 0x4a, 0xce,
3358 0xb0, 0xa3, 0xc9, 0x90, 0x6d, 0x60, 0x88, 0x5d, 0x14, 0xd8, 0xa4, 0x1c, 0x3d, 0x86, 0xd5, 0x81,
3359 0x3b, 0xe0, 0x79, 0x4d, 0xcc, 0x68, 0xbe, 0x17, 0xf0, 0xb4, 0x82, 0x31, 0x4f, 0x6c, 0x93, 0xb8,
3360 0x9e, 0xf5, 0x33, 0x12, 0x4d, 0xfa, 0x02, 0x9e, 0x92, 0xa3, 0x47, 0xb0, 0xe2, 0x5c, 0xc6, 0xa1,
3361 0x59, 0x0e, 0x4d, 0x8a, 0x19, 0x52, 0x3e, 0xe6, 0xb3, 0x3d, 0xe9, 0x96, 0x9c, 0x40, 0x26, 0xc4,
3362 0x2c, 0xde, 0x7d, 0xd1, 0x7e, 0xcf, 0xa9, 0xd6, 0xbe, 0x96, 0x70, 0xe0, 0xf0, 0x99, 0x3a, 0xb4,
3363 0x07, 0x1b, 0x52, 0x5e, 0xad, 0x1d, 0xf4, 0x9c, 0xda, 0xfe, 0x7e, 0x5b, 0x18, 0xe5, 0xb9, 0xd1,
3364 0x6c, 0x65, 0xc4, 0xaa, 0xb6, 0xff, 0xac, 0xe7, 0xec, 0x57, 0xab, 0x72, 0xaa, 0xe5, 0x98, 0x55,
3365 0x5c, 0xc9, 0x72, 0x4b, 0x2a, 0xf6, 0xab, 0xb5, 0x9e, 0x53, 0x7d, 0x5a, 0xfb, 0x4a, 0x9a, 0x15,
3366 0xb8, 0xd9, 0x35, 0x5a, 0x74, 0x00, 0x5b, 0xfe, 0x32, 0x9e, 0xd6, 0xf6, 0x7a, 0x4e, 0x75, 0xbf,
3367 0x7a, 0x20, 0x0d, 0x8b, 0xdc, 0xf0, 0x3a, 0xb5, 0xf2, 0x1d, 0x94, 0x44, 0x50, 0x1e, 0x93, 0x81,
3368 0x9f, 0x37, 0x9f, 0x56, 0x90, 0xfe, 0x9e, 0x82, 0x72, 0x92, 0x22, 0x08, 0xe4, 0x07, 0x50, 0x1c,
3369 0x38, 0x2e, 0xcb, 0x17, 0x62, 0x86, 0x47, 0x55, 0x01, 0x27, 0xa4, 0xa8, 0x02, 0x28, 0x90, 0x1c,
3370 0x39, 0x26, 0x79, 0xe3, 0xb8, 0xa6, 0x1f, 0xdc, 0x33, 0x34, 0x2c, 0x41, 0xce, 0xc9, 0xa0, 0x4b,
3371 0x06, 0x8e, 0x6d, 0xfa, 0xb1, 0x1e, 0x91, 0xf0, 0xda, 0xed, 0x50, 0x63, 0x18, 0x72, 0x89, 0x60,
3372 0x4f, 0x48, 0x99, 0xc3, 0x27, 0xb6, 0xe4, 0x37, 0xce, 0x86, 0x24, 0xc4, 0x8b, 0x80, 0xbf, 0x46,
3373 0xab, 0x9c, 0xf8, 0x7d, 0x6b, 0x78, 0x2a, 0x8b, 0x6e, 0x77, 0x0b, 0x96, 0x2c, 0x9b, 0x9e, 0xeb,
3374 0xf2, 0x65, 0x61, 0x09, 0x67, 0xd8, 0xb0, 0x69, 0xa2, 0x0d, 0xc8, 0x38, 0xf6, 0x84, 0xc9, 0xd3,
3375 0x5c, 0xbe, 0xe8, 0xd8, 0x93, 0xa6, 0xa9, 0xfc, 0x3a, 0x05, 0x9f, 0x33, 0xa6, 0xd1, 0xc0, 0xf2,
3376 0xcb, 0xc2, 0xb1, 0x6b, 0x8c, 0x88, 0xc6, 0xca, 0x94, 0x49, 0xcc, 0xce, 0xe8, 0xa3, 0x9b, 0x76,
3377 0x74, 0x2b, 0xd2, 0x69, 0x73, 0xd7, 0x35, 0xe6, 0xc2, 0x5e, 0x9b, 0xbd, 0x3c, 0xb8, 0xc4, 0x23,
3378 0x94, 0x7b, 0x2b, 0x8b, 0xc5, 0x40, 0x2d, 0xc2, 0xb2, 0xe5, 0xe9, 0x13, 0xdb, 0xd2, 0x2d, 0xde,
3379 0x91, 0x1f, 0xc1, 0xea, 0x09, 0xa1, 0xf8, 0x8a, 0xd7, 0xec, 0x9f, 0xfa, 0x50, 0x7f, 0x5b, 0x86,
3380 0xcd, 0xa4, 0x7b, 0x64, 0x40, 0x6c, 0x27, 0xa8, 0x1a, 0x73, 0x01, 0xd9, 0x56, 0x9c, 0xac, 0x91,
3381 0x92, 0x74, 0xe8, 0x21, 0x14, 0xc7, 0x8e, 0x67, 0xb1, 0x66, 0x52, 0x37, 0x5d, 0xeb, 0x5c, 0x3c,
3382 0x42, 0xa6, 0x91, 0xc6, 0x05, 0x5f, 0x5e, 0x67, 0x62, 0x06, 0xb4, 0xc9, 0x85, 0x11, 0x01, 0x2e,
3383 0x70, 0xe0, 0x3c, 0x2e, 0xf8, 0x72, 0x01, 0x7c, 0x0e, 0x65, 0x93, 0x0c, 0xad, 0x91, 0x45, 0x89,
3384 0xab, 0x8f, 0x2c, 0xcf, 0xd3, 0x4d, 0x42, 0xe5, 0x41, 0xb1, 0xc8, 0x4d, 0x16, 0xf0, 0x66, 0x80,
3385 0x78, 0x69, 0x79, 0x5e, 0xdd, 0xd7, 0xa3, 0xbb, 0x00, 0x67, 0xd6, 0x58, 0x27, 0xac, 0xb2, 0x89,
3386 0x52, 0x97, 0x69, 0x2c, 0xe2, 0xdc, 0x99, 0x35, 0xe6, 0xc5, 0xce, 0x43, 0xb7, 0x81, 0x0d, 0x98,
3387 0x4f, 0x65, 0x75, 0xcb, 0x34, 0x32, 0x38, 0x7b, 0x66, 0x8d, 0xfb, 0x4c, 0xc2, 0x2a, 0xc3, 0x39,
3388 0x19, 0xe8, 0x41, 0x50, 0xeb, 0xde, 0xfb, 0xd1, 0x99, 0x33, 0x14, 0xd5, 0x2d, 0xd3, 0x58, 0xc2,
3389 0x6b, 0xe7, 0x64, 0x70, 0xe4, 0x6b, 0xbb, 0x42, 0xc9, 0x32, 0x5c, 0x58, 0x99, 0xe4, 0x47, 0x16,
3390 0x81, 0xa1, 0x3d, 0xaf, 0x75, 0x99, 0x46, 0x16, 0x6f, 0x70, 0x3b, 0xa9, 0x0f, 0x08, 0xd0, 0x77,
3391 0xb0, 0x1b, 0xb7, 0x8c, 0x85, 0x34, 0x2f, 0x7d, 0x99, 0x46, 0x0e, 0x6f, 0x47, 0xad, 0xfb, 0x51,
3392 0x08, 0xfa, 0x1c, 0x0a, 0x31, 0x06, 0x5e, 0xf9, 0x32, 0x0d, 0xc0, 0xcb, 0x51, 0x1b, 0xf4, 0x14,
3393 0xd6, 0xe2, 0x0f, 0x26, 0x3c, 0xb0, 0xcc, 0xc1, 0x79, 0xbc, 0x1a, 0x7d, 0x2c, 0xe1, 0x8a, 0x47,
3394 0xb0, 0x72, 0x75, 0x41, 0x46, 0xfa, 0x0f, 0xe4, 0xbd, 0xef, 0xcf, 0x02, 0x47, 0x2f, 0xe3, 0x02,
3395 0x53, 0xbc, 0x20, 0xef, 0x43, 0x9f, 0x72, 0xe4, 0xd0, 0xf1, 0x44, 0x49, 0xcb, 0x34, 0x0a, 0x38,
3396 0xcb, 0x44, 0xa7, 0x8e, 0xc7, 0x89, 0xdc, 0x2b, 0x7d, 0x3c, 0x74, 0x8c, 0x91, 0x27, 0x98, 0xca,
3397 0x2b, 0x1c, 0x54, 0xc4, 0x05, 0xf7, 0xaa, 0xc3, 0xe5, 0xe2, 0x65, 0xf9, 0x4b, 0x40, 0x21, 0xd2,
3398 0x76, 0x6c, 0xdd, 0x32, 0x87, 0xa4, 0x5c, 0xe2, 0xe0, 0x15, 0xbc, 0xe2, 0x83, 0x5b, 0x8e, 0xdd,
3399 0x34, 0x87, 0x3c, 0x5c, 0xdd, 0x2b, 0xdd, 0x19, 0x0d, 0xac, 0xf2, 0x2a, 0xc7, 0x94, 0x70, 0xc6,
3400 0xbd, 0x62, 0xd9, 0xca, 0x54, 0x54, 0xaa, 0x10, 0x57, 0xad, 0xe2, 0x0c, 0x15, 0xaa, 0xe7, 0xb0,
3401 0x2d, 0xad, 0x74, 0x59, 0x77, 0xf5, 0x81, 0x3b, 0x90, 0x0b, 0x5b, 0xe3, 0x60, 0x84, 0x37, 0x04,
3402 0x8f, 0x3c, 0xc4, 0x8e, 0xe4, 0x59, 0x89, 0x76, 0x21, 0xeb, 0x5e, 0xe9, 0x67, 0xbc, 0x56, 0xae,
3403 0x73, 0xe8, 0x5a, 0xd8, 0xbe, 0xdf, 0x05, 0x60, 0xab, 0x97, 0xc7, 0xe1, 0x06, 0x57, 0xaf, 0x47,
3404 0x7b, 0xf4, 0x5d, 0xc8, 0x52, 0xdf, 0x7a, 0x93, 0xab, 0x37, 0xc2, 0xd7, 0x82, 0xbb, 0x00, 0x34,
3405 0xb4, 0xde, 0xe2, 0xea, 0xcd, 0x68, 0xff, 0xff, 0x19, 0x2c, 0x9f, 0x11, 0x57, 0x77, 0x89, 0xbc,
3406 0x82, 0x28, 0x73, 0xc8, 0x16, 0xce, 0x9f, 0xb1, 0x5a, 0x20, 0x2f, 0x21, 0xee, 0x43, 0x7e, 0x38,
3407 0x30, 0x2f, 0xfc, 0x0d, 0xdb, 0xe6, 0x98, 0x32, 0x06, 0x26, 0x94, 0xbb, 0xc5, 0x96, 0x69, 0x5a,
3408 0x3e, 0x62, 0x87, 0x23, 0xb6, 0x71, 0xce, 0x35, 0x2d, 0x09, 0xb8, 0x03, 0x39, 0x6a, 0x8d, 0x88,
3409 0x47, 0x8d, 0xd1, 0xb8, 0xbc, 0xcb, 0xb3, 0x7d, 0x07, 0x87, 0x22, 0x75, 0x19, 0xc0, 0xf2, 0x74,
3410 0x59, 0x28, 0xd4, 0x3c, 0xe4, 0x2c, 0x4f, 0x17, 0xb5, 0x41, 0x5d, 0x83, 0x55, 0xcb, 0xd3, 0xe3,
3411 0xf5, 0x40, 0x0a, 0xe3, 0xb9, 0xaf, 0xde, 0x86, 0x5d, 0x8b, 0x25, 0xf6, 0xec, 0x3c, 0x57, 0x57,
3412 0xa0, 0x60, 0x79, 0x7a, 0x98, 0xca, 0xb2, 0x14, 0x06, 0xa9, 0xab, 0xee, 0x40, 0xd9, 0xf2, 0xf4,
3413 0x99, 0xb9, 0xaa, 0xde, 0x82, 0x9d, 0x40, 0x37, 0x95, 0x91, 0xea, 0x3d, 0xb8, 0x33, 0xa5, 0x8d,
3414 0x65, 0x9d, 0x8a, 0xa0, 0x94, 0x44, 0xa8, 0x65, 0xd8, 0x9c, 0x9a, 0x4f, 0xac, 0x64, 0x1d, 0x90,
3415 0xe5, 0xe9, 0x89, 0x54, 0x91, 0xeb, 0x0d, 0xd2, 0x42, 0xa2, 0x12, 0x79, 0xa0, 0x6e, 0xc1, 0x46,
3416 0x4c, 0xea, 0xc7, 0xbc, 0xf4, 0xb1, 0x8c, 0x53, 0x39, 0x92, 0x01, 0xad, 0xde, 0x81, 0x5b, 0xa1,
3417 0x6e, 0x3a, 0x86, 0xd5, 0x02, 0xe4, 0x85, 0x9e, 0x47, 0x9a, 0x74, 0x65, 0x18, 0x99, 0x52, 0x4f,
3418 0xe3, 0xfa, 0x30, 0xf6, 0xd4, 0x55, 0x58, 0x61, 0xae, 0x8e, 0xc4, 0x9a, 0x5a, 0x82, 0xa2, 0xe5,
3419 0xe9, 0x91, 0xc8, 0xf2, 0x59, 0x83, 0x40, 0x92, 0x0f, 0x1c, 0x44, 0x89, 0xf2, 0xab, 0x45, 0xd8,
3420 0xbd, 0xe1, 0xe0, 0x44, 0x77, 0x21, 0xcf, 0x7a, 0x66, 0x9d, 0x84, 0x6d, 0x74, 0xe6, 0x86, 0x36,
3421 0x3a, 0x13, 0xb4, 0xd1, 0x9b, 0x90, 0x39, 0x67, 0x5c, 0xa2, 0xb3, 0xc8, 0x60, 0x39, 0x42, 0xff,
3422 0x15, 0x69, 0xa2, 0x75, 0x89, 0xe0, 0x27, 0x0c, 0x5e, 0x09, 0xe4, 0xc7, 0x01, 0x34, 0xe8, 0x95,
3423 0x7d, 0xe8, 0xa2, 0x80, 0x06, 0x72, 0x09, 0x7d, 0x0c, 0x28, 0xf0, 0x2c, 0x31, 0x7d, 0x30, 0x3f,
3424 0x58, 0x70, 0x29, 0xec, 0xa1, 0x43, 0xe2, 0xa0, 0x55, 0xf6, 0xb1, 0x4b, 0x82, 0x38, 0x90, 0x4b,
3425 0xe8, 0xc3, 0xb0, 0x83, 0xf6, 0x91, 0xfc, 0x8c, 0xc1, 0x45, 0x5f, 0x2c, 0x81, 0x8f, 0xa0, 0x24,
3426 0xf4, 0xfa, 0xb3, 0x3d, 0x3d, 0xd2, 0x41, 0x67, 0x70, 0x51, 0xc8, 0x9f, 0xed, 0x05, 0x6d, 0xed,
3427 0x96, 0x8f, 0xdc, 0xd7, 0xa9, 0xa3, 0x57, 0x6b, 0x5f, 0xeb, 0x91, 0x1e, 0x3a, 0x83, 0xd7, 0xa4,
3428 0x81, 0x68, 0xa1, 0xdb, 0x7e, 0x5b, 0x5b, 0x96, 0x56, 0xd5, 0xda, 0x01, 0x33, 0xab, 0xed, 0xef,
3429 0xfb, 0x66, 0xfc, 0x2c, 0xc1, 0xeb, 0x42, 0x9f, 0x68, 0xa2, 0x43, 0xbb, 0xda, 0xfe, 0x33, 0x66,
3430 0xb7, 0x5f, 0xad, 0xea, 0x91, 0x3e, 0x3a, 0xb0, 0xf3, 0xdb, 0xe8, 0xb6, 0xdf, 0x0e, 0x6f, 0x4b,
3431 0xbb, 0xfd, 0x6a, 0x8d, 0x2f, 0xf3, 0x69, 0xed, 0x2b, 0x3d, 0xd2, 0x49, 0x67, 0xf0, 0x86, 0x00,
3432 0x04, 0x8d, 0xb4, 0xb4, 0x7c, 0x0e, 0x3b, 0xfe, 0x4a, 0x9f, 0xd6, 0xf6, 0xb8, 0xe9, 0x7e, 0xf5,
3433 0x40, 0x8f, 0xf4, 0xd2, 0x19, 0xbc, 0x29, 0xd7, 0x1a, 0xb4, 0xd2, 0xc2, 0x56, 0xf9, 0x47, 0x1a,
3434 0x1e, 0x7c, 0xa8, 0x95, 0x93, 0x5d, 0x90, 0x0a, 0xd9, 0xc9, 0xd8, 0xa3, 0x2e, 0x31, 0x46, 0xb2,
3435 0xc9, 0x8e, 0x5e, 0x32, 0xdd, 0xc4, 0x10, 0xd8, 0xa1, 0x63, 0x00, 0xd3, 0xf9, 0xd1, 0x96, 0x2c,
3436 0xe9, 0x4f, 0x62, 0x89, 0x58, 0xa2, 0x5f, 0xa6, 0xe0, 0x01, 0x4f, 0x73, 0x22, 0xc1, 0x22, 0x56,
3437 0x74, 0x22, 0xe1, 0xfa, 0x78, 0xa4, 0x9f, 0x3b, 0xee, 0xc8, 0xa0, 0xf2, 0x92, 0xf3, 0x20, 0xf1,
3438 0x0e, 0xfd, 0xe1, 0xe7, 0xad, 0x1c, 0x73, 0x7b, 0x7c, 0xdf, 0xb9, 0x1e, 0x2b, 0x20, 0xca, 0x53,
3439 0xc8, 0x88, 0x5f, 0xfc, 0x3a, 0xb2, 0xd1, 0xc4, 0xbd, 0xb7, 0x7a, 0xef, 0x4d, 0x5b, 0x57, 0x9b,
3440 0x3d, 0x71, 0x01, 0xda, 0x6d, 0x7e, 0xdf, 0x7b, 0xab, 0x1f, 0xb7, 0xfb, 0x98, 0xcb, 0x52, 0xca,
3441 0x6f, 0xc5, 0xfd, 0x5e, 0xd0, 0xb2, 0x4a, 0x17, 0x7f, 0x62, 0xcf, 0xca, 0x72, 0xde, 0xa3, 0x06,
3442 0x9d, 0x88, 0x9c, 0xcf, 0x61, 0x39, 0x62, 0x45, 0xe4, 0xdc, 0xb0, 0x86, 0xba, 0x4b, 0x0c, 0xcf,
3443 0xb1, 0x79, 0xba, 0xe7, 0x30, 0x30, 0x11, 0xe6, 0x12, 0xb4, 0xcd, 0x0f, 0x6c, 0x7e, 0xb5, 0xc2,
3444 0x33, 0x3c, 0xc5, 0x8e, 0x6b, 0xbe, 0x16, 0xe5, 0xe7, 0x8b, 0xb0, 0x72, 0x42, 0x28, 0xbf, 0xf1,
3445 0xf7, 0x7b, 0xe9, 0x6f, 0x12, 0x57, 0xe8, 0xf9, 0xda, 0xed, 0xb8, 0x3f, 0x13, 0x97, 0xf5, 0xac,
3446 0x87, 0xf7, 0x0d, 0xd0, 0x37, 0xb0, 0x34, 0x11, 0x17, 0xca, 0x72, 0xc3, 0xef, 0x5e, 0x7f, 0xe1,
3447 0xec, 0x5b, 0xfb, 0x16, 0xe8, 0x10, 0xf2, 0x8e, 0xb8, 0x4a, 0xe4, 0x04, 0xf3, 0xb3, 0x26, 0x4f,
3448 0xdc, 0x35, 0x36, 0xe6, 0x70, 0xd4, 0x06, 0x35, 0xa1, 0xe8, 0xd8, 0x93, 0xc8, 0xad, 0x13, 0xf7,
3449 0xc7, 0xac, 0x65, 0xc4, 0x2f, 0xa7, 0x1a, 0x73, 0x38, 0x61, 0x88, 0x30, 0x14, 0x08, 0x7d, 0x17,
3450 0x5e, 0x81, 0x70, 0xdf, 0xe5, 0x6b, 0x5f, 0x7c, 0xfc, 0x05, 0x4d, 0x63, 0x0e, 0xc7, 0x29, 0xd0,
3451 0xff, 0xf0, 0xb7, 0x42, 0xa9, 0xe6, 0x15, 0x34, 0x5f, 0xdb, 0x9d, 0x22, 0x0c, 0x5f, 0x53, 0x1b,
3452 0x73, 0x38, 0x62, 0x80, 0x54, 0x00, 0x87, 0xaf, 0x9c, 0x3f, 0xd9, 0x12, 0x37, 0xbf, 0x37, 0x65,
3453 0x9e, 0x78, 0xe3, 0x63, 0x1c, 0xa1, 0x15, 0x3a, 0x85, 0x25, 0x16, 0x4f, 0x8c, 0x20, 0xcb, 0x09,
3454 0x9e, 0x7e, 0x42, 0xb6, 0x04, 0x5b, 0x26, 0x29, 0xd0, 0x01, 0xf8, 0xb1, 0xc4, 0xeb, 0x71, 0xbe,
3455 0x76, 0x2b, 0xce, 0x16, 0x7f, 0x4f, 0x63, 0x96, 0x12, 0xae, 0xe6, 0x60, 0xc9, 0x15, 0x52, 0xe5,
3456 0x77, 0x59, 0xfe, 0x8e, 0x2f, 0xa3, 0x50, 0xa6, 0xc7, 0xf3, 0x20, 0xdc, 0xc5, 0xc5, 0x98, 0x12,
3457 0x27, 0x8e, 0x81, 0x2b, 0x5d, 0x8e, 0x0c, 0x52, 0x42, 0x83, 0x1c, 0x71, 0x5d, 0x11, 0xfe, 0xf2,
3458 0x8e, 0xfc, 0xe1, 0x4d, 0xe6, 0xfc, 0x00, 0x13, 0x70, 0x1c, 0x5a, 0xa2, 0x6f, 0x23, 0x99, 0x20,
3459 0x82, 0xf1, 0xce, 0x75, 0x99, 0x20, 0x88, 0x62, 0xa9, 0xf0, 0x6d, 0x98, 0x0a, 0x0b, 0xd7, 0xec,
3460 0x54, 0xe2, 0xdb, 0x4b, 0x34, 0x17, 0x5e, 0xc0, 0xf2, 0x58, 0xc4, 0x39, 0xb5, 0x89, 0xeb, 0xc9,
3461 0xe0, 0xfb, 0xfc, 0xc6, 0x64, 0x88, 0xf0, 0xc4, 0x8c, 0xd1, 0xab, 0xa9, 0xac, 0x10, 0xa1, 0xf7,
3462 0xf0, 0x03, 0x59, 0x11, 0x21, 0x4c, 0x66, 0xc7, 0x19, 0xac, 0xc6, 0x42, 0x3b, 0x12, 0x91, 0xb5,
3463 0x8f, 0xcf, 0x90, 0xc8, 0x04, 0xd3, 0x74, 0x48, 0x8b, 0x65, 0x8b, 0x88, 0xd6, 0xcf, 0x6e, 0xc8,
3464 0x96, 0x08, 0x5b, 0x34, 0x6b, 0x5e, 0xf0, 0xa7, 0xef, 0x38, 0xb6, 0xef, 0x27, 0x19, 0xaa, 0xf7,
3465 0x6f, 0xc8, 0x9c, 0xd8, 0x73, 0x47, 0x4c, 0x51, 0x9f, 0x5f, 0x72, 0x04, 0x4c, 0xc0, 0x99, 0xaa,
3466 0x9f, 0x7c, 0xe0, 0xf0, 0xba, 0x15, 0xf2, 0xa0, 0xff, 0x0e, 0xf3, 0x28, 0x3f, 0xab, 0xec, 0x25,
3467 0x0e, 0x8f, 0x48, 0x22, 0x29, 0x55, 0xc8, 0x88, 0xf0, 0x47, 0xeb, 0x50, 0xea, 0xf6, 0x0e, 0x7b,
3468 0xfd, 0x6e, 0xec, 0xcb, 0x53, 0x06, 0xd2, 0xed, 0x17, 0xa5, 0x14, 0xff, 0x96, 0x8c, 0x71, 0x1b,
3469 0x97, 0xd2, 0xca, 0xef, 0x53, 0x90, 0x8f, 0xc4, 0x3c, 0x33, 0xc4, 0xda, 0x61, 0xb7, 0xdd, 0x8a,
3470 0x19, 0xae, 0x40, 0xbe, 0xdf, 0xea, 0xf6, 0x3b, 0x9d, 0x36, 0xee, 0xf1, 0xcf, 0x56, 0x1b, 0xb0,
3471 0xda, 0x6c, 0xbd, 0x3e, 0x3c, 0x6d, 0xd6, 0xf5, 0xba, 0xf6, 0xba, 0x79, 0xa4, 0xe9, 0xcd, 0x7a,
3472 0x29, 0x1d, 0x15, 0x33, 0xa8, 0xde, 0x7b, 0xdb, 0xd1, 0x4a, 0xf3, 0x28, 0x0f, 0x4b, 0xbd, 0xe6,
3473 0x4b, 0xad, 0xdd, 0xef, 0x95, 0x16, 0xd8, 0x0c, 0x3e, 0x06, 0x6b, 0xaf, 0x04, 0x64, 0x91, 0x9d,
3474 0x96, 0xcd, 0x56, 0x4f, 0xc3, 0xad, 0xc3, 0x53, 0x5d, 0xac, 0x2d, 0x23, 0x64, 0xd1, 0x49, 0x4a,
3475 0x4b, 0x2a, 0x40, 0xd6, 0x95, 0x4f, 0xae, 0xbc, 0x86, 0x95, 0x6e, 0xe2, 0xc4, 0x4a, 0x7e, 0x7d,
3476 0x4f, 0x7d, 0xf4, 0xd7, 0xf7, 0x48, 0x11, 0xfa, 0x67, 0x0a, 0x4a, 0xdd, 0x4f, 0x29, 0x42, 0xdd,
3477 0x7f, 0xaf, 0x08, 0x75, 0x3f, 0xae, 0x08, 0xfd, 0x94, 0xed, 0xdd, 0xfb, 0x29, 0xbb, 0xab, 0x58,
3478 0xb0, 0xd1, 0xb5, 0xec, 0x8b, 0x21, 0x49, 0x36, 0x04, 0x3b, 0x90, 0xa5, 0x86, 0x7b, 0x41, 0x68,
3479 0x70, 0xa9, 0x17, 0x8c, 0xd1, 0x5e, 0xe0, 0x40, 0x79, 0xde, 0xef, 0xcc, 0xac, 0xb3, 0x1c, 0x81,
3480 0x03, 0x5f, 0xbf, 0x82, 0xcd, 0xe4, 0x54, 0xd2, 0xe1, 0x5f, 0x87, 0x3b, 0x2d, 0xb7, 0x71, 0xf7,
3481 0x86, 0xc2, 0x8d, 0xc3, 0xb0, 0x08, 0x56, 0xdf, 0xfd, 0x4f, 0xad, 0xbe, 0xfb, 0xc1, 0xd5, 0x77,
3482 0x3f, 0x6d, 0xf5, 0xdd, 0x6b, 0x57, 0x5f, 0xfb, 0x63, 0x0a, 0x72, 0x9a, 0x0f, 0x44, 0x18, 0xf2,
3483 0x27, 0x84, 0x6a, 0x57, 0x02, 0x8e, 0xa2, 0xe7, 0xc6, 0xcc, 0x1d, 0xda, 0xb9, 0x7f, 0x03, 0x42,
3484 0x2e, 0x0d, 0x43, 0xbe, 0x7b, 0x23, 0x67, 0xf7, 0x83, 0x9c, 0xc9, 0xf5, 0xab, 0x18, 0x6e, 0x3b,
3485 0xee, 0x45, 0xc5, 0x19, 0x13, 0x7b, 0xe0, 0xb8, 0x66, 0x45, 0xfc, 0x75, 0x4d, 0x68, 0xf7, 0xbf,
3486 0xd5, 0x0b, 0x8b, 0xbe, 0x9b, 0x9c, 0x55, 0x06, 0xce, 0xe8, 0x89, 0x8f, 0x7a, 0x22, 0x50, 0x5f,
3487 0xca, 0xbf, 0xc1, 0xb9, 0xdc, 0x7f, 0x72, 0xe1, 0x84, 0x7f, 0xb4, 0x73, 0x96, 0xe1, 0xf2, 0xaf,
3488 0xfe, 0x15, 0x00, 0x00, 0xff, 0xff, 0x86, 0xb9, 0xfc, 0x29, 0xd6, 0x23, 0x00, 0x00,
khenaidoo106c61a2021-08-11 18:05:46 -04003489}
3490
3491// Reference imports to suppress errors if they are not otherwise used.
3492var _ context.Context
3493var _ grpc.ClientConn
3494
3495// This is a compile-time assertion to ensure that this generated file
3496// is compatible with the grpc package it is being compiled against.
3497const _ = grpc.SupportPackageIsVersion4
3498
3499// ExtensionClient is the client API for Extension service.
3500//
3501// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
3502type ExtensionClient interface {
3503 // Get a single attribute
3504 GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error)
3505 // Set a single attribute
3506 SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error)
3507}
3508
3509type extensionClient struct {
3510 cc *grpc.ClientConn
3511}
3512
3513func NewExtensionClient(cc *grpc.ClientConn) ExtensionClient {
3514 return &extensionClient{cc}
3515}
3516
3517func (c *extensionClient) GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error) {
3518 out := new(SingleGetValueResponse)
3519 err := c.cc.Invoke(ctx, "/extension.Extension/GetExtValue", in, out, opts...)
3520 if err != nil {
3521 return nil, err
3522 }
3523 return out, nil
3524}
3525
3526func (c *extensionClient) SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error) {
3527 out := new(SingleSetValueResponse)
3528 err := c.cc.Invoke(ctx, "/extension.Extension/SetExtValue", in, out, opts...)
3529 if err != nil {
3530 return nil, err
3531 }
3532 return out, nil
3533}
3534
3535// ExtensionServer is the server API for Extension service.
3536type ExtensionServer interface {
3537 // Get a single attribute
3538 GetExtValue(context.Context, *SingleGetValueRequest) (*SingleGetValueResponse, error)
3539 // Set a single attribute
3540 SetExtValue(context.Context, *SingleSetValueRequest) (*SingleSetValueResponse, error)
3541}
3542
3543// UnimplementedExtensionServer can be embedded to have forward compatible implementations.
3544type UnimplementedExtensionServer struct {
3545}
3546
3547func (*UnimplementedExtensionServer) GetExtValue(ctx context.Context, req *SingleGetValueRequest) (*SingleGetValueResponse, error) {
3548 return nil, status.Errorf(codes.Unimplemented, "method GetExtValue not implemented")
3549}
3550func (*UnimplementedExtensionServer) SetExtValue(ctx context.Context, req *SingleSetValueRequest) (*SingleSetValueResponse, error) {
3551 return nil, status.Errorf(codes.Unimplemented, "method SetExtValue not implemented")
3552}
3553
3554func RegisterExtensionServer(s *grpc.Server, srv ExtensionServer) {
3555 s.RegisterService(&_Extension_serviceDesc, srv)
3556}
3557
3558func _Extension_GetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
3559 in := new(SingleGetValueRequest)
3560 if err := dec(in); err != nil {
3561 return nil, err
3562 }
3563 if interceptor == nil {
3564 return srv.(ExtensionServer).GetExtValue(ctx, in)
3565 }
3566 info := &grpc.UnaryServerInfo{
3567 Server: srv,
3568 FullMethod: "/extension.Extension/GetExtValue",
3569 }
3570 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3571 return srv.(ExtensionServer).GetExtValue(ctx, req.(*SingleGetValueRequest))
3572 }
3573 return interceptor(ctx, in, info, handler)
3574}
3575
3576func _Extension_SetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
3577 in := new(SingleSetValueRequest)
3578 if err := dec(in); err != nil {
3579 return nil, err
3580 }
3581 if interceptor == nil {
3582 return srv.(ExtensionServer).SetExtValue(ctx, in)
3583 }
3584 info := &grpc.UnaryServerInfo{
3585 Server: srv,
3586 FullMethod: "/extension.Extension/SetExtValue",
3587 }
3588 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3589 return srv.(ExtensionServer).SetExtValue(ctx, req.(*SingleSetValueRequest))
3590 }
3591 return interceptor(ctx, in, info, handler)
3592}
3593
3594var _Extension_serviceDesc = grpc.ServiceDesc{
3595 ServiceName: "extension.Extension",
3596 HandlerType: (*ExtensionServer)(nil),
3597 Methods: []grpc.MethodDesc{
3598 {
3599 MethodName: "GetExtValue",
3600 Handler: _Extension_GetExtValue_Handler,
3601 },
3602 {
3603 MethodName: "SetExtValue",
3604 Handler: _Extension_SetExtValue_Handler,
3605 },
3606 },
3607 Streams: []grpc.StreamDesc{},
3608 Metadata: "voltha_protos/extensions.proto",
3609}