blob: c10d471dcd2777a263a83b21d691def7d2e4b0e1 [file] [log] [blame]
amit.ghosh9f6af0e2020-11-04 14:09:25 +01001// 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"
kesavand763d8002021-01-04 16:24:42 +053010 empty "github.com/golang/protobuf/ptypes/empty"
Akash Kankanala761955c2024-02-21 19:32:20 +053011 common "github.com/opencord/voltha-protos/v5/go/common"
khenaidoo5fc5cea2021-08-11 17:39:16 -040012 config "github.com/opencord/voltha-protos/v5/go/ext/config"
amit.ghosh9f6af0e2020-11-04 14:09:25 +010013 grpc "google.golang.org/grpc"
David K. Bainbridgec4bf5382021-04-08 16:06:54 +000014 codes "google.golang.org/grpc/codes"
15 status "google.golang.org/grpc/status"
amit.ghosh9f6af0e2020-11-04 14:09:25 +010016 math "math"
17)
18
19// Reference imports to suppress errors if they are not otherwise used.
20var _ = proto.Marshal
21var _ = fmt.Errorf
22var _ = math.Inf
23
24// This is a compile-time assertion to ensure that this generated file
25// is compatible with the proto package it is being compiled against.
26// A compilation error at this line likely means your copy of the
27// proto package needs to be updated.
28const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
29
khenaidoo4c6543e2021-10-19 17:25:58 -040030type ValueType_Type int32
amit.ghosh9f6af0e2020-11-04 14:09:25 +010031
khenaidoo4c6543e2021-10-19 17:25:58 -040032const (
33 ValueType_EMPTY ValueType_Type = 0
34 ValueType_DISTANCE ValueType_Type = 1
35)
amit.ghosh9f6af0e2020-11-04 14:09:25 +010036
khenaidoo4c6543e2021-10-19 17:25:58 -040037var ValueType_Type_name = map[int32]string{
38 0: "EMPTY",
39 1: "DISTANCE",
40}
amit.ghosh9f6af0e2020-11-04 14:09:25 +010041
khenaidoo4c6543e2021-10-19 17:25:58 -040042var ValueType_Type_value = map[string]int32{
43 "EMPTY": 0,
44 "DISTANCE": 1,
45}
amit.ghosh9f6af0e2020-11-04 14:09:25 +010046
khenaidoo4c6543e2021-10-19 17:25:58 -040047func (x ValueType_Type) String() string {
48 return proto.EnumName(ValueType_Type_name, int32(x))
49}
amit.ghosh9f6af0e2020-11-04 14:09:25 +010050
khenaidoo4c6543e2021-10-19 17:25:58 -040051func (ValueType_Type) EnumDescriptor() ([]byte, []int) {
52 return fileDescriptor_7ecf6e9799a9202d, []int{1, 0}
53}
amit.ghosh9f6af0e2020-11-04 14:09:25 +010054
55type GetOnuUniInfoResponse_ConfigurationInd int32
56
57const (
58 GetOnuUniInfoResponse_UNKOWN GetOnuUniInfoResponse_ConfigurationInd = 0
59 GetOnuUniInfoResponse_TEN_BASE_T_FDX GetOnuUniInfoResponse_ConfigurationInd = 1
60 GetOnuUniInfoResponse_HUNDRED_BASE_T_FDX GetOnuUniInfoResponse_ConfigurationInd = 2
61 GetOnuUniInfoResponse_GIGABIT_ETHERNET_FDX GetOnuUniInfoResponse_ConfigurationInd = 3
62 GetOnuUniInfoResponse_TEN_G_ETHERNET_FDX GetOnuUniInfoResponse_ConfigurationInd = 4
63 GetOnuUniInfoResponse_TEN_BASE_T_HDX GetOnuUniInfoResponse_ConfigurationInd = 5
64 GetOnuUniInfoResponse_HUNDRED_BASE_T_HDX GetOnuUniInfoResponse_ConfigurationInd = 6
65 GetOnuUniInfoResponse_GIGABIT_ETHERNET_HDX GetOnuUniInfoResponse_ConfigurationInd = 7
66)
67
68var GetOnuUniInfoResponse_ConfigurationInd_name = map[int32]string{
69 0: "UNKOWN",
70 1: "TEN_BASE_T_FDX",
71 2: "HUNDRED_BASE_T_FDX",
72 3: "GIGABIT_ETHERNET_FDX",
73 4: "TEN_G_ETHERNET_FDX",
74 5: "TEN_BASE_T_HDX",
75 6: "HUNDRED_BASE_T_HDX",
76 7: "GIGABIT_ETHERNET_HDX",
77}
78
79var GetOnuUniInfoResponse_ConfigurationInd_value = map[string]int32{
80 "UNKOWN": 0,
81 "TEN_BASE_T_FDX": 1,
82 "HUNDRED_BASE_T_FDX": 2,
83 "GIGABIT_ETHERNET_FDX": 3,
84 "TEN_G_ETHERNET_FDX": 4,
85 "TEN_BASE_T_HDX": 5,
86 "HUNDRED_BASE_T_HDX": 6,
87 "GIGABIT_ETHERNET_HDX": 7,
88}
89
90func (x GetOnuUniInfoResponse_ConfigurationInd) String() string {
91 return proto.EnumName(GetOnuUniInfoResponse_ConfigurationInd_name, int32(x))
92}
93
94func (GetOnuUniInfoResponse_ConfigurationInd) EnumDescriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -040095 return fileDescriptor_7ecf6e9799a9202d, []int{7, 0}
amit.ghosh9f6af0e2020-11-04 14:09:25 +010096}
97
98type GetOnuUniInfoResponse_AdministrativeState int32
99
100const (
101 GetOnuUniInfoResponse_ADMSTATE_UNDEFINED GetOnuUniInfoResponse_AdministrativeState = 0
102 GetOnuUniInfoResponse_LOCKED GetOnuUniInfoResponse_AdministrativeState = 1
103 GetOnuUniInfoResponse_UNLOCKED GetOnuUniInfoResponse_AdministrativeState = 2
104)
105
106var GetOnuUniInfoResponse_AdministrativeState_name = map[int32]string{
107 0: "ADMSTATE_UNDEFINED",
108 1: "LOCKED",
109 2: "UNLOCKED",
110}
111
112var GetOnuUniInfoResponse_AdministrativeState_value = map[string]int32{
113 "ADMSTATE_UNDEFINED": 0,
114 "LOCKED": 1,
115 "UNLOCKED": 2,
116}
117
118func (x GetOnuUniInfoResponse_AdministrativeState) String() string {
119 return proto.EnumName(GetOnuUniInfoResponse_AdministrativeState_name, int32(x))
120}
121
122func (GetOnuUniInfoResponse_AdministrativeState) EnumDescriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400123 return fileDescriptor_7ecf6e9799a9202d, []int{7, 1}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100124}
125
126type GetOnuUniInfoResponse_OperationalState int32
127
128const (
129 GetOnuUniInfoResponse_OPERSTATE_UNDEFINED GetOnuUniInfoResponse_OperationalState = 0
130 GetOnuUniInfoResponse_ENABLED GetOnuUniInfoResponse_OperationalState = 1
131 GetOnuUniInfoResponse_DISABLED GetOnuUniInfoResponse_OperationalState = 2
132)
133
134var GetOnuUniInfoResponse_OperationalState_name = map[int32]string{
135 0: "OPERSTATE_UNDEFINED",
136 1: "ENABLED",
137 2: "DISABLED",
138}
139
140var GetOnuUniInfoResponse_OperationalState_value = map[string]int32{
141 "OPERSTATE_UNDEFINED": 0,
142 "ENABLED": 1,
143 "DISABLED": 2,
144}
145
146func (x GetOnuUniInfoResponse_OperationalState) String() string {
147 return proto.EnumName(GetOnuUniInfoResponse_OperationalState_name, int32(x))
148}
149
150func (GetOnuUniInfoResponse_OperationalState) EnumDescriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400151 return fileDescriptor_7ecf6e9799a9202d, []int{7, 2}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100152}
153
kesavand763d8002021-01-04 16:24:42 +0530154type GetOltPortCounters_PortType int32
155
156const (
157 GetOltPortCounters_Port_UNKNOWN GetOltPortCounters_PortType = 0
158 GetOltPortCounters_Port_ETHERNET_NNI GetOltPortCounters_PortType = 1
159 GetOltPortCounters_Port_PON_OLT GetOltPortCounters_PortType = 2
160)
161
162var GetOltPortCounters_PortType_name = map[int32]string{
163 0: "Port_UNKNOWN",
164 1: "Port_ETHERNET_NNI",
165 2: "Port_PON_OLT",
166}
167
168var GetOltPortCounters_PortType_value = map[string]int32{
169 "Port_UNKNOWN": 0,
170 "Port_ETHERNET_NNI": 1,
171 "Port_PON_OLT": 2,
172}
173
174func (x GetOltPortCounters_PortType) String() string {
175 return proto.EnumName(GetOltPortCounters_PortType_name, int32(x))
176}
177
178func (GetOltPortCounters_PortType) EnumDescriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400179 return fileDescriptor_7ecf6e9799a9202d, []int{8, 0}
kesavand763d8002021-01-04 16:24:42 +0530180}
181
182type GetOnuEthernetBridgePortHistory_Direction int32
183
184const (
185 GetOnuEthernetBridgePortHistory_UNDEFINED GetOnuEthernetBridgePortHistory_Direction = 0
186 GetOnuEthernetBridgePortHistory_UPSTREAM GetOnuEthernetBridgePortHistory_Direction = 1
187 GetOnuEthernetBridgePortHistory_DOWNSTREAM GetOnuEthernetBridgePortHistory_Direction = 2
188)
189
190var GetOnuEthernetBridgePortHistory_Direction_name = map[int32]string{
191 0: "UNDEFINED",
192 1: "UPSTREAM",
193 2: "DOWNSTREAM",
194}
195
196var GetOnuEthernetBridgePortHistory_Direction_value = map[string]int32{
197 "UNDEFINED": 0,
198 "UPSTREAM": 1,
199 "DOWNSTREAM": 2,
200}
201
202func (x GetOnuEthernetBridgePortHistory_Direction) String() string {
203 return proto.EnumName(GetOnuEthernetBridgePortHistory_Direction_name, int32(x))
204}
205
206func (GetOnuEthernetBridgePortHistory_Direction) EnumDescriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400207 return fileDescriptor_7ecf6e9799a9202d, []int{12, 0}
kesavand763d8002021-01-04 16:24:42 +0530208}
209
Himani Chawla654f7f32021-08-25 16:31:24 +0530210type GetOmciEthernetFrameExtendedPmResponse_Format int32
211
212const (
213 GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT GetOmciEthernetFrameExtendedPmResponse_Format = 0
214 GetOmciEthernetFrameExtendedPmResponse_SIXTY_FOUR_BIT GetOmciEthernetFrameExtendedPmResponse_Format = 1
215)
216
217var GetOmciEthernetFrameExtendedPmResponse_Format_name = map[int32]string{
218 0: "THIRTY_TWO_BIT",
219 1: "SIXTY_FOUR_BIT",
220}
221
222var GetOmciEthernetFrameExtendedPmResponse_Format_value = map[string]int32{
223 "THIRTY_TWO_BIT": 0,
224 "SIXTY_FOUR_BIT": 1,
225}
226
227func (x GetOmciEthernetFrameExtendedPmResponse_Format) String() string {
228 return proto.EnumName(GetOmciEthernetFrameExtendedPmResponse_Format_name, int32(x))
229}
230
231func (GetOmciEthernetFrameExtendedPmResponse_Format) EnumDescriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +0530232 return fileDescriptor_7ecf6e9799a9202d, []int{36, 0}
Himani Chawla654f7f32021-08-25 16:31:24 +0530233}
234
amit.ghoshf017eab2024-06-28 15:09:33 +0200235type GetOffloadedAppsStatisticsRequest_OffloadedApp int32
236
237const (
238 GetOffloadedAppsStatisticsRequest_UNDEFINED GetOffloadedAppsStatisticsRequest_OffloadedApp = 0
239 GetOffloadedAppsStatisticsRequest_PPPoeIA GetOffloadedAppsStatisticsRequest_OffloadedApp = 1
240 GetOffloadedAppsStatisticsRequest_DHCPv4RA GetOffloadedAppsStatisticsRequest_OffloadedApp = 2
241 GetOffloadedAppsStatisticsRequest_DHCPv6RA GetOffloadedAppsStatisticsRequest_OffloadedApp = 3
242)
243
244var GetOffloadedAppsStatisticsRequest_OffloadedApp_name = map[int32]string{
245 0: "UNDEFINED",
246 1: "PPPoeIA",
247 2: "DHCPv4RA",
248 3: "DHCPv6RA",
249}
250
251var GetOffloadedAppsStatisticsRequest_OffloadedApp_value = map[string]int32{
252 "UNDEFINED": 0,
253 "PPPoeIA": 1,
254 "DHCPv4RA": 2,
255 "DHCPv6RA": 3,
256}
257
258func (x GetOffloadedAppsStatisticsRequest_OffloadedApp) String() string {
259 return proto.EnumName(GetOffloadedAppsStatisticsRequest_OffloadedApp_name, int32(x))
260}
261
262func (GetOffloadedAppsStatisticsRequest_OffloadedApp) EnumDescriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +0530263 return fileDescriptor_7ecf6e9799a9202d, []int{45, 0}
amit.ghoshf017eab2024-06-28 15:09:33 +0200264}
265
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100266type GetValueResponse_Status int32
267
268const (
269 GetValueResponse_STATUS_UNDEFINED GetValueResponse_Status = 0
270 GetValueResponse_OK GetValueResponse_Status = 1
271 GetValueResponse_ERROR GetValueResponse_Status = 2
272)
273
274var GetValueResponse_Status_name = map[int32]string{
275 0: "STATUS_UNDEFINED",
276 1: "OK",
277 2: "ERROR",
278}
279
280var GetValueResponse_Status_value = map[string]int32{
281 "STATUS_UNDEFINED": 0,
282 "OK": 1,
283 "ERROR": 2,
284}
285
286func (x GetValueResponse_Status) String() string {
287 return proto.EnumName(GetValueResponse_Status_name, int32(x))
288}
289
290func (GetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +0530291 return fileDescriptor_7ecf6e9799a9202d, []int{48, 0}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100292}
293
294type GetValueResponse_ErrorReason int32
295
296const (
kesavand763d8002021-01-04 16:24:42 +0530297 GetValueResponse_REASON_UNDEFINED GetValueResponse_ErrorReason = 0
298 GetValueResponse_UNSUPPORTED GetValueResponse_ErrorReason = 1
299 GetValueResponse_INVALID_DEVICE_ID GetValueResponse_ErrorReason = 2
300 GetValueResponse_INVALID_PORT_TYPE GetValueResponse_ErrorReason = 3
301 GetValueResponse_TIMEOUT GetValueResponse_ErrorReason = 4
302 GetValueResponse_INVALID_REQ_TYPE GetValueResponse_ErrorReason = 5
303 GetValueResponse_INTERNAL_ERROR GetValueResponse_ErrorReason = 6
Himani Chawlae5bb7ca2021-05-17 15:48:32 +0530304 GetValueResponse_INVALID_DEVICE GetValueResponse_ErrorReason = 7
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100305)
306
307var GetValueResponse_ErrorReason_name = map[int32]string{
308 0: "REASON_UNDEFINED",
309 1: "UNSUPPORTED",
kesavand763d8002021-01-04 16:24:42 +0530310 2: "INVALID_DEVICE_ID",
311 3: "INVALID_PORT_TYPE",
312 4: "TIMEOUT",
313 5: "INVALID_REQ_TYPE",
314 6: "INTERNAL_ERROR",
Himani Chawlae5bb7ca2021-05-17 15:48:32 +0530315 7: "INVALID_DEVICE",
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100316}
317
318var GetValueResponse_ErrorReason_value = map[string]int32{
kesavand763d8002021-01-04 16:24:42 +0530319 "REASON_UNDEFINED": 0,
320 "UNSUPPORTED": 1,
321 "INVALID_DEVICE_ID": 2,
322 "INVALID_PORT_TYPE": 3,
323 "TIMEOUT": 4,
324 "INVALID_REQ_TYPE": 5,
325 "INTERNAL_ERROR": 6,
Himani Chawlae5bb7ca2021-05-17 15:48:32 +0530326 "INVALID_DEVICE": 7,
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100327}
328
329func (x GetValueResponse_ErrorReason) String() string {
330 return proto.EnumName(GetValueResponse_ErrorReason_name, int32(x))
331}
332
333func (GetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +0530334 return fileDescriptor_7ecf6e9799a9202d, []int{48, 1}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100335}
336
337type SetValueResponse_Status int32
338
339const (
340 SetValueResponse_STATUS_UNDEFINED SetValueResponse_Status = 0
341 SetValueResponse_OK SetValueResponse_Status = 1
342 SetValueResponse_ERROR SetValueResponse_Status = 2
343)
344
345var SetValueResponse_Status_name = map[int32]string{
346 0: "STATUS_UNDEFINED",
347 1: "OK",
348 2: "ERROR",
349}
350
351var SetValueResponse_Status_value = map[string]int32{
352 "STATUS_UNDEFINED": 0,
353 "OK": 1,
354 "ERROR": 2,
355}
356
357func (x SetValueResponse_Status) String() string {
358 return proto.EnumName(SetValueResponse_Status_name, int32(x))
359}
360
361func (SetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +0530362 return fileDescriptor_7ecf6e9799a9202d, []int{52, 0}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100363}
364
365type SetValueResponse_ErrorReason int32
366
367const (
amit.ghoshf017eab2024-06-28 15:09:33 +0200368 SetValueResponse_REASON_UNDEFINED SetValueResponse_ErrorReason = 0
369 SetValueResponse_UNSUPPORTED SetValueResponse_ErrorReason = 1
370 SetValueResponse_INVALID_DEVICE_ID SetValueResponse_ErrorReason = 2
371 SetValueResponse_INVALID_ONU_DEVICE_ID SetValueResponse_ErrorReason = 3
372 SetValueResponse_INVALID_UNI_ID SetValueResponse_ErrorReason = 4
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100373)
374
375var SetValueResponse_ErrorReason_name = map[int32]string{
376 0: "REASON_UNDEFINED",
377 1: "UNSUPPORTED",
amit.ghoshf017eab2024-06-28 15:09:33 +0200378 2: "INVALID_DEVICE_ID",
379 3: "INVALID_ONU_DEVICE_ID",
380 4: "INVALID_UNI_ID",
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100381}
382
383var SetValueResponse_ErrorReason_value = map[string]int32{
amit.ghoshf017eab2024-06-28 15:09:33 +0200384 "REASON_UNDEFINED": 0,
385 "UNSUPPORTED": 1,
386 "INVALID_DEVICE_ID": 2,
387 "INVALID_ONU_DEVICE_ID": 3,
388 "INVALID_UNI_ID": 4,
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100389}
390
391func (x SetValueResponse_ErrorReason) String() string {
392 return proto.EnumName(SetValueResponse_ErrorReason_name, int32(x))
393}
394
395func (SetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +0530396 return fileDescriptor_7ecf6e9799a9202d, []int{52, 1}
khenaidoo4c6543e2021-10-19 17:25:58 -0400397}
398
399type ValueSet struct {
400 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
401 // Types that are valid to be assigned to Value:
402 // *ValueSet_AlarmConfig
403 Value isValueSet_Value `protobuf_oneof:"value"`
404 XXX_NoUnkeyedLiteral struct{} `json:"-"`
405 XXX_unrecognized []byte `json:"-"`
406 XXX_sizecache int32 `json:"-"`
407}
408
409func (m *ValueSet) Reset() { *m = ValueSet{} }
410func (m *ValueSet) String() string { return proto.CompactTextString(m) }
411func (*ValueSet) ProtoMessage() {}
412func (*ValueSet) Descriptor() ([]byte, []int) {
413 return fileDescriptor_7ecf6e9799a9202d, []int{0}
414}
415
416func (m *ValueSet) XXX_Unmarshal(b []byte) error {
417 return xxx_messageInfo_ValueSet.Unmarshal(m, b)
418}
419func (m *ValueSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
420 return xxx_messageInfo_ValueSet.Marshal(b, m, deterministic)
421}
422func (m *ValueSet) XXX_Merge(src proto.Message) {
423 xxx_messageInfo_ValueSet.Merge(m, src)
424}
425func (m *ValueSet) XXX_Size() int {
426 return xxx_messageInfo_ValueSet.Size(m)
427}
428func (m *ValueSet) XXX_DiscardUnknown() {
429 xxx_messageInfo_ValueSet.DiscardUnknown(m)
430}
431
432var xxx_messageInfo_ValueSet proto.InternalMessageInfo
433
434func (m *ValueSet) GetId() string {
435 if m != nil {
436 return m.Id
437 }
438 return ""
439}
440
441type isValueSet_Value interface {
442 isValueSet_Value()
443}
444
445type ValueSet_AlarmConfig struct {
446 AlarmConfig *config.AlarmConfig `protobuf:"bytes,2,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
447}
448
449func (*ValueSet_AlarmConfig) isValueSet_Value() {}
450
451func (m *ValueSet) GetValue() isValueSet_Value {
452 if m != nil {
453 return m.Value
454 }
455 return nil
456}
457
458func (m *ValueSet) GetAlarmConfig() *config.AlarmConfig {
459 if x, ok := m.GetValue().(*ValueSet_AlarmConfig); ok {
460 return x.AlarmConfig
461 }
462 return nil
463}
464
465// XXX_OneofWrappers is for the internal use of the proto package.
466func (*ValueSet) XXX_OneofWrappers() []interface{} {
467 return []interface{}{
468 (*ValueSet_AlarmConfig)(nil),
469 }
470}
471
472type ValueType struct {
473 XXX_NoUnkeyedLiteral struct{} `json:"-"`
474 XXX_unrecognized []byte `json:"-"`
475 XXX_sizecache int32 `json:"-"`
476}
477
478func (m *ValueType) Reset() { *m = ValueType{} }
479func (m *ValueType) String() string { return proto.CompactTextString(m) }
480func (*ValueType) ProtoMessage() {}
481func (*ValueType) Descriptor() ([]byte, []int) {
482 return fileDescriptor_7ecf6e9799a9202d, []int{1}
483}
484
485func (m *ValueType) XXX_Unmarshal(b []byte) error {
486 return xxx_messageInfo_ValueType.Unmarshal(m, b)
487}
488func (m *ValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
489 return xxx_messageInfo_ValueType.Marshal(b, m, deterministic)
490}
491func (m *ValueType) XXX_Merge(src proto.Message) {
492 xxx_messageInfo_ValueType.Merge(m, src)
493}
494func (m *ValueType) XXX_Size() int {
495 return xxx_messageInfo_ValueType.Size(m)
496}
497func (m *ValueType) XXX_DiscardUnknown() {
498 xxx_messageInfo_ValueType.DiscardUnknown(m)
499}
500
501var xxx_messageInfo_ValueType proto.InternalMessageInfo
502
503type ValueSpecifier struct {
504 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
505 Value ValueType_Type `protobuf:"varint,2,opt,name=value,proto3,enum=extension.ValueType_Type" json:"value,omitempty"`
506 XXX_NoUnkeyedLiteral struct{} `json:"-"`
507 XXX_unrecognized []byte `json:"-"`
508 XXX_sizecache int32 `json:"-"`
509}
510
511func (m *ValueSpecifier) Reset() { *m = ValueSpecifier{} }
512func (m *ValueSpecifier) String() string { return proto.CompactTextString(m) }
513func (*ValueSpecifier) ProtoMessage() {}
514func (*ValueSpecifier) Descriptor() ([]byte, []int) {
515 return fileDescriptor_7ecf6e9799a9202d, []int{2}
516}
517
518func (m *ValueSpecifier) XXX_Unmarshal(b []byte) error {
519 return xxx_messageInfo_ValueSpecifier.Unmarshal(m, b)
520}
521func (m *ValueSpecifier) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
522 return xxx_messageInfo_ValueSpecifier.Marshal(b, m, deterministic)
523}
524func (m *ValueSpecifier) XXX_Merge(src proto.Message) {
525 xxx_messageInfo_ValueSpecifier.Merge(m, src)
526}
527func (m *ValueSpecifier) XXX_Size() int {
528 return xxx_messageInfo_ValueSpecifier.Size(m)
529}
530func (m *ValueSpecifier) XXX_DiscardUnknown() {
531 xxx_messageInfo_ValueSpecifier.DiscardUnknown(m)
532}
533
534var xxx_messageInfo_ValueSpecifier proto.InternalMessageInfo
535
536func (m *ValueSpecifier) GetId() string {
537 if m != nil {
538 return m.Id
539 }
540 return ""
541}
542
543func (m *ValueSpecifier) GetValue() ValueType_Type {
544 if m != nil {
545 return m.Value
546 }
547 return ValueType_EMPTY
548}
549
550type ReturnValues struct {
551 Set uint32 `protobuf:"varint,1,opt,name=Set,proto3" json:"Set,omitempty"`
552 Unsupported uint32 `protobuf:"varint,2,opt,name=Unsupported,proto3" json:"Unsupported,omitempty"`
553 Error uint32 `protobuf:"varint,3,opt,name=Error,proto3" json:"Error,omitempty"`
554 Distance uint32 `protobuf:"varint,4,opt,name=Distance,proto3" json:"Distance,omitempty"`
555 XXX_NoUnkeyedLiteral struct{} `json:"-"`
556 XXX_unrecognized []byte `json:"-"`
557 XXX_sizecache int32 `json:"-"`
558}
559
560func (m *ReturnValues) Reset() { *m = ReturnValues{} }
561func (m *ReturnValues) String() string { return proto.CompactTextString(m) }
562func (*ReturnValues) ProtoMessage() {}
563func (*ReturnValues) Descriptor() ([]byte, []int) {
564 return fileDescriptor_7ecf6e9799a9202d, []int{3}
565}
566
567func (m *ReturnValues) XXX_Unmarshal(b []byte) error {
568 return xxx_messageInfo_ReturnValues.Unmarshal(m, b)
569}
570func (m *ReturnValues) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
571 return xxx_messageInfo_ReturnValues.Marshal(b, m, deterministic)
572}
573func (m *ReturnValues) XXX_Merge(src proto.Message) {
574 xxx_messageInfo_ReturnValues.Merge(m, src)
575}
576func (m *ReturnValues) XXX_Size() int {
577 return xxx_messageInfo_ReturnValues.Size(m)
578}
579func (m *ReturnValues) XXX_DiscardUnknown() {
580 xxx_messageInfo_ReturnValues.DiscardUnknown(m)
581}
582
583var xxx_messageInfo_ReturnValues proto.InternalMessageInfo
584
585func (m *ReturnValues) GetSet() uint32 {
586 if m != nil {
587 return m.Set
588 }
589 return 0
590}
591
592func (m *ReturnValues) GetUnsupported() uint32 {
593 if m != nil {
594 return m.Unsupported
595 }
596 return 0
597}
598
599func (m *ReturnValues) GetError() uint32 {
600 if m != nil {
601 return m.Error
602 }
603 return 0
604}
605
606func (m *ReturnValues) GetDistance() uint32 {
607 if m != nil {
608 return m.Distance
609 }
610 return 0
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100611}
612
613type GetDistanceRequest struct {
614 OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
615 XXX_NoUnkeyedLiteral struct{} `json:"-"`
616 XXX_unrecognized []byte `json:"-"`
617 XXX_sizecache int32 `json:"-"`
618}
619
620func (m *GetDistanceRequest) Reset() { *m = GetDistanceRequest{} }
621func (m *GetDistanceRequest) String() string { return proto.CompactTextString(m) }
622func (*GetDistanceRequest) ProtoMessage() {}
623func (*GetDistanceRequest) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400624 return fileDescriptor_7ecf6e9799a9202d, []int{4}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100625}
626
627func (m *GetDistanceRequest) XXX_Unmarshal(b []byte) error {
628 return xxx_messageInfo_GetDistanceRequest.Unmarshal(m, b)
629}
630func (m *GetDistanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
631 return xxx_messageInfo_GetDistanceRequest.Marshal(b, m, deterministic)
632}
633func (m *GetDistanceRequest) XXX_Merge(src proto.Message) {
634 xxx_messageInfo_GetDistanceRequest.Merge(m, src)
635}
636func (m *GetDistanceRequest) XXX_Size() int {
637 return xxx_messageInfo_GetDistanceRequest.Size(m)
638}
639func (m *GetDistanceRequest) XXX_DiscardUnknown() {
640 xxx_messageInfo_GetDistanceRequest.DiscardUnknown(m)
641}
642
643var xxx_messageInfo_GetDistanceRequest proto.InternalMessageInfo
644
645func (m *GetDistanceRequest) GetOnuDeviceId() string {
646 if m != nil {
647 return m.OnuDeviceId
648 }
649 return ""
650}
651
652type GetDistanceResponse struct {
653 Distance uint32 `protobuf:"varint,1,opt,name=distance,proto3" json:"distance,omitempty"`
654 XXX_NoUnkeyedLiteral struct{} `json:"-"`
655 XXX_unrecognized []byte `json:"-"`
656 XXX_sizecache int32 `json:"-"`
657}
658
659func (m *GetDistanceResponse) Reset() { *m = GetDistanceResponse{} }
660func (m *GetDistanceResponse) String() string { return proto.CompactTextString(m) }
661func (*GetDistanceResponse) ProtoMessage() {}
662func (*GetDistanceResponse) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400663 return fileDescriptor_7ecf6e9799a9202d, []int{5}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100664}
665
666func (m *GetDistanceResponse) XXX_Unmarshal(b []byte) error {
667 return xxx_messageInfo_GetDistanceResponse.Unmarshal(m, b)
668}
669func (m *GetDistanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
670 return xxx_messageInfo_GetDistanceResponse.Marshal(b, m, deterministic)
671}
672func (m *GetDistanceResponse) XXX_Merge(src proto.Message) {
673 xxx_messageInfo_GetDistanceResponse.Merge(m, src)
674}
675func (m *GetDistanceResponse) XXX_Size() int {
676 return xxx_messageInfo_GetDistanceResponse.Size(m)
677}
678func (m *GetDistanceResponse) XXX_DiscardUnknown() {
679 xxx_messageInfo_GetDistanceResponse.DiscardUnknown(m)
680}
681
682var xxx_messageInfo_GetDistanceResponse proto.InternalMessageInfo
683
684func (m *GetDistanceResponse) GetDistance() uint32 {
685 if m != nil {
686 return m.Distance
687 }
688 return 0
689}
690
691type GetOnuUniInfoRequest struct {
692 UniIndex uint32 `protobuf:"varint,1,opt,name=uniIndex,proto3" json:"uniIndex,omitempty"`
693 XXX_NoUnkeyedLiteral struct{} `json:"-"`
694 XXX_unrecognized []byte `json:"-"`
695 XXX_sizecache int32 `json:"-"`
696}
697
698func (m *GetOnuUniInfoRequest) Reset() { *m = GetOnuUniInfoRequest{} }
699func (m *GetOnuUniInfoRequest) String() string { return proto.CompactTextString(m) }
700func (*GetOnuUniInfoRequest) ProtoMessage() {}
701func (*GetOnuUniInfoRequest) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400702 return fileDescriptor_7ecf6e9799a9202d, []int{6}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100703}
704
705func (m *GetOnuUniInfoRequest) XXX_Unmarshal(b []byte) error {
706 return xxx_messageInfo_GetOnuUniInfoRequest.Unmarshal(m, b)
707}
708func (m *GetOnuUniInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
709 return xxx_messageInfo_GetOnuUniInfoRequest.Marshal(b, m, deterministic)
710}
711func (m *GetOnuUniInfoRequest) XXX_Merge(src proto.Message) {
712 xxx_messageInfo_GetOnuUniInfoRequest.Merge(m, src)
713}
714func (m *GetOnuUniInfoRequest) XXX_Size() int {
715 return xxx_messageInfo_GetOnuUniInfoRequest.Size(m)
716}
717func (m *GetOnuUniInfoRequest) XXX_DiscardUnknown() {
718 xxx_messageInfo_GetOnuUniInfoRequest.DiscardUnknown(m)
719}
720
721var xxx_messageInfo_GetOnuUniInfoRequest proto.InternalMessageInfo
722
723func (m *GetOnuUniInfoRequest) GetUniIndex() uint32 {
724 if m != nil {
725 return m.UniIndex
726 }
727 return 0
728}
729
730type GetOnuUniInfoResponse struct {
731 AdmState GetOnuUniInfoResponse_AdministrativeState `protobuf:"varint,1,opt,name=admState,proto3,enum=extension.GetOnuUniInfoResponse_AdministrativeState" json:"admState,omitempty"`
732 OperState GetOnuUniInfoResponse_OperationalState `protobuf:"varint,2,opt,name=operState,proto3,enum=extension.GetOnuUniInfoResponse_OperationalState" json:"operState,omitempty"`
733 ConfigInd GetOnuUniInfoResponse_ConfigurationInd `protobuf:"varint,3,opt,name=configInd,proto3,enum=extension.GetOnuUniInfoResponse_ConfigurationInd" json:"configInd,omitempty"`
734 XXX_NoUnkeyedLiteral struct{} `json:"-"`
735 XXX_unrecognized []byte `json:"-"`
736 XXX_sizecache int32 `json:"-"`
737}
738
739func (m *GetOnuUniInfoResponse) Reset() { *m = GetOnuUniInfoResponse{} }
740func (m *GetOnuUniInfoResponse) String() string { return proto.CompactTextString(m) }
741func (*GetOnuUniInfoResponse) ProtoMessage() {}
742func (*GetOnuUniInfoResponse) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400743 return fileDescriptor_7ecf6e9799a9202d, []int{7}
amit.ghosh9f6af0e2020-11-04 14:09:25 +0100744}
745
746func (m *GetOnuUniInfoResponse) XXX_Unmarshal(b []byte) error {
747 return xxx_messageInfo_GetOnuUniInfoResponse.Unmarshal(m, b)
748}
749func (m *GetOnuUniInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
750 return xxx_messageInfo_GetOnuUniInfoResponse.Marshal(b, m, deterministic)
751}
752func (m *GetOnuUniInfoResponse) XXX_Merge(src proto.Message) {
753 xxx_messageInfo_GetOnuUniInfoResponse.Merge(m, src)
754}
755func (m *GetOnuUniInfoResponse) XXX_Size() int {
756 return xxx_messageInfo_GetOnuUniInfoResponse.Size(m)
757}
758func (m *GetOnuUniInfoResponse) XXX_DiscardUnknown() {
759 xxx_messageInfo_GetOnuUniInfoResponse.DiscardUnknown(m)
760}
761
762var xxx_messageInfo_GetOnuUniInfoResponse proto.InternalMessageInfo
763
764func (m *GetOnuUniInfoResponse) GetAdmState() GetOnuUniInfoResponse_AdministrativeState {
765 if m != nil {
766 return m.AdmState
767 }
768 return GetOnuUniInfoResponse_ADMSTATE_UNDEFINED
769}
770
771func (m *GetOnuUniInfoResponse) GetOperState() GetOnuUniInfoResponse_OperationalState {
772 if m != nil {
773 return m.OperState
774 }
775 return GetOnuUniInfoResponse_OPERSTATE_UNDEFINED
776}
777
778func (m *GetOnuUniInfoResponse) GetConfigInd() GetOnuUniInfoResponse_ConfigurationInd {
779 if m != nil {
780 return m.ConfigInd
781 }
782 return GetOnuUniInfoResponse_UNKOWN
783}
784
kesavand763d8002021-01-04 16:24:42 +0530785type GetOltPortCounters struct {
786 PortNo uint32 `protobuf:"varint,1,opt,name=portNo,proto3" json:"portNo,omitempty"`
787 PortType GetOltPortCounters_PortType `protobuf:"varint,2,opt,name=portType,proto3,enum=extension.GetOltPortCounters_PortType" json:"portType,omitempty"`
788 XXX_NoUnkeyedLiteral struct{} `json:"-"`
789 XXX_unrecognized []byte `json:"-"`
790 XXX_sizecache int32 `json:"-"`
791}
792
793func (m *GetOltPortCounters) Reset() { *m = GetOltPortCounters{} }
794func (m *GetOltPortCounters) String() string { return proto.CompactTextString(m) }
795func (*GetOltPortCounters) ProtoMessage() {}
796func (*GetOltPortCounters) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400797 return fileDescriptor_7ecf6e9799a9202d, []int{8}
kesavand763d8002021-01-04 16:24:42 +0530798}
799
800func (m *GetOltPortCounters) XXX_Unmarshal(b []byte) error {
801 return xxx_messageInfo_GetOltPortCounters.Unmarshal(m, b)
802}
803func (m *GetOltPortCounters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
804 return xxx_messageInfo_GetOltPortCounters.Marshal(b, m, deterministic)
805}
806func (m *GetOltPortCounters) XXX_Merge(src proto.Message) {
807 xxx_messageInfo_GetOltPortCounters.Merge(m, src)
808}
809func (m *GetOltPortCounters) XXX_Size() int {
810 return xxx_messageInfo_GetOltPortCounters.Size(m)
811}
812func (m *GetOltPortCounters) XXX_DiscardUnknown() {
813 xxx_messageInfo_GetOltPortCounters.DiscardUnknown(m)
814}
815
816var xxx_messageInfo_GetOltPortCounters proto.InternalMessageInfo
817
818func (m *GetOltPortCounters) GetPortNo() uint32 {
819 if m != nil {
820 return m.PortNo
821 }
822 return 0
823}
824
825func (m *GetOltPortCounters) GetPortType() GetOltPortCounters_PortType {
826 if m != nil {
827 return m.PortType
828 }
829 return GetOltPortCounters_Port_UNKNOWN
830}
831
832type GetOltPortCountersResponse struct {
833 TxBytes uint64 `protobuf:"varint,1,opt,name=txBytes,proto3" json:"txBytes,omitempty"`
834 RxBytes uint64 `protobuf:"varint,2,opt,name=rxBytes,proto3" json:"rxBytes,omitempty"`
835 TxPackets uint64 `protobuf:"varint,3,opt,name=txPackets,proto3" json:"txPackets,omitempty"`
836 RxPackets uint64 `protobuf:"varint,4,opt,name=rxPackets,proto3" json:"rxPackets,omitempty"`
837 TxErrorPackets uint64 `protobuf:"varint,5,opt,name=txErrorPackets,proto3" json:"txErrorPackets,omitempty"`
838 RxErrorPackets uint64 `protobuf:"varint,6,opt,name=rxErrorPackets,proto3" json:"rxErrorPackets,omitempty"`
839 TxBcastPackets uint64 `protobuf:"varint,7,opt,name=txBcastPackets,proto3" json:"txBcastPackets,omitempty"`
840 RxBcastPackets uint64 `protobuf:"varint,8,opt,name=rxBcastPackets,proto3" json:"rxBcastPackets,omitempty"`
841 TxUcastPackets uint64 `protobuf:"varint,9,opt,name=txUcastPackets,proto3" json:"txUcastPackets,omitempty"`
842 RxUcastPackets uint64 `protobuf:"varint,10,opt,name=rxUcastPackets,proto3" json:"rxUcastPackets,omitempty"`
843 TxMcastPackets uint64 `protobuf:"varint,11,opt,name=txMcastPackets,proto3" json:"txMcastPackets,omitempty"`
844 RxMcastPackets uint64 `protobuf:"varint,12,opt,name=rxMcastPackets,proto3" json:"rxMcastPackets,omitempty"`
845 XXX_NoUnkeyedLiteral struct{} `json:"-"`
846 XXX_unrecognized []byte `json:"-"`
847 XXX_sizecache int32 `json:"-"`
848}
849
850func (m *GetOltPortCountersResponse) Reset() { *m = GetOltPortCountersResponse{} }
851func (m *GetOltPortCountersResponse) String() string { return proto.CompactTextString(m) }
852func (*GetOltPortCountersResponse) ProtoMessage() {}
853func (*GetOltPortCountersResponse) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400854 return fileDescriptor_7ecf6e9799a9202d, []int{9}
kesavand763d8002021-01-04 16:24:42 +0530855}
856
857func (m *GetOltPortCountersResponse) XXX_Unmarshal(b []byte) error {
858 return xxx_messageInfo_GetOltPortCountersResponse.Unmarshal(m, b)
859}
860func (m *GetOltPortCountersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
861 return xxx_messageInfo_GetOltPortCountersResponse.Marshal(b, m, deterministic)
862}
863func (m *GetOltPortCountersResponse) XXX_Merge(src proto.Message) {
864 xxx_messageInfo_GetOltPortCountersResponse.Merge(m, src)
865}
866func (m *GetOltPortCountersResponse) XXX_Size() int {
867 return xxx_messageInfo_GetOltPortCountersResponse.Size(m)
868}
869func (m *GetOltPortCountersResponse) XXX_DiscardUnknown() {
870 xxx_messageInfo_GetOltPortCountersResponse.DiscardUnknown(m)
871}
872
873var xxx_messageInfo_GetOltPortCountersResponse proto.InternalMessageInfo
874
875func (m *GetOltPortCountersResponse) GetTxBytes() uint64 {
876 if m != nil {
877 return m.TxBytes
878 }
879 return 0
880}
881
882func (m *GetOltPortCountersResponse) GetRxBytes() uint64 {
883 if m != nil {
884 return m.RxBytes
885 }
886 return 0
887}
888
889func (m *GetOltPortCountersResponse) GetTxPackets() uint64 {
890 if m != nil {
891 return m.TxPackets
892 }
893 return 0
894}
895
896func (m *GetOltPortCountersResponse) GetRxPackets() uint64 {
897 if m != nil {
898 return m.RxPackets
899 }
900 return 0
901}
902
903func (m *GetOltPortCountersResponse) GetTxErrorPackets() uint64 {
904 if m != nil {
905 return m.TxErrorPackets
906 }
907 return 0
908}
909
910func (m *GetOltPortCountersResponse) GetRxErrorPackets() uint64 {
911 if m != nil {
912 return m.RxErrorPackets
913 }
914 return 0
915}
916
917func (m *GetOltPortCountersResponse) GetTxBcastPackets() uint64 {
918 if m != nil {
919 return m.TxBcastPackets
920 }
921 return 0
922}
923
924func (m *GetOltPortCountersResponse) GetRxBcastPackets() uint64 {
925 if m != nil {
926 return m.RxBcastPackets
927 }
928 return 0
929}
930
931func (m *GetOltPortCountersResponse) GetTxUcastPackets() uint64 {
932 if m != nil {
933 return m.TxUcastPackets
934 }
935 return 0
936}
937
938func (m *GetOltPortCountersResponse) GetRxUcastPackets() uint64 {
939 if m != nil {
940 return m.RxUcastPackets
941 }
942 return 0
943}
944
945func (m *GetOltPortCountersResponse) GetTxMcastPackets() uint64 {
946 if m != nil {
947 return m.TxMcastPackets
948 }
949 return 0
950}
951
952func (m *GetOltPortCountersResponse) GetRxMcastPackets() uint64 {
953 if m != nil {
954 return m.RxMcastPackets
955 }
956 return 0
957}
958
959type GetOnuPonOpticalInfo struct {
960 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
961 XXX_NoUnkeyedLiteral struct{} `json:"-"`
962 XXX_unrecognized []byte `json:"-"`
963 XXX_sizecache int32 `json:"-"`
964}
965
966func (m *GetOnuPonOpticalInfo) Reset() { *m = GetOnuPonOpticalInfo{} }
967func (m *GetOnuPonOpticalInfo) String() string { return proto.CompactTextString(m) }
968func (*GetOnuPonOpticalInfo) ProtoMessage() {}
969func (*GetOnuPonOpticalInfo) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -0400970 return fileDescriptor_7ecf6e9799a9202d, []int{10}
kesavand763d8002021-01-04 16:24:42 +0530971}
972
973func (m *GetOnuPonOpticalInfo) XXX_Unmarshal(b []byte) error {
974 return xxx_messageInfo_GetOnuPonOpticalInfo.Unmarshal(m, b)
975}
976func (m *GetOnuPonOpticalInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
977 return xxx_messageInfo_GetOnuPonOpticalInfo.Marshal(b, m, deterministic)
978}
979func (m *GetOnuPonOpticalInfo) XXX_Merge(src proto.Message) {
980 xxx_messageInfo_GetOnuPonOpticalInfo.Merge(m, src)
981}
982func (m *GetOnuPonOpticalInfo) XXX_Size() int {
983 return xxx_messageInfo_GetOnuPonOpticalInfo.Size(m)
984}
985func (m *GetOnuPonOpticalInfo) XXX_DiscardUnknown() {
986 xxx_messageInfo_GetOnuPonOpticalInfo.DiscardUnknown(m)
987}
988
989var xxx_messageInfo_GetOnuPonOpticalInfo proto.InternalMessageInfo
990
991func (m *GetOnuPonOpticalInfo) GetEmpty() *empty.Empty {
992 if m != nil {
993 return m.Empty
994 }
995 return nil
996}
997
Girish Gowdrab1d742d2021-05-01 15:34:32 -0700998// These values correspond to the Optical Line Supervision Test results
999// described in section A3.39.5 of ITU-T G.988 (11/2017) specification.
kesavand763d8002021-01-04 16:24:42 +05301000type GetOnuPonOpticalInfoResponse struct {
Girish Gowdrab1d742d2021-05-01 15:34:32 -07001001 PowerFeedVoltage float32 `protobuf:"fixed32,1,opt,name=powerFeedVoltage,proto3" json:"powerFeedVoltage,omitempty"`
1002 ReceivedOpticalPower float32 `protobuf:"fixed32,2,opt,name=receivedOpticalPower,proto3" json:"receivedOpticalPower,omitempty"`
1003 MeanOpticalLaunchPower float32 `protobuf:"fixed32,3,opt,name=meanOpticalLaunchPower,proto3" json:"meanOpticalLaunchPower,omitempty"`
1004 LaserBiasCurrent float32 `protobuf:"fixed32,4,opt,name=laserBiasCurrent,proto3" json:"laserBiasCurrent,omitempty"`
1005 Temperature float32 `protobuf:"fixed32,5,opt,name=temperature,proto3" json:"temperature,omitempty"`
1006 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1007 XXX_unrecognized []byte `json:"-"`
1008 XXX_sizecache int32 `json:"-"`
kesavand763d8002021-01-04 16:24:42 +05301009}
1010
1011func (m *GetOnuPonOpticalInfoResponse) Reset() { *m = GetOnuPonOpticalInfoResponse{} }
1012func (m *GetOnuPonOpticalInfoResponse) String() string { return proto.CompactTextString(m) }
1013func (*GetOnuPonOpticalInfoResponse) ProtoMessage() {}
1014func (*GetOnuPonOpticalInfoResponse) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -04001015 return fileDescriptor_7ecf6e9799a9202d, []int{11}
kesavand763d8002021-01-04 16:24:42 +05301016}
1017
1018func (m *GetOnuPonOpticalInfoResponse) XXX_Unmarshal(b []byte) error {
1019 return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Unmarshal(m, b)
1020}
1021func (m *GetOnuPonOpticalInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1022 return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Marshal(b, m, deterministic)
1023}
1024func (m *GetOnuPonOpticalInfoResponse) XXX_Merge(src proto.Message) {
1025 xxx_messageInfo_GetOnuPonOpticalInfoResponse.Merge(m, src)
1026}
1027func (m *GetOnuPonOpticalInfoResponse) XXX_Size() int {
1028 return xxx_messageInfo_GetOnuPonOpticalInfoResponse.Size(m)
1029}
1030func (m *GetOnuPonOpticalInfoResponse) XXX_DiscardUnknown() {
1031 xxx_messageInfo_GetOnuPonOpticalInfoResponse.DiscardUnknown(m)
1032}
1033
1034var xxx_messageInfo_GetOnuPonOpticalInfoResponse proto.InternalMessageInfo
1035
Girish Gowdrab1d742d2021-05-01 15:34:32 -07001036func (m *GetOnuPonOpticalInfoResponse) GetPowerFeedVoltage() float32 {
kesavand763d8002021-01-04 16:24:42 +05301037 if m != nil {
1038 return m.PowerFeedVoltage
1039 }
1040 return 0
1041}
1042
Girish Gowdrab1d742d2021-05-01 15:34:32 -07001043func (m *GetOnuPonOpticalInfoResponse) GetReceivedOpticalPower() float32 {
kesavand763d8002021-01-04 16:24:42 +05301044 if m != nil {
1045 return m.ReceivedOpticalPower
1046 }
1047 return 0
1048}
1049
Girish Gowdrab1d742d2021-05-01 15:34:32 -07001050func (m *GetOnuPonOpticalInfoResponse) GetMeanOpticalLaunchPower() float32 {
kesavand763d8002021-01-04 16:24:42 +05301051 if m != nil {
Girish Gowdrab1d742d2021-05-01 15:34:32 -07001052 return m.MeanOpticalLaunchPower
kesavand763d8002021-01-04 16:24:42 +05301053 }
1054 return 0
1055}
1056
Girish Gowdrab1d742d2021-05-01 15:34:32 -07001057func (m *GetOnuPonOpticalInfoResponse) GetLaserBiasCurrent() float32 {
1058 if m != nil {
1059 return m.LaserBiasCurrent
1060 }
1061 return 0
1062}
1063
1064func (m *GetOnuPonOpticalInfoResponse) GetTemperature() float32 {
kesavand763d8002021-01-04 16:24:42 +05301065 if m != nil {
1066 return m.Temperature
1067 }
1068 return 0
1069}
1070
kesavand763d8002021-01-04 16:24:42 +05301071type GetOnuEthernetBridgePortHistory struct {
1072 Direction GetOnuEthernetBridgePortHistory_Direction `protobuf:"varint,1,opt,name=direction,proto3,enum=extension.GetOnuEthernetBridgePortHistory_Direction" json:"direction,omitempty"`
1073 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1074 XXX_unrecognized []byte `json:"-"`
1075 XXX_sizecache int32 `json:"-"`
1076}
1077
1078func (m *GetOnuEthernetBridgePortHistory) Reset() { *m = GetOnuEthernetBridgePortHistory{} }
1079func (m *GetOnuEthernetBridgePortHistory) String() string { return proto.CompactTextString(m) }
1080func (*GetOnuEthernetBridgePortHistory) ProtoMessage() {}
1081func (*GetOnuEthernetBridgePortHistory) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -04001082 return fileDescriptor_7ecf6e9799a9202d, []int{12}
kesavand763d8002021-01-04 16:24:42 +05301083}
1084
1085func (m *GetOnuEthernetBridgePortHistory) XXX_Unmarshal(b []byte) error {
1086 return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Unmarshal(m, b)
1087}
1088func (m *GetOnuEthernetBridgePortHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1089 return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Marshal(b, m, deterministic)
1090}
1091func (m *GetOnuEthernetBridgePortHistory) XXX_Merge(src proto.Message) {
1092 xxx_messageInfo_GetOnuEthernetBridgePortHistory.Merge(m, src)
1093}
1094func (m *GetOnuEthernetBridgePortHistory) XXX_Size() int {
1095 return xxx_messageInfo_GetOnuEthernetBridgePortHistory.Size(m)
1096}
1097func (m *GetOnuEthernetBridgePortHistory) XXX_DiscardUnknown() {
1098 xxx_messageInfo_GetOnuEthernetBridgePortHistory.DiscardUnknown(m)
1099}
1100
1101var xxx_messageInfo_GetOnuEthernetBridgePortHistory proto.InternalMessageInfo
1102
1103func (m *GetOnuEthernetBridgePortHistory) GetDirection() GetOnuEthernetBridgePortHistory_Direction {
1104 if m != nil {
1105 return m.Direction
1106 }
1107 return GetOnuEthernetBridgePortHistory_UNDEFINED
1108}
1109
1110type GetOnuEthernetBridgePortHistoryResponse struct {
1111 DropEvents uint32 `protobuf:"varint,1,opt,name=dropEvents,proto3" json:"dropEvents,omitempty"`
1112 Octets uint32 `protobuf:"varint,2,opt,name=octets,proto3" json:"octets,omitempty"`
1113 Packets uint32 `protobuf:"varint,3,opt,name=packets,proto3" json:"packets,omitempty"`
1114 BroadcastPackets uint32 `protobuf:"varint,4,opt,name=broadcastPackets,proto3" json:"broadcastPackets,omitempty"`
1115 MulticastPackets uint32 `protobuf:"varint,5,opt,name=multicastPackets,proto3" json:"multicastPackets,omitempty"`
1116 CrcErroredPackets uint32 `protobuf:"varint,6,opt,name=crcErroredPackets,proto3" json:"crcErroredPackets,omitempty"`
1117 UndersizePackets uint32 `protobuf:"varint,7,opt,name=undersizePackets,proto3" json:"undersizePackets,omitempty"`
1118 OversizePackets uint32 `protobuf:"varint,8,opt,name=oversizePackets,proto3" json:"oversizePackets,omitempty"`
1119 Packets64Octets uint32 `protobuf:"varint,9,opt,name=packets64octets,proto3" json:"packets64octets,omitempty"`
1120 Packets65To127Octets uint32 `protobuf:"varint,10,opt,name=packets65To127octets,proto3" json:"packets65To127octets,omitempty"`
1121 Packets128To255Octets uint32 `protobuf:"varint,11,opt,name=packets128To255Octets,proto3" json:"packets128To255Octets,omitempty"`
1122 Packets256To511Octets uint32 `protobuf:"varint,12,opt,name=packets256To511octets,proto3" json:"packets256To511octets,omitempty"`
1123 Packets512To1023Octets uint32 `protobuf:"varint,13,opt,name=packets512To1023octets,proto3" json:"packets512To1023octets,omitempty"`
1124 Packets1024To1518Octets uint32 `protobuf:"varint,14,opt,name=packets1024To1518octets,proto3" json:"packets1024To1518octets,omitempty"`
1125 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1126 XXX_unrecognized []byte `json:"-"`
1127 XXX_sizecache int32 `json:"-"`
1128}
1129
1130func (m *GetOnuEthernetBridgePortHistoryResponse) Reset() {
1131 *m = GetOnuEthernetBridgePortHistoryResponse{}
1132}
1133func (m *GetOnuEthernetBridgePortHistoryResponse) String() string { return proto.CompactTextString(m) }
1134func (*GetOnuEthernetBridgePortHistoryResponse) ProtoMessage() {}
1135func (*GetOnuEthernetBridgePortHistoryResponse) Descriptor() ([]byte, []int) {
khenaidoo4c6543e2021-10-19 17:25:58 -04001136 return fileDescriptor_7ecf6e9799a9202d, []int{13}
kesavand763d8002021-01-04 16:24:42 +05301137}
1138
1139func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Unmarshal(b []byte) error {
1140 return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Unmarshal(m, b)
1141}
1142func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1143 return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Marshal(b, m, deterministic)
1144}
1145func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Merge(src proto.Message) {
1146 xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Merge(m, src)
1147}
1148func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_Size() int {
1149 return xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.Size(m)
1150}
1151func (m *GetOnuEthernetBridgePortHistoryResponse) XXX_DiscardUnknown() {
1152 xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse.DiscardUnknown(m)
1153}
1154
1155var xxx_messageInfo_GetOnuEthernetBridgePortHistoryResponse proto.InternalMessageInfo
1156
1157func (m *GetOnuEthernetBridgePortHistoryResponse) GetDropEvents() uint32 {
1158 if m != nil {
1159 return m.DropEvents
1160 }
1161 return 0
1162}
1163
1164func (m *GetOnuEthernetBridgePortHistoryResponse) GetOctets() uint32 {
1165 if m != nil {
1166 return m.Octets
1167 }
1168 return 0
1169}
1170
1171func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets() uint32 {
1172 if m != nil {
1173 return m.Packets
1174 }
1175 return 0
1176}
1177
1178func (m *GetOnuEthernetBridgePortHistoryResponse) GetBroadcastPackets() uint32 {
1179 if m != nil {
1180 return m.BroadcastPackets
1181 }
1182 return 0
1183}
1184
1185func (m *GetOnuEthernetBridgePortHistoryResponse) GetMulticastPackets() uint32 {
1186 if m != nil {
1187 return m.MulticastPackets
1188 }
1189 return 0
1190}
1191
1192func (m *GetOnuEthernetBridgePortHistoryResponse) GetCrcErroredPackets() uint32 {
1193 if m != nil {
1194 return m.CrcErroredPackets
1195 }
1196 return 0
1197}
1198
1199func (m *GetOnuEthernetBridgePortHistoryResponse) GetUndersizePackets() uint32 {
1200 if m != nil {
1201 return m.UndersizePackets
1202 }
1203 return 0
1204}
1205
1206func (m *GetOnuEthernetBridgePortHistoryResponse) GetOversizePackets() uint32 {
1207 if m != nil {
1208 return m.OversizePackets
1209 }
1210 return 0
1211}
1212
1213func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets64Octets() uint32 {
1214 if m != nil {
1215 return m.Packets64Octets
1216 }
1217 return 0
1218}
1219
1220func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets65To127Octets() uint32 {
1221 if m != nil {
1222 return m.Packets65To127Octets
1223 }
1224 return 0
1225}
1226
1227func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets128To255Octets() uint32 {
1228 if m != nil {
1229 return m.Packets128To255Octets
1230 }
1231 return 0
1232}
1233
1234func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets256To511Octets() uint32 {
1235 if m != nil {
1236 return m.Packets256To511Octets
1237 }
1238 return 0
1239}
1240
1241func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets512To1023Octets() uint32 {
1242 if m != nil {
1243 return m.Packets512To1023Octets
1244 }
1245 return 0
1246}
1247
1248func (m *GetOnuEthernetBridgePortHistoryResponse) GetPackets1024To1518Octets() uint32 {
1249 if m != nil {
1250 return m.Packets1024To1518Octets
1251 }
1252 return 0
1253}
1254
Akash Kankanala761955c2024-02-21 19:32:20 +05301255// GetOnuAllocGemHistoryRequest collects GEM and AllocId stats from ONU
1256type GetOnuAllocGemHistoryRequest struct {
1257 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
1258 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1259 XXX_unrecognized []byte `json:"-"`
1260 XXX_sizecache int32 `json:"-"`
1261}
1262
1263func (m *GetOnuAllocGemHistoryRequest) Reset() { *m = GetOnuAllocGemHistoryRequest{} }
1264func (m *GetOnuAllocGemHistoryRequest) String() string { return proto.CompactTextString(m) }
1265func (*GetOnuAllocGemHistoryRequest) ProtoMessage() {}
1266func (*GetOnuAllocGemHistoryRequest) Descriptor() ([]byte, []int) {
1267 return fileDescriptor_7ecf6e9799a9202d, []int{14}
1268}
1269
1270func (m *GetOnuAllocGemHistoryRequest) XXX_Unmarshal(b []byte) error {
1271 return xxx_messageInfo_GetOnuAllocGemHistoryRequest.Unmarshal(m, b)
1272}
1273func (m *GetOnuAllocGemHistoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1274 return xxx_messageInfo_GetOnuAllocGemHistoryRequest.Marshal(b, m, deterministic)
1275}
1276func (m *GetOnuAllocGemHistoryRequest) XXX_Merge(src proto.Message) {
1277 xxx_messageInfo_GetOnuAllocGemHistoryRequest.Merge(m, src)
1278}
1279func (m *GetOnuAllocGemHistoryRequest) XXX_Size() int {
1280 return xxx_messageInfo_GetOnuAllocGemHistoryRequest.Size(m)
1281}
1282func (m *GetOnuAllocGemHistoryRequest) XXX_DiscardUnknown() {
1283 xxx_messageInfo_GetOnuAllocGemHistoryRequest.DiscardUnknown(m)
1284}
1285
1286var xxx_messageInfo_GetOnuAllocGemHistoryRequest proto.InternalMessageInfo
1287
1288func (m *GetOnuAllocGemHistoryRequest) GetEmpty() *empty.Empty {
1289 if m != nil {
1290 return m.Empty
1291 }
1292 return nil
1293}
1294
1295type OnuGemPortHistoryData struct {
1296 GemId uint32 `protobuf:"varint,1,opt,name=gemId,proto3" json:"gemId,omitempty"`
1297 TransmittedGEMFrames uint32 `protobuf:"varint,2,opt,name=transmittedGEMFrames,proto3" json:"transmittedGEMFrames,omitempty"`
1298 ReceivedGEMFrames uint32 `protobuf:"varint,3,opt,name=receivedGEMFrames,proto3" json:"receivedGEMFrames,omitempty"`
1299 ReceivedPayloadBytes uint32 `protobuf:"varint,4,opt,name=receivedPayloadBytes,proto3" json:"receivedPayloadBytes,omitempty"`
1300 TransmittedPayloadBytes uint32 `protobuf:"varint,5,opt,name=transmittedPayloadBytes,proto3" json:"transmittedPayloadBytes,omitempty"`
1301 EncryptionKeyErrors uint32 `protobuf:"varint,6,opt,name=encryptionKeyErrors,proto3" json:"encryptionKeyErrors,omitempty"`
1302 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1303 XXX_unrecognized []byte `json:"-"`
1304 XXX_sizecache int32 `json:"-"`
1305}
1306
1307func (m *OnuGemPortHistoryData) Reset() { *m = OnuGemPortHistoryData{} }
1308func (m *OnuGemPortHistoryData) String() string { return proto.CompactTextString(m) }
1309func (*OnuGemPortHistoryData) ProtoMessage() {}
1310func (*OnuGemPortHistoryData) Descriptor() ([]byte, []int) {
1311 return fileDescriptor_7ecf6e9799a9202d, []int{15}
1312}
1313
1314func (m *OnuGemPortHistoryData) XXX_Unmarshal(b []byte) error {
1315 return xxx_messageInfo_OnuGemPortHistoryData.Unmarshal(m, b)
1316}
1317func (m *OnuGemPortHistoryData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1318 return xxx_messageInfo_OnuGemPortHistoryData.Marshal(b, m, deterministic)
1319}
1320func (m *OnuGemPortHistoryData) XXX_Merge(src proto.Message) {
1321 xxx_messageInfo_OnuGemPortHistoryData.Merge(m, src)
1322}
1323func (m *OnuGemPortHistoryData) XXX_Size() int {
1324 return xxx_messageInfo_OnuGemPortHistoryData.Size(m)
1325}
1326func (m *OnuGemPortHistoryData) XXX_DiscardUnknown() {
1327 xxx_messageInfo_OnuGemPortHistoryData.DiscardUnknown(m)
1328}
1329
1330var xxx_messageInfo_OnuGemPortHistoryData proto.InternalMessageInfo
1331
1332func (m *OnuGemPortHistoryData) GetGemId() uint32 {
1333 if m != nil {
1334 return m.GemId
1335 }
1336 return 0
1337}
1338
1339func (m *OnuGemPortHistoryData) GetTransmittedGEMFrames() uint32 {
1340 if m != nil {
1341 return m.TransmittedGEMFrames
1342 }
1343 return 0
1344}
1345
1346func (m *OnuGemPortHistoryData) GetReceivedGEMFrames() uint32 {
1347 if m != nil {
1348 return m.ReceivedGEMFrames
1349 }
1350 return 0
1351}
1352
1353func (m *OnuGemPortHistoryData) GetReceivedPayloadBytes() uint32 {
1354 if m != nil {
1355 return m.ReceivedPayloadBytes
1356 }
1357 return 0
1358}
1359
1360func (m *OnuGemPortHistoryData) GetTransmittedPayloadBytes() uint32 {
1361 if m != nil {
1362 return m.TransmittedPayloadBytes
1363 }
1364 return 0
1365}
1366
1367func (m *OnuGemPortHistoryData) GetEncryptionKeyErrors() uint32 {
1368 if m != nil {
1369 return m.EncryptionKeyErrors
1370 }
1371 return 0
1372}
1373
1374type OnuAllocHistoryData struct {
1375 AllocId uint32 `protobuf:"varint,1,opt,name=allocId,proto3" json:"allocId,omitempty"`
1376 RxBytes uint32 `protobuf:"varint,2,opt,name=rxBytes,proto3" json:"rxBytes,omitempty"`
1377 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1378 XXX_unrecognized []byte `json:"-"`
1379 XXX_sizecache int32 `json:"-"`
1380}
1381
1382func (m *OnuAllocHistoryData) Reset() { *m = OnuAllocHistoryData{} }
1383func (m *OnuAllocHistoryData) String() string { return proto.CompactTextString(m) }
1384func (*OnuAllocHistoryData) ProtoMessage() {}
1385func (*OnuAllocHistoryData) Descriptor() ([]byte, []int) {
1386 return fileDescriptor_7ecf6e9799a9202d, []int{16}
1387}
1388
1389func (m *OnuAllocHistoryData) XXX_Unmarshal(b []byte) error {
1390 return xxx_messageInfo_OnuAllocHistoryData.Unmarshal(m, b)
1391}
1392func (m *OnuAllocHistoryData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1393 return xxx_messageInfo_OnuAllocHistoryData.Marshal(b, m, deterministic)
1394}
1395func (m *OnuAllocHistoryData) XXX_Merge(src proto.Message) {
1396 xxx_messageInfo_OnuAllocHistoryData.Merge(m, src)
1397}
1398func (m *OnuAllocHistoryData) XXX_Size() int {
1399 return xxx_messageInfo_OnuAllocHistoryData.Size(m)
1400}
1401func (m *OnuAllocHistoryData) XXX_DiscardUnknown() {
1402 xxx_messageInfo_OnuAllocHistoryData.DiscardUnknown(m)
1403}
1404
1405var xxx_messageInfo_OnuAllocHistoryData proto.InternalMessageInfo
1406
1407func (m *OnuAllocHistoryData) GetAllocId() uint32 {
1408 if m != nil {
1409 return m.AllocId
1410 }
1411 return 0
1412}
1413
1414func (m *OnuAllocHistoryData) GetRxBytes() uint32 {
1415 if m != nil {
1416 return m.RxBytes
1417 }
1418 return 0
1419}
1420
1421type OnuAllocGemHistoryData struct {
1422 OnuAllocIdInfo *OnuAllocHistoryData `protobuf:"bytes,1,opt,name=onuAllocIdInfo,proto3" json:"onuAllocIdInfo,omitempty"`
1423 GemPortInfo []*OnuGemPortHistoryData `protobuf:"bytes,2,rep,name=gemPortInfo,proto3" json:"gemPortInfo,omitempty"`
1424 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1425 XXX_unrecognized []byte `json:"-"`
1426 XXX_sizecache int32 `json:"-"`
1427}
1428
1429func (m *OnuAllocGemHistoryData) Reset() { *m = OnuAllocGemHistoryData{} }
1430func (m *OnuAllocGemHistoryData) String() string { return proto.CompactTextString(m) }
1431func (*OnuAllocGemHistoryData) ProtoMessage() {}
1432func (*OnuAllocGemHistoryData) Descriptor() ([]byte, []int) {
1433 return fileDescriptor_7ecf6e9799a9202d, []int{17}
1434}
1435
1436func (m *OnuAllocGemHistoryData) XXX_Unmarshal(b []byte) error {
1437 return xxx_messageInfo_OnuAllocGemHistoryData.Unmarshal(m, b)
1438}
1439func (m *OnuAllocGemHistoryData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1440 return xxx_messageInfo_OnuAllocGemHistoryData.Marshal(b, m, deterministic)
1441}
1442func (m *OnuAllocGemHistoryData) XXX_Merge(src proto.Message) {
1443 xxx_messageInfo_OnuAllocGemHistoryData.Merge(m, src)
1444}
1445func (m *OnuAllocGemHistoryData) XXX_Size() int {
1446 return xxx_messageInfo_OnuAllocGemHistoryData.Size(m)
1447}
1448func (m *OnuAllocGemHistoryData) XXX_DiscardUnknown() {
1449 xxx_messageInfo_OnuAllocGemHistoryData.DiscardUnknown(m)
1450}
1451
1452var xxx_messageInfo_OnuAllocGemHistoryData proto.InternalMessageInfo
1453
1454func (m *OnuAllocGemHistoryData) GetOnuAllocIdInfo() *OnuAllocHistoryData {
1455 if m != nil {
1456 return m.OnuAllocIdInfo
1457 }
1458 return nil
1459}
1460
1461func (m *OnuAllocGemHistoryData) GetGemPortInfo() []*OnuGemPortHistoryData {
1462 if m != nil {
1463 return m.GemPortInfo
1464 }
1465 return nil
1466}
1467
1468type GetOnuAllocGemHistoryResponse struct {
1469 OnuAllocGemHistoryData []*OnuAllocGemHistoryData `protobuf:"bytes,1,rep,name=onuAllocGemHistoryData,proto3" json:"onuAllocGemHistoryData,omitempty"`
1470 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1471 XXX_unrecognized []byte `json:"-"`
1472 XXX_sizecache int32 `json:"-"`
1473}
1474
1475func (m *GetOnuAllocGemHistoryResponse) Reset() { *m = GetOnuAllocGemHistoryResponse{} }
1476func (m *GetOnuAllocGemHistoryResponse) String() string { return proto.CompactTextString(m) }
1477func (*GetOnuAllocGemHistoryResponse) ProtoMessage() {}
1478func (*GetOnuAllocGemHistoryResponse) Descriptor() ([]byte, []int) {
1479 return fileDescriptor_7ecf6e9799a9202d, []int{18}
1480}
1481
1482func (m *GetOnuAllocGemHistoryResponse) XXX_Unmarshal(b []byte) error {
1483 return xxx_messageInfo_GetOnuAllocGemHistoryResponse.Unmarshal(m, b)
1484}
1485func (m *GetOnuAllocGemHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1486 return xxx_messageInfo_GetOnuAllocGemHistoryResponse.Marshal(b, m, deterministic)
1487}
1488func (m *GetOnuAllocGemHistoryResponse) XXX_Merge(src proto.Message) {
1489 xxx_messageInfo_GetOnuAllocGemHistoryResponse.Merge(m, src)
1490}
1491func (m *GetOnuAllocGemHistoryResponse) XXX_Size() int {
1492 return xxx_messageInfo_GetOnuAllocGemHistoryResponse.Size(m)
1493}
1494func (m *GetOnuAllocGemHistoryResponse) XXX_DiscardUnknown() {
1495 xxx_messageInfo_GetOnuAllocGemHistoryResponse.DiscardUnknown(m)
1496}
1497
1498var xxx_messageInfo_GetOnuAllocGemHistoryResponse proto.InternalMessageInfo
1499
1500func (m *GetOnuAllocGemHistoryResponse) GetOnuAllocGemHistoryData() []*OnuAllocGemHistoryData {
1501 if m != nil {
1502 return m.OnuAllocGemHistoryData
1503 }
1504 return nil
1505}
1506
kesavand763d8002021-01-04 16:24:42 +05301507type GetOnuFecHistory struct {
1508 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
1509 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1510 XXX_unrecognized []byte `json:"-"`
1511 XXX_sizecache int32 `json:"-"`
1512}
1513
1514func (m *GetOnuFecHistory) Reset() { *m = GetOnuFecHistory{} }
1515func (m *GetOnuFecHistory) String() string { return proto.CompactTextString(m) }
1516func (*GetOnuFecHistory) ProtoMessage() {}
1517func (*GetOnuFecHistory) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05301518 return fileDescriptor_7ecf6e9799a9202d, []int{19}
kesavand763d8002021-01-04 16:24:42 +05301519}
1520
1521func (m *GetOnuFecHistory) XXX_Unmarshal(b []byte) error {
1522 return xxx_messageInfo_GetOnuFecHistory.Unmarshal(m, b)
1523}
1524func (m *GetOnuFecHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1525 return xxx_messageInfo_GetOnuFecHistory.Marshal(b, m, deterministic)
1526}
1527func (m *GetOnuFecHistory) XXX_Merge(src proto.Message) {
1528 xxx_messageInfo_GetOnuFecHistory.Merge(m, src)
1529}
1530func (m *GetOnuFecHistory) XXX_Size() int {
1531 return xxx_messageInfo_GetOnuFecHistory.Size(m)
1532}
1533func (m *GetOnuFecHistory) XXX_DiscardUnknown() {
1534 xxx_messageInfo_GetOnuFecHistory.DiscardUnknown(m)
1535}
1536
1537var xxx_messageInfo_GetOnuFecHistory proto.InternalMessageInfo
1538
1539func (m *GetOnuFecHistory) GetEmpty() *empty.Empty {
1540 if m != nil {
1541 return m.Empty
1542 }
1543 return nil
1544}
1545
1546type GetOnuFecHistoryResponse struct {
1547 CorrectedBytes uint32 `protobuf:"varint,1,opt,name=correctedBytes,proto3" json:"correctedBytes,omitempty"`
1548 CorrectedCodeWords uint32 `protobuf:"varint,2,opt,name=correctedCodeWords,proto3" json:"correctedCodeWords,omitempty"`
1549 FecSeconds uint32 `protobuf:"varint,3,opt,name=fecSeconds,proto3" json:"fecSeconds,omitempty"`
1550 TotalCodeWords uint32 `protobuf:"varint,4,opt,name=totalCodeWords,proto3" json:"totalCodeWords,omitempty"`
1551 UncorrectableCodeWords uint32 `protobuf:"varint,5,opt,name=uncorrectableCodeWords,proto3" json:"uncorrectableCodeWords,omitempty"`
1552 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1553 XXX_unrecognized []byte `json:"-"`
1554 XXX_sizecache int32 `json:"-"`
1555}
1556
1557func (m *GetOnuFecHistoryResponse) Reset() { *m = GetOnuFecHistoryResponse{} }
1558func (m *GetOnuFecHistoryResponse) String() string { return proto.CompactTextString(m) }
1559func (*GetOnuFecHistoryResponse) ProtoMessage() {}
1560func (*GetOnuFecHistoryResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05301561 return fileDescriptor_7ecf6e9799a9202d, []int{20}
kesavand763d8002021-01-04 16:24:42 +05301562}
1563
1564func (m *GetOnuFecHistoryResponse) XXX_Unmarshal(b []byte) error {
1565 return xxx_messageInfo_GetOnuFecHistoryResponse.Unmarshal(m, b)
1566}
1567func (m *GetOnuFecHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1568 return xxx_messageInfo_GetOnuFecHistoryResponse.Marshal(b, m, deterministic)
1569}
1570func (m *GetOnuFecHistoryResponse) XXX_Merge(src proto.Message) {
1571 xxx_messageInfo_GetOnuFecHistoryResponse.Merge(m, src)
1572}
1573func (m *GetOnuFecHistoryResponse) XXX_Size() int {
1574 return xxx_messageInfo_GetOnuFecHistoryResponse.Size(m)
1575}
1576func (m *GetOnuFecHistoryResponse) XXX_DiscardUnknown() {
1577 xxx_messageInfo_GetOnuFecHistoryResponse.DiscardUnknown(m)
1578}
1579
1580var xxx_messageInfo_GetOnuFecHistoryResponse proto.InternalMessageInfo
1581
1582func (m *GetOnuFecHistoryResponse) GetCorrectedBytes() uint32 {
1583 if m != nil {
1584 return m.CorrectedBytes
1585 }
1586 return 0
1587}
1588
1589func (m *GetOnuFecHistoryResponse) GetCorrectedCodeWords() uint32 {
1590 if m != nil {
1591 return m.CorrectedCodeWords
1592 }
1593 return 0
1594}
1595
1596func (m *GetOnuFecHistoryResponse) GetFecSeconds() uint32 {
1597 if m != nil {
1598 return m.FecSeconds
1599 }
1600 return 0
1601}
1602
1603func (m *GetOnuFecHistoryResponse) GetTotalCodeWords() uint32 {
1604 if m != nil {
1605 return m.TotalCodeWords
1606 }
1607 return 0
1608}
1609
1610func (m *GetOnuFecHistoryResponse) GetUncorrectableCodeWords() uint32 {
1611 if m != nil {
1612 return m.UncorrectableCodeWords
1613 }
1614 return 0
1615}
1616
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301617type GetOnuCountersRequest struct {
1618 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
1619 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
1620 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1621 XXX_unrecognized []byte `json:"-"`
1622 XXX_sizecache int32 `json:"-"`
1623}
1624
1625func (m *GetOnuCountersRequest) Reset() { *m = GetOnuCountersRequest{} }
1626func (m *GetOnuCountersRequest) String() string { return proto.CompactTextString(m) }
1627func (*GetOnuCountersRequest) ProtoMessage() {}
1628func (*GetOnuCountersRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05301629 return fileDescriptor_7ecf6e9799a9202d, []int{21}
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301630}
1631
1632func (m *GetOnuCountersRequest) XXX_Unmarshal(b []byte) error {
1633 return xxx_messageInfo_GetOnuCountersRequest.Unmarshal(m, b)
1634}
1635func (m *GetOnuCountersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1636 return xxx_messageInfo_GetOnuCountersRequest.Marshal(b, m, deterministic)
1637}
1638func (m *GetOnuCountersRequest) XXX_Merge(src proto.Message) {
1639 xxx_messageInfo_GetOnuCountersRequest.Merge(m, src)
1640}
1641func (m *GetOnuCountersRequest) XXX_Size() int {
1642 return xxx_messageInfo_GetOnuCountersRequest.Size(m)
1643}
1644func (m *GetOnuCountersRequest) XXX_DiscardUnknown() {
1645 xxx_messageInfo_GetOnuCountersRequest.DiscardUnknown(m)
1646}
1647
1648var xxx_messageInfo_GetOnuCountersRequest proto.InternalMessageInfo
1649
1650func (m *GetOnuCountersRequest) GetIntfId() uint32 {
1651 if m != nil {
1652 return m.IntfId
1653 }
1654 return 0
1655}
1656
1657func (m *GetOnuCountersRequest) GetOnuId() uint32 {
1658 if m != nil {
1659 return m.OnuId
1660 }
1661 return 0
1662}
1663
Himani Chawla9a497392021-05-28 13:04:42 +05301664type GetOmciEthernetFrameExtendedPmRequest struct {
Himani Chawla393605c2021-08-30 13:44:13 +05301665 OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
1666 // Types that are valid to be assigned to IsUniIndex:
1667 // *GetOmciEthernetFrameExtendedPmRequest_UniIndex
1668 IsUniIndex isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex `protobuf_oneof:"is_uni_index"`
1669 Reset_ bool `protobuf:"varint,3,opt,name=reset,proto3" json:"reset,omitempty"`
1670 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1671 XXX_unrecognized []byte `json:"-"`
1672 XXX_sizecache int32 `json:"-"`
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301673}
1674
Himani Chawla9a497392021-05-28 13:04:42 +05301675func (m *GetOmciEthernetFrameExtendedPmRequest) Reset() { *m = GetOmciEthernetFrameExtendedPmRequest{} }
1676func (m *GetOmciEthernetFrameExtendedPmRequest) String() string { return proto.CompactTextString(m) }
1677func (*GetOmciEthernetFrameExtendedPmRequest) ProtoMessage() {}
1678func (*GetOmciEthernetFrameExtendedPmRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05301679 return fileDescriptor_7ecf6e9799a9202d, []int{22}
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301680}
1681
Himani Chawla9a497392021-05-28 13:04:42 +05301682func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Unmarshal(b []byte) error {
1683 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Unmarshal(m, b)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301684}
Himani Chawla9a497392021-05-28 13:04:42 +05301685func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1686 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Marshal(b, m, deterministic)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301687}
Himani Chawla9a497392021-05-28 13:04:42 +05301688func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Merge(src proto.Message) {
1689 xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Merge(m, src)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301690}
Himani Chawla9a497392021-05-28 13:04:42 +05301691func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_Size() int {
1692 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.Size(m)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301693}
Himani Chawla9a497392021-05-28 13:04:42 +05301694func (m *GetOmciEthernetFrameExtendedPmRequest) XXX_DiscardUnknown() {
1695 xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest.DiscardUnknown(m)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301696}
1697
Himani Chawla9a497392021-05-28 13:04:42 +05301698var xxx_messageInfo_GetOmciEthernetFrameExtendedPmRequest proto.InternalMessageInfo
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301699
Himani Chawla9a497392021-05-28 13:04:42 +05301700func (m *GetOmciEthernetFrameExtendedPmRequest) GetOnuDeviceId() string {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05301701 if m != nil {
1702 return m.OnuDeviceId
1703 }
1704 return ""
1705}
1706
Himani Chawla393605c2021-08-30 13:44:13 +05301707type isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex interface {
1708 isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex()
1709}
1710
1711type GetOmciEthernetFrameExtendedPmRequest_UniIndex struct {
1712 UniIndex uint32 `protobuf:"varint,2,opt,name=uniIndex,proto3,oneof"`
1713}
1714
1715func (*GetOmciEthernetFrameExtendedPmRequest_UniIndex) isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex() {
1716}
1717
1718func (m *GetOmciEthernetFrameExtendedPmRequest) GetIsUniIndex() isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex {
1719 if m != nil {
1720 return m.IsUniIndex
1721 }
1722 return nil
1723}
1724
1725func (m *GetOmciEthernetFrameExtendedPmRequest) GetUniIndex() uint32 {
1726 if x, ok := m.GetIsUniIndex().(*GetOmciEthernetFrameExtendedPmRequest_UniIndex); ok {
1727 return x.UniIndex
1728 }
1729 return 0
1730}
1731
1732func (m *GetOmciEthernetFrameExtendedPmRequest) GetReset_() bool {
1733 if m != nil {
1734 return m.Reset_
1735 }
1736 return false
1737}
1738
1739// XXX_OneofWrappers is for the internal use of the proto package.
1740func (*GetOmciEthernetFrameExtendedPmRequest) XXX_OneofWrappers() []interface{} {
1741 return []interface{}{
1742 (*GetOmciEthernetFrameExtendedPmRequest_UniIndex)(nil),
1743 }
1744}
1745
amit.ghosh8490b122022-11-28 15:45:04 +01001746// DEPRECATED
Gamze Abaka08683072021-05-26 13:38:02 +00001747type GetRxPowerRequest struct {
1748 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
1749 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
1750 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1751 XXX_unrecognized []byte `json:"-"`
1752 XXX_sizecache int32 `json:"-"`
1753}
1754
1755func (m *GetRxPowerRequest) Reset() { *m = GetRxPowerRequest{} }
1756func (m *GetRxPowerRequest) String() string { return proto.CompactTextString(m) }
1757func (*GetRxPowerRequest) ProtoMessage() {}
1758func (*GetRxPowerRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05301759 return fileDescriptor_7ecf6e9799a9202d, []int{23}
Gamze Abaka08683072021-05-26 13:38:02 +00001760}
1761
1762func (m *GetRxPowerRequest) XXX_Unmarshal(b []byte) error {
1763 return xxx_messageInfo_GetRxPowerRequest.Unmarshal(m, b)
1764}
1765func (m *GetRxPowerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1766 return xxx_messageInfo_GetRxPowerRequest.Marshal(b, m, deterministic)
1767}
1768func (m *GetRxPowerRequest) XXX_Merge(src proto.Message) {
1769 xxx_messageInfo_GetRxPowerRequest.Merge(m, src)
1770}
1771func (m *GetRxPowerRequest) XXX_Size() int {
1772 return xxx_messageInfo_GetRxPowerRequest.Size(m)
1773}
1774func (m *GetRxPowerRequest) XXX_DiscardUnknown() {
1775 xxx_messageInfo_GetRxPowerRequest.DiscardUnknown(m)
1776}
1777
1778var xxx_messageInfo_GetRxPowerRequest proto.InternalMessageInfo
1779
1780func (m *GetRxPowerRequest) GetIntfId() uint32 {
1781 if m != nil {
1782 return m.IntfId
1783 }
1784 return 0
1785}
1786
1787func (m *GetRxPowerRequest) GetOnuId() uint32 {
1788 if m != nil {
1789 return m.OnuId
1790 }
1791 return 0
1792}
1793
amit.ghosh8490b122022-11-28 15:45:04 +01001794type GetOltRxPowerRequest struct {
1795 PortLabel string `protobuf:"bytes,1,opt,name=port_label,json=portLabel,proto3" json:"port_label,omitempty"`
1796 // onu_sn is optional and if onu_sn is an empty string and the label is
1797 // of a PON port then it means that the Rx Power corresponding to all
1798 // the ONUs on that PON port is requested. In case the port_label is not
1799 // of a PON port, the onu_sn does not have any significance
1800 OnuSn string `protobuf:"bytes,2,opt,name=onu_sn,json=onuSn,proto3" json:"onu_sn,omitempty"`
1801 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1802 XXX_unrecognized []byte `json:"-"`
1803 XXX_sizecache int32 `json:"-"`
1804}
1805
1806func (m *GetOltRxPowerRequest) Reset() { *m = GetOltRxPowerRequest{} }
1807func (m *GetOltRxPowerRequest) String() string { return proto.CompactTextString(m) }
1808func (*GetOltRxPowerRequest) ProtoMessage() {}
1809func (*GetOltRxPowerRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05301810 return fileDescriptor_7ecf6e9799a9202d, []int{24}
amit.ghosh8490b122022-11-28 15:45:04 +01001811}
1812
1813func (m *GetOltRxPowerRequest) XXX_Unmarshal(b []byte) error {
1814 return xxx_messageInfo_GetOltRxPowerRequest.Unmarshal(m, b)
1815}
1816func (m *GetOltRxPowerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1817 return xxx_messageInfo_GetOltRxPowerRequest.Marshal(b, m, deterministic)
1818}
1819func (m *GetOltRxPowerRequest) XXX_Merge(src proto.Message) {
1820 xxx_messageInfo_GetOltRxPowerRequest.Merge(m, src)
1821}
1822func (m *GetOltRxPowerRequest) XXX_Size() int {
1823 return xxx_messageInfo_GetOltRxPowerRequest.Size(m)
1824}
1825func (m *GetOltRxPowerRequest) XXX_DiscardUnknown() {
1826 xxx_messageInfo_GetOltRxPowerRequest.DiscardUnknown(m)
1827}
1828
1829var xxx_messageInfo_GetOltRxPowerRequest proto.InternalMessageInfo
1830
1831func (m *GetOltRxPowerRequest) GetPortLabel() string {
1832 if m != nil {
1833 return m.PortLabel
1834 }
1835 return ""
1836}
1837
1838func (m *GetOltRxPowerRequest) GetOnuSn() string {
1839 if m != nil {
1840 return m.OnuSn
1841 }
1842 return ""
1843}
1844
Akash Kankanala761955c2024-02-21 19:32:20 +05301845type GetPonStatsRequest struct {
1846 // Types that are valid to be assigned to PortInfo:
1847 // *GetPonStatsRequest_PortLabel
1848 // *GetPonStatsRequest_PortId
1849 PortInfo isGetPonStatsRequest_PortInfo `protobuf_oneof:"portInfo"`
1850 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1851 XXX_unrecognized []byte `json:"-"`
1852 XXX_sizecache int32 `json:"-"`
1853}
1854
1855func (m *GetPonStatsRequest) Reset() { *m = GetPonStatsRequest{} }
1856func (m *GetPonStatsRequest) String() string { return proto.CompactTextString(m) }
1857func (*GetPonStatsRequest) ProtoMessage() {}
1858func (*GetPonStatsRequest) Descriptor() ([]byte, []int) {
1859 return fileDescriptor_7ecf6e9799a9202d, []int{25}
1860}
1861
1862func (m *GetPonStatsRequest) XXX_Unmarshal(b []byte) error {
1863 return xxx_messageInfo_GetPonStatsRequest.Unmarshal(m, b)
1864}
1865func (m *GetPonStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1866 return xxx_messageInfo_GetPonStatsRequest.Marshal(b, m, deterministic)
1867}
1868func (m *GetPonStatsRequest) XXX_Merge(src proto.Message) {
1869 xxx_messageInfo_GetPonStatsRequest.Merge(m, src)
1870}
1871func (m *GetPonStatsRequest) XXX_Size() int {
1872 return xxx_messageInfo_GetPonStatsRequest.Size(m)
1873}
1874func (m *GetPonStatsRequest) XXX_DiscardUnknown() {
1875 xxx_messageInfo_GetPonStatsRequest.DiscardUnknown(m)
1876}
1877
1878var xxx_messageInfo_GetPonStatsRequest proto.InternalMessageInfo
1879
1880type isGetPonStatsRequest_PortInfo interface {
1881 isGetPonStatsRequest_PortInfo()
1882}
1883
1884type GetPonStatsRequest_PortLabel struct {
1885 PortLabel string `protobuf:"bytes,1,opt,name=portLabel,proto3,oneof"`
1886}
1887
1888type GetPonStatsRequest_PortId struct {
1889 PortId uint32 `protobuf:"fixed32,2,opt,name=portId,proto3,oneof"`
1890}
1891
1892func (*GetPonStatsRequest_PortLabel) isGetPonStatsRequest_PortInfo() {}
1893
1894func (*GetPonStatsRequest_PortId) isGetPonStatsRequest_PortInfo() {}
1895
1896func (m *GetPonStatsRequest) GetPortInfo() isGetPonStatsRequest_PortInfo {
1897 if m != nil {
1898 return m.PortInfo
1899 }
1900 return nil
1901}
1902
1903func (m *GetPonStatsRequest) GetPortLabel() string {
1904 if x, ok := m.GetPortInfo().(*GetPonStatsRequest_PortLabel); ok {
1905 return x.PortLabel
1906 }
1907 return ""
1908}
1909
1910func (m *GetPonStatsRequest) GetPortId() uint32 {
1911 if x, ok := m.GetPortInfo().(*GetPonStatsRequest_PortId); ok {
1912 return x.PortId
1913 }
1914 return 0
1915}
1916
1917// XXX_OneofWrappers is for the internal use of the proto package.
1918func (*GetPonStatsRequest) XXX_OneofWrappers() []interface{} {
1919 return []interface{}{
1920 (*GetPonStatsRequest_PortLabel)(nil),
1921 (*GetPonStatsRequest_PortId)(nil),
1922 }
1923}
1924
1925type GetPonStatsResponse struct {
1926 PonPort uint32 `protobuf:"varint,1,opt,name=ponPort,proto3" json:"ponPort,omitempty"`
1927 PortStatistics *common.PortStatistics `protobuf:"bytes,2,opt,name=portStatistics,proto3" json:"portStatistics,omitempty"`
1928 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1929 XXX_unrecognized []byte `json:"-"`
1930 XXX_sizecache int32 `json:"-"`
1931}
1932
1933func (m *GetPonStatsResponse) Reset() { *m = GetPonStatsResponse{} }
1934func (m *GetPonStatsResponse) String() string { return proto.CompactTextString(m) }
1935func (*GetPonStatsResponse) ProtoMessage() {}
1936func (*GetPonStatsResponse) Descriptor() ([]byte, []int) {
1937 return fileDescriptor_7ecf6e9799a9202d, []int{26}
1938}
1939
1940func (m *GetPonStatsResponse) XXX_Unmarshal(b []byte) error {
1941 return xxx_messageInfo_GetPonStatsResponse.Unmarshal(m, b)
1942}
1943func (m *GetPonStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1944 return xxx_messageInfo_GetPonStatsResponse.Marshal(b, m, deterministic)
1945}
1946func (m *GetPonStatsResponse) XXX_Merge(src proto.Message) {
1947 xxx_messageInfo_GetPonStatsResponse.Merge(m, src)
1948}
1949func (m *GetPonStatsResponse) XXX_Size() int {
1950 return xxx_messageInfo_GetPonStatsResponse.Size(m)
1951}
1952func (m *GetPonStatsResponse) XXX_DiscardUnknown() {
1953 xxx_messageInfo_GetPonStatsResponse.DiscardUnknown(m)
1954}
1955
1956var xxx_messageInfo_GetPonStatsResponse proto.InternalMessageInfo
1957
1958func (m *GetPonStatsResponse) GetPonPort() uint32 {
1959 if m != nil {
1960 return m.PonPort
1961 }
1962 return 0
1963}
1964
1965func (m *GetPonStatsResponse) GetPortStatistics() *common.PortStatistics {
1966 if m != nil {
1967 return m.PortStatistics
1968 }
1969 return nil
1970}
1971
1972type GetNNIStatsRequest struct {
1973 // Types that are valid to be assigned to PortInfo:
1974 // *GetNNIStatsRequest_PortLabel
1975 // *GetNNIStatsRequest_PortId
1976 PortInfo isGetNNIStatsRequest_PortInfo `protobuf_oneof:"portInfo"`
1977 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1978 XXX_unrecognized []byte `json:"-"`
1979 XXX_sizecache int32 `json:"-"`
1980}
1981
1982func (m *GetNNIStatsRequest) Reset() { *m = GetNNIStatsRequest{} }
1983func (m *GetNNIStatsRequest) String() string { return proto.CompactTextString(m) }
1984func (*GetNNIStatsRequest) ProtoMessage() {}
1985func (*GetNNIStatsRequest) Descriptor() ([]byte, []int) {
1986 return fileDescriptor_7ecf6e9799a9202d, []int{27}
1987}
1988
1989func (m *GetNNIStatsRequest) XXX_Unmarshal(b []byte) error {
1990 return xxx_messageInfo_GetNNIStatsRequest.Unmarshal(m, b)
1991}
1992func (m *GetNNIStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1993 return xxx_messageInfo_GetNNIStatsRequest.Marshal(b, m, deterministic)
1994}
1995func (m *GetNNIStatsRequest) XXX_Merge(src proto.Message) {
1996 xxx_messageInfo_GetNNIStatsRequest.Merge(m, src)
1997}
1998func (m *GetNNIStatsRequest) XXX_Size() int {
1999 return xxx_messageInfo_GetNNIStatsRequest.Size(m)
2000}
2001func (m *GetNNIStatsRequest) XXX_DiscardUnknown() {
2002 xxx_messageInfo_GetNNIStatsRequest.DiscardUnknown(m)
2003}
2004
2005var xxx_messageInfo_GetNNIStatsRequest proto.InternalMessageInfo
2006
2007type isGetNNIStatsRequest_PortInfo interface {
2008 isGetNNIStatsRequest_PortInfo()
2009}
2010
2011type GetNNIStatsRequest_PortLabel struct {
2012 PortLabel string `protobuf:"bytes,1,opt,name=portLabel,proto3,oneof"`
2013}
2014
2015type GetNNIStatsRequest_PortId struct {
2016 PortId uint32 `protobuf:"fixed32,2,opt,name=portId,proto3,oneof"`
2017}
2018
2019func (*GetNNIStatsRequest_PortLabel) isGetNNIStatsRequest_PortInfo() {}
2020
2021func (*GetNNIStatsRequest_PortId) isGetNNIStatsRequest_PortInfo() {}
2022
2023func (m *GetNNIStatsRequest) GetPortInfo() isGetNNIStatsRequest_PortInfo {
2024 if m != nil {
2025 return m.PortInfo
2026 }
2027 return nil
2028}
2029
2030func (m *GetNNIStatsRequest) GetPortLabel() string {
2031 if x, ok := m.GetPortInfo().(*GetNNIStatsRequest_PortLabel); ok {
2032 return x.PortLabel
2033 }
2034 return ""
2035}
2036
2037func (m *GetNNIStatsRequest) GetPortId() uint32 {
2038 if x, ok := m.GetPortInfo().(*GetNNIStatsRequest_PortId); ok {
2039 return x.PortId
2040 }
2041 return 0
2042}
2043
2044// XXX_OneofWrappers is for the internal use of the proto package.
2045func (*GetNNIStatsRequest) XXX_OneofWrappers() []interface{} {
2046 return []interface{}{
2047 (*GetNNIStatsRequest_PortLabel)(nil),
2048 (*GetNNIStatsRequest_PortId)(nil),
2049 }
2050}
2051
2052type GetNNIStatsResponse struct {
2053 NniPort uint32 `protobuf:"varint,1,opt,name=nniPort,proto3" json:"nniPort,omitempty"`
2054 PortStatistics *common.PortStatistics `protobuf:"bytes,2,opt,name=portStatistics,proto3" json:"portStatistics,omitempty"`
2055 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2056 XXX_unrecognized []byte `json:"-"`
2057 XXX_sizecache int32 `json:"-"`
2058}
2059
2060func (m *GetNNIStatsResponse) Reset() { *m = GetNNIStatsResponse{} }
2061func (m *GetNNIStatsResponse) String() string { return proto.CompactTextString(m) }
2062func (*GetNNIStatsResponse) ProtoMessage() {}
2063func (*GetNNIStatsResponse) Descriptor() ([]byte, []int) {
2064 return fileDescriptor_7ecf6e9799a9202d, []int{28}
2065}
2066
2067func (m *GetNNIStatsResponse) XXX_Unmarshal(b []byte) error {
2068 return xxx_messageInfo_GetNNIStatsResponse.Unmarshal(m, b)
2069}
2070func (m *GetNNIStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2071 return xxx_messageInfo_GetNNIStatsResponse.Marshal(b, m, deterministic)
2072}
2073func (m *GetNNIStatsResponse) XXX_Merge(src proto.Message) {
2074 xxx_messageInfo_GetNNIStatsResponse.Merge(m, src)
2075}
2076func (m *GetNNIStatsResponse) XXX_Size() int {
2077 return xxx_messageInfo_GetNNIStatsResponse.Size(m)
2078}
2079func (m *GetNNIStatsResponse) XXX_DiscardUnknown() {
2080 xxx_messageInfo_GetNNIStatsResponse.DiscardUnknown(m)
2081}
2082
2083var xxx_messageInfo_GetNNIStatsResponse proto.InternalMessageInfo
2084
2085func (m *GetNNIStatsResponse) GetNniPort() uint32 {
2086 if m != nil {
2087 return m.NniPort
2088 }
2089 return 0
2090}
2091
2092func (m *GetNNIStatsResponse) GetPortStatistics() *common.PortStatistics {
2093 if m != nil {
2094 return m.PortStatistics
2095 }
2096 return nil
2097}
2098
2099// GetOnuStatsFromOltRequest collects GEM and AllocId stats from the OLT for a particular ONU.
2100type GetOnuStatsFromOltRequest struct {
2101 IntfId uint32 `protobuf:"fixed32,1,opt,name=intfId,proto3" json:"intfId,omitempty"`
2102 OnuId uint32 `protobuf:"fixed32,2,opt,name=onuId,proto3" json:"onuId,omitempty"`
2103 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2104 XXX_unrecognized []byte `json:"-"`
2105 XXX_sizecache int32 `json:"-"`
2106}
2107
2108func (m *GetOnuStatsFromOltRequest) Reset() { *m = GetOnuStatsFromOltRequest{} }
2109func (m *GetOnuStatsFromOltRequest) String() string { return proto.CompactTextString(m) }
2110func (*GetOnuStatsFromOltRequest) ProtoMessage() {}
2111func (*GetOnuStatsFromOltRequest) Descriptor() ([]byte, []int) {
2112 return fileDescriptor_7ecf6e9799a9202d, []int{29}
2113}
2114
2115func (m *GetOnuStatsFromOltRequest) XXX_Unmarshal(b []byte) error {
2116 return xxx_messageInfo_GetOnuStatsFromOltRequest.Unmarshal(m, b)
2117}
2118func (m *GetOnuStatsFromOltRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2119 return xxx_messageInfo_GetOnuStatsFromOltRequest.Marshal(b, m, deterministic)
2120}
2121func (m *GetOnuStatsFromOltRequest) XXX_Merge(src proto.Message) {
2122 xxx_messageInfo_GetOnuStatsFromOltRequest.Merge(m, src)
2123}
2124func (m *GetOnuStatsFromOltRequest) XXX_Size() int {
2125 return xxx_messageInfo_GetOnuStatsFromOltRequest.Size(m)
2126}
2127func (m *GetOnuStatsFromOltRequest) XXX_DiscardUnknown() {
2128 xxx_messageInfo_GetOnuStatsFromOltRequest.DiscardUnknown(m)
2129}
2130
2131var xxx_messageInfo_GetOnuStatsFromOltRequest proto.InternalMessageInfo
2132
2133func (m *GetOnuStatsFromOltRequest) GetIntfId() uint32 {
2134 if m != nil {
2135 return m.IntfId
2136 }
2137 return 0
2138}
2139
2140func (m *GetOnuStatsFromOltRequest) GetOnuId() uint32 {
2141 if m != nil {
2142 return m.OnuId
2143 }
2144 return 0
2145}
2146
2147type OnuGemPortInfoFromOlt struct {
2148 GemId uint32 `protobuf:"varint,1,opt,name=gemId,proto3" json:"gemId,omitempty"`
2149 RxPackets uint64 `protobuf:"varint,2,opt,name=rxPackets,proto3" json:"rxPackets,omitempty"`
2150 RxBytes uint64 `protobuf:"varint,3,opt,name=rxBytes,proto3" json:"rxBytes,omitempty"`
2151 TxPackets uint64 `protobuf:"varint,4,opt,name=txPackets,proto3" json:"txPackets,omitempty"`
2152 TxBytes uint64 `protobuf:"varint,5,opt,name=txBytes,proto3" json:"txBytes,omitempty"`
2153 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2154 XXX_unrecognized []byte `json:"-"`
2155 XXX_sizecache int32 `json:"-"`
2156}
2157
2158func (m *OnuGemPortInfoFromOlt) Reset() { *m = OnuGemPortInfoFromOlt{} }
2159func (m *OnuGemPortInfoFromOlt) String() string { return proto.CompactTextString(m) }
2160func (*OnuGemPortInfoFromOlt) ProtoMessage() {}
2161func (*OnuGemPortInfoFromOlt) Descriptor() ([]byte, []int) {
2162 return fileDescriptor_7ecf6e9799a9202d, []int{30}
2163}
2164
2165func (m *OnuGemPortInfoFromOlt) XXX_Unmarshal(b []byte) error {
2166 return xxx_messageInfo_OnuGemPortInfoFromOlt.Unmarshal(m, b)
2167}
2168func (m *OnuGemPortInfoFromOlt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2169 return xxx_messageInfo_OnuGemPortInfoFromOlt.Marshal(b, m, deterministic)
2170}
2171func (m *OnuGemPortInfoFromOlt) XXX_Merge(src proto.Message) {
2172 xxx_messageInfo_OnuGemPortInfoFromOlt.Merge(m, src)
2173}
2174func (m *OnuGemPortInfoFromOlt) XXX_Size() int {
2175 return xxx_messageInfo_OnuGemPortInfoFromOlt.Size(m)
2176}
2177func (m *OnuGemPortInfoFromOlt) XXX_DiscardUnknown() {
2178 xxx_messageInfo_OnuGemPortInfoFromOlt.DiscardUnknown(m)
2179}
2180
2181var xxx_messageInfo_OnuGemPortInfoFromOlt proto.InternalMessageInfo
2182
2183func (m *OnuGemPortInfoFromOlt) GetGemId() uint32 {
2184 if m != nil {
2185 return m.GemId
2186 }
2187 return 0
2188}
2189
2190func (m *OnuGemPortInfoFromOlt) GetRxPackets() uint64 {
2191 if m != nil {
2192 return m.RxPackets
2193 }
2194 return 0
2195}
2196
2197func (m *OnuGemPortInfoFromOlt) GetRxBytes() uint64 {
2198 if m != nil {
2199 return m.RxBytes
2200 }
2201 return 0
2202}
2203
2204func (m *OnuGemPortInfoFromOlt) GetTxPackets() uint64 {
2205 if m != nil {
2206 return m.TxPackets
2207 }
2208 return 0
2209}
2210
2211func (m *OnuGemPortInfoFromOlt) GetTxBytes() uint64 {
2212 if m != nil {
2213 return m.TxBytes
2214 }
2215 return 0
2216}
2217
2218type OnuAllocIdInfoFromOlt struct {
2219 AllocId uint32 `protobuf:"varint,1,opt,name=allocId,proto3" json:"allocId,omitempty"`
2220 RxBytes uint64 `protobuf:"varint,2,opt,name=rxBytes,proto3" json:"rxBytes,omitempty"`
2221 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2222 XXX_unrecognized []byte `json:"-"`
2223 XXX_sizecache int32 `json:"-"`
2224}
2225
2226func (m *OnuAllocIdInfoFromOlt) Reset() { *m = OnuAllocIdInfoFromOlt{} }
2227func (m *OnuAllocIdInfoFromOlt) String() string { return proto.CompactTextString(m) }
2228func (*OnuAllocIdInfoFromOlt) ProtoMessage() {}
2229func (*OnuAllocIdInfoFromOlt) Descriptor() ([]byte, []int) {
2230 return fileDescriptor_7ecf6e9799a9202d, []int{31}
2231}
2232
2233func (m *OnuAllocIdInfoFromOlt) XXX_Unmarshal(b []byte) error {
2234 return xxx_messageInfo_OnuAllocIdInfoFromOlt.Unmarshal(m, b)
2235}
2236func (m *OnuAllocIdInfoFromOlt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2237 return xxx_messageInfo_OnuAllocIdInfoFromOlt.Marshal(b, m, deterministic)
2238}
2239func (m *OnuAllocIdInfoFromOlt) XXX_Merge(src proto.Message) {
2240 xxx_messageInfo_OnuAllocIdInfoFromOlt.Merge(m, src)
2241}
2242func (m *OnuAllocIdInfoFromOlt) XXX_Size() int {
2243 return xxx_messageInfo_OnuAllocIdInfoFromOlt.Size(m)
2244}
2245func (m *OnuAllocIdInfoFromOlt) XXX_DiscardUnknown() {
2246 xxx_messageInfo_OnuAllocIdInfoFromOlt.DiscardUnknown(m)
2247}
2248
2249var xxx_messageInfo_OnuAllocIdInfoFromOlt proto.InternalMessageInfo
2250
2251func (m *OnuAllocIdInfoFromOlt) GetAllocId() uint32 {
2252 if m != nil {
2253 return m.AllocId
2254 }
2255 return 0
2256}
2257
2258func (m *OnuAllocIdInfoFromOlt) GetRxBytes() uint64 {
2259 if m != nil {
2260 return m.RxBytes
2261 }
2262 return 0
2263}
2264
2265type OnuAllocGemStatsFromOltResponse struct {
2266 AllocIdInfo *OnuAllocIdInfoFromOlt `protobuf:"bytes,1,opt,name=allocIdInfo,proto3" json:"allocIdInfo,omitempty"`
2267 GemPortInfo []*OnuGemPortInfoFromOlt `protobuf:"bytes,2,rep,name=gemPortInfo,proto3" json:"gemPortInfo,omitempty"`
2268 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2269 XXX_unrecognized []byte `json:"-"`
2270 XXX_sizecache int32 `json:"-"`
2271}
2272
2273func (m *OnuAllocGemStatsFromOltResponse) Reset() { *m = OnuAllocGemStatsFromOltResponse{} }
2274func (m *OnuAllocGemStatsFromOltResponse) String() string { return proto.CompactTextString(m) }
2275func (*OnuAllocGemStatsFromOltResponse) ProtoMessage() {}
2276func (*OnuAllocGemStatsFromOltResponse) Descriptor() ([]byte, []int) {
2277 return fileDescriptor_7ecf6e9799a9202d, []int{32}
2278}
2279
2280func (m *OnuAllocGemStatsFromOltResponse) XXX_Unmarshal(b []byte) error {
2281 return xxx_messageInfo_OnuAllocGemStatsFromOltResponse.Unmarshal(m, b)
2282}
2283func (m *OnuAllocGemStatsFromOltResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2284 return xxx_messageInfo_OnuAllocGemStatsFromOltResponse.Marshal(b, m, deterministic)
2285}
2286func (m *OnuAllocGemStatsFromOltResponse) XXX_Merge(src proto.Message) {
2287 xxx_messageInfo_OnuAllocGemStatsFromOltResponse.Merge(m, src)
2288}
2289func (m *OnuAllocGemStatsFromOltResponse) XXX_Size() int {
2290 return xxx_messageInfo_OnuAllocGemStatsFromOltResponse.Size(m)
2291}
2292func (m *OnuAllocGemStatsFromOltResponse) XXX_DiscardUnknown() {
2293 xxx_messageInfo_OnuAllocGemStatsFromOltResponse.DiscardUnknown(m)
2294}
2295
2296var xxx_messageInfo_OnuAllocGemStatsFromOltResponse proto.InternalMessageInfo
2297
2298func (m *OnuAllocGemStatsFromOltResponse) GetAllocIdInfo() *OnuAllocIdInfoFromOlt {
2299 if m != nil {
2300 return m.AllocIdInfo
2301 }
2302 return nil
2303}
2304
2305func (m *OnuAllocGemStatsFromOltResponse) GetGemPortInfo() []*OnuGemPortInfoFromOlt {
2306 if m != nil {
2307 return m.GemPortInfo
2308 }
2309 return nil
2310}
2311
2312type GetOnuStatsFromOltResponse struct {
2313 AllocGemStatsInfo []*OnuAllocGemStatsFromOltResponse `protobuf:"bytes,1,rep,name=allocGemStatsInfo,proto3" json:"allocGemStatsInfo,omitempty"`
2314 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2315 XXX_unrecognized []byte `json:"-"`
2316 XXX_sizecache int32 `json:"-"`
2317}
2318
2319func (m *GetOnuStatsFromOltResponse) Reset() { *m = GetOnuStatsFromOltResponse{} }
2320func (m *GetOnuStatsFromOltResponse) String() string { return proto.CompactTextString(m) }
2321func (*GetOnuStatsFromOltResponse) ProtoMessage() {}
2322func (*GetOnuStatsFromOltResponse) Descriptor() ([]byte, []int) {
2323 return fileDescriptor_7ecf6e9799a9202d, []int{33}
2324}
2325
2326func (m *GetOnuStatsFromOltResponse) XXX_Unmarshal(b []byte) error {
2327 return xxx_messageInfo_GetOnuStatsFromOltResponse.Unmarshal(m, b)
2328}
2329func (m *GetOnuStatsFromOltResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2330 return xxx_messageInfo_GetOnuStatsFromOltResponse.Marshal(b, m, deterministic)
2331}
2332func (m *GetOnuStatsFromOltResponse) XXX_Merge(src proto.Message) {
2333 xxx_messageInfo_GetOnuStatsFromOltResponse.Merge(m, src)
2334}
2335func (m *GetOnuStatsFromOltResponse) XXX_Size() int {
2336 return xxx_messageInfo_GetOnuStatsFromOltResponse.Size(m)
2337}
2338func (m *GetOnuStatsFromOltResponse) XXX_DiscardUnknown() {
2339 xxx_messageInfo_GetOnuStatsFromOltResponse.DiscardUnknown(m)
2340}
2341
2342var xxx_messageInfo_GetOnuStatsFromOltResponse proto.InternalMessageInfo
2343
2344func (m *GetOnuStatsFromOltResponse) GetAllocGemStatsInfo() []*OnuAllocGemStatsFromOltResponse {
2345 if m != nil {
2346 return m.AllocGemStatsInfo
2347 }
2348 return nil
2349}
2350
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05302351type GetOnuCountersResponse struct {
2352 // Types that are valid to be assigned to IsIntfId:
2353 // *GetOnuCountersResponse_IntfId
2354 IsIntfId isGetOnuCountersResponse_IsIntfId `protobuf_oneof:"is_intf_id"`
2355 // Types that are valid to be assigned to IsOnuId:
2356 // *GetOnuCountersResponse_OnuId
2357 IsOnuId isGetOnuCountersResponse_IsOnuId `protobuf_oneof:"is_onu_id"`
2358 // Types that are valid to be assigned to IsPositiveDrift:
2359 // *GetOnuCountersResponse_PositiveDrift
2360 IsPositiveDrift isGetOnuCountersResponse_IsPositiveDrift `protobuf_oneof:"is_positive_drift"`
2361 // Types that are valid to be assigned to IsNegativeDrift:
2362 // *GetOnuCountersResponse_NegativeDrift
2363 IsNegativeDrift isGetOnuCountersResponse_IsNegativeDrift `protobuf_oneof:"is_negative_drift"`
2364 // Types that are valid to be assigned to IsDelimiterMissDetection:
2365 // *GetOnuCountersResponse_DelimiterMissDetection
2366 IsDelimiterMissDetection isGetOnuCountersResponse_IsDelimiterMissDetection `protobuf_oneof:"is_delimiter_miss_detection"`
2367 // Types that are valid to be assigned to IsBipErrors:
2368 // *GetOnuCountersResponse_BipErrors
2369 IsBipErrors isGetOnuCountersResponse_IsBipErrors `protobuf_oneof:"is_bip_errors"`
2370 // Types that are valid to be assigned to IsBipUnits:
2371 // *GetOnuCountersResponse_BipUnits
2372 IsBipUnits isGetOnuCountersResponse_IsBipUnits `protobuf_oneof:"is_bip_units"`
2373 // Types that are valid to be assigned to IsFecCorrectedSymbols:
2374 // *GetOnuCountersResponse_FecCorrectedSymbols
2375 IsFecCorrectedSymbols isGetOnuCountersResponse_IsFecCorrectedSymbols `protobuf_oneof:"is_fec_corrected_symbols"`
2376 // Types that are valid to be assigned to IsFecCodewordsCorrected:
2377 // *GetOnuCountersResponse_FecCodewordsCorrected
2378 IsFecCodewordsCorrected isGetOnuCountersResponse_IsFecCodewordsCorrected `protobuf_oneof:"is_fec_codewords_corrected"`
2379 // Types that are valid to be assigned to IsFecCodewordsUncorrectable:
2380 // *GetOnuCountersResponse_FecCodewordsUncorrectable
2381 IsFecCodewordsUncorrectable isGetOnuCountersResponse_IsFecCodewordsUncorrectable `protobuf_oneof:"is_fec_codewords_uncorrectable"`
2382 // Types that are valid to be assigned to IsFecCodewords:
2383 // *GetOnuCountersResponse_FecCodewords
2384 IsFecCodewords isGetOnuCountersResponse_IsFecCodewords `protobuf_oneof:"is_fec_codewords"`
2385 // Types that are valid to be assigned to IsFecCorrectedUnits:
2386 // *GetOnuCountersResponse_FecCorrectedUnits
2387 IsFecCorrectedUnits isGetOnuCountersResponse_IsFecCorrectedUnits `protobuf_oneof:"is_fec_corrected_units"`
2388 // Types that are valid to be assigned to IsXgemKeyErrors:
2389 // *GetOnuCountersResponse_XgemKeyErrors
2390 IsXgemKeyErrors isGetOnuCountersResponse_IsXgemKeyErrors `protobuf_oneof:"is_xgem_key_errors"`
2391 // Types that are valid to be assigned to IsXgemLoss:
2392 // *GetOnuCountersResponse_XgemLoss
2393 IsXgemLoss isGetOnuCountersResponse_IsXgemLoss `protobuf_oneof:"is_xgem_loss"`
2394 // Types that are valid to be assigned to IsRxPloamsError:
2395 // *GetOnuCountersResponse_RxPloamsError
2396 IsRxPloamsError isGetOnuCountersResponse_IsRxPloamsError `protobuf_oneof:"is_rx_ploams_error"`
2397 // Types that are valid to be assigned to IsRxPloamsNonIdle:
2398 // *GetOnuCountersResponse_RxPloamsNonIdle
2399 IsRxPloamsNonIdle isGetOnuCountersResponse_IsRxPloamsNonIdle `protobuf_oneof:"is_rx_ploams_non_idle"`
2400 // Types that are valid to be assigned to IsRxOmci:
2401 // *GetOnuCountersResponse_RxOmci
2402 IsRxOmci isGetOnuCountersResponse_IsRxOmci `protobuf_oneof:"is_rx_omci"`
2403 // Types that are valid to be assigned to IsTxOmci:
2404 // *GetOnuCountersResponse_TxOmci
2405 IsTxOmci isGetOnuCountersResponse_IsTxOmci `protobuf_oneof:"is_tx_omci"`
2406 // Types that are valid to be assigned to IsRxOmciPacketsCrcError:
2407 // *GetOnuCountersResponse_RxOmciPacketsCrcError
2408 IsRxOmciPacketsCrcError isGetOnuCountersResponse_IsRxOmciPacketsCrcError `protobuf_oneof:"is_rx_omci_packets_crc_error"`
2409 // Types that are valid to be assigned to IsRxBytes:
2410 // *GetOnuCountersResponse_RxBytes
2411 IsRxBytes isGetOnuCountersResponse_IsRxBytes `protobuf_oneof:"is_rx_bytes"`
2412 // Types that are valid to be assigned to IsRxPackets:
2413 // *GetOnuCountersResponse_RxPackets
2414 IsRxPackets isGetOnuCountersResponse_IsRxPackets `protobuf_oneof:"is_rx_packets"`
2415 // Types that are valid to be assigned to IsTxBytes:
2416 // *GetOnuCountersResponse_TxBytes
2417 IsTxBytes isGetOnuCountersResponse_IsTxBytes `protobuf_oneof:"is_tx_bytes"`
2418 // Types that are valid to be assigned to IsTxPackets:
2419 // *GetOnuCountersResponse_TxPackets
2420 IsTxPackets isGetOnuCountersResponse_IsTxPackets `protobuf_oneof:"is_tx_packets"`
2421 // Types that are valid to be assigned to IsBerReported:
2422 // *GetOnuCountersResponse_BerReported
2423 IsBerReported isGetOnuCountersResponse_IsBerReported `protobuf_oneof:"is_ber_reported"`
2424 // Types that are valid to be assigned to IsLcdgErrors:
2425 // *GetOnuCountersResponse_LcdgErrors
2426 IsLcdgErrors isGetOnuCountersResponse_IsLcdgErrors `protobuf_oneof:"is_lcdg_errors"`
2427 // Types that are valid to be assigned to IsRdiErrors:
2428 // *GetOnuCountersResponse_RdiErrors
2429 IsRdiErrors isGetOnuCountersResponse_IsRdiErrors `protobuf_oneof:"is_rdi_errors"`
2430 // Types that are valid to be assigned to IsTimestamp:
2431 // *GetOnuCountersResponse_Timestamp
2432 IsTimestamp isGetOnuCountersResponse_IsTimestamp `protobuf_oneof:"is_timestamp"`
2433 XXX_NoUnkeyedLiteral struct{} `json:"-"`
2434 XXX_unrecognized []byte `json:"-"`
2435 XXX_sizecache int32 `json:"-"`
2436}
2437
2438func (m *GetOnuCountersResponse) Reset() { *m = GetOnuCountersResponse{} }
2439func (m *GetOnuCountersResponse) String() string { return proto.CompactTextString(m) }
2440func (*GetOnuCountersResponse) ProtoMessage() {}
2441func (*GetOnuCountersResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05302442 return fileDescriptor_7ecf6e9799a9202d, []int{34}
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05302443}
2444
2445func (m *GetOnuCountersResponse) XXX_Unmarshal(b []byte) error {
2446 return xxx_messageInfo_GetOnuCountersResponse.Unmarshal(m, b)
2447}
2448func (m *GetOnuCountersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
2449 return xxx_messageInfo_GetOnuCountersResponse.Marshal(b, m, deterministic)
2450}
2451func (m *GetOnuCountersResponse) XXX_Merge(src proto.Message) {
2452 xxx_messageInfo_GetOnuCountersResponse.Merge(m, src)
2453}
2454func (m *GetOnuCountersResponse) XXX_Size() int {
2455 return xxx_messageInfo_GetOnuCountersResponse.Size(m)
2456}
2457func (m *GetOnuCountersResponse) XXX_DiscardUnknown() {
2458 xxx_messageInfo_GetOnuCountersResponse.DiscardUnknown(m)
2459}
2460
2461var xxx_messageInfo_GetOnuCountersResponse proto.InternalMessageInfo
2462
2463type isGetOnuCountersResponse_IsIntfId interface {
2464 isGetOnuCountersResponse_IsIntfId()
2465}
2466
2467type GetOnuCountersResponse_IntfId struct {
2468 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3,oneof"`
2469}
2470
2471func (*GetOnuCountersResponse_IntfId) isGetOnuCountersResponse_IsIntfId() {}
2472
2473func (m *GetOnuCountersResponse) GetIsIntfId() isGetOnuCountersResponse_IsIntfId {
2474 if m != nil {
2475 return m.IsIntfId
2476 }
2477 return nil
2478}
2479
2480func (m *GetOnuCountersResponse) GetIntfId() uint32 {
2481 if x, ok := m.GetIsIntfId().(*GetOnuCountersResponse_IntfId); ok {
2482 return x.IntfId
2483 }
2484 return 0
2485}
2486
2487type isGetOnuCountersResponse_IsOnuId interface {
2488 isGetOnuCountersResponse_IsOnuId()
2489}
2490
2491type GetOnuCountersResponse_OnuId struct {
2492 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3,oneof"`
2493}
2494
2495func (*GetOnuCountersResponse_OnuId) isGetOnuCountersResponse_IsOnuId() {}
2496
2497func (m *GetOnuCountersResponse) GetIsOnuId() isGetOnuCountersResponse_IsOnuId {
2498 if m != nil {
2499 return m.IsOnuId
2500 }
2501 return nil
2502}
2503
2504func (m *GetOnuCountersResponse) GetOnuId() uint32 {
2505 if x, ok := m.GetIsOnuId().(*GetOnuCountersResponse_OnuId); ok {
2506 return x.OnuId
2507 }
2508 return 0
2509}
2510
2511type isGetOnuCountersResponse_IsPositiveDrift interface {
2512 isGetOnuCountersResponse_IsPositiveDrift()
2513}
2514
2515type GetOnuCountersResponse_PositiveDrift struct {
2516 PositiveDrift uint64 `protobuf:"fixed64,3,opt,name=positive_drift,json=positiveDrift,proto3,oneof"`
2517}
2518
2519func (*GetOnuCountersResponse_PositiveDrift) isGetOnuCountersResponse_IsPositiveDrift() {}
2520
2521func (m *GetOnuCountersResponse) GetIsPositiveDrift() isGetOnuCountersResponse_IsPositiveDrift {
2522 if m != nil {
2523 return m.IsPositiveDrift
2524 }
2525 return nil
2526}
2527
2528func (m *GetOnuCountersResponse) GetPositiveDrift() uint64 {
2529 if x, ok := m.GetIsPositiveDrift().(*GetOnuCountersResponse_PositiveDrift); ok {
2530 return x.PositiveDrift
2531 }
2532 return 0
2533}
2534
2535type isGetOnuCountersResponse_IsNegativeDrift interface {
2536 isGetOnuCountersResponse_IsNegativeDrift()
2537}
2538
2539type GetOnuCountersResponse_NegativeDrift struct {
2540 NegativeDrift uint64 `protobuf:"fixed64,4,opt,name=negative_drift,json=negativeDrift,proto3,oneof"`
2541}
2542
2543func (*GetOnuCountersResponse_NegativeDrift) isGetOnuCountersResponse_IsNegativeDrift() {}
2544
2545func (m *GetOnuCountersResponse) GetIsNegativeDrift() isGetOnuCountersResponse_IsNegativeDrift {
2546 if m != nil {
2547 return m.IsNegativeDrift
2548 }
2549 return nil
2550}
2551
2552func (m *GetOnuCountersResponse) GetNegativeDrift() uint64 {
2553 if x, ok := m.GetIsNegativeDrift().(*GetOnuCountersResponse_NegativeDrift); ok {
2554 return x.NegativeDrift
2555 }
2556 return 0
2557}
2558
2559type isGetOnuCountersResponse_IsDelimiterMissDetection interface {
2560 isGetOnuCountersResponse_IsDelimiterMissDetection()
2561}
2562
2563type GetOnuCountersResponse_DelimiterMissDetection struct {
2564 DelimiterMissDetection uint64 `protobuf:"fixed64,5,opt,name=delimiter_miss_detection,json=delimiterMissDetection,proto3,oneof"`
2565}
2566
2567func (*GetOnuCountersResponse_DelimiterMissDetection) isGetOnuCountersResponse_IsDelimiterMissDetection() {
2568}
2569
2570func (m *GetOnuCountersResponse) GetIsDelimiterMissDetection() isGetOnuCountersResponse_IsDelimiterMissDetection {
2571 if m != nil {
2572 return m.IsDelimiterMissDetection
2573 }
2574 return nil
2575}
2576
2577func (m *GetOnuCountersResponse) GetDelimiterMissDetection() uint64 {
2578 if x, ok := m.GetIsDelimiterMissDetection().(*GetOnuCountersResponse_DelimiterMissDetection); ok {
2579 return x.DelimiterMissDetection
2580 }
2581 return 0
2582}
2583
2584type isGetOnuCountersResponse_IsBipErrors interface {
2585 isGetOnuCountersResponse_IsBipErrors()
2586}
2587
2588type GetOnuCountersResponse_BipErrors struct {
2589 BipErrors uint64 `protobuf:"fixed64,6,opt,name=bip_errors,json=bipErrors,proto3,oneof"`
2590}
2591
2592func (*GetOnuCountersResponse_BipErrors) isGetOnuCountersResponse_IsBipErrors() {}
2593
2594func (m *GetOnuCountersResponse) GetIsBipErrors() isGetOnuCountersResponse_IsBipErrors {
2595 if m != nil {
2596 return m.IsBipErrors
2597 }
2598 return nil
2599}
2600
2601func (m *GetOnuCountersResponse) GetBipErrors() uint64 {
2602 if x, ok := m.GetIsBipErrors().(*GetOnuCountersResponse_BipErrors); ok {
2603 return x.BipErrors
2604 }
2605 return 0
2606}
2607
2608type isGetOnuCountersResponse_IsBipUnits interface {
2609 isGetOnuCountersResponse_IsBipUnits()
2610}
2611
2612type GetOnuCountersResponse_BipUnits struct {
2613 BipUnits uint64 `protobuf:"fixed64,7,opt,name=bip_units,json=bipUnits,proto3,oneof"`
2614}
2615
2616func (*GetOnuCountersResponse_BipUnits) isGetOnuCountersResponse_IsBipUnits() {}
2617
2618func (m *GetOnuCountersResponse) GetIsBipUnits() isGetOnuCountersResponse_IsBipUnits {
2619 if m != nil {
2620 return m.IsBipUnits
2621 }
2622 return nil
2623}
2624
2625func (m *GetOnuCountersResponse) GetBipUnits() uint64 {
2626 if x, ok := m.GetIsBipUnits().(*GetOnuCountersResponse_BipUnits); ok {
2627 return x.BipUnits
2628 }
2629 return 0
2630}
2631
2632type isGetOnuCountersResponse_IsFecCorrectedSymbols interface {
2633 isGetOnuCountersResponse_IsFecCorrectedSymbols()
2634}
2635
2636type GetOnuCountersResponse_FecCorrectedSymbols struct {
2637 FecCorrectedSymbols uint64 `protobuf:"fixed64,8,opt,name=fec_corrected_symbols,json=fecCorrectedSymbols,proto3,oneof"`
2638}
2639
2640func (*GetOnuCountersResponse_FecCorrectedSymbols) isGetOnuCountersResponse_IsFecCorrectedSymbols() {}
2641
2642func (m *GetOnuCountersResponse) GetIsFecCorrectedSymbols() isGetOnuCountersResponse_IsFecCorrectedSymbols {
2643 if m != nil {
2644 return m.IsFecCorrectedSymbols
2645 }
2646 return nil
2647}
2648
2649func (m *GetOnuCountersResponse) GetFecCorrectedSymbols() uint64 {
2650 if x, ok := m.GetIsFecCorrectedSymbols().(*GetOnuCountersResponse_FecCorrectedSymbols); ok {
2651 return x.FecCorrectedSymbols
2652 }
2653 return 0
2654}
2655
2656type isGetOnuCountersResponse_IsFecCodewordsCorrected interface {
2657 isGetOnuCountersResponse_IsFecCodewordsCorrected()
2658}
2659
2660type GetOnuCountersResponse_FecCodewordsCorrected struct {
2661 FecCodewordsCorrected uint64 `protobuf:"fixed64,9,opt,name=fec_codewords_corrected,json=fecCodewordsCorrected,proto3,oneof"`
2662}
2663
2664func (*GetOnuCountersResponse_FecCodewordsCorrected) isGetOnuCountersResponse_IsFecCodewordsCorrected() {
2665}
2666
2667func (m *GetOnuCountersResponse) GetIsFecCodewordsCorrected() isGetOnuCountersResponse_IsFecCodewordsCorrected {
2668 if m != nil {
2669 return m.IsFecCodewordsCorrected
2670 }
2671 return nil
2672}
2673
2674func (m *GetOnuCountersResponse) GetFecCodewordsCorrected() uint64 {
2675 if x, ok := m.GetIsFecCodewordsCorrected().(*GetOnuCountersResponse_FecCodewordsCorrected); ok {
2676 return x.FecCodewordsCorrected
2677 }
2678 return 0
2679}
2680
2681type isGetOnuCountersResponse_IsFecCodewordsUncorrectable interface {
2682 isGetOnuCountersResponse_IsFecCodewordsUncorrectable()
2683}
2684
2685type GetOnuCountersResponse_FecCodewordsUncorrectable struct {
2686 FecCodewordsUncorrectable uint64 `protobuf:"fixed64,10,opt,name=fec_codewords_uncorrectable,json=fecCodewordsUncorrectable,proto3,oneof"`
2687}
2688
2689func (*GetOnuCountersResponse_FecCodewordsUncorrectable) isGetOnuCountersResponse_IsFecCodewordsUncorrectable() {
2690}
2691
2692func (m *GetOnuCountersResponse) GetIsFecCodewordsUncorrectable() isGetOnuCountersResponse_IsFecCodewordsUncorrectable {
2693 if m != nil {
2694 return m.IsFecCodewordsUncorrectable
2695 }
2696 return nil
2697}
2698
2699func (m *GetOnuCountersResponse) GetFecCodewordsUncorrectable() uint64 {
2700 if x, ok := m.GetIsFecCodewordsUncorrectable().(*GetOnuCountersResponse_FecCodewordsUncorrectable); ok {
2701 return x.FecCodewordsUncorrectable
2702 }
2703 return 0
2704}
2705
2706type isGetOnuCountersResponse_IsFecCodewords interface {
2707 isGetOnuCountersResponse_IsFecCodewords()
2708}
2709
2710type GetOnuCountersResponse_FecCodewords struct {
2711 FecCodewords uint64 `protobuf:"fixed64,11,opt,name=fec_codewords,json=fecCodewords,proto3,oneof"`
2712}
2713
2714func (*GetOnuCountersResponse_FecCodewords) isGetOnuCountersResponse_IsFecCodewords() {}
2715
2716func (m *GetOnuCountersResponse) GetIsFecCodewords() isGetOnuCountersResponse_IsFecCodewords {
2717 if m != nil {
2718 return m.IsFecCodewords
2719 }
2720 return nil
2721}
2722
2723func (m *GetOnuCountersResponse) GetFecCodewords() uint64 {
2724 if x, ok := m.GetIsFecCodewords().(*GetOnuCountersResponse_FecCodewords); ok {
2725 return x.FecCodewords
2726 }
2727 return 0
2728}
2729
2730type isGetOnuCountersResponse_IsFecCorrectedUnits interface {
2731 isGetOnuCountersResponse_IsFecCorrectedUnits()
2732}
2733
2734type GetOnuCountersResponse_FecCorrectedUnits struct {
2735 FecCorrectedUnits uint64 `protobuf:"fixed64,12,opt,name=fec_corrected_units,json=fecCorrectedUnits,proto3,oneof"`
2736}
2737
2738func (*GetOnuCountersResponse_FecCorrectedUnits) isGetOnuCountersResponse_IsFecCorrectedUnits() {}
2739
2740func (m *GetOnuCountersResponse) GetIsFecCorrectedUnits() isGetOnuCountersResponse_IsFecCorrectedUnits {
2741 if m != nil {
2742 return m.IsFecCorrectedUnits
2743 }
2744 return nil
2745}
2746
2747func (m *GetOnuCountersResponse) GetFecCorrectedUnits() uint64 {
2748 if x, ok := m.GetIsFecCorrectedUnits().(*GetOnuCountersResponse_FecCorrectedUnits); ok {
2749 return x.FecCorrectedUnits
2750 }
2751 return 0
2752}
2753
2754type isGetOnuCountersResponse_IsXgemKeyErrors interface {
2755 isGetOnuCountersResponse_IsXgemKeyErrors()
2756}
2757
2758type GetOnuCountersResponse_XgemKeyErrors struct {
2759 XgemKeyErrors uint64 `protobuf:"fixed64,13,opt,name=xgem_key_errors,json=xgemKeyErrors,proto3,oneof"`
2760}
2761
2762func (*GetOnuCountersResponse_XgemKeyErrors) isGetOnuCountersResponse_IsXgemKeyErrors() {}
2763
2764func (m *GetOnuCountersResponse) GetIsXgemKeyErrors() isGetOnuCountersResponse_IsXgemKeyErrors {
2765 if m != nil {
2766 return m.IsXgemKeyErrors
2767 }
2768 return nil
2769}
2770
2771func (m *GetOnuCountersResponse) GetXgemKeyErrors() uint64 {
2772 if x, ok := m.GetIsXgemKeyErrors().(*GetOnuCountersResponse_XgemKeyErrors); ok {
2773 return x.XgemKeyErrors
2774 }
2775 return 0
2776}
2777
2778type isGetOnuCountersResponse_IsXgemLoss interface {
2779 isGetOnuCountersResponse_IsXgemLoss()
2780}
2781
2782type GetOnuCountersResponse_XgemLoss struct {
2783 XgemLoss uint64 `protobuf:"fixed64,14,opt,name=xgem_loss,json=xgemLoss,proto3,oneof"`
2784}
2785
2786func (*GetOnuCountersResponse_XgemLoss) isGetOnuCountersResponse_IsXgemLoss() {}
2787
2788func (m *GetOnuCountersResponse) GetIsXgemLoss() isGetOnuCountersResponse_IsXgemLoss {
2789 if m != nil {
2790 return m.IsXgemLoss
2791 }
2792 return nil
2793}
2794
2795func (m *GetOnuCountersResponse) GetXgemLoss() uint64 {
2796 if x, ok := m.GetIsXgemLoss().(*GetOnuCountersResponse_XgemLoss); ok {
2797 return x.XgemLoss
2798 }
2799 return 0
2800}
2801
2802type isGetOnuCountersResponse_IsRxPloamsError interface {
2803 isGetOnuCountersResponse_IsRxPloamsError()
2804}
2805
2806type GetOnuCountersResponse_RxPloamsError struct {
2807 RxPloamsError uint64 `protobuf:"fixed64,15,opt,name=rx_ploams_error,json=rxPloamsError,proto3,oneof"`
2808}
2809
2810func (*GetOnuCountersResponse_RxPloamsError) isGetOnuCountersResponse_IsRxPloamsError() {}
2811
2812func (m *GetOnuCountersResponse) GetIsRxPloamsError() isGetOnuCountersResponse_IsRxPloamsError {
2813 if m != nil {
2814 return m.IsRxPloamsError
2815 }
2816 return nil
2817}
2818
2819func (m *GetOnuCountersResponse) GetRxPloamsError() uint64 {
2820 if x, ok := m.GetIsRxPloamsError().(*GetOnuCountersResponse_RxPloamsError); ok {
2821 return x.RxPloamsError
2822 }
2823 return 0
2824}
2825
2826type isGetOnuCountersResponse_IsRxPloamsNonIdle interface {
2827 isGetOnuCountersResponse_IsRxPloamsNonIdle()
2828}
2829
2830type GetOnuCountersResponse_RxPloamsNonIdle struct {
2831 RxPloamsNonIdle uint64 `protobuf:"fixed64,16,opt,name=rx_ploams_non_idle,json=rxPloamsNonIdle,proto3,oneof"`
2832}
2833
2834func (*GetOnuCountersResponse_RxPloamsNonIdle) isGetOnuCountersResponse_IsRxPloamsNonIdle() {}
2835
2836func (m *GetOnuCountersResponse) GetIsRxPloamsNonIdle() isGetOnuCountersResponse_IsRxPloamsNonIdle {
2837 if m != nil {
2838 return m.IsRxPloamsNonIdle
2839 }
2840 return nil
2841}
2842
2843func (m *GetOnuCountersResponse) GetRxPloamsNonIdle() uint64 {
2844 if x, ok := m.GetIsRxPloamsNonIdle().(*GetOnuCountersResponse_RxPloamsNonIdle); ok {
2845 return x.RxPloamsNonIdle
2846 }
2847 return 0
2848}
2849
2850type isGetOnuCountersResponse_IsRxOmci interface {
2851 isGetOnuCountersResponse_IsRxOmci()
2852}
2853
2854type GetOnuCountersResponse_RxOmci struct {
2855 RxOmci uint64 `protobuf:"fixed64,17,opt,name=rx_omci,json=rxOmci,proto3,oneof"`
2856}
2857
2858func (*GetOnuCountersResponse_RxOmci) isGetOnuCountersResponse_IsRxOmci() {}
2859
2860func (m *GetOnuCountersResponse) GetIsRxOmci() isGetOnuCountersResponse_IsRxOmci {
2861 if m != nil {
2862 return m.IsRxOmci
2863 }
2864 return nil
2865}
2866
2867func (m *GetOnuCountersResponse) GetRxOmci() uint64 {
2868 if x, ok := m.GetIsRxOmci().(*GetOnuCountersResponse_RxOmci); ok {
2869 return x.RxOmci
2870 }
2871 return 0
2872}
2873
2874type isGetOnuCountersResponse_IsTxOmci interface {
2875 isGetOnuCountersResponse_IsTxOmci()
2876}
2877
2878type GetOnuCountersResponse_TxOmci struct {
2879 TxOmci uint64 `protobuf:"fixed64,18,opt,name=tx_omci,json=txOmci,proto3,oneof"`
2880}
2881
2882func (*GetOnuCountersResponse_TxOmci) isGetOnuCountersResponse_IsTxOmci() {}
2883
2884func (m *GetOnuCountersResponse) GetIsTxOmci() isGetOnuCountersResponse_IsTxOmci {
2885 if m != nil {
2886 return m.IsTxOmci
2887 }
2888 return nil
2889}
2890
2891func (m *GetOnuCountersResponse) GetTxOmci() uint64 {
2892 if x, ok := m.GetIsTxOmci().(*GetOnuCountersResponse_TxOmci); ok {
2893 return x.TxOmci
2894 }
2895 return 0
2896}
2897
2898type isGetOnuCountersResponse_IsRxOmciPacketsCrcError interface {
2899 isGetOnuCountersResponse_IsRxOmciPacketsCrcError()
2900}
2901
2902type GetOnuCountersResponse_RxOmciPacketsCrcError struct {
2903 RxOmciPacketsCrcError uint64 `protobuf:"fixed64,19,opt,name=rx_omci_packets_crc_error,json=rxOmciPacketsCrcError,proto3,oneof"`
2904}
2905
2906func (*GetOnuCountersResponse_RxOmciPacketsCrcError) isGetOnuCountersResponse_IsRxOmciPacketsCrcError() {
2907}
2908
2909func (m *GetOnuCountersResponse) GetIsRxOmciPacketsCrcError() isGetOnuCountersResponse_IsRxOmciPacketsCrcError {
2910 if m != nil {
2911 return m.IsRxOmciPacketsCrcError
2912 }
2913 return nil
2914}
2915
2916func (m *GetOnuCountersResponse) GetRxOmciPacketsCrcError() uint64 {
2917 if x, ok := m.GetIsRxOmciPacketsCrcError().(*GetOnuCountersResponse_RxOmciPacketsCrcError); ok {
2918 return x.RxOmciPacketsCrcError
2919 }
2920 return 0
2921}
2922
2923type isGetOnuCountersResponse_IsRxBytes interface {
2924 isGetOnuCountersResponse_IsRxBytes()
2925}
2926
2927type GetOnuCountersResponse_RxBytes struct {
2928 RxBytes uint64 `protobuf:"fixed64,20,opt,name=rx_bytes,json=rxBytes,proto3,oneof"`
2929}
2930
2931func (*GetOnuCountersResponse_RxBytes) isGetOnuCountersResponse_IsRxBytes() {}
2932
2933func (m *GetOnuCountersResponse) GetIsRxBytes() isGetOnuCountersResponse_IsRxBytes {
2934 if m != nil {
2935 return m.IsRxBytes
2936 }
2937 return nil
2938}
2939
2940func (m *GetOnuCountersResponse) GetRxBytes() uint64 {
2941 if x, ok := m.GetIsRxBytes().(*GetOnuCountersResponse_RxBytes); ok {
2942 return x.RxBytes
2943 }
2944 return 0
2945}
2946
2947type isGetOnuCountersResponse_IsRxPackets interface {
2948 isGetOnuCountersResponse_IsRxPackets()
2949}
2950
2951type GetOnuCountersResponse_RxPackets struct {
2952 RxPackets uint64 `protobuf:"fixed64,21,opt,name=rx_packets,json=rxPackets,proto3,oneof"`
2953}
2954
2955func (*GetOnuCountersResponse_RxPackets) isGetOnuCountersResponse_IsRxPackets() {}
2956
2957func (m *GetOnuCountersResponse) GetIsRxPackets() isGetOnuCountersResponse_IsRxPackets {
2958 if m != nil {
2959 return m.IsRxPackets
2960 }
2961 return nil
2962}
2963
2964func (m *GetOnuCountersResponse) GetRxPackets() uint64 {
2965 if x, ok := m.GetIsRxPackets().(*GetOnuCountersResponse_RxPackets); ok {
2966 return x.RxPackets
2967 }
2968 return 0
2969}
2970
2971type isGetOnuCountersResponse_IsTxBytes interface {
2972 isGetOnuCountersResponse_IsTxBytes()
2973}
2974
2975type GetOnuCountersResponse_TxBytes struct {
2976 TxBytes uint64 `protobuf:"fixed64,22,opt,name=tx_bytes,json=txBytes,proto3,oneof"`
2977}
2978
2979func (*GetOnuCountersResponse_TxBytes) isGetOnuCountersResponse_IsTxBytes() {}
2980
2981func (m *GetOnuCountersResponse) GetIsTxBytes() isGetOnuCountersResponse_IsTxBytes {
2982 if m != nil {
2983 return m.IsTxBytes
2984 }
2985 return nil
2986}
2987
2988func (m *GetOnuCountersResponse) GetTxBytes() uint64 {
2989 if x, ok := m.GetIsTxBytes().(*GetOnuCountersResponse_TxBytes); ok {
2990 return x.TxBytes
2991 }
2992 return 0
2993}
2994
2995type isGetOnuCountersResponse_IsTxPackets interface {
2996 isGetOnuCountersResponse_IsTxPackets()
2997}
2998
2999type GetOnuCountersResponse_TxPackets struct {
3000 TxPackets uint64 `protobuf:"fixed64,23,opt,name=tx_packets,json=txPackets,proto3,oneof"`
3001}
3002
3003func (*GetOnuCountersResponse_TxPackets) isGetOnuCountersResponse_IsTxPackets() {}
3004
3005func (m *GetOnuCountersResponse) GetIsTxPackets() isGetOnuCountersResponse_IsTxPackets {
3006 if m != nil {
3007 return m.IsTxPackets
3008 }
3009 return nil
3010}
3011
3012func (m *GetOnuCountersResponse) GetTxPackets() uint64 {
3013 if x, ok := m.GetIsTxPackets().(*GetOnuCountersResponse_TxPackets); ok {
3014 return x.TxPackets
3015 }
3016 return 0
3017}
3018
3019type isGetOnuCountersResponse_IsBerReported interface {
3020 isGetOnuCountersResponse_IsBerReported()
3021}
3022
3023type GetOnuCountersResponse_BerReported struct {
3024 BerReported uint64 `protobuf:"fixed64,24,opt,name=ber_reported,json=berReported,proto3,oneof"`
3025}
3026
3027func (*GetOnuCountersResponse_BerReported) isGetOnuCountersResponse_IsBerReported() {}
3028
3029func (m *GetOnuCountersResponse) GetIsBerReported() isGetOnuCountersResponse_IsBerReported {
3030 if m != nil {
3031 return m.IsBerReported
3032 }
3033 return nil
3034}
3035
3036func (m *GetOnuCountersResponse) GetBerReported() uint64 {
3037 if x, ok := m.GetIsBerReported().(*GetOnuCountersResponse_BerReported); ok {
3038 return x.BerReported
3039 }
3040 return 0
3041}
3042
3043type isGetOnuCountersResponse_IsLcdgErrors interface {
3044 isGetOnuCountersResponse_IsLcdgErrors()
3045}
3046
3047type GetOnuCountersResponse_LcdgErrors struct {
3048 LcdgErrors uint64 `protobuf:"fixed64,25,opt,name=lcdg_errors,json=lcdgErrors,proto3,oneof"`
3049}
3050
3051func (*GetOnuCountersResponse_LcdgErrors) isGetOnuCountersResponse_IsLcdgErrors() {}
3052
3053func (m *GetOnuCountersResponse) GetIsLcdgErrors() isGetOnuCountersResponse_IsLcdgErrors {
3054 if m != nil {
3055 return m.IsLcdgErrors
3056 }
3057 return nil
3058}
3059
3060func (m *GetOnuCountersResponse) GetLcdgErrors() uint64 {
3061 if x, ok := m.GetIsLcdgErrors().(*GetOnuCountersResponse_LcdgErrors); ok {
3062 return x.LcdgErrors
3063 }
3064 return 0
3065}
3066
3067type isGetOnuCountersResponse_IsRdiErrors interface {
3068 isGetOnuCountersResponse_IsRdiErrors()
3069}
3070
3071type GetOnuCountersResponse_RdiErrors struct {
3072 RdiErrors uint64 `protobuf:"fixed64,26,opt,name=rdi_errors,json=rdiErrors,proto3,oneof"`
3073}
3074
3075func (*GetOnuCountersResponse_RdiErrors) isGetOnuCountersResponse_IsRdiErrors() {}
3076
3077func (m *GetOnuCountersResponse) GetIsRdiErrors() isGetOnuCountersResponse_IsRdiErrors {
3078 if m != nil {
3079 return m.IsRdiErrors
3080 }
3081 return nil
3082}
3083
3084func (m *GetOnuCountersResponse) GetRdiErrors() uint64 {
3085 if x, ok := m.GetIsRdiErrors().(*GetOnuCountersResponse_RdiErrors); ok {
3086 return x.RdiErrors
3087 }
3088 return 0
3089}
3090
3091type isGetOnuCountersResponse_IsTimestamp interface {
3092 isGetOnuCountersResponse_IsTimestamp()
3093}
3094
3095type GetOnuCountersResponse_Timestamp struct {
3096 Timestamp uint32 `protobuf:"fixed32,27,opt,name=timestamp,proto3,oneof"`
3097}
3098
3099func (*GetOnuCountersResponse_Timestamp) isGetOnuCountersResponse_IsTimestamp() {}
3100
3101func (m *GetOnuCountersResponse) GetIsTimestamp() isGetOnuCountersResponse_IsTimestamp {
3102 if m != nil {
3103 return m.IsTimestamp
3104 }
3105 return nil
3106}
3107
3108func (m *GetOnuCountersResponse) GetTimestamp() uint32 {
3109 if x, ok := m.GetIsTimestamp().(*GetOnuCountersResponse_Timestamp); ok {
3110 return x.Timestamp
3111 }
3112 return 0
3113}
3114
3115// XXX_OneofWrappers is for the internal use of the proto package.
3116func (*GetOnuCountersResponse) XXX_OneofWrappers() []interface{} {
3117 return []interface{}{
3118 (*GetOnuCountersResponse_IntfId)(nil),
3119 (*GetOnuCountersResponse_OnuId)(nil),
3120 (*GetOnuCountersResponse_PositiveDrift)(nil),
3121 (*GetOnuCountersResponse_NegativeDrift)(nil),
3122 (*GetOnuCountersResponse_DelimiterMissDetection)(nil),
3123 (*GetOnuCountersResponse_BipErrors)(nil),
3124 (*GetOnuCountersResponse_BipUnits)(nil),
3125 (*GetOnuCountersResponse_FecCorrectedSymbols)(nil),
3126 (*GetOnuCountersResponse_FecCodewordsCorrected)(nil),
3127 (*GetOnuCountersResponse_FecCodewordsUncorrectable)(nil),
3128 (*GetOnuCountersResponse_FecCodewords)(nil),
3129 (*GetOnuCountersResponse_FecCorrectedUnits)(nil),
3130 (*GetOnuCountersResponse_XgemKeyErrors)(nil),
3131 (*GetOnuCountersResponse_XgemLoss)(nil),
3132 (*GetOnuCountersResponse_RxPloamsError)(nil),
3133 (*GetOnuCountersResponse_RxPloamsNonIdle)(nil),
3134 (*GetOnuCountersResponse_RxOmci)(nil),
3135 (*GetOnuCountersResponse_TxOmci)(nil),
3136 (*GetOnuCountersResponse_RxOmciPacketsCrcError)(nil),
3137 (*GetOnuCountersResponse_RxBytes)(nil),
3138 (*GetOnuCountersResponse_RxPackets)(nil),
3139 (*GetOnuCountersResponse_TxBytes)(nil),
3140 (*GetOnuCountersResponse_TxPackets)(nil),
3141 (*GetOnuCountersResponse_BerReported)(nil),
3142 (*GetOnuCountersResponse_LcdgErrors)(nil),
3143 (*GetOnuCountersResponse_RdiErrors)(nil),
3144 (*GetOnuCountersResponse_Timestamp)(nil),
3145 }
3146}
3147
Himani Chawla9a497392021-05-28 13:04:42 +05303148type OmciEthernetFrameExtendedPm struct {
3149 DropEvents uint64 `protobuf:"fixed64,1,opt,name=drop_events,json=dropEvents,proto3" json:"drop_events,omitempty"`
3150 Octets uint64 `protobuf:"fixed64,2,opt,name=octets,proto3" json:"octets,omitempty"`
3151 Frames uint64 `protobuf:"fixed64,3,opt,name=frames,proto3" json:"frames,omitempty"`
3152 BroadcastFrames uint64 `protobuf:"fixed64,4,opt,name=broadcast_frames,json=broadcastFrames,proto3" json:"broadcast_frames,omitempty"`
3153 MulticastFrames uint64 `protobuf:"fixed64,5,opt,name=multicast_frames,json=multicastFrames,proto3" json:"multicast_frames,omitempty"`
3154 CrcErroredFrames uint64 `protobuf:"fixed64,6,opt,name=crc_errored_frames,json=crcErroredFrames,proto3" json:"crc_errored_frames,omitempty"`
3155 UndersizeFrames uint64 `protobuf:"fixed64,7,opt,name=undersize_frames,json=undersizeFrames,proto3" json:"undersize_frames,omitempty"`
3156 OversizeFrames uint64 `protobuf:"fixed64,8,opt,name=oversize_frames,json=oversizeFrames,proto3" json:"oversize_frames,omitempty"`
3157 Frames_64Octets uint64 `protobuf:"fixed64,9,opt,name=frames_64_octets,json=frames64Octets,proto3" json:"frames_64_octets,omitempty"`
3158 Frames_65To_127Octets uint64 `protobuf:"fixed64,10,opt,name=frames_65_to_127_octets,json=frames65To127Octets,proto3" json:"frames_65_to_127_octets,omitempty"`
3159 Frames_128To_255Octets uint64 `protobuf:"fixed64,11,opt,name=frames_128_to_255_octets,json=frames128To255Octets,proto3" json:"frames_128_to_255_octets,omitempty"`
3160 Frames_256To_511Octets uint64 `protobuf:"fixed64,12,opt,name=frames_256_to_511_octets,json=frames256To511Octets,proto3" json:"frames_256_to_511_octets,omitempty"`
3161 Frames_512To_1023Octets uint64 `protobuf:"fixed64,13,opt,name=frames_512_to_1023_octets,json=frames512To1023Octets,proto3" json:"frames_512_to_1023_octets,omitempty"`
3162 Frames_1024To_1518Octets uint64 `protobuf:"fixed64,14,opt,name=frames_1024_to_1518_octets,json=frames1024To1518Octets,proto3" json:"frames_1024_to_1518_octets,omitempty"`
3163 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3164 XXX_unrecognized []byte `json:"-"`
3165 XXX_sizecache int32 `json:"-"`
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303166}
3167
Himani Chawla9a497392021-05-28 13:04:42 +05303168func (m *OmciEthernetFrameExtendedPm) Reset() { *m = OmciEthernetFrameExtendedPm{} }
3169func (m *OmciEthernetFrameExtendedPm) String() string { return proto.CompactTextString(m) }
3170func (*OmciEthernetFrameExtendedPm) ProtoMessage() {}
3171func (*OmciEthernetFrameExtendedPm) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303172 return fileDescriptor_7ecf6e9799a9202d, []int{35}
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303173}
3174
Himani Chawla9a497392021-05-28 13:04:42 +05303175func (m *OmciEthernetFrameExtendedPm) XXX_Unmarshal(b []byte) error {
3176 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Unmarshal(m, b)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303177}
Himani Chawla9a497392021-05-28 13:04:42 +05303178func (m *OmciEthernetFrameExtendedPm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3179 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Marshal(b, m, deterministic)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303180}
Himani Chawla9a497392021-05-28 13:04:42 +05303181func (m *OmciEthernetFrameExtendedPm) XXX_Merge(src proto.Message) {
3182 xxx_messageInfo_OmciEthernetFrameExtendedPm.Merge(m, src)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303183}
Himani Chawla9a497392021-05-28 13:04:42 +05303184func (m *OmciEthernetFrameExtendedPm) XXX_Size() int {
3185 return xxx_messageInfo_OmciEthernetFrameExtendedPm.Size(m)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303186}
Himani Chawla9a497392021-05-28 13:04:42 +05303187func (m *OmciEthernetFrameExtendedPm) XXX_DiscardUnknown() {
3188 xxx_messageInfo_OmciEthernetFrameExtendedPm.DiscardUnknown(m)
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303189}
3190
Himani Chawla9a497392021-05-28 13:04:42 +05303191var xxx_messageInfo_OmciEthernetFrameExtendedPm proto.InternalMessageInfo
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303192
Himani Chawla9a497392021-05-28 13:04:42 +05303193func (m *OmciEthernetFrameExtendedPm) GetDropEvents() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303194 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303195 return m.DropEvents
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303196 }
3197 return 0
3198}
3199
Himani Chawla9a497392021-05-28 13:04:42 +05303200func (m *OmciEthernetFrameExtendedPm) GetOctets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303201 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303202 return m.Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303203 }
3204 return 0
3205}
3206
Himani Chawla9a497392021-05-28 13:04:42 +05303207func (m *OmciEthernetFrameExtendedPm) GetFrames() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303208 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303209 return m.Frames
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303210 }
3211 return 0
3212}
3213
Himani Chawla9a497392021-05-28 13:04:42 +05303214func (m *OmciEthernetFrameExtendedPm) GetBroadcastFrames() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303215 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303216 return m.BroadcastFrames
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303217 }
3218 return 0
3219}
3220
Himani Chawla9a497392021-05-28 13:04:42 +05303221func (m *OmciEthernetFrameExtendedPm) GetMulticastFrames() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303222 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303223 return m.MulticastFrames
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303224 }
3225 return 0
3226}
3227
Himani Chawla9a497392021-05-28 13:04:42 +05303228func (m *OmciEthernetFrameExtendedPm) GetCrcErroredFrames() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303229 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303230 return m.CrcErroredFrames
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303231 }
3232 return 0
3233}
3234
Himani Chawla9a497392021-05-28 13:04:42 +05303235func (m *OmciEthernetFrameExtendedPm) GetUndersizeFrames() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303236 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303237 return m.UndersizeFrames
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303238 }
3239 return 0
3240}
3241
Himani Chawla9a497392021-05-28 13:04:42 +05303242func (m *OmciEthernetFrameExtendedPm) GetOversizeFrames() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303243 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303244 return m.OversizeFrames
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303245 }
3246 return 0
3247}
3248
Himani Chawla9a497392021-05-28 13:04:42 +05303249func (m *OmciEthernetFrameExtendedPm) GetFrames_64Octets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303250 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303251 return m.Frames_64Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303252 }
3253 return 0
3254}
3255
Himani Chawla9a497392021-05-28 13:04:42 +05303256func (m *OmciEthernetFrameExtendedPm) GetFrames_65To_127Octets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303257 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303258 return m.Frames_65To_127Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303259 }
3260 return 0
3261}
3262
Himani Chawla9a497392021-05-28 13:04:42 +05303263func (m *OmciEthernetFrameExtendedPm) GetFrames_128To_255Octets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303264 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303265 return m.Frames_128To_255Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303266 }
3267 return 0
3268}
3269
Himani Chawla9a497392021-05-28 13:04:42 +05303270func (m *OmciEthernetFrameExtendedPm) GetFrames_256To_511Octets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303271 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303272 return m.Frames_256To_511Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303273 }
3274 return 0
3275}
3276
Himani Chawla9a497392021-05-28 13:04:42 +05303277func (m *OmciEthernetFrameExtendedPm) GetFrames_512To_1023Octets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303278 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303279 return m.Frames_512To_1023Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303280 }
3281 return 0
3282}
3283
Himani Chawla9a497392021-05-28 13:04:42 +05303284func (m *OmciEthernetFrameExtendedPm) GetFrames_1024To_1518Octets() uint64 {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303285 if m != nil {
Himani Chawla9a497392021-05-28 13:04:42 +05303286 return m.Frames_1024To_1518Octets
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303287 }
3288 return 0
3289}
3290
Himani Chawla9a497392021-05-28 13:04:42 +05303291type GetOmciEthernetFrameExtendedPmResponse struct {
Himani Chawla654f7f32021-08-25 16:31:24 +05303292 Upstream *OmciEthernetFrameExtendedPm `protobuf:"bytes,1,opt,name=upstream,proto3" json:"upstream,omitempty"`
3293 Downstream *OmciEthernetFrameExtendedPm `protobuf:"bytes,2,opt,name=downstream,proto3" json:"downstream,omitempty"`
3294 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"`
3295 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3296 XXX_unrecognized []byte `json:"-"`
3297 XXX_sizecache int32 `json:"-"`
Himani Chawla9a497392021-05-28 13:04:42 +05303298}
3299
3300func (m *GetOmciEthernetFrameExtendedPmResponse) Reset() {
3301 *m = GetOmciEthernetFrameExtendedPmResponse{}
3302}
3303func (m *GetOmciEthernetFrameExtendedPmResponse) String() string { return proto.CompactTextString(m) }
3304func (*GetOmciEthernetFrameExtendedPmResponse) ProtoMessage() {}
3305func (*GetOmciEthernetFrameExtendedPmResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303306 return fileDescriptor_7ecf6e9799a9202d, []int{36}
Himani Chawla9a497392021-05-28 13:04:42 +05303307}
3308
3309func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Unmarshal(b []byte) error {
3310 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Unmarshal(m, b)
3311}
3312func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3313 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Marshal(b, m, deterministic)
3314}
3315func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Merge(src proto.Message) {
3316 xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Merge(m, src)
3317}
3318func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_Size() int {
3319 return xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.Size(m)
3320}
3321func (m *GetOmciEthernetFrameExtendedPmResponse) XXX_DiscardUnknown() {
3322 xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse.DiscardUnknown(m)
3323}
3324
3325var xxx_messageInfo_GetOmciEthernetFrameExtendedPmResponse proto.InternalMessageInfo
3326
3327func (m *GetOmciEthernetFrameExtendedPmResponse) GetUpstream() *OmciEthernetFrameExtendedPm {
3328 if m != nil {
3329 return m.Upstream
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303330 }
Himani Chawla9a497392021-05-28 13:04:42 +05303331 return nil
3332}
3333
3334func (m *GetOmciEthernetFrameExtendedPmResponse) GetDownstream() *OmciEthernetFrameExtendedPm {
3335 if m != nil {
3336 return m.Downstream
3337 }
3338 return nil
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05303339}
3340
Himani Chawla654f7f32021-08-25 16:31:24 +05303341func (m *GetOmciEthernetFrameExtendedPmResponse) GetOmciEthernetFrameExtendedPmFormat() GetOmciEthernetFrameExtendedPmResponse_Format {
3342 if m != nil {
3343 return m.OmciEthernetFrameExtendedPmFormat
3344 }
3345 return GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT
3346}
3347
amit.ghosh8490b122022-11-28 15:45:04 +01003348type RxPower struct {
3349 OnuSn string `protobuf:"bytes,1,opt,name=onu_sn,json=onuSn,proto3" json:"onu_sn,omitempty"`
3350 Status string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
3351 FailReason string `protobuf:"bytes,3,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"`
3352 RxPower float64 `protobuf:"fixed64,4,opt,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
3353 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3354 XXX_unrecognized []byte `json:"-"`
3355 XXX_sizecache int32 `json:"-"`
3356}
3357
3358func (m *RxPower) Reset() { *m = RxPower{} }
3359func (m *RxPower) String() string { return proto.CompactTextString(m) }
3360func (*RxPower) ProtoMessage() {}
3361func (*RxPower) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303362 return fileDescriptor_7ecf6e9799a9202d, []int{37}
amit.ghosh8490b122022-11-28 15:45:04 +01003363}
3364
3365func (m *RxPower) XXX_Unmarshal(b []byte) error {
3366 return xxx_messageInfo_RxPower.Unmarshal(m, b)
3367}
3368func (m *RxPower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3369 return xxx_messageInfo_RxPower.Marshal(b, m, deterministic)
3370}
3371func (m *RxPower) XXX_Merge(src proto.Message) {
3372 xxx_messageInfo_RxPower.Merge(m, src)
3373}
3374func (m *RxPower) XXX_Size() int {
3375 return xxx_messageInfo_RxPower.Size(m)
3376}
3377func (m *RxPower) XXX_DiscardUnknown() {
3378 xxx_messageInfo_RxPower.DiscardUnknown(m)
3379}
3380
3381var xxx_messageInfo_RxPower proto.InternalMessageInfo
3382
3383func (m *RxPower) GetOnuSn() string {
3384 if m != nil {
3385 return m.OnuSn
3386 }
3387 return ""
3388}
3389
3390func (m *RxPower) GetStatus() string {
3391 if m != nil {
3392 return m.Status
3393 }
3394 return ""
3395}
3396
3397func (m *RxPower) GetFailReason() string {
3398 if m != nil {
3399 return m.FailReason
3400 }
3401 return ""
3402}
3403
3404func (m *RxPower) GetRxPower() float64 {
3405 if m != nil {
3406 return m.RxPower
3407 }
3408 return 0
3409}
3410
3411type GetOltRxPowerResponse struct {
3412 PortLabel string `protobuf:"bytes,1,opt,name=port_label,json=portLabel,proto3" json:"port_label,omitempty"`
3413 RxPower []*RxPower `protobuf:"bytes,2,rep,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
3414 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3415 XXX_unrecognized []byte `json:"-"`
3416 XXX_sizecache int32 `json:"-"`
3417}
3418
3419func (m *GetOltRxPowerResponse) Reset() { *m = GetOltRxPowerResponse{} }
3420func (m *GetOltRxPowerResponse) String() string { return proto.CompactTextString(m) }
3421func (*GetOltRxPowerResponse) ProtoMessage() {}
3422func (*GetOltRxPowerResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303423 return fileDescriptor_7ecf6e9799a9202d, []int{38}
amit.ghosh8490b122022-11-28 15:45:04 +01003424}
3425
3426func (m *GetOltRxPowerResponse) XXX_Unmarshal(b []byte) error {
3427 return xxx_messageInfo_GetOltRxPowerResponse.Unmarshal(m, b)
3428}
3429func (m *GetOltRxPowerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3430 return xxx_messageInfo_GetOltRxPowerResponse.Marshal(b, m, deterministic)
3431}
3432func (m *GetOltRxPowerResponse) XXX_Merge(src proto.Message) {
3433 xxx_messageInfo_GetOltRxPowerResponse.Merge(m, src)
3434}
3435func (m *GetOltRxPowerResponse) XXX_Size() int {
3436 return xxx_messageInfo_GetOltRxPowerResponse.Size(m)
3437}
3438func (m *GetOltRxPowerResponse) XXX_DiscardUnknown() {
3439 xxx_messageInfo_GetOltRxPowerResponse.DiscardUnknown(m)
3440}
3441
3442var xxx_messageInfo_GetOltRxPowerResponse proto.InternalMessageInfo
3443
3444func (m *GetOltRxPowerResponse) GetPortLabel() string {
3445 if m != nil {
3446 return m.PortLabel
3447 }
3448 return ""
3449}
3450
3451func (m *GetOltRxPowerResponse) GetRxPower() []*RxPower {
3452 if m != nil {
3453 return m.RxPower
3454 }
3455 return nil
3456}
3457
3458// DEPRECATED
Gamze Abaka08683072021-05-26 13:38:02 +00003459type GetRxPowerResponse struct {
3460 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
3461 OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
3462 Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
3463 FailReason string `protobuf:"bytes,4,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"`
3464 RxPower float64 `protobuf:"fixed64,5,opt,name=rx_power,json=rxPower,proto3" json:"rx_power,omitempty"`
3465 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3466 XXX_unrecognized []byte `json:"-"`
3467 XXX_sizecache int32 `json:"-"`
3468}
3469
3470func (m *GetRxPowerResponse) Reset() { *m = GetRxPowerResponse{} }
3471func (m *GetRxPowerResponse) String() string { return proto.CompactTextString(m) }
3472func (*GetRxPowerResponse) ProtoMessage() {}
3473func (*GetRxPowerResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303474 return fileDescriptor_7ecf6e9799a9202d, []int{39}
Gamze Abaka08683072021-05-26 13:38:02 +00003475}
3476
3477func (m *GetRxPowerResponse) XXX_Unmarshal(b []byte) error {
3478 return xxx_messageInfo_GetRxPowerResponse.Unmarshal(m, b)
3479}
3480func (m *GetRxPowerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3481 return xxx_messageInfo_GetRxPowerResponse.Marshal(b, m, deterministic)
3482}
3483func (m *GetRxPowerResponse) XXX_Merge(src proto.Message) {
3484 xxx_messageInfo_GetRxPowerResponse.Merge(m, src)
3485}
3486func (m *GetRxPowerResponse) XXX_Size() int {
3487 return xxx_messageInfo_GetRxPowerResponse.Size(m)
3488}
3489func (m *GetRxPowerResponse) XXX_DiscardUnknown() {
3490 xxx_messageInfo_GetRxPowerResponse.DiscardUnknown(m)
3491}
3492
3493var xxx_messageInfo_GetRxPowerResponse proto.InternalMessageInfo
3494
3495func (m *GetRxPowerResponse) GetIntfId() uint32 {
3496 if m != nil {
3497 return m.IntfId
3498 }
3499 return 0
3500}
3501
3502func (m *GetRxPowerResponse) GetOnuId() uint32 {
3503 if m != nil {
3504 return m.OnuId
3505 }
3506 return 0
3507}
3508
3509func (m *GetRxPowerResponse) GetStatus() string {
3510 if m != nil {
3511 return m.Status
3512 }
3513 return ""
3514}
3515
3516func (m *GetRxPowerResponse) GetFailReason() string {
3517 if m != nil {
3518 return m.FailReason
3519 }
3520 return ""
3521}
3522
3523func (m *GetRxPowerResponse) GetRxPower() float64 {
3524 if m != nil {
3525 return m.RxPower
3526 }
3527 return 0
3528}
3529
Holger Hildebrandt3374b882022-09-06 11:40:16 +00003530type GetOnuOmciTxRxStatsRequest struct {
3531 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
3532 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3533 XXX_unrecognized []byte `json:"-"`
3534 XXX_sizecache int32 `json:"-"`
3535}
3536
3537func (m *GetOnuOmciTxRxStatsRequest) Reset() { *m = GetOnuOmciTxRxStatsRequest{} }
3538func (m *GetOnuOmciTxRxStatsRequest) String() string { return proto.CompactTextString(m) }
3539func (*GetOnuOmciTxRxStatsRequest) ProtoMessage() {}
3540func (*GetOnuOmciTxRxStatsRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303541 return fileDescriptor_7ecf6e9799a9202d, []int{40}
Holger Hildebrandt3374b882022-09-06 11:40:16 +00003542}
3543
3544func (m *GetOnuOmciTxRxStatsRequest) XXX_Unmarshal(b []byte) error {
3545 return xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Unmarshal(m, b)
3546}
3547func (m *GetOnuOmciTxRxStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3548 return xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Marshal(b, m, deterministic)
3549}
3550func (m *GetOnuOmciTxRxStatsRequest) XXX_Merge(src proto.Message) {
3551 xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Merge(m, src)
3552}
3553func (m *GetOnuOmciTxRxStatsRequest) XXX_Size() int {
3554 return xxx_messageInfo_GetOnuOmciTxRxStatsRequest.Size(m)
3555}
3556func (m *GetOnuOmciTxRxStatsRequest) XXX_DiscardUnknown() {
3557 xxx_messageInfo_GetOnuOmciTxRxStatsRequest.DiscardUnknown(m)
3558}
3559
3560var xxx_messageInfo_GetOnuOmciTxRxStatsRequest proto.InternalMessageInfo
3561
3562func (m *GetOnuOmciTxRxStatsRequest) GetEmpty() *empty.Empty {
3563 if m != nil {
3564 return m.Empty
3565 }
3566 return nil
3567}
3568
3569// see ITU-T G.988 clause 11.2.2
3570type GetOnuOmciTxRxStatsResponse struct {
3571 // OMCI baseline Tx frames with AR bit set
3572 BaseTxArFrames uint32 `protobuf:"varint,1,opt,name=base_tx_ar_frames,json=baseTxArFrames,proto3" json:"base_tx_ar_frames,omitempty"`
3573 // OMCI baseline Rx frames with AK bit set
3574 BaseRxAkFrames uint32 `protobuf:"varint,2,opt,name=base_rx_ak_frames,json=baseRxAkFrames,proto3" json:"base_rx_ak_frames,omitempty"`
3575 // OMCI baseline Tx frames with AR bit unset
3576 BaseTxNoArFrames uint32 `protobuf:"varint,3,opt,name=base_tx_no_ar_frames,json=baseTxNoArFrames,proto3" json:"base_tx_no_ar_frames,omitempty"`
3577 // OMCI baseline Rx frames with AK bit unset
3578 BaseRxNoAkFrames uint32 `protobuf:"varint,4,opt,name=base_rx_no_ak_frames,json=baseRxNoAkFrames,proto3" json:"base_rx_no_ak_frames,omitempty"`
3579 // OMCI extended Tx frames with AR bit set
3580 ExtTxArFrames uint32 `protobuf:"varint,5,opt,name=ext_tx_ar_frames,json=extTxArFrames,proto3" json:"ext_tx_ar_frames,omitempty"`
3581 // OMCI extended Rx frames with AK bit set
3582 ExtRxAkFrames uint32 `protobuf:"varint,6,opt,name=ext_rx_ak_frames,json=extRxAkFrames,proto3" json:"ext_rx_ak_frames,omitempty"`
3583 // OMCI extended Tx frames with AR bit unset
3584 ExtTxNoArFrames uint32 `protobuf:"varint,7,opt,name=ext_tx_no_ar_frames,json=extTxNoArFrames,proto3" json:"ext_tx_no_ar_frames,omitempty"`
3585 // OMCI extended Rx frames with AK bit unset
3586 ExtRxNoAkFrames uint32 `protobuf:"varint,8,opt,name=ext_rx_no_ak_frames,json=extRxNoAkFrames,proto3" json:"ext_rx_no_ak_frames,omitempty"`
3587 // Number of retries of requests (tx) due to not received responses (Rx)
3588 TxOmciCounterRetries uint32 `protobuf:"varint,9,opt,name=tx_omci_counter_retries,json=txOmciCounterRetries,proto3" json:"tx_omci_counter_retries,omitempty"`
3589 // Number of timeouts of requests (tx) due to not received responses (Rx) after configured number of retries
3590 TxOmciCounterTimeouts uint32 `protobuf:"varint,10,opt,name=tx_omci_counter_timeouts,json=txOmciCounterTimeouts,proto3" json:"tx_omci_counter_timeouts,omitempty"`
3591 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3592 XXX_unrecognized []byte `json:"-"`
3593 XXX_sizecache int32 `json:"-"`
3594}
3595
3596func (m *GetOnuOmciTxRxStatsResponse) Reset() { *m = GetOnuOmciTxRxStatsResponse{} }
3597func (m *GetOnuOmciTxRxStatsResponse) String() string { return proto.CompactTextString(m) }
3598func (*GetOnuOmciTxRxStatsResponse) ProtoMessage() {}
3599func (*GetOnuOmciTxRxStatsResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303600 return fileDescriptor_7ecf6e9799a9202d, []int{41}
Holger Hildebrandt3374b882022-09-06 11:40:16 +00003601}
3602
3603func (m *GetOnuOmciTxRxStatsResponse) XXX_Unmarshal(b []byte) error {
3604 return xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Unmarshal(m, b)
3605}
3606func (m *GetOnuOmciTxRxStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3607 return xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Marshal(b, m, deterministic)
3608}
3609func (m *GetOnuOmciTxRxStatsResponse) XXX_Merge(src proto.Message) {
3610 xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Merge(m, src)
3611}
3612func (m *GetOnuOmciTxRxStatsResponse) XXX_Size() int {
3613 return xxx_messageInfo_GetOnuOmciTxRxStatsResponse.Size(m)
3614}
3615func (m *GetOnuOmciTxRxStatsResponse) XXX_DiscardUnknown() {
3616 xxx_messageInfo_GetOnuOmciTxRxStatsResponse.DiscardUnknown(m)
3617}
3618
3619var xxx_messageInfo_GetOnuOmciTxRxStatsResponse proto.InternalMessageInfo
3620
3621func (m *GetOnuOmciTxRxStatsResponse) GetBaseTxArFrames() uint32 {
3622 if m != nil {
3623 return m.BaseTxArFrames
3624 }
3625 return 0
3626}
3627
3628func (m *GetOnuOmciTxRxStatsResponse) GetBaseRxAkFrames() uint32 {
3629 if m != nil {
3630 return m.BaseRxAkFrames
3631 }
3632 return 0
3633}
3634
3635func (m *GetOnuOmciTxRxStatsResponse) GetBaseTxNoArFrames() uint32 {
3636 if m != nil {
3637 return m.BaseTxNoArFrames
3638 }
3639 return 0
3640}
3641
3642func (m *GetOnuOmciTxRxStatsResponse) GetBaseRxNoAkFrames() uint32 {
3643 if m != nil {
3644 return m.BaseRxNoAkFrames
3645 }
3646 return 0
3647}
3648
3649func (m *GetOnuOmciTxRxStatsResponse) GetExtTxArFrames() uint32 {
3650 if m != nil {
3651 return m.ExtTxArFrames
3652 }
3653 return 0
3654}
3655
3656func (m *GetOnuOmciTxRxStatsResponse) GetExtRxAkFrames() uint32 {
3657 if m != nil {
3658 return m.ExtRxAkFrames
3659 }
3660 return 0
3661}
3662
3663func (m *GetOnuOmciTxRxStatsResponse) GetExtTxNoArFrames() uint32 {
3664 if m != nil {
3665 return m.ExtTxNoArFrames
3666 }
3667 return 0
3668}
3669
3670func (m *GetOnuOmciTxRxStatsResponse) GetExtRxNoAkFrames() uint32 {
3671 if m != nil {
3672 return m.ExtRxNoAkFrames
3673 }
3674 return 0
3675}
3676
3677func (m *GetOnuOmciTxRxStatsResponse) GetTxOmciCounterRetries() uint32 {
3678 if m != nil {
3679 return m.TxOmciCounterRetries
3680 }
3681 return 0
3682}
3683
3684func (m *GetOnuOmciTxRxStatsResponse) GetTxOmciCounterTimeouts() uint32 {
3685 if m != nil {
3686 return m.TxOmciCounterTimeouts
3687 }
3688 return 0
3689}
3690
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05303691type GetOnuOmciActiveAlarmsRequest struct {
3692 Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
3693 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3694 XXX_unrecognized []byte `json:"-"`
3695 XXX_sizecache int32 `json:"-"`
3696}
3697
3698func (m *GetOnuOmciActiveAlarmsRequest) Reset() { *m = GetOnuOmciActiveAlarmsRequest{} }
3699func (m *GetOnuOmciActiveAlarmsRequest) String() string { return proto.CompactTextString(m) }
3700func (*GetOnuOmciActiveAlarmsRequest) ProtoMessage() {}
3701func (*GetOnuOmciActiveAlarmsRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303702 return fileDescriptor_7ecf6e9799a9202d, []int{42}
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05303703}
3704
3705func (m *GetOnuOmciActiveAlarmsRequest) XXX_Unmarshal(b []byte) error {
3706 return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Unmarshal(m, b)
3707}
3708func (m *GetOnuOmciActiveAlarmsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3709 return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Marshal(b, m, deterministic)
3710}
3711func (m *GetOnuOmciActiveAlarmsRequest) XXX_Merge(src proto.Message) {
3712 xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Merge(m, src)
3713}
3714func (m *GetOnuOmciActiveAlarmsRequest) XXX_Size() int {
3715 return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Size(m)
3716}
3717func (m *GetOnuOmciActiveAlarmsRequest) XXX_DiscardUnknown() {
3718 xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.DiscardUnknown(m)
3719}
3720
3721var xxx_messageInfo_GetOnuOmciActiveAlarmsRequest proto.InternalMessageInfo
3722
3723func (m *GetOnuOmciActiveAlarmsRequest) GetEmpty() *empty.Empty {
3724 if m != nil {
3725 return m.Empty
3726 }
3727 return nil
3728}
3729
3730type AlarmData struct {
3731 ClassId uint32 `protobuf:"varint,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
3732 InstanceId uint32 `protobuf:"varint,2,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`
3733 Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
3734 Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
3735 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3736 XXX_unrecognized []byte `json:"-"`
3737 XXX_sizecache int32 `json:"-"`
3738}
3739
3740func (m *AlarmData) Reset() { *m = AlarmData{} }
3741func (m *AlarmData) String() string { return proto.CompactTextString(m) }
3742func (*AlarmData) ProtoMessage() {}
3743func (*AlarmData) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303744 return fileDescriptor_7ecf6e9799a9202d, []int{43}
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05303745}
3746
3747func (m *AlarmData) XXX_Unmarshal(b []byte) error {
3748 return xxx_messageInfo_AlarmData.Unmarshal(m, b)
3749}
3750func (m *AlarmData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3751 return xxx_messageInfo_AlarmData.Marshal(b, m, deterministic)
3752}
3753func (m *AlarmData) XXX_Merge(src proto.Message) {
3754 xxx_messageInfo_AlarmData.Merge(m, src)
3755}
3756func (m *AlarmData) XXX_Size() int {
3757 return xxx_messageInfo_AlarmData.Size(m)
3758}
3759func (m *AlarmData) XXX_DiscardUnknown() {
3760 xxx_messageInfo_AlarmData.DiscardUnknown(m)
3761}
3762
3763var xxx_messageInfo_AlarmData proto.InternalMessageInfo
3764
3765func (m *AlarmData) GetClassId() uint32 {
3766 if m != nil {
3767 return m.ClassId
3768 }
3769 return 0
3770}
3771
3772func (m *AlarmData) GetInstanceId() uint32 {
3773 if m != nil {
3774 return m.InstanceId
3775 }
3776 return 0
3777}
3778
3779func (m *AlarmData) GetName() string {
3780 if m != nil {
3781 return m.Name
3782 }
3783 return ""
3784}
3785
3786func (m *AlarmData) GetDescription() string {
3787 if m != nil {
3788 return m.Description
3789 }
3790 return ""
3791}
3792
3793type GetOnuOmciActiveAlarmsResponse struct {
3794 ActiveAlarms []*AlarmData `protobuf:"bytes,1,rep,name=active_alarms,json=activeAlarms,proto3" json:"active_alarms,omitempty"`
3795 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3796 XXX_unrecognized []byte `json:"-"`
3797 XXX_sizecache int32 `json:"-"`
3798}
3799
3800func (m *GetOnuOmciActiveAlarmsResponse) Reset() { *m = GetOnuOmciActiveAlarmsResponse{} }
3801func (m *GetOnuOmciActiveAlarmsResponse) String() string { return proto.CompactTextString(m) }
3802func (*GetOnuOmciActiveAlarmsResponse) ProtoMessage() {}
3803func (*GetOnuOmciActiveAlarmsResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303804 return fileDescriptor_7ecf6e9799a9202d, []int{44}
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05303805}
3806
3807func (m *GetOnuOmciActiveAlarmsResponse) XXX_Unmarshal(b []byte) error {
3808 return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Unmarshal(m, b)
3809}
3810func (m *GetOnuOmciActiveAlarmsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3811 return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Marshal(b, m, deterministic)
3812}
3813func (m *GetOnuOmciActiveAlarmsResponse) XXX_Merge(src proto.Message) {
3814 xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Merge(m, src)
3815}
3816func (m *GetOnuOmciActiveAlarmsResponse) XXX_Size() int {
3817 return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Size(m)
3818}
3819func (m *GetOnuOmciActiveAlarmsResponse) XXX_DiscardUnknown() {
3820 xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.DiscardUnknown(m)
3821}
3822
3823var xxx_messageInfo_GetOnuOmciActiveAlarmsResponse proto.InternalMessageInfo
3824
3825func (m *GetOnuOmciActiveAlarmsResponse) GetActiveAlarms() []*AlarmData {
3826 if m != nil {
3827 return m.ActiveAlarms
3828 }
3829 return nil
3830}
3831
amit.ghoshf017eab2024-06-28 15:09:33 +02003832type GetOffloadedAppsStatisticsRequest struct {
3833 // The offloaded application whose statistics are requested
3834 StatsFor GetOffloadedAppsStatisticsRequest_OffloadedApp `protobuf:"varint,1,opt,name=statsFor,proto3,enum=extension.GetOffloadedAppsStatisticsRequest_OffloadedApp" json:"statsFor,omitempty"`
3835 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3836 XXX_unrecognized []byte `json:"-"`
3837 XXX_sizecache int32 `json:"-"`
3838}
3839
3840func (m *GetOffloadedAppsStatisticsRequest) Reset() { *m = GetOffloadedAppsStatisticsRequest{} }
3841func (m *GetOffloadedAppsStatisticsRequest) String() string { return proto.CompactTextString(m) }
3842func (*GetOffloadedAppsStatisticsRequest) ProtoMessage() {}
3843func (*GetOffloadedAppsStatisticsRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303844 return fileDescriptor_7ecf6e9799a9202d, []int{45}
amit.ghoshf017eab2024-06-28 15:09:33 +02003845}
3846
3847func (m *GetOffloadedAppsStatisticsRequest) XXX_Unmarshal(b []byte) error {
3848 return xxx_messageInfo_GetOffloadedAppsStatisticsRequest.Unmarshal(m, b)
3849}
3850func (m *GetOffloadedAppsStatisticsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3851 return xxx_messageInfo_GetOffloadedAppsStatisticsRequest.Marshal(b, m, deterministic)
3852}
3853func (m *GetOffloadedAppsStatisticsRequest) XXX_Merge(src proto.Message) {
3854 xxx_messageInfo_GetOffloadedAppsStatisticsRequest.Merge(m, src)
3855}
3856func (m *GetOffloadedAppsStatisticsRequest) XXX_Size() int {
3857 return xxx_messageInfo_GetOffloadedAppsStatisticsRequest.Size(m)
3858}
3859func (m *GetOffloadedAppsStatisticsRequest) XXX_DiscardUnknown() {
3860 xxx_messageInfo_GetOffloadedAppsStatisticsRequest.DiscardUnknown(m)
3861}
3862
3863var xxx_messageInfo_GetOffloadedAppsStatisticsRequest proto.InternalMessageInfo
3864
3865func (m *GetOffloadedAppsStatisticsRequest) GetStatsFor() GetOffloadedAppsStatisticsRequest_OffloadedApp {
3866 if m != nil {
3867 return m.StatsFor
3868 }
3869 return GetOffloadedAppsStatisticsRequest_UNDEFINED
3870}
3871
3872type GetOffloadedAppsStatisticsResponse struct {
3873 // Types that are valid to be assigned to Stats:
3874 // *GetOffloadedAppsStatisticsResponse_Dhcpv4RaStats
3875 // *GetOffloadedAppsStatisticsResponse_Dhcpv6RaStats
3876 // *GetOffloadedAppsStatisticsResponse_PppoeIaStats
3877 Stats isGetOffloadedAppsStatisticsResponse_Stats `protobuf_oneof:"stats"`
3878 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3879 XXX_unrecognized []byte `json:"-"`
3880 XXX_sizecache int32 `json:"-"`
3881}
3882
3883func (m *GetOffloadedAppsStatisticsResponse) Reset() { *m = GetOffloadedAppsStatisticsResponse{} }
3884func (m *GetOffloadedAppsStatisticsResponse) String() string { return proto.CompactTextString(m) }
3885func (*GetOffloadedAppsStatisticsResponse) ProtoMessage() {}
3886func (*GetOffloadedAppsStatisticsResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303887 return fileDescriptor_7ecf6e9799a9202d, []int{46}
amit.ghoshf017eab2024-06-28 15:09:33 +02003888}
3889
3890func (m *GetOffloadedAppsStatisticsResponse) XXX_Unmarshal(b []byte) error {
3891 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse.Unmarshal(m, b)
3892}
3893func (m *GetOffloadedAppsStatisticsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
3894 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse.Marshal(b, m, deterministic)
3895}
3896func (m *GetOffloadedAppsStatisticsResponse) XXX_Merge(src proto.Message) {
3897 xxx_messageInfo_GetOffloadedAppsStatisticsResponse.Merge(m, src)
3898}
3899func (m *GetOffloadedAppsStatisticsResponse) XXX_Size() int {
3900 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse.Size(m)
3901}
3902func (m *GetOffloadedAppsStatisticsResponse) XXX_DiscardUnknown() {
3903 xxx_messageInfo_GetOffloadedAppsStatisticsResponse.DiscardUnknown(m)
3904}
3905
3906var xxx_messageInfo_GetOffloadedAppsStatisticsResponse proto.InternalMessageInfo
3907
3908type isGetOffloadedAppsStatisticsResponse_Stats interface {
3909 isGetOffloadedAppsStatisticsResponse_Stats()
3910}
3911
3912type GetOffloadedAppsStatisticsResponse_Dhcpv4RaStats struct {
3913 Dhcpv4RaStats *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats `protobuf:"bytes,1,opt,name=dhcpv4RaStats,proto3,oneof"`
3914}
3915
3916type GetOffloadedAppsStatisticsResponse_Dhcpv6RaStats struct {
3917 Dhcpv6RaStats *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats `protobuf:"bytes,2,opt,name=dhcpv6RaStats,proto3,oneof"`
3918}
3919
3920type GetOffloadedAppsStatisticsResponse_PppoeIaStats struct {
3921 PppoeIaStats *GetOffloadedAppsStatisticsResponse_PPPoeIAStats `protobuf:"bytes,3,opt,name=pppoeIaStats,proto3,oneof"`
3922}
3923
3924func (*GetOffloadedAppsStatisticsResponse_Dhcpv4RaStats) isGetOffloadedAppsStatisticsResponse_Stats() {
3925}
3926
3927func (*GetOffloadedAppsStatisticsResponse_Dhcpv6RaStats) isGetOffloadedAppsStatisticsResponse_Stats() {
3928}
3929
3930func (*GetOffloadedAppsStatisticsResponse_PppoeIaStats) isGetOffloadedAppsStatisticsResponse_Stats() {
3931}
3932
3933func (m *GetOffloadedAppsStatisticsResponse) GetStats() isGetOffloadedAppsStatisticsResponse_Stats {
3934 if m != nil {
3935 return m.Stats
3936 }
3937 return nil
3938}
3939
3940func (m *GetOffloadedAppsStatisticsResponse) GetDhcpv4RaStats() *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats {
3941 if x, ok := m.GetStats().(*GetOffloadedAppsStatisticsResponse_Dhcpv4RaStats); ok {
3942 return x.Dhcpv4RaStats
3943 }
3944 return nil
3945}
3946
3947func (m *GetOffloadedAppsStatisticsResponse) GetDhcpv6RaStats() *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats {
3948 if x, ok := m.GetStats().(*GetOffloadedAppsStatisticsResponse_Dhcpv6RaStats); ok {
3949 return x.Dhcpv6RaStats
3950 }
3951 return nil
3952}
3953
3954func (m *GetOffloadedAppsStatisticsResponse) GetPppoeIaStats() *GetOffloadedAppsStatisticsResponse_PPPoeIAStats {
3955 if x, ok := m.GetStats().(*GetOffloadedAppsStatisticsResponse_PppoeIaStats); ok {
3956 return x.PppoeIaStats
3957 }
3958 return nil
3959}
3960
3961// XXX_OneofWrappers is for the internal use of the proto package.
3962func (*GetOffloadedAppsStatisticsResponse) XXX_OneofWrappers() []interface{} {
3963 return []interface{}{
3964 (*GetOffloadedAppsStatisticsResponse_Dhcpv4RaStats)(nil),
3965 (*GetOffloadedAppsStatisticsResponse_Dhcpv6RaStats)(nil),
3966 (*GetOffloadedAppsStatisticsResponse_PppoeIaStats)(nil),
3967 }
3968}
3969
3970type GetOffloadedAppsStatisticsResponse_DHCPv4RAStats struct {
3971 // From https://github.com/BroadbandForum/yang/blob/master/standard/networking/bbf-l2-dhcpv4-relay.yang
3972 InBadPacketsFromClient uint32 `protobuf:"varint,1,opt,name=in_bad_packets_from_client,json=inBadPacketsFromClient,proto3" json:"in_bad_packets_from_client,omitempty"`
3973 InBadPacketsFromServer uint32 `protobuf:"varint,2,opt,name=in_bad_packets_from_server,json=inBadPacketsFromServer,proto3" json:"in_bad_packets_from_server,omitempty"`
3974 InPacketsFromClient uint32 `protobuf:"varint,3,opt,name=in_packets_from_client,json=inPacketsFromClient,proto3" json:"in_packets_from_client,omitempty"`
3975 InPacketsFromServer uint32 `protobuf:"varint,4,opt,name=in_packets_from_server,json=inPacketsFromServer,proto3" json:"in_packets_from_server,omitempty"`
3976 OutPacketsToServer uint32 `protobuf:"varint,5,opt,name=out_packets_to_server,json=outPacketsToServer,proto3" json:"out_packets_to_server,omitempty"`
3977 OutPacketsToClient uint32 `protobuf:"varint,6,opt,name=out_packets_to_client,json=outPacketsToClient,proto3" json:"out_packets_to_client,omitempty"`
3978 Option_82InsertedPacketsToServer uint32 `protobuf:"varint,7,opt,name=option_82_inserted_packets_to_server,json=option82InsertedPacketsToServer,proto3" json:"option_82_inserted_packets_to_server,omitempty"`
3979 Option_82RemovedPacketsToClient uint32 `protobuf:"varint,8,opt,name=option_82_removed_packets_to_client,json=option82RemovedPacketsToClient,proto3" json:"option_82_removed_packets_to_client,omitempty"`
3980 Option_82NotInsertedToServer uint32 `protobuf:"varint,9,opt,name=option_82_not_inserted_to_server,json=option82NotInsertedToServer,proto3" json:"option_82_not_inserted_to_server,omitempty"`
3981 // Name value pairs that gives the flexibility to report different statistics that implementations may choose
3982 AdditionalStats map[string]string `protobuf:"bytes,10,rep,name=additional_stats,json=additionalStats,proto3" json:"additional_stats,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
3983 XXX_NoUnkeyedLiteral struct{} `json:"-"`
3984 XXX_unrecognized []byte `json:"-"`
3985 XXX_sizecache int32 `json:"-"`
3986}
3987
3988func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) Reset() {
3989 *m = GetOffloadedAppsStatisticsResponse_DHCPv4RAStats{}
3990}
3991func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) String() string {
3992 return proto.CompactTextString(m)
3993}
3994func (*GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) ProtoMessage() {}
3995func (*GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05303996 return fileDescriptor_7ecf6e9799a9202d, []int{46, 0}
amit.ghoshf017eab2024-06-28 15:09:33 +02003997}
3998
3999func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) XXX_Unmarshal(b []byte) error {
4000 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv4RAStats.Unmarshal(m, b)
4001}
4002func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
4003 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv4RAStats.Marshal(b, m, deterministic)
4004}
4005func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) XXX_Merge(src proto.Message) {
4006 xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv4RAStats.Merge(m, src)
4007}
4008func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) XXX_Size() int {
4009 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv4RAStats.Size(m)
4010}
4011func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) XXX_DiscardUnknown() {
4012 xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv4RAStats.DiscardUnknown(m)
4013}
4014
4015var xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv4RAStats proto.InternalMessageInfo
4016
4017func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetInBadPacketsFromClient() uint32 {
4018 if m != nil {
4019 return m.InBadPacketsFromClient
4020 }
4021 return 0
4022}
4023
4024func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetInBadPacketsFromServer() uint32 {
4025 if m != nil {
4026 return m.InBadPacketsFromServer
4027 }
4028 return 0
4029}
4030
4031func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetInPacketsFromClient() uint32 {
4032 if m != nil {
4033 return m.InPacketsFromClient
4034 }
4035 return 0
4036}
4037
4038func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetInPacketsFromServer() uint32 {
4039 if m != nil {
4040 return m.InPacketsFromServer
4041 }
4042 return 0
4043}
4044
4045func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetOutPacketsToServer() uint32 {
4046 if m != nil {
4047 return m.OutPacketsToServer
4048 }
4049 return 0
4050}
4051
4052func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetOutPacketsToClient() uint32 {
4053 if m != nil {
4054 return m.OutPacketsToClient
4055 }
4056 return 0
4057}
4058
4059func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetOption_82InsertedPacketsToServer() uint32 {
4060 if m != nil {
4061 return m.Option_82InsertedPacketsToServer
4062 }
4063 return 0
4064}
4065
4066func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetOption_82RemovedPacketsToClient() uint32 {
4067 if m != nil {
4068 return m.Option_82RemovedPacketsToClient
4069 }
4070 return 0
4071}
4072
4073func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetOption_82NotInsertedToServer() uint32 {
4074 if m != nil {
4075 return m.Option_82NotInsertedToServer
4076 }
4077 return 0
4078}
4079
4080func (m *GetOffloadedAppsStatisticsResponse_DHCPv4RAStats) GetAdditionalStats() map[string]string {
4081 if m != nil {
4082 return m.AdditionalStats
4083 }
4084 return nil
4085}
4086
4087type GetOffloadedAppsStatisticsResponse_DHCPv6RAStats struct {
4088 // From https://github.com/BroadbandForum/yang/blob/master/standard/networking/bbf-ldra.yang
4089 InBadPacketsFromClient uint32 `protobuf:"varint,1,opt,name=in_bad_packets_from_client,json=inBadPacketsFromClient,proto3" json:"in_bad_packets_from_client,omitempty"`
4090 InBadPacketsFromServer uint32 `protobuf:"varint,2,opt,name=in_bad_packets_from_server,json=inBadPacketsFromServer,proto3" json:"in_bad_packets_from_server,omitempty"`
4091 Option_17InsertedPacketsToServer uint32 `protobuf:"varint,3,opt,name=option_17_inserted_packets_to_server,json=option17InsertedPacketsToServer,proto3" json:"option_17_inserted_packets_to_server,omitempty"`
4092 Option_17RemovedPacketsToClient uint32 `protobuf:"varint,4,opt,name=option_17_removed_packets_to_client,json=option17RemovedPacketsToClient,proto3" json:"option_17_removed_packets_to_client,omitempty"`
4093 Option_18InsertedPacketsToServer uint32 `protobuf:"varint,5,opt,name=option_18_inserted_packets_to_server,json=option18InsertedPacketsToServer,proto3" json:"option_18_inserted_packets_to_server,omitempty"`
4094 Option_18RemovedPacketsToClient uint32 `protobuf:"varint,6,opt,name=option_18_removed_packets_to_client,json=option18RemovedPacketsToClient,proto3" json:"option_18_removed_packets_to_client,omitempty"`
4095 Option_37InsertedPacketsToServer uint32 `protobuf:"varint,7,opt,name=option_37_inserted_packets_to_server,json=option37InsertedPacketsToServer,proto3" json:"option_37_inserted_packets_to_server,omitempty"`
4096 Option_37RemovedPacketsToClient uint32 `protobuf:"varint,8,opt,name=option_37_removed_packets_to_client,json=option37RemovedPacketsToClient,proto3" json:"option_37_removed_packets_to_client,omitempty"`
4097 OutgoingMtuExceededPacketsFromClient uint32 `protobuf:"varint,9,opt,name=outgoing_mtu_exceeded_packets_from_client,json=outgoingMtuExceededPacketsFromClient,proto3" json:"outgoing_mtu_exceeded_packets_from_client,omitempty"`
4098 // Name value pairs that gives the flexibility to report different statistics that implementations may choose
4099 AdditionalStats map[string]string `protobuf:"bytes,10,rep,name=additional_stats,json=additionalStats,proto3" json:"additional_stats,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
4100 XXX_NoUnkeyedLiteral struct{} `json:"-"`
4101 XXX_unrecognized []byte `json:"-"`
4102 XXX_sizecache int32 `json:"-"`
4103}
4104
4105func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) Reset() {
4106 *m = GetOffloadedAppsStatisticsResponse_DHCPv6RAStats{}
4107}
4108func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) String() string {
4109 return proto.CompactTextString(m)
4110}
4111func (*GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) ProtoMessage() {}
4112func (*GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05304113 return fileDescriptor_7ecf6e9799a9202d, []int{46, 1}
amit.ghoshf017eab2024-06-28 15:09:33 +02004114}
4115
4116func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) XXX_Unmarshal(b []byte) error {
4117 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv6RAStats.Unmarshal(m, b)
4118}
4119func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
4120 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv6RAStats.Marshal(b, m, deterministic)
4121}
4122func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) XXX_Merge(src proto.Message) {
4123 xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv6RAStats.Merge(m, src)
4124}
4125func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) XXX_Size() int {
4126 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv6RAStats.Size(m)
4127}
4128func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) XXX_DiscardUnknown() {
4129 xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv6RAStats.DiscardUnknown(m)
4130}
4131
4132var xxx_messageInfo_GetOffloadedAppsStatisticsResponse_DHCPv6RAStats proto.InternalMessageInfo
4133
4134func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetInBadPacketsFromClient() uint32 {
4135 if m != nil {
4136 return m.InBadPacketsFromClient
4137 }
4138 return 0
4139}
4140
4141func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetInBadPacketsFromServer() uint32 {
4142 if m != nil {
4143 return m.InBadPacketsFromServer
4144 }
4145 return 0
4146}
4147
4148func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOption_17InsertedPacketsToServer() uint32 {
4149 if m != nil {
4150 return m.Option_17InsertedPacketsToServer
4151 }
4152 return 0
4153}
4154
4155func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOption_17RemovedPacketsToClient() uint32 {
4156 if m != nil {
4157 return m.Option_17RemovedPacketsToClient
4158 }
4159 return 0
4160}
4161
4162func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOption_18InsertedPacketsToServer() uint32 {
4163 if m != nil {
4164 return m.Option_18InsertedPacketsToServer
4165 }
4166 return 0
4167}
4168
4169func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOption_18RemovedPacketsToClient() uint32 {
4170 if m != nil {
4171 return m.Option_18RemovedPacketsToClient
4172 }
4173 return 0
4174}
4175
4176func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOption_37InsertedPacketsToServer() uint32 {
4177 if m != nil {
4178 return m.Option_37InsertedPacketsToServer
4179 }
4180 return 0
4181}
4182
4183func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOption_37RemovedPacketsToClient() uint32 {
4184 if m != nil {
4185 return m.Option_37RemovedPacketsToClient
4186 }
4187 return 0
4188}
4189
4190func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetOutgoingMtuExceededPacketsFromClient() uint32 {
4191 if m != nil {
4192 return m.OutgoingMtuExceededPacketsFromClient
4193 }
4194 return 0
4195}
4196
4197func (m *GetOffloadedAppsStatisticsResponse_DHCPv6RAStats) GetAdditionalStats() map[string]string {
4198 if m != nil {
4199 return m.AdditionalStats
4200 }
4201 return nil
4202}
4203
4204type GetOffloadedAppsStatisticsResponse_PPPoeIAStats struct {
4205 // From https://github.com/BroadbandForum/yang/blob/master/standard/networking/bbf-pppoe-intermediate-agent.yang
4206 InErrorPacketsFromClient uint32 `protobuf:"varint,1,opt,name=in_error_packets_from_client,json=inErrorPacketsFromClient,proto3" json:"in_error_packets_from_client,omitempty"`
4207 InErrorPacketsFromServer uint32 `protobuf:"varint,2,opt,name=in_error_packets_from_server,json=inErrorPacketsFromServer,proto3" json:"in_error_packets_from_server,omitempty"`
4208 InPacketsFromClient uint32 `protobuf:"varint,3,opt,name=in_packets_from_client,json=inPacketsFromClient,proto3" json:"in_packets_from_client,omitempty"`
4209 InPacketsFromServer uint32 `protobuf:"varint,4,opt,name=in_packets_from_server,json=inPacketsFromServer,proto3" json:"in_packets_from_server,omitempty"`
4210 OutPacketsToServer uint32 `protobuf:"varint,5,opt,name=out_packets_to_server,json=outPacketsToServer,proto3" json:"out_packets_to_server,omitempty"`
4211 OutPacketsToClient uint32 `protobuf:"varint,6,opt,name=out_packets_to_client,json=outPacketsToClient,proto3" json:"out_packets_to_client,omitempty"`
4212 VendorSpecificTagInsertedPacketsToServer uint32 `protobuf:"varint,7,opt,name=vendor_specific_tag_inserted_packets_to_server,json=vendorSpecificTagInsertedPacketsToServer,proto3" json:"vendor_specific_tag_inserted_packets_to_server,omitempty"`
4213 VendorSpecificTagRemovedPacketsToClient uint32 `protobuf:"varint,8,opt,name=vendor_specific_tag_removed_packets_to_client,json=vendorSpecificTagRemovedPacketsToClient,proto3" json:"vendor_specific_tag_removed_packets_to_client,omitempty"`
4214 OutgoingMtuExceededPacketsFromClient uint32 `protobuf:"varint,9,opt,name=outgoing_mtu_exceeded_packets_from_client,json=outgoingMtuExceededPacketsFromClient,proto3" json:"outgoing_mtu_exceeded_packets_from_client,omitempty"`
4215 // Name value pairs that gives the flexibility to report different statistics that implementations may choose
4216 AdditionalStats map[string]string `protobuf:"bytes,10,rep,name=additional_stats,json=additionalStats,proto3" json:"additional_stats,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
4217 XXX_NoUnkeyedLiteral struct{} `json:"-"`
4218 XXX_unrecognized []byte `json:"-"`
4219 XXX_sizecache int32 `json:"-"`
4220}
4221
4222func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) Reset() {
4223 *m = GetOffloadedAppsStatisticsResponse_PPPoeIAStats{}
4224}
4225func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) String() string {
4226 return proto.CompactTextString(m)
4227}
4228func (*GetOffloadedAppsStatisticsResponse_PPPoeIAStats) ProtoMessage() {}
4229func (*GetOffloadedAppsStatisticsResponse_PPPoeIAStats) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05304230 return fileDescriptor_7ecf6e9799a9202d, []int{46, 2}
amit.ghoshf017eab2024-06-28 15:09:33 +02004231}
4232
4233func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) XXX_Unmarshal(b []byte) error {
4234 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_PPPoeIAStats.Unmarshal(m, b)
4235}
4236func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
4237 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_PPPoeIAStats.Marshal(b, m, deterministic)
4238}
4239func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) XXX_Merge(src proto.Message) {
4240 xxx_messageInfo_GetOffloadedAppsStatisticsResponse_PPPoeIAStats.Merge(m, src)
4241}
4242func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) XXX_Size() int {
4243 return xxx_messageInfo_GetOffloadedAppsStatisticsResponse_PPPoeIAStats.Size(m)
4244}
4245func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) XXX_DiscardUnknown() {
4246 xxx_messageInfo_GetOffloadedAppsStatisticsResponse_PPPoeIAStats.DiscardUnknown(m)
4247}
4248
4249var xxx_messageInfo_GetOffloadedAppsStatisticsResponse_PPPoeIAStats proto.InternalMessageInfo
4250
4251func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetInErrorPacketsFromClient() uint32 {
4252 if m != nil {
4253 return m.InErrorPacketsFromClient
4254 }
4255 return 0
4256}
4257
4258func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetInErrorPacketsFromServer() uint32 {
4259 if m != nil {
4260 return m.InErrorPacketsFromServer
4261 }
4262 return 0
4263}
4264
4265func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetInPacketsFromClient() uint32 {
4266 if m != nil {
4267 return m.InPacketsFromClient
4268 }
4269 return 0
4270}
4271
4272func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetInPacketsFromServer() uint32 {
4273 if m != nil {
4274 return m.InPacketsFromServer
4275 }
4276 return 0
4277}
4278
4279func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetOutPacketsToServer() uint32 {
4280 if m != nil {
4281 return m.OutPacketsToServer
4282 }
4283 return 0
4284}
4285
4286func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetOutPacketsToClient() uint32 {
4287 if m != nil {
4288 return m.OutPacketsToClient
4289 }
4290 return 0
4291}
4292
4293func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetVendorSpecificTagInsertedPacketsToServer() uint32 {
4294 if m != nil {
4295 return m.VendorSpecificTagInsertedPacketsToServer
4296 }
4297 return 0
4298}
4299
4300func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetVendorSpecificTagRemovedPacketsToClient() uint32 {
4301 if m != nil {
4302 return m.VendorSpecificTagRemovedPacketsToClient
4303 }
4304 return 0
4305}
4306
4307func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetOutgoingMtuExceededPacketsFromClient() uint32 {
4308 if m != nil {
4309 return m.OutgoingMtuExceededPacketsFromClient
4310 }
4311 return 0
4312}
4313
4314func (m *GetOffloadedAppsStatisticsResponse_PPPoeIAStats) GetAdditionalStats() map[string]string {
4315 if m != nil {
4316 return m.AdditionalStats
4317 }
4318 return nil
4319}
4320
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004321type GetValueRequest struct {
4322 // Types that are valid to be assigned to Request:
4323 // *GetValueRequest_Distance
4324 // *GetValueRequest_UniInfo
kesavand763d8002021-01-04 16:24:42 +05304325 // *GetValueRequest_OltPortInfo
4326 // *GetValueRequest_OnuOpticalInfo
4327 // *GetValueRequest_EthBridgePort
4328 // *GetValueRequest_FecHistory
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304329 // *GetValueRequest_OnuPonInfo
4330 // *GetValueRequest_OnuInfo
Gamze Abaka08683072021-05-26 13:38:02 +00004331 // *GetValueRequest_RxPower
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004332 // *GetValueRequest_OnuOmciStats
amit.ghosh8490b122022-11-28 15:45:04 +01004333 // *GetValueRequest_OltRxPower
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304334 // *GetValueRequest_OnuActiveAlarms
amit.ghoshf017eab2024-06-28 15:09:33 +02004335 // *GetValueRequest_OffloadedAppsStats
Akash Kankanala761955c2024-02-21 19:32:20 +05304336 // *GetValueRequest_OnuAllocGemStats
4337 // *GetValueRequest_OnuStatsFromOlt
4338 // *GetValueRequest_OltPonStats
4339 // *GetValueRequest_OltNniStats
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004340 Request isGetValueRequest_Request `protobuf_oneof:"request"`
4341 XXX_NoUnkeyedLiteral struct{} `json:"-"`
4342 XXX_unrecognized []byte `json:"-"`
4343 XXX_sizecache int32 `json:"-"`
4344}
4345
4346func (m *GetValueRequest) Reset() { *m = GetValueRequest{} }
4347func (m *GetValueRequest) String() string { return proto.CompactTextString(m) }
4348func (*GetValueRequest) ProtoMessage() {}
4349func (*GetValueRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05304350 return fileDescriptor_7ecf6e9799a9202d, []int{47}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004351}
4352
4353func (m *GetValueRequest) XXX_Unmarshal(b []byte) error {
4354 return xxx_messageInfo_GetValueRequest.Unmarshal(m, b)
4355}
4356func (m *GetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
4357 return xxx_messageInfo_GetValueRequest.Marshal(b, m, deterministic)
4358}
4359func (m *GetValueRequest) XXX_Merge(src proto.Message) {
4360 xxx_messageInfo_GetValueRequest.Merge(m, src)
4361}
4362func (m *GetValueRequest) XXX_Size() int {
4363 return xxx_messageInfo_GetValueRequest.Size(m)
4364}
4365func (m *GetValueRequest) XXX_DiscardUnknown() {
4366 xxx_messageInfo_GetValueRequest.DiscardUnknown(m)
4367}
4368
4369var xxx_messageInfo_GetValueRequest proto.InternalMessageInfo
4370
4371type isGetValueRequest_Request interface {
4372 isGetValueRequest_Request()
4373}
4374
4375type GetValueRequest_Distance struct {
4376 Distance *GetDistanceRequest `protobuf:"bytes,1,opt,name=distance,proto3,oneof"`
4377}
4378
4379type GetValueRequest_UniInfo struct {
4380 UniInfo *GetOnuUniInfoRequest `protobuf:"bytes,2,opt,name=uniInfo,proto3,oneof"`
4381}
4382
kesavand763d8002021-01-04 16:24:42 +05304383type GetValueRequest_OltPortInfo struct {
4384 OltPortInfo *GetOltPortCounters `protobuf:"bytes,3,opt,name=oltPortInfo,proto3,oneof"`
4385}
4386
4387type GetValueRequest_OnuOpticalInfo struct {
4388 OnuOpticalInfo *GetOnuPonOpticalInfo `protobuf:"bytes,4,opt,name=onuOpticalInfo,proto3,oneof"`
4389}
4390
4391type GetValueRequest_EthBridgePort struct {
4392 EthBridgePort *GetOnuEthernetBridgePortHistory `protobuf:"bytes,5,opt,name=ethBridgePort,proto3,oneof"`
4393}
4394
4395type GetValueRequest_FecHistory struct {
4396 FecHistory *GetOnuFecHistory `protobuf:"bytes,6,opt,name=fecHistory,proto3,oneof"`
4397}
4398
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304399type GetValueRequest_OnuPonInfo struct {
4400 OnuPonInfo *GetOnuCountersRequest `protobuf:"bytes,7,opt,name=onuPonInfo,proto3,oneof"`
4401}
4402
4403type GetValueRequest_OnuInfo struct {
Himani Chawla9a497392021-05-28 13:04:42 +05304404 OnuInfo *GetOmciEthernetFrameExtendedPmRequest `protobuf:"bytes,8,opt,name=onuInfo,proto3,oneof"`
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304405}
4406
Gamze Abaka08683072021-05-26 13:38:02 +00004407type GetValueRequest_RxPower struct {
4408 RxPower *GetRxPowerRequest `protobuf:"bytes,9,opt,name=rxPower,proto3,oneof"`
4409}
4410
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004411type GetValueRequest_OnuOmciStats struct {
4412 OnuOmciStats *GetOnuOmciTxRxStatsRequest `protobuf:"bytes,10,opt,name=onuOmciStats,proto3,oneof"`
4413}
4414
amit.ghosh8490b122022-11-28 15:45:04 +01004415type GetValueRequest_OltRxPower struct {
4416 OltRxPower *GetOltRxPowerRequest `protobuf:"bytes,11,opt,name=oltRxPower,proto3,oneof"`
4417}
4418
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304419type GetValueRequest_OnuActiveAlarms struct {
4420 OnuActiveAlarms *GetOnuOmciActiveAlarmsRequest `protobuf:"bytes,12,opt,name=onuActiveAlarms,proto3,oneof"`
4421}
4422
amit.ghoshf017eab2024-06-28 15:09:33 +02004423type GetValueRequest_OffloadedAppsStats struct {
4424 OffloadedAppsStats *GetOffloadedAppsStatisticsRequest `protobuf:"bytes,13,opt,name=offloadedAppsStats,proto3,oneof"`
4425}
4426
Akash Kankanala761955c2024-02-21 19:32:20 +05304427type GetValueRequest_OnuAllocGemStats struct {
4428 OnuAllocGemStats *GetOnuAllocGemHistoryRequest `protobuf:"bytes,14,opt,name=onuAllocGemStats,proto3,oneof"`
4429}
4430
4431type GetValueRequest_OnuStatsFromOlt struct {
4432 OnuStatsFromOlt *GetOnuStatsFromOltRequest `protobuf:"bytes,15,opt,name=onuStatsFromOlt,proto3,oneof"`
4433}
4434
4435type GetValueRequest_OltPonStats struct {
4436 OltPonStats *GetPonStatsRequest `protobuf:"bytes,16,opt,name=oltPonStats,proto3,oneof"`
4437}
4438
4439type GetValueRequest_OltNniStats struct {
4440 OltNniStats *GetNNIStatsRequest `protobuf:"bytes,17,opt,name=oltNniStats,proto3,oneof"`
4441}
4442
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004443func (*GetValueRequest_Distance) isGetValueRequest_Request() {}
4444
4445func (*GetValueRequest_UniInfo) isGetValueRequest_Request() {}
4446
kesavand763d8002021-01-04 16:24:42 +05304447func (*GetValueRequest_OltPortInfo) isGetValueRequest_Request() {}
4448
4449func (*GetValueRequest_OnuOpticalInfo) isGetValueRequest_Request() {}
4450
4451func (*GetValueRequest_EthBridgePort) isGetValueRequest_Request() {}
4452
4453func (*GetValueRequest_FecHistory) isGetValueRequest_Request() {}
4454
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304455func (*GetValueRequest_OnuPonInfo) isGetValueRequest_Request() {}
4456
4457func (*GetValueRequest_OnuInfo) isGetValueRequest_Request() {}
4458
Gamze Abaka08683072021-05-26 13:38:02 +00004459func (*GetValueRequest_RxPower) isGetValueRequest_Request() {}
4460
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004461func (*GetValueRequest_OnuOmciStats) isGetValueRequest_Request() {}
4462
amit.ghosh8490b122022-11-28 15:45:04 +01004463func (*GetValueRequest_OltRxPower) isGetValueRequest_Request() {}
4464
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304465func (*GetValueRequest_OnuActiveAlarms) isGetValueRequest_Request() {}
4466
amit.ghoshf017eab2024-06-28 15:09:33 +02004467func (*GetValueRequest_OffloadedAppsStats) isGetValueRequest_Request() {}
4468
Akash Kankanala761955c2024-02-21 19:32:20 +05304469func (*GetValueRequest_OnuAllocGemStats) isGetValueRequest_Request() {}
4470
4471func (*GetValueRequest_OnuStatsFromOlt) isGetValueRequest_Request() {}
4472
4473func (*GetValueRequest_OltPonStats) isGetValueRequest_Request() {}
4474
4475func (*GetValueRequest_OltNniStats) isGetValueRequest_Request() {}
4476
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004477func (m *GetValueRequest) GetRequest() isGetValueRequest_Request {
4478 if m != nil {
4479 return m.Request
4480 }
4481 return nil
4482}
4483
4484func (m *GetValueRequest) GetDistance() *GetDistanceRequest {
4485 if x, ok := m.GetRequest().(*GetValueRequest_Distance); ok {
4486 return x.Distance
4487 }
4488 return nil
4489}
4490
4491func (m *GetValueRequest) GetUniInfo() *GetOnuUniInfoRequest {
4492 if x, ok := m.GetRequest().(*GetValueRequest_UniInfo); ok {
4493 return x.UniInfo
4494 }
4495 return nil
4496}
4497
kesavand763d8002021-01-04 16:24:42 +05304498func (m *GetValueRequest) GetOltPortInfo() *GetOltPortCounters {
4499 if x, ok := m.GetRequest().(*GetValueRequest_OltPortInfo); ok {
4500 return x.OltPortInfo
4501 }
4502 return nil
4503}
4504
4505func (m *GetValueRequest) GetOnuOpticalInfo() *GetOnuPonOpticalInfo {
4506 if x, ok := m.GetRequest().(*GetValueRequest_OnuOpticalInfo); ok {
4507 return x.OnuOpticalInfo
4508 }
4509 return nil
4510}
4511
4512func (m *GetValueRequest) GetEthBridgePort() *GetOnuEthernetBridgePortHistory {
4513 if x, ok := m.GetRequest().(*GetValueRequest_EthBridgePort); ok {
4514 return x.EthBridgePort
4515 }
4516 return nil
4517}
4518
4519func (m *GetValueRequest) GetFecHistory() *GetOnuFecHistory {
4520 if x, ok := m.GetRequest().(*GetValueRequest_FecHistory); ok {
4521 return x.FecHistory
4522 }
4523 return nil
4524}
4525
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304526func (m *GetValueRequest) GetOnuPonInfo() *GetOnuCountersRequest {
4527 if x, ok := m.GetRequest().(*GetValueRequest_OnuPonInfo); ok {
4528 return x.OnuPonInfo
4529 }
4530 return nil
4531}
4532
Himani Chawla9a497392021-05-28 13:04:42 +05304533func (m *GetValueRequest) GetOnuInfo() *GetOmciEthernetFrameExtendedPmRequest {
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304534 if x, ok := m.GetRequest().(*GetValueRequest_OnuInfo); ok {
4535 return x.OnuInfo
4536 }
4537 return nil
4538}
4539
Gamze Abaka08683072021-05-26 13:38:02 +00004540func (m *GetValueRequest) GetRxPower() *GetRxPowerRequest {
4541 if x, ok := m.GetRequest().(*GetValueRequest_RxPower); ok {
4542 return x.RxPower
4543 }
4544 return nil
4545}
4546
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004547func (m *GetValueRequest) GetOnuOmciStats() *GetOnuOmciTxRxStatsRequest {
4548 if x, ok := m.GetRequest().(*GetValueRequest_OnuOmciStats); ok {
4549 return x.OnuOmciStats
4550 }
4551 return nil
4552}
4553
amit.ghosh8490b122022-11-28 15:45:04 +01004554func (m *GetValueRequest) GetOltRxPower() *GetOltRxPowerRequest {
4555 if x, ok := m.GetRequest().(*GetValueRequest_OltRxPower); ok {
4556 return x.OltRxPower
4557 }
4558 return nil
4559}
4560
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304561func (m *GetValueRequest) GetOnuActiveAlarms() *GetOnuOmciActiveAlarmsRequest {
4562 if x, ok := m.GetRequest().(*GetValueRequest_OnuActiveAlarms); ok {
4563 return x.OnuActiveAlarms
4564 }
4565 return nil
4566}
4567
amit.ghoshf017eab2024-06-28 15:09:33 +02004568func (m *GetValueRequest) GetOffloadedAppsStats() *GetOffloadedAppsStatisticsRequest {
4569 if x, ok := m.GetRequest().(*GetValueRequest_OffloadedAppsStats); ok {
4570 return x.OffloadedAppsStats
4571 }
4572 return nil
4573}
4574
Akash Kankanala761955c2024-02-21 19:32:20 +05304575func (m *GetValueRequest) GetOnuAllocGemStats() *GetOnuAllocGemHistoryRequest {
4576 if x, ok := m.GetRequest().(*GetValueRequest_OnuAllocGemStats); ok {
4577 return x.OnuAllocGemStats
4578 }
4579 return nil
4580}
4581
4582func (m *GetValueRequest) GetOnuStatsFromOlt() *GetOnuStatsFromOltRequest {
4583 if x, ok := m.GetRequest().(*GetValueRequest_OnuStatsFromOlt); ok {
4584 return x.OnuStatsFromOlt
4585 }
4586 return nil
4587}
4588
4589func (m *GetValueRequest) GetOltPonStats() *GetPonStatsRequest {
4590 if x, ok := m.GetRequest().(*GetValueRequest_OltPonStats); ok {
4591 return x.OltPonStats
4592 }
4593 return nil
4594}
4595
4596func (m *GetValueRequest) GetOltNniStats() *GetNNIStatsRequest {
4597 if x, ok := m.GetRequest().(*GetValueRequest_OltNniStats); ok {
4598 return x.OltNniStats
4599 }
4600 return nil
4601}
4602
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004603// XXX_OneofWrappers is for the internal use of the proto package.
4604func (*GetValueRequest) XXX_OneofWrappers() []interface{} {
4605 return []interface{}{
4606 (*GetValueRequest_Distance)(nil),
4607 (*GetValueRequest_UniInfo)(nil),
kesavand763d8002021-01-04 16:24:42 +05304608 (*GetValueRequest_OltPortInfo)(nil),
4609 (*GetValueRequest_OnuOpticalInfo)(nil),
4610 (*GetValueRequest_EthBridgePort)(nil),
4611 (*GetValueRequest_FecHistory)(nil),
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304612 (*GetValueRequest_OnuPonInfo)(nil),
4613 (*GetValueRequest_OnuInfo)(nil),
Gamze Abaka08683072021-05-26 13:38:02 +00004614 (*GetValueRequest_RxPower)(nil),
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004615 (*GetValueRequest_OnuOmciStats)(nil),
amit.ghosh8490b122022-11-28 15:45:04 +01004616 (*GetValueRequest_OltRxPower)(nil),
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304617 (*GetValueRequest_OnuActiveAlarms)(nil),
amit.ghoshf017eab2024-06-28 15:09:33 +02004618 (*GetValueRequest_OffloadedAppsStats)(nil),
Akash Kankanala761955c2024-02-21 19:32:20 +05304619 (*GetValueRequest_OnuAllocGemStats)(nil),
4620 (*GetValueRequest_OnuStatsFromOlt)(nil),
4621 (*GetValueRequest_OltPonStats)(nil),
4622 (*GetValueRequest_OltNniStats)(nil),
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004623 }
4624}
4625
4626type GetValueResponse struct {
4627 Status GetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.GetValueResponse_Status" json:"status,omitempty"`
4628 ErrReason GetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.GetValueResponse_ErrorReason" json:"errReason,omitempty"`
4629 // Types that are valid to be assigned to Response:
4630 // *GetValueResponse_Distance
4631 // *GetValueResponse_UniInfo
kesavand763d8002021-01-04 16:24:42 +05304632 // *GetValueResponse_PortCoutners
4633 // *GetValueResponse_OnuOpticalInfo
4634 // *GetValueResponse_EthBridgePortInfo
4635 // *GetValueResponse_FecHistory
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304636 // *GetValueResponse_OnuPonCounters
Himani Chawla9a497392021-05-28 13:04:42 +05304637 // *GetValueResponse_OnuCounters
Gamze Abaka08683072021-05-26 13:38:02 +00004638 // *GetValueResponse_RxPower
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004639 // *GetValueResponse_OnuOmciStats
amit.ghosh8490b122022-11-28 15:45:04 +01004640 // *GetValueResponse_OltRxPower
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304641 // *GetValueResponse_OnuActiveAlarms
amit.ghoshf017eab2024-06-28 15:09:33 +02004642 // *GetValueResponse_OffloadedAppsStats
Akash Kankanala761955c2024-02-21 19:32:20 +05304643 // *GetValueResponse_OnuAllocGemStatsResponse
4644 // *GetValueResponse_OnuStatsFromOltResponse
4645 // *GetValueResponse_OltPonStatsResponse
4646 // *GetValueResponse_OltNniStatsResponse
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004647 Response isGetValueResponse_Response `protobuf_oneof:"response"`
4648 XXX_NoUnkeyedLiteral struct{} `json:"-"`
4649 XXX_unrecognized []byte `json:"-"`
4650 XXX_sizecache int32 `json:"-"`
4651}
4652
4653func (m *GetValueResponse) Reset() { *m = GetValueResponse{} }
4654func (m *GetValueResponse) String() string { return proto.CompactTextString(m) }
4655func (*GetValueResponse) ProtoMessage() {}
4656func (*GetValueResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05304657 return fileDescriptor_7ecf6e9799a9202d, []int{48}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004658}
4659
4660func (m *GetValueResponse) XXX_Unmarshal(b []byte) error {
4661 return xxx_messageInfo_GetValueResponse.Unmarshal(m, b)
4662}
4663func (m *GetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
4664 return xxx_messageInfo_GetValueResponse.Marshal(b, m, deterministic)
4665}
4666func (m *GetValueResponse) XXX_Merge(src proto.Message) {
4667 xxx_messageInfo_GetValueResponse.Merge(m, src)
4668}
4669func (m *GetValueResponse) XXX_Size() int {
4670 return xxx_messageInfo_GetValueResponse.Size(m)
4671}
4672func (m *GetValueResponse) XXX_DiscardUnknown() {
4673 xxx_messageInfo_GetValueResponse.DiscardUnknown(m)
4674}
4675
4676var xxx_messageInfo_GetValueResponse proto.InternalMessageInfo
4677
4678func (m *GetValueResponse) GetStatus() GetValueResponse_Status {
4679 if m != nil {
4680 return m.Status
4681 }
4682 return GetValueResponse_STATUS_UNDEFINED
4683}
4684
4685func (m *GetValueResponse) GetErrReason() GetValueResponse_ErrorReason {
4686 if m != nil {
4687 return m.ErrReason
4688 }
4689 return GetValueResponse_REASON_UNDEFINED
4690}
4691
4692type isGetValueResponse_Response interface {
4693 isGetValueResponse_Response()
4694}
4695
4696type GetValueResponse_Distance struct {
4697 Distance *GetDistanceResponse `protobuf:"bytes,3,opt,name=distance,proto3,oneof"`
4698}
4699
4700type GetValueResponse_UniInfo struct {
4701 UniInfo *GetOnuUniInfoResponse `protobuf:"bytes,4,opt,name=uniInfo,proto3,oneof"`
4702}
4703
kesavand763d8002021-01-04 16:24:42 +05304704type GetValueResponse_PortCoutners struct {
4705 PortCoutners *GetOltPortCountersResponse `protobuf:"bytes,5,opt,name=portCoutners,proto3,oneof"`
4706}
4707
4708type GetValueResponse_OnuOpticalInfo struct {
4709 OnuOpticalInfo *GetOnuPonOpticalInfoResponse `protobuf:"bytes,6,opt,name=onuOpticalInfo,proto3,oneof"`
4710}
4711
4712type GetValueResponse_EthBridgePortInfo struct {
4713 EthBridgePortInfo *GetOnuEthernetBridgePortHistoryResponse `protobuf:"bytes,7,opt,name=ethBridgePortInfo,proto3,oneof"`
4714}
4715
4716type GetValueResponse_FecHistory struct {
4717 FecHistory *GetOnuFecHistoryResponse `protobuf:"bytes,8,opt,name=fecHistory,proto3,oneof"`
4718}
4719
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304720type GetValueResponse_OnuPonCounters struct {
4721 OnuPonCounters *GetOnuCountersResponse `protobuf:"bytes,9,opt,name=onuPonCounters,proto3,oneof"`
4722}
4723
Himani Chawla9a497392021-05-28 13:04:42 +05304724type GetValueResponse_OnuCounters struct {
4725 OnuCounters *GetOmciEthernetFrameExtendedPmResponse `protobuf:"bytes,10,opt,name=onuCounters,proto3,oneof"`
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304726}
4727
Gamze Abaka08683072021-05-26 13:38:02 +00004728type GetValueResponse_RxPower struct {
4729 RxPower *GetRxPowerResponse `protobuf:"bytes,11,opt,name=rxPower,proto3,oneof"`
4730}
4731
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004732type GetValueResponse_OnuOmciStats struct {
4733 OnuOmciStats *GetOnuOmciTxRxStatsResponse `protobuf:"bytes,12,opt,name=onuOmciStats,proto3,oneof"`
4734}
4735
amit.ghosh8490b122022-11-28 15:45:04 +01004736type GetValueResponse_OltRxPower struct {
4737 OltRxPower *GetOltRxPowerResponse `protobuf:"bytes,13,opt,name=oltRxPower,proto3,oneof"`
4738}
4739
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304740type GetValueResponse_OnuActiveAlarms struct {
4741 OnuActiveAlarms *GetOnuOmciActiveAlarmsResponse `protobuf:"bytes,14,opt,name=onuActiveAlarms,proto3,oneof"`
4742}
4743
amit.ghoshf017eab2024-06-28 15:09:33 +02004744type GetValueResponse_OffloadedAppsStats struct {
4745 OffloadedAppsStats *GetOffloadedAppsStatisticsResponse `protobuf:"bytes,15,opt,name=offloadedAppsStats,proto3,oneof"`
4746}
4747
Akash Kankanala761955c2024-02-21 19:32:20 +05304748type GetValueResponse_OnuAllocGemStatsResponse struct {
4749 OnuAllocGemStatsResponse *GetOnuAllocGemHistoryResponse `protobuf:"bytes,16,opt,name=onuAllocGemStatsResponse,proto3,oneof"`
4750}
4751
4752type GetValueResponse_OnuStatsFromOltResponse struct {
4753 OnuStatsFromOltResponse *GetOnuStatsFromOltResponse `protobuf:"bytes,17,opt,name=onuStatsFromOltResponse,proto3,oneof"`
4754}
4755
4756type GetValueResponse_OltPonStatsResponse struct {
4757 OltPonStatsResponse *GetPonStatsResponse `protobuf:"bytes,18,opt,name=oltPonStatsResponse,proto3,oneof"`
4758}
4759
4760type GetValueResponse_OltNniStatsResponse struct {
4761 OltNniStatsResponse *GetNNIStatsResponse `protobuf:"bytes,19,opt,name=oltNniStatsResponse,proto3,oneof"`
4762}
4763
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004764func (*GetValueResponse_Distance) isGetValueResponse_Response() {}
4765
4766func (*GetValueResponse_UniInfo) isGetValueResponse_Response() {}
4767
kesavand763d8002021-01-04 16:24:42 +05304768func (*GetValueResponse_PortCoutners) isGetValueResponse_Response() {}
4769
4770func (*GetValueResponse_OnuOpticalInfo) isGetValueResponse_Response() {}
4771
4772func (*GetValueResponse_EthBridgePortInfo) isGetValueResponse_Response() {}
4773
4774func (*GetValueResponse_FecHistory) isGetValueResponse_Response() {}
4775
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304776func (*GetValueResponse_OnuPonCounters) isGetValueResponse_Response() {}
4777
Himani Chawla9a497392021-05-28 13:04:42 +05304778func (*GetValueResponse_OnuCounters) isGetValueResponse_Response() {}
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304779
Gamze Abaka08683072021-05-26 13:38:02 +00004780func (*GetValueResponse_RxPower) isGetValueResponse_Response() {}
4781
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004782func (*GetValueResponse_OnuOmciStats) isGetValueResponse_Response() {}
4783
amit.ghosh8490b122022-11-28 15:45:04 +01004784func (*GetValueResponse_OltRxPower) isGetValueResponse_Response() {}
4785
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304786func (*GetValueResponse_OnuActiveAlarms) isGetValueResponse_Response() {}
4787
amit.ghoshf017eab2024-06-28 15:09:33 +02004788func (*GetValueResponse_OffloadedAppsStats) isGetValueResponse_Response() {}
4789
Akash Kankanala761955c2024-02-21 19:32:20 +05304790func (*GetValueResponse_OnuAllocGemStatsResponse) isGetValueResponse_Response() {}
4791
4792func (*GetValueResponse_OnuStatsFromOltResponse) isGetValueResponse_Response() {}
4793
4794func (*GetValueResponse_OltPonStatsResponse) isGetValueResponse_Response() {}
4795
4796func (*GetValueResponse_OltNniStatsResponse) isGetValueResponse_Response() {}
4797
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004798func (m *GetValueResponse) GetResponse() isGetValueResponse_Response {
4799 if m != nil {
4800 return m.Response
4801 }
4802 return nil
4803}
4804
4805func (m *GetValueResponse) GetDistance() *GetDistanceResponse {
4806 if x, ok := m.GetResponse().(*GetValueResponse_Distance); ok {
4807 return x.Distance
4808 }
4809 return nil
4810}
4811
4812func (m *GetValueResponse) GetUniInfo() *GetOnuUniInfoResponse {
4813 if x, ok := m.GetResponse().(*GetValueResponse_UniInfo); ok {
4814 return x.UniInfo
4815 }
4816 return nil
4817}
4818
kesavand763d8002021-01-04 16:24:42 +05304819func (m *GetValueResponse) GetPortCoutners() *GetOltPortCountersResponse {
4820 if x, ok := m.GetResponse().(*GetValueResponse_PortCoutners); ok {
4821 return x.PortCoutners
4822 }
4823 return nil
4824}
4825
4826func (m *GetValueResponse) GetOnuOpticalInfo() *GetOnuPonOpticalInfoResponse {
4827 if x, ok := m.GetResponse().(*GetValueResponse_OnuOpticalInfo); ok {
4828 return x.OnuOpticalInfo
4829 }
4830 return nil
4831}
4832
4833func (m *GetValueResponse) GetEthBridgePortInfo() *GetOnuEthernetBridgePortHistoryResponse {
4834 if x, ok := m.GetResponse().(*GetValueResponse_EthBridgePortInfo); ok {
4835 return x.EthBridgePortInfo
4836 }
4837 return nil
4838}
4839
4840func (m *GetValueResponse) GetFecHistory() *GetOnuFecHistoryResponse {
4841 if x, ok := m.GetResponse().(*GetValueResponse_FecHistory); ok {
4842 return x.FecHistory
4843 }
4844 return nil
4845}
4846
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304847func (m *GetValueResponse) GetOnuPonCounters() *GetOnuCountersResponse {
4848 if x, ok := m.GetResponse().(*GetValueResponse_OnuPonCounters); ok {
4849 return x.OnuPonCounters
4850 }
4851 return nil
4852}
4853
Himani Chawla9a497392021-05-28 13:04:42 +05304854func (m *GetValueResponse) GetOnuCounters() *GetOmciEthernetFrameExtendedPmResponse {
4855 if x, ok := m.GetResponse().(*GetValueResponse_OnuCounters); ok {
4856 return x.OnuCounters
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304857 }
4858 return nil
4859}
4860
Gamze Abaka08683072021-05-26 13:38:02 +00004861func (m *GetValueResponse) GetRxPower() *GetRxPowerResponse {
4862 if x, ok := m.GetResponse().(*GetValueResponse_RxPower); ok {
4863 return x.RxPower
4864 }
4865 return nil
4866}
4867
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004868func (m *GetValueResponse) GetOnuOmciStats() *GetOnuOmciTxRxStatsResponse {
4869 if x, ok := m.GetResponse().(*GetValueResponse_OnuOmciStats); ok {
4870 return x.OnuOmciStats
4871 }
4872 return nil
4873}
4874
amit.ghosh8490b122022-11-28 15:45:04 +01004875func (m *GetValueResponse) GetOltRxPower() *GetOltRxPowerResponse {
4876 if x, ok := m.GetResponse().(*GetValueResponse_OltRxPower); ok {
4877 return x.OltRxPower
4878 }
4879 return nil
4880}
4881
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304882func (m *GetValueResponse) GetOnuActiveAlarms() *GetOnuOmciActiveAlarmsResponse {
4883 if x, ok := m.GetResponse().(*GetValueResponse_OnuActiveAlarms); ok {
4884 return x.OnuActiveAlarms
4885 }
4886 return nil
4887}
4888
amit.ghoshf017eab2024-06-28 15:09:33 +02004889func (m *GetValueResponse) GetOffloadedAppsStats() *GetOffloadedAppsStatisticsResponse {
4890 if x, ok := m.GetResponse().(*GetValueResponse_OffloadedAppsStats); ok {
4891 return x.OffloadedAppsStats
4892 }
4893 return nil
4894}
4895
Akash Kankanala761955c2024-02-21 19:32:20 +05304896func (m *GetValueResponse) GetOnuAllocGemStatsResponse() *GetOnuAllocGemHistoryResponse {
4897 if x, ok := m.GetResponse().(*GetValueResponse_OnuAllocGemStatsResponse); ok {
4898 return x.OnuAllocGemStatsResponse
4899 }
4900 return nil
4901}
4902
4903func (m *GetValueResponse) GetOnuStatsFromOltResponse() *GetOnuStatsFromOltResponse {
4904 if x, ok := m.GetResponse().(*GetValueResponse_OnuStatsFromOltResponse); ok {
4905 return x.OnuStatsFromOltResponse
4906 }
4907 return nil
4908}
4909
4910func (m *GetValueResponse) GetOltPonStatsResponse() *GetPonStatsResponse {
4911 if x, ok := m.GetResponse().(*GetValueResponse_OltPonStatsResponse); ok {
4912 return x.OltPonStatsResponse
4913 }
4914 return nil
4915}
4916
4917func (m *GetValueResponse) GetOltNniStatsResponse() *GetNNIStatsResponse {
4918 if x, ok := m.GetResponse().(*GetValueResponse_OltNniStatsResponse); ok {
4919 return x.OltNniStatsResponse
4920 }
4921 return nil
4922}
4923
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004924// XXX_OneofWrappers is for the internal use of the proto package.
4925func (*GetValueResponse) XXX_OneofWrappers() []interface{} {
4926 return []interface{}{
4927 (*GetValueResponse_Distance)(nil),
4928 (*GetValueResponse_UniInfo)(nil),
kesavand763d8002021-01-04 16:24:42 +05304929 (*GetValueResponse_PortCoutners)(nil),
4930 (*GetValueResponse_OnuOpticalInfo)(nil),
4931 (*GetValueResponse_EthBridgePortInfo)(nil),
4932 (*GetValueResponse_FecHistory)(nil),
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05304933 (*GetValueResponse_OnuPonCounters)(nil),
Himani Chawla9a497392021-05-28 13:04:42 +05304934 (*GetValueResponse_OnuCounters)(nil),
Gamze Abaka08683072021-05-26 13:38:02 +00004935 (*GetValueResponse_RxPower)(nil),
Holger Hildebrandt3374b882022-09-06 11:40:16 +00004936 (*GetValueResponse_OnuOmciStats)(nil),
amit.ghosh8490b122022-11-28 15:45:04 +01004937 (*GetValueResponse_OltRxPower)(nil),
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05304938 (*GetValueResponse_OnuActiveAlarms)(nil),
amit.ghoshf017eab2024-06-28 15:09:33 +02004939 (*GetValueResponse_OffloadedAppsStats)(nil),
Akash Kankanala761955c2024-02-21 19:32:20 +05304940 (*GetValueResponse_OnuAllocGemStatsResponse)(nil),
4941 (*GetValueResponse_OnuStatsFromOltResponse)(nil),
4942 (*GetValueResponse_OltPonStatsResponse)(nil),
4943 (*GetValueResponse_OltNniStatsResponse)(nil),
amit.ghosh9f6af0e2020-11-04 14:09:25 +01004944 }
4945}
4946
amit.ghoshf017eab2024-06-28 15:09:33 +02004947// AppOffloadConfig is the configuration for offloading applications to the OLT and has OLT wide configuration.
4948type AppOffloadConfig struct {
4949 EnableDHCPv4RA bool `protobuf:"varint,1,opt,name=enableDHCPv4RA,proto3" json:"enableDHCPv4RA,omitempty"`
4950 EnableDHCPv6RA bool `protobuf:"varint,2,opt,name=enableDHCPv6RA,proto3" json:"enableDHCPv6RA,omitempty"`
4951 EnablePPPoEIA bool `protobuf:"varint,3,opt,name=enablePPPoEIA,proto3" json:"enablePPPoEIA,omitempty"`
4952 // Follows the same as the BBF Access Node Id defined in https://github.com/BroadbandForum/yang/blob/master/standard/networking/bbf-subscriber-profiles.yang
4953 AccessNodeID string `protobuf:"bytes,4,opt,name=accessNodeID,proto3" json:"accessNodeID,omitempty"`
4954 XXX_NoUnkeyedLiteral struct{} `json:"-"`
4955 XXX_unrecognized []byte `json:"-"`
4956 XXX_sizecache int32 `json:"-"`
4957}
4958
4959func (m *AppOffloadConfig) Reset() { *m = AppOffloadConfig{} }
4960func (m *AppOffloadConfig) String() string { return proto.CompactTextString(m) }
4961func (*AppOffloadConfig) ProtoMessage() {}
4962func (*AppOffloadConfig) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05304963 return fileDescriptor_7ecf6e9799a9202d, []int{49}
amit.ghoshf017eab2024-06-28 15:09:33 +02004964}
4965
4966func (m *AppOffloadConfig) XXX_Unmarshal(b []byte) error {
4967 return xxx_messageInfo_AppOffloadConfig.Unmarshal(m, b)
4968}
4969func (m *AppOffloadConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
4970 return xxx_messageInfo_AppOffloadConfig.Marshal(b, m, deterministic)
4971}
4972func (m *AppOffloadConfig) XXX_Merge(src proto.Message) {
4973 xxx_messageInfo_AppOffloadConfig.Merge(m, src)
4974}
4975func (m *AppOffloadConfig) XXX_Size() int {
4976 return xxx_messageInfo_AppOffloadConfig.Size(m)
4977}
4978func (m *AppOffloadConfig) XXX_DiscardUnknown() {
4979 xxx_messageInfo_AppOffloadConfig.DiscardUnknown(m)
4980}
4981
4982var xxx_messageInfo_AppOffloadConfig proto.InternalMessageInfo
4983
4984func (m *AppOffloadConfig) GetEnableDHCPv4RA() bool {
4985 if m != nil {
4986 return m.EnableDHCPv4RA
4987 }
4988 return false
4989}
4990
4991func (m *AppOffloadConfig) GetEnableDHCPv6RA() bool {
4992 if m != nil {
4993 return m.EnableDHCPv6RA
4994 }
4995 return false
4996}
4997
4998func (m *AppOffloadConfig) GetEnablePPPoEIA() bool {
4999 if m != nil {
5000 return m.EnablePPPoEIA
5001 }
5002 return false
5003}
5004
5005func (m *AppOffloadConfig) GetAccessNodeID() string {
5006 if m != nil {
5007 return m.AccessNodeID
5008 }
5009 return ""
5010}
5011
5012// AppOffloadOnuConfig has Onu specfic configuration which the OLT runs applications which have been offloaded.
5013type AppOffloadOnuConfig struct {
5014 OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
5015 PerUniInfo []*AppOffloadOnuConfig_PerUniConfig `protobuf:"bytes,5,rep,name=perUniInfo,proto3" json:"perUniInfo,omitempty"`
5016 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5017 XXX_unrecognized []byte `json:"-"`
5018 XXX_sizecache int32 `json:"-"`
5019}
5020
5021func (m *AppOffloadOnuConfig) Reset() { *m = AppOffloadOnuConfig{} }
5022func (m *AppOffloadOnuConfig) String() string { return proto.CompactTextString(m) }
5023func (*AppOffloadOnuConfig) ProtoMessage() {}
5024func (*AppOffloadOnuConfig) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305025 return fileDescriptor_7ecf6e9799a9202d, []int{50}
amit.ghoshf017eab2024-06-28 15:09:33 +02005026}
5027
5028func (m *AppOffloadOnuConfig) XXX_Unmarshal(b []byte) error {
5029 return xxx_messageInfo_AppOffloadOnuConfig.Unmarshal(m, b)
5030}
5031func (m *AppOffloadOnuConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5032 return xxx_messageInfo_AppOffloadOnuConfig.Marshal(b, m, deterministic)
5033}
5034func (m *AppOffloadOnuConfig) XXX_Merge(src proto.Message) {
5035 xxx_messageInfo_AppOffloadOnuConfig.Merge(m, src)
5036}
5037func (m *AppOffloadOnuConfig) XXX_Size() int {
5038 return xxx_messageInfo_AppOffloadOnuConfig.Size(m)
5039}
5040func (m *AppOffloadOnuConfig) XXX_DiscardUnknown() {
5041 xxx_messageInfo_AppOffloadOnuConfig.DiscardUnknown(m)
5042}
5043
5044var xxx_messageInfo_AppOffloadOnuConfig proto.InternalMessageInfo
5045
5046func (m *AppOffloadOnuConfig) GetOnuDeviceId() string {
5047 if m != nil {
5048 return m.OnuDeviceId
5049 }
5050 return ""
5051}
5052
5053func (m *AppOffloadOnuConfig) GetPerUniInfo() []*AppOffloadOnuConfig_PerUniConfig {
5054 if m != nil {
5055 return m.PerUniInfo
5056 }
5057 return nil
5058}
5059
5060type AppOffloadOnuConfig_PerUniConfig struct {
5061 // As per the BBF Agent Remote Id defined in https://github.com/BroadbandForum/yang/blob/master/standard/networking/bbf-pppoe-intermediate-agent-profile-common.yang
5062 AgentRemoteID string `protobuf:"bytes,2,opt,name=agentRemoteID,proto3" json:"agentRemoteID,omitempty"`
5063 // As per the BBF Agent Circuit Id defined in https://github.com/BroadbandForum/yang/blob/master/standard/networking/bbf-pppoe-intermediate-agent-profile-common.yang
5064 AgentCircuitID string `protobuf:"bytes,3,opt,name=agentCircuitID,proto3" json:"agentCircuitID,omitempty"`
5065 // The id of the UNI on the Onu for which this configuration is relevant. The UNI ids are numbered from 0 to n depending on the number of UNI ports on the ONU.
5066 OnuUniId uint32 `protobuf:"varint,4,opt,name=onuUniId,proto3" json:"onuUniId,omitempty"`
5067 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5068 XXX_unrecognized []byte `json:"-"`
5069 XXX_sizecache int32 `json:"-"`
5070}
5071
5072func (m *AppOffloadOnuConfig_PerUniConfig) Reset() { *m = AppOffloadOnuConfig_PerUniConfig{} }
5073func (m *AppOffloadOnuConfig_PerUniConfig) String() string { return proto.CompactTextString(m) }
5074func (*AppOffloadOnuConfig_PerUniConfig) ProtoMessage() {}
5075func (*AppOffloadOnuConfig_PerUniConfig) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305076 return fileDescriptor_7ecf6e9799a9202d, []int{50, 0}
amit.ghoshf017eab2024-06-28 15:09:33 +02005077}
5078
5079func (m *AppOffloadOnuConfig_PerUniConfig) XXX_Unmarshal(b []byte) error {
5080 return xxx_messageInfo_AppOffloadOnuConfig_PerUniConfig.Unmarshal(m, b)
5081}
5082func (m *AppOffloadOnuConfig_PerUniConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5083 return xxx_messageInfo_AppOffloadOnuConfig_PerUniConfig.Marshal(b, m, deterministic)
5084}
5085func (m *AppOffloadOnuConfig_PerUniConfig) XXX_Merge(src proto.Message) {
5086 xxx_messageInfo_AppOffloadOnuConfig_PerUniConfig.Merge(m, src)
5087}
5088func (m *AppOffloadOnuConfig_PerUniConfig) XXX_Size() int {
5089 return xxx_messageInfo_AppOffloadOnuConfig_PerUniConfig.Size(m)
5090}
5091func (m *AppOffloadOnuConfig_PerUniConfig) XXX_DiscardUnknown() {
5092 xxx_messageInfo_AppOffloadOnuConfig_PerUniConfig.DiscardUnknown(m)
5093}
5094
5095var xxx_messageInfo_AppOffloadOnuConfig_PerUniConfig proto.InternalMessageInfo
5096
5097func (m *AppOffloadOnuConfig_PerUniConfig) GetAgentRemoteID() string {
5098 if m != nil {
5099 return m.AgentRemoteID
5100 }
5101 return ""
5102}
5103
5104func (m *AppOffloadOnuConfig_PerUniConfig) GetAgentCircuitID() string {
5105 if m != nil {
5106 return m.AgentCircuitID
5107 }
5108 return ""
5109}
5110
5111func (m *AppOffloadOnuConfig_PerUniConfig) GetOnuUniId() uint32 {
5112 if m != nil {
5113 return m.OnuUniId
5114 }
5115 return 0
5116}
5117
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005118type SetValueRequest struct {
5119 // Types that are valid to be assigned to Request:
5120 // *SetValueRequest_AlarmConfig
amit.ghoshf017eab2024-06-28 15:09:33 +02005121 // *SetValueRequest_AppOffloadConfig
5122 // *SetValueRequest_AppOffloadOnuConfig
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005123 Request isSetValueRequest_Request `protobuf_oneof:"request"`
5124 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5125 XXX_unrecognized []byte `json:"-"`
5126 XXX_sizecache int32 `json:"-"`
5127}
5128
5129func (m *SetValueRequest) Reset() { *m = SetValueRequest{} }
5130func (m *SetValueRequest) String() string { return proto.CompactTextString(m) }
5131func (*SetValueRequest) ProtoMessage() {}
5132func (*SetValueRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305133 return fileDescriptor_7ecf6e9799a9202d, []int{51}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005134}
5135
5136func (m *SetValueRequest) XXX_Unmarshal(b []byte) error {
5137 return xxx_messageInfo_SetValueRequest.Unmarshal(m, b)
5138}
5139func (m *SetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5140 return xxx_messageInfo_SetValueRequest.Marshal(b, m, deterministic)
5141}
5142func (m *SetValueRequest) XXX_Merge(src proto.Message) {
5143 xxx_messageInfo_SetValueRequest.Merge(m, src)
5144}
5145func (m *SetValueRequest) XXX_Size() int {
5146 return xxx_messageInfo_SetValueRequest.Size(m)
5147}
5148func (m *SetValueRequest) XXX_DiscardUnknown() {
5149 xxx_messageInfo_SetValueRequest.DiscardUnknown(m)
5150}
5151
5152var xxx_messageInfo_SetValueRequest proto.InternalMessageInfo
5153
5154type isSetValueRequest_Request interface {
5155 isSetValueRequest_Request()
5156}
5157
5158type SetValueRequest_AlarmConfig struct {
5159 AlarmConfig *config.AlarmConfig `protobuf:"bytes,1,opt,name=alarm_config,json=alarmConfig,proto3,oneof"`
5160}
5161
amit.ghoshf017eab2024-06-28 15:09:33 +02005162type SetValueRequest_AppOffloadConfig struct {
5163 AppOffloadConfig *AppOffloadConfig `protobuf:"bytes,2,opt,name=app_offload_config,json=appOffloadConfig,proto3,oneof"`
5164}
5165
5166type SetValueRequest_AppOffloadOnuConfig struct {
5167 AppOffloadOnuConfig *AppOffloadOnuConfig `protobuf:"bytes,3,opt,name=app_offload_onu_config,json=appOffloadOnuConfig,proto3,oneof"`
5168}
5169
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005170func (*SetValueRequest_AlarmConfig) isSetValueRequest_Request() {}
5171
amit.ghoshf017eab2024-06-28 15:09:33 +02005172func (*SetValueRequest_AppOffloadConfig) isSetValueRequest_Request() {}
5173
5174func (*SetValueRequest_AppOffloadOnuConfig) isSetValueRequest_Request() {}
5175
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005176func (m *SetValueRequest) GetRequest() isSetValueRequest_Request {
5177 if m != nil {
5178 return m.Request
5179 }
5180 return nil
5181}
5182
5183func (m *SetValueRequest) GetAlarmConfig() *config.AlarmConfig {
5184 if x, ok := m.GetRequest().(*SetValueRequest_AlarmConfig); ok {
5185 return x.AlarmConfig
5186 }
5187 return nil
5188}
5189
amit.ghoshf017eab2024-06-28 15:09:33 +02005190func (m *SetValueRequest) GetAppOffloadConfig() *AppOffloadConfig {
5191 if x, ok := m.GetRequest().(*SetValueRequest_AppOffloadConfig); ok {
5192 return x.AppOffloadConfig
5193 }
5194 return nil
5195}
5196
5197func (m *SetValueRequest) GetAppOffloadOnuConfig() *AppOffloadOnuConfig {
5198 if x, ok := m.GetRequest().(*SetValueRequest_AppOffloadOnuConfig); ok {
5199 return x.AppOffloadOnuConfig
5200 }
5201 return nil
5202}
5203
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005204// XXX_OneofWrappers is for the internal use of the proto package.
5205func (*SetValueRequest) XXX_OneofWrappers() []interface{} {
5206 return []interface{}{
5207 (*SetValueRequest_AlarmConfig)(nil),
amit.ghoshf017eab2024-06-28 15:09:33 +02005208 (*SetValueRequest_AppOffloadConfig)(nil),
5209 (*SetValueRequest_AppOffloadOnuConfig)(nil),
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005210 }
5211}
5212
5213type SetValueResponse struct {
5214 Status SetValueResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=extension.SetValueResponse_Status" json:"status,omitempty"`
5215 ErrReason SetValueResponse_ErrorReason `protobuf:"varint,2,opt,name=errReason,proto3,enum=extension.SetValueResponse_ErrorReason" json:"errReason,omitempty"`
5216 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5217 XXX_unrecognized []byte `json:"-"`
5218 XXX_sizecache int32 `json:"-"`
5219}
5220
5221func (m *SetValueResponse) Reset() { *m = SetValueResponse{} }
5222func (m *SetValueResponse) String() string { return proto.CompactTextString(m) }
5223func (*SetValueResponse) ProtoMessage() {}
5224func (*SetValueResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305225 return fileDescriptor_7ecf6e9799a9202d, []int{52}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005226}
5227
5228func (m *SetValueResponse) XXX_Unmarshal(b []byte) error {
5229 return xxx_messageInfo_SetValueResponse.Unmarshal(m, b)
5230}
5231func (m *SetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5232 return xxx_messageInfo_SetValueResponse.Marshal(b, m, deterministic)
5233}
5234func (m *SetValueResponse) XXX_Merge(src proto.Message) {
5235 xxx_messageInfo_SetValueResponse.Merge(m, src)
5236}
5237func (m *SetValueResponse) XXX_Size() int {
5238 return xxx_messageInfo_SetValueResponse.Size(m)
5239}
5240func (m *SetValueResponse) XXX_DiscardUnknown() {
5241 xxx_messageInfo_SetValueResponse.DiscardUnknown(m)
5242}
5243
5244var xxx_messageInfo_SetValueResponse proto.InternalMessageInfo
5245
5246func (m *SetValueResponse) GetStatus() SetValueResponse_Status {
5247 if m != nil {
5248 return m.Status
5249 }
5250 return SetValueResponse_STATUS_UNDEFINED
5251}
5252
5253func (m *SetValueResponse) GetErrReason() SetValueResponse_ErrorReason {
5254 if m != nil {
5255 return m.ErrReason
5256 }
5257 return SetValueResponse_REASON_UNDEFINED
5258}
5259
5260type SingleGetValueRequest struct {
5261 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
5262 Request *GetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
5263 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5264 XXX_unrecognized []byte `json:"-"`
5265 XXX_sizecache int32 `json:"-"`
5266}
5267
5268func (m *SingleGetValueRequest) Reset() { *m = SingleGetValueRequest{} }
5269func (m *SingleGetValueRequest) String() string { return proto.CompactTextString(m) }
5270func (*SingleGetValueRequest) ProtoMessage() {}
5271func (*SingleGetValueRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305272 return fileDescriptor_7ecf6e9799a9202d, []int{53}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005273}
5274
5275func (m *SingleGetValueRequest) XXX_Unmarshal(b []byte) error {
5276 return xxx_messageInfo_SingleGetValueRequest.Unmarshal(m, b)
5277}
5278func (m *SingleGetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5279 return xxx_messageInfo_SingleGetValueRequest.Marshal(b, m, deterministic)
5280}
5281func (m *SingleGetValueRequest) XXX_Merge(src proto.Message) {
5282 xxx_messageInfo_SingleGetValueRequest.Merge(m, src)
5283}
5284func (m *SingleGetValueRequest) XXX_Size() int {
5285 return xxx_messageInfo_SingleGetValueRequest.Size(m)
5286}
5287func (m *SingleGetValueRequest) XXX_DiscardUnknown() {
5288 xxx_messageInfo_SingleGetValueRequest.DiscardUnknown(m)
5289}
5290
5291var xxx_messageInfo_SingleGetValueRequest proto.InternalMessageInfo
5292
5293func (m *SingleGetValueRequest) GetTargetId() string {
5294 if m != nil {
5295 return m.TargetId
5296 }
5297 return ""
5298}
5299
5300func (m *SingleGetValueRequest) GetRequest() *GetValueRequest {
5301 if m != nil {
5302 return m.Request
5303 }
5304 return nil
5305}
5306
5307type SingleGetValueResponse struct {
5308 Response *GetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
5309 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5310 XXX_unrecognized []byte `json:"-"`
5311 XXX_sizecache int32 `json:"-"`
5312}
5313
5314func (m *SingleGetValueResponse) Reset() { *m = SingleGetValueResponse{} }
5315func (m *SingleGetValueResponse) String() string { return proto.CompactTextString(m) }
5316func (*SingleGetValueResponse) ProtoMessage() {}
5317func (*SingleGetValueResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305318 return fileDescriptor_7ecf6e9799a9202d, []int{54}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005319}
5320
5321func (m *SingleGetValueResponse) XXX_Unmarshal(b []byte) error {
5322 return xxx_messageInfo_SingleGetValueResponse.Unmarshal(m, b)
5323}
5324func (m *SingleGetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5325 return xxx_messageInfo_SingleGetValueResponse.Marshal(b, m, deterministic)
5326}
5327func (m *SingleGetValueResponse) XXX_Merge(src proto.Message) {
5328 xxx_messageInfo_SingleGetValueResponse.Merge(m, src)
5329}
5330func (m *SingleGetValueResponse) XXX_Size() int {
5331 return xxx_messageInfo_SingleGetValueResponse.Size(m)
5332}
5333func (m *SingleGetValueResponse) XXX_DiscardUnknown() {
5334 xxx_messageInfo_SingleGetValueResponse.DiscardUnknown(m)
5335}
5336
5337var xxx_messageInfo_SingleGetValueResponse proto.InternalMessageInfo
5338
5339func (m *SingleGetValueResponse) GetResponse() *GetValueResponse {
5340 if m != nil {
5341 return m.Response
5342 }
5343 return nil
5344}
5345
5346type SingleSetValueRequest struct {
5347 TargetId string `protobuf:"bytes,1,opt,name=targetId,proto3" json:"targetId,omitempty"`
5348 Request *SetValueRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
5349 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5350 XXX_unrecognized []byte `json:"-"`
5351 XXX_sizecache int32 `json:"-"`
5352}
5353
5354func (m *SingleSetValueRequest) Reset() { *m = SingleSetValueRequest{} }
5355func (m *SingleSetValueRequest) String() string { return proto.CompactTextString(m) }
5356func (*SingleSetValueRequest) ProtoMessage() {}
5357func (*SingleSetValueRequest) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305358 return fileDescriptor_7ecf6e9799a9202d, []int{55}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005359}
5360
5361func (m *SingleSetValueRequest) XXX_Unmarshal(b []byte) error {
5362 return xxx_messageInfo_SingleSetValueRequest.Unmarshal(m, b)
5363}
5364func (m *SingleSetValueRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5365 return xxx_messageInfo_SingleSetValueRequest.Marshal(b, m, deterministic)
5366}
5367func (m *SingleSetValueRequest) XXX_Merge(src proto.Message) {
5368 xxx_messageInfo_SingleSetValueRequest.Merge(m, src)
5369}
5370func (m *SingleSetValueRequest) XXX_Size() int {
5371 return xxx_messageInfo_SingleSetValueRequest.Size(m)
5372}
5373func (m *SingleSetValueRequest) XXX_DiscardUnknown() {
5374 xxx_messageInfo_SingleSetValueRequest.DiscardUnknown(m)
5375}
5376
5377var xxx_messageInfo_SingleSetValueRequest proto.InternalMessageInfo
5378
5379func (m *SingleSetValueRequest) GetTargetId() string {
5380 if m != nil {
5381 return m.TargetId
5382 }
5383 return ""
5384}
5385
5386func (m *SingleSetValueRequest) GetRequest() *SetValueRequest {
5387 if m != nil {
5388 return m.Request
5389 }
5390 return nil
5391}
5392
5393type SingleSetValueResponse struct {
5394 Response *SetValueResponse `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
5395 XXX_NoUnkeyedLiteral struct{} `json:"-"`
5396 XXX_unrecognized []byte `json:"-"`
5397 XXX_sizecache int32 `json:"-"`
5398}
5399
5400func (m *SingleSetValueResponse) Reset() { *m = SingleSetValueResponse{} }
5401func (m *SingleSetValueResponse) String() string { return proto.CompactTextString(m) }
5402func (*SingleSetValueResponse) ProtoMessage() {}
5403func (*SingleSetValueResponse) Descriptor() ([]byte, []int) {
Akash Kankanala761955c2024-02-21 19:32:20 +05305404 return fileDescriptor_7ecf6e9799a9202d, []int{56}
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005405}
5406
5407func (m *SingleSetValueResponse) XXX_Unmarshal(b []byte) error {
5408 return xxx_messageInfo_SingleSetValueResponse.Unmarshal(m, b)
5409}
5410func (m *SingleSetValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
5411 return xxx_messageInfo_SingleSetValueResponse.Marshal(b, m, deterministic)
5412}
5413func (m *SingleSetValueResponse) XXX_Merge(src proto.Message) {
5414 xxx_messageInfo_SingleSetValueResponse.Merge(m, src)
5415}
5416func (m *SingleSetValueResponse) XXX_Size() int {
5417 return xxx_messageInfo_SingleSetValueResponse.Size(m)
5418}
5419func (m *SingleSetValueResponse) XXX_DiscardUnknown() {
5420 xxx_messageInfo_SingleSetValueResponse.DiscardUnknown(m)
5421}
5422
5423var xxx_messageInfo_SingleSetValueResponse proto.InternalMessageInfo
5424
5425func (m *SingleSetValueResponse) GetResponse() *SetValueResponse {
5426 if m != nil {
5427 return m.Response
5428 }
5429 return nil
5430}
5431
5432func init() {
khenaidoo4c6543e2021-10-19 17:25:58 -04005433 proto.RegisterEnum("extension.ValueType_Type", ValueType_Type_name, ValueType_Type_value)
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005434 proto.RegisterEnum("extension.GetOnuUniInfoResponse_ConfigurationInd", GetOnuUniInfoResponse_ConfigurationInd_name, GetOnuUniInfoResponse_ConfigurationInd_value)
5435 proto.RegisterEnum("extension.GetOnuUniInfoResponse_AdministrativeState", GetOnuUniInfoResponse_AdministrativeState_name, GetOnuUniInfoResponse_AdministrativeState_value)
5436 proto.RegisterEnum("extension.GetOnuUniInfoResponse_OperationalState", GetOnuUniInfoResponse_OperationalState_name, GetOnuUniInfoResponse_OperationalState_value)
kesavand763d8002021-01-04 16:24:42 +05305437 proto.RegisterEnum("extension.GetOltPortCounters_PortType", GetOltPortCounters_PortType_name, GetOltPortCounters_PortType_value)
5438 proto.RegisterEnum("extension.GetOnuEthernetBridgePortHistory_Direction", GetOnuEthernetBridgePortHistory_Direction_name, GetOnuEthernetBridgePortHistory_Direction_value)
Himani Chawla654f7f32021-08-25 16:31:24 +05305439 proto.RegisterEnum("extension.GetOmciEthernetFrameExtendedPmResponse_Format", GetOmciEthernetFrameExtendedPmResponse_Format_name, GetOmciEthernetFrameExtendedPmResponse_Format_value)
amit.ghoshf017eab2024-06-28 15:09:33 +02005440 proto.RegisterEnum("extension.GetOffloadedAppsStatisticsRequest_OffloadedApp", GetOffloadedAppsStatisticsRequest_OffloadedApp_name, GetOffloadedAppsStatisticsRequest_OffloadedApp_value)
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005441 proto.RegisterEnum("extension.GetValueResponse_Status", GetValueResponse_Status_name, GetValueResponse_Status_value)
5442 proto.RegisterEnum("extension.GetValueResponse_ErrorReason", GetValueResponse_ErrorReason_name, GetValueResponse_ErrorReason_value)
5443 proto.RegisterEnum("extension.SetValueResponse_Status", SetValueResponse_Status_name, SetValueResponse_Status_value)
5444 proto.RegisterEnum("extension.SetValueResponse_ErrorReason", SetValueResponse_ErrorReason_name, SetValueResponse_ErrorReason_value)
khenaidoo4c6543e2021-10-19 17:25:58 -04005445 proto.RegisterType((*ValueSet)(nil), "extension.ValueSet")
5446 proto.RegisterType((*ValueType)(nil), "extension.ValueType")
5447 proto.RegisterType((*ValueSpecifier)(nil), "extension.ValueSpecifier")
5448 proto.RegisterType((*ReturnValues)(nil), "extension.ReturnValues")
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005449 proto.RegisterType((*GetDistanceRequest)(nil), "extension.GetDistanceRequest")
5450 proto.RegisterType((*GetDistanceResponse)(nil), "extension.GetDistanceResponse")
5451 proto.RegisterType((*GetOnuUniInfoRequest)(nil), "extension.GetOnuUniInfoRequest")
5452 proto.RegisterType((*GetOnuUniInfoResponse)(nil), "extension.GetOnuUniInfoResponse")
kesavand763d8002021-01-04 16:24:42 +05305453 proto.RegisterType((*GetOltPortCounters)(nil), "extension.GetOltPortCounters")
5454 proto.RegisterType((*GetOltPortCountersResponse)(nil), "extension.GetOltPortCountersResponse")
5455 proto.RegisterType((*GetOnuPonOpticalInfo)(nil), "extension.GetOnuPonOpticalInfo")
5456 proto.RegisterType((*GetOnuPonOpticalInfoResponse)(nil), "extension.GetOnuPonOpticalInfoResponse")
5457 proto.RegisterType((*GetOnuEthernetBridgePortHistory)(nil), "extension.GetOnuEthernetBridgePortHistory")
5458 proto.RegisterType((*GetOnuEthernetBridgePortHistoryResponse)(nil), "extension.GetOnuEthernetBridgePortHistoryResponse")
Akash Kankanala761955c2024-02-21 19:32:20 +05305459 proto.RegisterType((*GetOnuAllocGemHistoryRequest)(nil), "extension.GetOnuAllocGemHistoryRequest")
5460 proto.RegisterType((*OnuGemPortHistoryData)(nil), "extension.OnuGemPortHistoryData")
5461 proto.RegisterType((*OnuAllocHistoryData)(nil), "extension.OnuAllocHistoryData")
5462 proto.RegisterType((*OnuAllocGemHistoryData)(nil), "extension.OnuAllocGemHistoryData")
5463 proto.RegisterType((*GetOnuAllocGemHistoryResponse)(nil), "extension.GetOnuAllocGemHistoryResponse")
kesavand763d8002021-01-04 16:24:42 +05305464 proto.RegisterType((*GetOnuFecHistory)(nil), "extension.GetOnuFecHistory")
5465 proto.RegisterType((*GetOnuFecHistoryResponse)(nil), "extension.GetOnuFecHistoryResponse")
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05305466 proto.RegisterType((*GetOnuCountersRequest)(nil), "extension.GetOnuCountersRequest")
Himani Chawla9a497392021-05-28 13:04:42 +05305467 proto.RegisterType((*GetOmciEthernetFrameExtendedPmRequest)(nil), "extension.GetOmciEthernetFrameExtendedPmRequest")
Gamze Abaka08683072021-05-26 13:38:02 +00005468 proto.RegisterType((*GetRxPowerRequest)(nil), "extension.GetRxPowerRequest")
amit.ghosh8490b122022-11-28 15:45:04 +01005469 proto.RegisterType((*GetOltRxPowerRequest)(nil), "extension.GetOltRxPowerRequest")
Akash Kankanala761955c2024-02-21 19:32:20 +05305470 proto.RegisterType((*GetPonStatsRequest)(nil), "extension.GetPonStatsRequest")
5471 proto.RegisterType((*GetPonStatsResponse)(nil), "extension.GetPonStatsResponse")
5472 proto.RegisterType((*GetNNIStatsRequest)(nil), "extension.GetNNIStatsRequest")
5473 proto.RegisterType((*GetNNIStatsResponse)(nil), "extension.GetNNIStatsResponse")
5474 proto.RegisterType((*GetOnuStatsFromOltRequest)(nil), "extension.GetOnuStatsFromOltRequest")
5475 proto.RegisterType((*OnuGemPortInfoFromOlt)(nil), "extension.OnuGemPortInfoFromOlt")
5476 proto.RegisterType((*OnuAllocIdInfoFromOlt)(nil), "extension.OnuAllocIdInfoFromOlt")
5477 proto.RegisterType((*OnuAllocGemStatsFromOltResponse)(nil), "extension.OnuAllocGemStatsFromOltResponse")
5478 proto.RegisterType((*GetOnuStatsFromOltResponse)(nil), "extension.GetOnuStatsFromOltResponse")
Himani Chawlae5bb7ca2021-05-17 15:48:32 +05305479 proto.RegisterType((*GetOnuCountersResponse)(nil), "extension.GetOnuCountersResponse")
Himani Chawla9a497392021-05-28 13:04:42 +05305480 proto.RegisterType((*OmciEthernetFrameExtendedPm)(nil), "extension.OmciEthernetFrameExtendedPm")
5481 proto.RegisterType((*GetOmciEthernetFrameExtendedPmResponse)(nil), "extension.GetOmciEthernetFrameExtendedPmResponse")
amit.ghosh8490b122022-11-28 15:45:04 +01005482 proto.RegisterType((*RxPower)(nil), "extension.RxPower")
5483 proto.RegisterType((*GetOltRxPowerResponse)(nil), "extension.GetOltRxPowerResponse")
Gamze Abaka08683072021-05-26 13:38:02 +00005484 proto.RegisterType((*GetRxPowerResponse)(nil), "extension.GetRxPowerResponse")
Holger Hildebrandt3374b882022-09-06 11:40:16 +00005485 proto.RegisterType((*GetOnuOmciTxRxStatsRequest)(nil), "extension.GetOnuOmciTxRxStatsRequest")
5486 proto.RegisterType((*GetOnuOmciTxRxStatsResponse)(nil), "extension.GetOnuOmciTxRxStatsResponse")
praneeth kumar nalmas6230f492022-12-22 11:11:13 +05305487 proto.RegisterType((*GetOnuOmciActiveAlarmsRequest)(nil), "extension.GetOnuOmciActiveAlarmsRequest")
5488 proto.RegisterType((*AlarmData)(nil), "extension.AlarmData")
5489 proto.RegisterType((*GetOnuOmciActiveAlarmsResponse)(nil), "extension.GetOnuOmciActiveAlarmsResponse")
amit.ghoshf017eab2024-06-28 15:09:33 +02005490 proto.RegisterType((*GetOffloadedAppsStatisticsRequest)(nil), "extension.GetOffloadedAppsStatisticsRequest")
5491 proto.RegisterType((*GetOffloadedAppsStatisticsResponse)(nil), "extension.GetOffloadedAppsStatisticsResponse")
5492 proto.RegisterType((*GetOffloadedAppsStatisticsResponse_DHCPv4RAStats)(nil), "extension.GetOffloadedAppsStatisticsResponse.DHCPv4RAStats")
5493 proto.RegisterMapType((map[string]string)(nil), "extension.GetOffloadedAppsStatisticsResponse.DHCPv4RAStats.AdditionalStatsEntry")
5494 proto.RegisterType((*GetOffloadedAppsStatisticsResponse_DHCPv6RAStats)(nil), "extension.GetOffloadedAppsStatisticsResponse.DHCPv6RAStats")
5495 proto.RegisterMapType((map[string]string)(nil), "extension.GetOffloadedAppsStatisticsResponse.DHCPv6RAStats.AdditionalStatsEntry")
5496 proto.RegisterType((*GetOffloadedAppsStatisticsResponse_PPPoeIAStats)(nil), "extension.GetOffloadedAppsStatisticsResponse.PPPoeIAStats")
5497 proto.RegisterMapType((map[string]string)(nil), "extension.GetOffloadedAppsStatisticsResponse.PPPoeIAStats.AdditionalStatsEntry")
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005498 proto.RegisterType((*GetValueRequest)(nil), "extension.GetValueRequest")
5499 proto.RegisterType((*GetValueResponse)(nil), "extension.GetValueResponse")
amit.ghoshf017eab2024-06-28 15:09:33 +02005500 proto.RegisterType((*AppOffloadConfig)(nil), "extension.AppOffloadConfig")
5501 proto.RegisterType((*AppOffloadOnuConfig)(nil), "extension.AppOffloadOnuConfig")
5502 proto.RegisterType((*AppOffloadOnuConfig_PerUniConfig)(nil), "extension.AppOffloadOnuConfig.PerUniConfig")
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005503 proto.RegisterType((*SetValueRequest)(nil), "extension.SetValueRequest")
5504 proto.RegisterType((*SetValueResponse)(nil), "extension.SetValueResponse")
5505 proto.RegisterType((*SingleGetValueRequest)(nil), "extension.SingleGetValueRequest")
5506 proto.RegisterType((*SingleGetValueResponse)(nil), "extension.SingleGetValueResponse")
5507 proto.RegisterType((*SingleSetValueRequest)(nil), "extension.SingleSetValueRequest")
5508 proto.RegisterType((*SingleSetValueResponse)(nil), "extension.SingleSetValueResponse")
5509}
5510
5511func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
5512
5513var fileDescriptor_7ecf6e9799a9202d = []byte{
Akash Kankanala761955c2024-02-21 19:32:20 +05305514 // 5177 bytes of a gzipped FileDescriptorProto
5515 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5c, 0xcd, 0x6f, 0x1b, 0x49,
5516 0x76, 0x17, 0x29, 0x89, 0x12, 0x1f, 0x45, 0x89, 0x2a, 0x7d, 0x98, 0x96, 0x3d, 0xb6, 0xa7, 0x77,
5517 0x3e, 0x3c, 0x9b, 0x19, 0xd9, 0xa2, 0x2d, 0x59, 0x3b, 0xbb, 0x59, 0x2c, 0x29, 0x51, 0x22, 0x63,
5518 0x9b, 0xe2, 0x14, 0xa9, 0xf9, 0xd8, 0x20, 0xdb, 0xdb, 0x62, 0x97, 0x34, 0x0d, 0x93, 0x5d, 0x4c,
5519 0x77, 0x53, 0x4b, 0x4f, 0x90, 0x5b, 0x6e, 0x9b, 0x9c, 0x72, 0xc9, 0x25, 0xb7, 0x5c, 0x02, 0x24,
5520 0xd8, 0x43, 0x0e, 0x41, 0xae, 0x8b, 0x1c, 0xf3, 0x4f, 0x04, 0x08, 0x90, 0x73, 0x82, 0x04, 0x08,
5521 0x12, 0x20, 0x08, 0xea, 0xab, 0xbb, 0xba, 0xd9, 0xd4, 0xc7, 0xec, 0x66, 0x03, 0xe4, 0x32, 0xa3,
5522 0x7a, 0x1f, 0xbf, 0x7a, 0x55, 0xf5, 0xde, 0xab, 0x7a, 0xd5, 0x45, 0xc3, 0x83, 0x4b, 0xda, 0x0f,
5523 0xbe, 0xb6, 0xcc, 0xa1, 0x47, 0x03, 0xea, 0x3f, 0x21, 0xe3, 0x80, 0xb8, 0xbe, 0x43, 0x5d, 0x7f,
5524 0x9b, 0x53, 0x50, 0x3e, 0xa4, 0x6c, 0x4d, 0x8a, 0x9a, 0x3d, 0xea, 0x9e, 0x3b, 0x17, 0x42, 0x74,
5525 0xeb, 0xde, 0x05, 0xa5, 0x17, 0x7d, 0xf2, 0x84, 0xb7, 0xce, 0x46, 0xe7, 0x4f, 0xc8, 0x60, 0x18,
5526 0xbc, 0x95, 0xcc, 0xad, 0xb8, 0x72, 0x8f, 0x0e, 0x06, 0xd4, 0x15, 0x3c, 0xe3, 0xf7, 0x60, 0xf1,
5527 0x73, 0xab, 0x3f, 0x22, 0x1d, 0x12, 0xa0, 0x65, 0xc8, 0x3a, 0x76, 0x39, 0xf3, 0x28, 0xf3, 0x38,
5528 0x8f, 0xb3, 0x8e, 0x8d, 0xf6, 0x61, 0xc9, 0xea, 0x5b, 0xde, 0x40, 0x76, 0x55, 0xce, 0x3e, 0xca,
5529 0x3c, 0x2e, 0x54, 0xd6, 0xb6, 0x65, 0xcf, 0x55, 0xc6, 0x3b, 0xe0, 0x7f, 0x37, 0x66, 0x70, 0xc1,
5530 0x8a, 0x9a, 0xb5, 0x05, 0x98, 0xbf, 0x64, 0xa8, 0xc6, 0xc7, 0x90, 0xe7, 0xf0, 0xdd, 0xb7, 0x43,
5531 0x62, 0x3c, 0x84, 0x39, 0xf6, 0x7f, 0x94, 0x87, 0xf9, 0xfa, 0xeb, 0x76, 0xf7, 0xab, 0xd2, 0x0c,
5532 0x5a, 0x82, 0xc5, 0xc3, 0x66, 0xa7, 0x5b, 0x6d, 0x1d, 0xd4, 0x4b, 0x19, 0xe3, 0x33, 0x58, 0x16,
5533 0xc6, 0x0c, 0x49, 0xcf, 0x39, 0x77, 0x88, 0x37, 0x61, 0xd2, 0x13, 0x09, 0xcc, 0x6d, 0x59, 0xae,
5534 0xdc, 0xdd, 0x0e, 0xa7, 0x68, 0x3b, 0xec, 0x67, 0x9b, 0xfd, 0x07, 0x4b, 0x03, 0x02, 0x58, 0xc2,
5535 0x24, 0x18, 0x79, 0x2e, 0x67, 0xfb, 0xa8, 0x04, 0xb3, 0x1d, 0x12, 0x70, 0xc4, 0x22, 0x66, 0x7f,
5536 0xa2, 0x47, 0x50, 0x38, 0x75, 0xfd, 0xd1, 0x70, 0x48, 0xbd, 0x80, 0xd8, 0x1c, 0xb8, 0x88, 0x75,
5537 0x12, 0x5a, 0x87, 0xf9, 0xba, 0xe7, 0x51, 0xaf, 0x3c, 0xcb, 0x79, 0xa2, 0x81, 0xb6, 0x60, 0xf1,
5538 0xd0, 0xf1, 0x03, 0xcb, 0xed, 0x91, 0xf2, 0x1c, 0x67, 0x84, 0x6d, 0x63, 0x0f, 0xd0, 0x31, 0x09,
5539 0x54, 0x13, 0x93, 0xdf, 0x1f, 0x11, 0x9f, 0xf7, 0x44, 0xdd, 0xd1, 0x21, 0xb9, 0x74, 0x7a, 0xa4,
5540 0xa9, 0x46, 0xa5, 0x93, 0x8c, 0x1d, 0x58, 0x8b, 0xe9, 0xf9, 0x43, 0xea, 0xfa, 0x84, 0x75, 0x65,
5541 0xab, 0xae, 0x84, 0xe5, 0x61, 0xdb, 0xa8, 0xc0, 0xfa, 0x31, 0x09, 0x4e, 0xdc, 0xd1, 0xa9, 0xeb,
5542 0x34, 0xdd, 0x73, 0xaa, 0x3a, 0xdb, 0x82, 0xc5, 0x11, 0xa3, 0xd8, 0x64, 0xac, 0x74, 0x54, 0xdb,
5543 0xf8, 0xc7, 0x39, 0xd8, 0x48, 0x28, 0xc9, 0x9e, 0xda, 0xb0, 0x68, 0xd9, 0x83, 0x4e, 0x60, 0x05,
5544 0xa2, 0xa7, 0xe5, 0xca, 0x73, 0x6d, 0x8a, 0x53, 0x75, 0xb6, 0xab, 0xf6, 0xc0, 0x71, 0x1d, 0x3f,
5545 0xf0, 0xac, 0xc0, 0xb9, 0x24, 0x5c, 0x17, 0x87, 0x28, 0xe8, 0x04, 0xf2, 0x74, 0x48, 0x3c, 0x01,
5546 0x29, 0x56, 0x6d, 0xe7, 0x5a, 0xc8, 0x93, 0x21, 0x61, 0x68, 0xd4, 0xb5, 0xfa, 0x02, 0x2f, 0xc2,
5547 0x60, 0x80, 0xc2, 0x01, 0x9b, 0xae, 0xcd, 0x57, 0xe4, 0x26, 0x80, 0xc2, 0x2f, 0x47, 0x02, 0xb4,
5548 0xe9, 0xda, 0x38, 0xc2, 0x30, 0x7e, 0x99, 0x81, 0x52, 0x92, 0x8f, 0x00, 0x72, 0xa7, 0xad, 0x97,
5549 0x27, 0x5f, 0xb4, 0x4a, 0x33, 0x08, 0xc1, 0x72, 0xb7, 0xde, 0x32, 0x6b, 0xd5, 0x4e, 0xdd, 0xec,
5550 0x9a, 0x47, 0x87, 0x5f, 0x96, 0x32, 0x68, 0x13, 0x50, 0xe3, 0xb4, 0x75, 0x88, 0xeb, 0x87, 0x3a,
5551 0x3d, 0x8b, 0xca, 0xb0, 0x7e, 0xdc, 0x3c, 0xae, 0xd6, 0x9a, 0x5d, 0xb3, 0xde, 0x6d, 0xd4, 0x71,
5552 0xab, 0x2e, 0x38, 0xb3, 0x4c, 0x83, 0xa1, 0x1c, 0xc7, 0xe9, 0x73, 0x09, 0xf4, 0xc6, 0xe1, 0x97,
5553 0xa5, 0xf9, 0x14, 0x74, 0x46, 0xcf, 0xa5, 0xa2, 0x33, 0xce, 0x82, 0x71, 0x0c, 0x6b, 0x29, 0xeb,
5554 0xc0, 0x80, 0xaa, 0x87, 0xaf, 0x3b, 0xdd, 0x6a, 0xb7, 0x6e, 0x9e, 0xb6, 0x0e, 0xeb, 0x47, 0xcd,
5555 0x56, 0xfd, 0xb0, 0x34, 0xc3, 0x86, 0xf7, 0xea, 0xe4, 0xe0, 0x65, 0xfd, 0xb0, 0x94, 0x61, 0x31,
5556 0x78, 0xda, 0x92, 0xad, 0xac, 0x71, 0x04, 0xa5, 0xe4, 0xec, 0xa3, 0x3b, 0xb0, 0x76, 0xd2, 0xae,
5557 0xe3, 0x49, 0x98, 0x02, 0x2c, 0xd4, 0x5b, 0xd5, 0xda, 0x2b, 0x85, 0x73, 0xd8, 0xec, 0x88, 0x56,
5558 0xd6, 0xf8, 0xdb, 0x0c, 0x8f, 0x81, 0x93, 0x7e, 0xd0, 0xa6, 0x5e, 0x70, 0x40, 0x47, 0x6e, 0x40,
5559 0x3c, 0x1f, 0x6d, 0x42, 0x8e, 0x45, 0x55, 0x8b, 0x4a, 0xa7, 0x94, 0x2d, 0x54, 0x83, 0x45, 0xf6,
5560 0x17, 0x0b, 0x5d, 0xe9, 0x25, 0x1f, 0x24, 0x16, 0x35, 0x0e, 0xb4, 0xdd, 0x96, 0xd2, 0x38, 0xd4,
5561 0x33, 0xea, 0xb0, 0xa8, 0xa8, 0xa8, 0x04, 0x4b, 0xec, 0x6f, 0xf3, 0xb4, 0xf5, 0xb2, 0x25, 0x56,
5562 0x71, 0x03, 0x56, 0x39, 0x25, 0x9c, 0xb8, 0x56, 0xab, 0x59, 0xca, 0x84, 0x82, 0xed, 0x93, 0x96,
5563 0x79, 0xf2, 0xaa, 0x5b, 0xca, 0x1a, 0xff, 0x30, 0x0b, 0x5b, 0x93, 0x1d, 0x86, 0x21, 0x52, 0x86,
5564 0x85, 0x60, 0x5c, 0x7b, 0x1b, 0x10, 0x9f, 0x0f, 0x61, 0x0e, 0xab, 0x26, 0xe3, 0x78, 0x92, 0x93,
5565 0x15, 0x1c, 0xd9, 0x44, 0xf7, 0x21, 0x1f, 0x8c, 0xdb, 0x56, 0xef, 0x0d, 0x09, 0x7c, 0xee, 0xb3,
5566 0x73, 0x38, 0x22, 0x30, 0xae, 0x17, 0x72, 0xe7, 0x04, 0x37, 0x24, 0xa0, 0x0f, 0x60, 0x39, 0x18,
5567 0xf3, 0x94, 0xa3, 0x44, 0xe6, 0xb9, 0x48, 0x82, 0xca, 0xe4, 0xbc, 0xb8, 0x5c, 0x4e, 0xc8, 0x79,
5568 0x13, 0x72, 0xc1, 0xb8, 0xd6, 0xb3, 0xfc, 0x40, 0xc9, 0x2d, 0x28, 0x3c, 0x9d, 0x2a, 0xf0, 0x62,
5569 0x72, 0x8b, 0x0a, 0x2f, 0x29, 0x17, 0x8c, 0x4f, 0x75, 0xb9, 0xbc, 0xc2, 0x3b, 0x9d, 0xc0, 0x8b,
5570 0xc9, 0x81, 0xc2, 0x3b, 0x9d, 0xc0, 0x7b, 0xad, 0xcb, 0x15, 0x14, 0xde, 0xeb, 0x09, 0xbc, 0x98,
5571 0xdc, 0x92, 0xc2, 0xd3, 0xa9, 0xc6, 0xa1, 0x4a, 0x90, 0x6d, 0xea, 0x9e, 0x0c, 0x03, 0xa7, 0x67,
5572 0xf5, 0x59, 0x6a, 0x40, 0x1f, 0xc3, 0x3c, 0xdf, 0x24, 0xf9, 0x2a, 0x16, 0x2a, 0x9b, 0xdb, 0x62,
5573 0x0b, 0xdd, 0x56, 0x5b, 0xe8, 0x76, 0x9d, 0x71, 0xb1, 0x10, 0x32, 0xfe, 0x28, 0x0b, 0xf7, 0xd3,
5574 0x60, 0x42, 0xb7, 0xf8, 0x2e, 0x94, 0x86, 0xf4, 0x67, 0xc4, 0x3b, 0x22, 0xc4, 0xfe, 0x9c, 0xf6,
5575 0x03, 0xeb, 0x42, 0x64, 0xd0, 0x2c, 0x9e, 0xa0, 0xa3, 0x0a, 0xac, 0x7b, 0xa4, 0x47, 0x9c, 0x4b,
5576 0x62, 0x4b, 0xa8, 0x36, 0x13, 0xe1, 0x5e, 0x93, 0xc5, 0xa9, 0x3c, 0xb4, 0x07, 0x9b, 0x03, 0x62,
5577 0xa9, 0xae, 0x5f, 0x59, 0x23, 0xb7, 0xf7, 0xb5, 0xd0, 0x9a, 0xe5, 0x5a, 0x53, 0xb8, 0xcc, 0xae,
5578 0xbe, 0xe5, 0x13, 0xaf, 0xe6, 0x58, 0xfe, 0xc1, 0xc8, 0xf3, 0x88, 0x1b, 0x70, 0x1f, 0xcb, 0xe2,
5579 0x09, 0x3a, 0xdb, 0xa0, 0x02, 0x32, 0xe0, 0xd1, 0x3f, 0xf2, 0x08, 0xf7, 0xb3, 0x2c, 0xd6, 0x49,
5580 0xc6, 0x2f, 0x32, 0xf0, 0x50, 0x4c, 0x43, 0x3d, 0xf8, 0x9a, 0x78, 0x2e, 0x09, 0x6a, 0x9e, 0x63,
5581 0x5f, 0x10, 0x16, 0x29, 0x0d, 0xc7, 0x0f, 0xa8, 0xf7, 0x16, 0x61, 0xc8, 0xdb, 0x8e, 0x47, 0x7a,
5582 0x2c, 0x83, 0x4c, 0xdd, 0x44, 0xa6, 0xaa, 0x6f, 0x1f, 0x2a, 0x5d, 0x1c, 0xc1, 0x18, 0xfb, 0x90,
5583 0x0f, 0xe9, 0xa8, 0x08, 0x79, 0x3d, 0x09, 0xb1, 0xfc, 0xd5, 0xee, 0x74, 0x71, 0xbd, 0xfa, 0xba,
5584 0x94, 0x41, 0xcb, 0x00, 0x87, 0x27, 0x5f, 0xb4, 0x64, 0x3b, 0x6b, 0xfc, 0xe9, 0x3c, 0x7c, 0x78,
5585 0x4d, 0x97, 0xe1, 0x1a, 0x3e, 0x00, 0xb0, 0x3d, 0x3a, 0xac, 0x5f, 0x12, 0x37, 0xf0, 0x65, 0x82,
5586 0xd2, 0x28, 0x2c, 0x79, 0xd1, 0x5e, 0xc0, 0x5c, 0x4d, 0x9c, 0x12, 0x64, 0x8b, 0x05, 0xfe, 0x50,
5587 0x0b, 0xee, 0x22, 0x56, 0x4d, 0x36, 0xfb, 0x67, 0x1e, 0xb5, 0x6c, 0xdd, 0x4d, 0xc5, 0x61, 0x61,
5588 0x82, 0xce, 0x64, 0x07, 0xa3, 0x3e, 0x5b, 0xc0, 0x48, 0x76, 0x5e, 0xc8, 0x26, 0xe9, 0xe8, 0x63,
5589 0x58, 0xed, 0x79, 0x3d, 0x1e, 0xd7, 0xc4, 0xd6, 0xe3, 0xbd, 0x88, 0x27, 0x19, 0x0c, 0x79, 0xe4,
5590 0xda, 0xc4, 0xf3, 0x9d, 0x6f, 0x88, 0x1e, 0xf4, 0x45, 0x3c, 0x41, 0x47, 0x8f, 0x61, 0x85, 0x5e,
5591 0xc6, 0x45, 0x17, 0xb9, 0x68, 0x92, 0xcc, 0x24, 0xe5, 0x30, 0xf7, 0x9e, 0xcb, 0x69, 0xc9, 0x0b,
5592 0xc9, 0x04, 0x99, 0xf9, 0xbb, 0x22, 0xed, 0x76, 0xe9, 0x4e, 0xe5, 0x85, 0x14, 0x07, 0x2e, 0x9e,
5593 0xca, 0x43, 0xcf, 0x61, 0x43, 0xd2, 0x77, 0x2a, 0xfb, 0x5d, 0x5a, 0xd9, 0xdd, 0x3d, 0x11, 0x4a,
5594 0x05, 0xae, 0x94, 0xce, 0xd4, 0xb4, 0x2a, 0xbb, 0x7b, 0x5d, 0xba, 0xbb, 0xb3, 0x23, 0xbb, 0x5a,
5595 0x8a, 0x69, 0xc5, 0x99, 0x2c, 0xb6, 0x24, 0x63, 0x77, 0xa7, 0xd2, 0xa5, 0x3b, 0x4f, 0x2b, 0xcf,
5596 0xa4, 0x5a, 0x91, 0xab, 0x4d, 0xe1, 0xa2, 0x7d, 0xb8, 0xa3, 0xcc, 0x78, 0x5a, 0x79, 0xde, 0xa5,
5597 0x3b, 0xbb, 0x3b, 0xfb, 0x52, 0x71, 0x99, 0x2b, 0x4e, 0x63, 0x1b, 0xaf, 0x54, 0x36, 0xa9, 0xf6,
5598 0xfb, 0xb4, 0x77, 0x4c, 0x06, 0xa1, 0x2b, 0x8a, 0xd3, 0xdb, 0xed, 0x92, 0xd3, 0x2f, 0xb2, 0xb0,
5599 0x71, 0xe2, 0x8e, 0x8e, 0xc9, 0x40, 0xf3, 0xea, 0x43, 0x2b, 0xb0, 0xd8, 0xd1, 0xf5, 0x82, 0x0c,
5600 0xe4, 0x61, 0xb3, 0x88, 0x45, 0x83, 0xad, 0x47, 0xe0, 0x59, 0xae, 0x3f, 0x70, 0x82, 0x80, 0xd8,
5601 0xc7, 0xf5, 0xd7, 0x47, 0x9e, 0x35, 0x20, 0xca, 0xab, 0x53, 0x79, 0xcc, 0xe3, 0x54, 0x5e, 0x8a,
5602 0x14, 0x84, 0xb7, 0x4f, 0x32, 0xf4, 0x0c, 0xd7, 0xb6, 0xde, 0xf6, 0xa9, 0x65, 0x8b, 0x7d, 0x51,
5603 0xf8, 0x7e, 0x2a, 0x8f, 0xcd, 0xa6, 0xd6, 0x73, 0x4c, 0x4d, 0x84, 0xc1, 0x34, 0x36, 0x7a, 0x0a,
5604 0x6b, 0xc4, 0xed, 0x79, 0x6f, 0x87, 0x2c, 0x3d, 0xbc, 0x24, 0x6f, 0xb9, 0xfb, 0xab, 0x78, 0x48,
5605 0x63, 0x19, 0x4d, 0x58, 0x53, 0x93, 0xaf, 0x4f, 0x57, 0x19, 0x16, 0x2c, 0x46, 0x0b, 0x27, 0x4c,
5606 0x35, 0x93, 0x7b, 0x7b, 0x31, 0xdc, 0xdb, 0x8d, 0xbf, 0xc8, 0xc0, 0xe6, 0xe4, 0x42, 0x72, 0xb8,
5607 0x23, 0x58, 0xa6, 0x92, 0xd3, 0xb4, 0xd9, 0x6e, 0x21, 0x97, 0xf3, 0x81, 0x96, 0x0e, 0x53, 0xcc,
5608 0xc0, 0x09, 0x2d, 0x54, 0x83, 0xc2, 0x85, 0x58, 0x5b, 0x0e, 0x92, 0x7d, 0x34, 0xfb, 0xb8, 0x50,
5609 0x79, 0x14, 0x07, 0x99, 0x5c, 0x7c, 0xac, 0x2b, 0x19, 0xdf, 0xc0, 0x3b, 0x53, 0x3c, 0x4e, 0x26,
5610 0xbf, 0xaf, 0x60, 0x93, 0xa6, 0x0e, 0xa3, 0x9c, 0xe1, 0xfd, 0xbd, 0x9b, 0x62, 0x74, 0x5c, 0x10,
5611 0x4f, 0x01, 0x30, 0x7e, 0x04, 0x25, 0xd1, 0xf7, 0x11, 0x51, 0xe3, 0xbc, 0xa5, 0x87, 0xff, 0x6b,
5612 0x06, 0xca, 0x49, 0x88, 0xd0, 0xf2, 0x0f, 0x60, 0xb9, 0x47, 0x3d, 0xb6, 0x3b, 0x10, 0x3b, 0x3a,
5613 0x98, 0x15, 0x71, 0x82, 0x8a, 0xb6, 0x01, 0x85, 0x94, 0x03, 0x6a, 0x93, 0x2f, 0xa8, 0x67, 0xab,
5614 0xe5, 0x4c, 0xe1, 0xb0, 0xed, 0xe0, 0x9c, 0xf4, 0x3a, 0xa4, 0x47, 0x5d, 0x5b, 0xf9, 0xba, 0x46,
5615 0xe1, 0x27, 0x15, 0x1a, 0x58, 0xfd, 0x08, 0x4b, 0xb8, 0x77, 0x82, 0xca, 0xd2, 0xcb, 0xc8, 0x95,
5616 0xf8, 0xd6, 0x59, 0x9f, 0x44, 0xf2, 0xc2, 0xaf, 0xa7, 0x70, 0x8d, 0x63, 0x55, 0xa5, 0x45, 0x67,
5617 0x50, 0x91, 0x1d, 0xee, 0xc0, 0x82, 0xe3, 0x06, 0xe7, 0xa6, 0x2c, 0x8d, 0x17, 0x70, 0x8e, 0x35,
5618 0x9b, 0x36, 0xda, 0x80, 0x1c, 0x75, 0x47, 0x8c, 0x9e, 0xe5, 0xf4, 0x79, 0xea, 0x8e, 0x9a, 0xb6,
5619 0xf1, 0x27, 0x19, 0x78, 0x9f, 0x21, 0x0d, 0x7a, 0x8e, 0xda, 0x04, 0x79, 0x9c, 0xd6, 0xd9, 0x82,
5620 0xda, 0xc4, 0x6e, 0x0f, 0x6e, 0x5c, 0xa2, 0xa2, 0xfb, 0x5a, 0x5d, 0xc9, 0xa7, 0xae, 0x31, 0x13,
5621 0x55, 0x96, 0x2c, 0xdf, 0x78, 0xc4, 0x27, 0x01, 0x9f, 0xad, 0x45, 0x2c, 0x1a, 0xb5, 0x65, 0x58,
5622 0x72, 0x7c, 0x73, 0xe4, 0x3a, 0xa6, 0xc3, 0xeb, 0xcf, 0x03, 0x58, 0x3d, 0x26, 0x01, 0x1e, 0xf3,
5623 0x13, 0xca, 0xb7, 0x1d, 0xd4, 0x2b, 0x71, 0xae, 0xeb, 0x27, 0x71, 0xde, 0x01, 0x60, 0x15, 0x81,
5624 0xd9, 0xb7, 0xce, 0x48, 0x5f, 0x8e, 0x20, 0xcf, 0x28, 0xaf, 0x18, 0x41, 0xa1, 0xf9, 0x2e, 0x47,
5625 0xcb, 0x73, 0xb4, 0x8e, 0x6b, 0xfc, 0x98, 0x57, 0x2b, 0x6d, 0xea, 0xb2, 0x8a, 0x27, 0x9c, 0xe8,
5626 0x07, 0x10, 0x69, 0x0a, 0xa8, 0xc6, 0x8c, 0x0e, 0x56, 0x16, 0xd5, 0x4c, 0x53, 0x9a, 0xd6, 0x98,
5627 0xc1, 0xb2, 0x5d, 0x03, 0x51, 0xcf, 0xf0, 0xd0, 0xa3, 0xbc, 0xaa, 0x8f, 0xb0, 0xa3, 0x42, 0x62,
5628 0x48, 0x5d, 0x16, 0xa0, 0x2a, 0xd9, 0xc8, 0x26, 0xfa, 0x21, 0x2c, 0x33, 0x65, 0x26, 0xee, 0xf8,
5629 0x81, 0xd3, 0xf3, 0xe5, 0xd5, 0xcb, 0xe6, 0xb6, 0xbc, 0xbb, 0x69, 0xc7, 0xb8, 0x38, 0x21, 0x2d,
5630 0x07, 0xd3, 0x6a, 0x35, 0xff, 0xd7, 0x06, 0x13, 0x61, 0x47, 0x83, 0x71, 0x5d, 0x47, 0x1f, 0x8c,
5631 0x6c, 0xfe, 0xca, 0x83, 0x69, 0xc2, 0x5d, 0x11, 0x05, 0xbc, 0xc3, 0x23, 0x8f, 0x0e, 0xd8, 0x9a,
5632 0xcb, 0x31, 0x6d, 0x82, 0xf4, 0x92, 0x84, 0xcf, 0xac, 0x83, 0xf0, 0x92, 0xb8, 0xcb, 0xfc, 0x79,
5633 0x46, 0xdf, 0x27, 0xd9, 0x70, 0x24, 0xdc, 0x94, 0x7d, 0x32, 0x56, 0x98, 0x65, 0x93, 0x85, 0x99,
5634 0xb6, 0x25, 0xcc, 0x5e, 0x51, 0xee, 0xcd, 0x25, 0xcb, 0x3d, 0xad, 0x80, 0x9c, 0x8f, 0x15, 0x90,
5635 0xc6, 0x4b, 0x6e, 0x9e, 0x96, 0xf9, 0x95, 0x79, 0x37, 0xde, 0x97, 0x22, 0x23, 0x8c, 0xbf, 0xcc,
5636 0xc0, 0x43, 0x2d, 0x4f, 0xc7, 0x67, 0x4f, 0xae, 0x5a, 0x0d, 0x0a, 0xd6, 0xc4, 0xee, 0xf4, 0x28,
5637 0x25, 0xd1, 0xc7, 0xcc, 0xc1, 0xba, 0xd2, 0x6d, 0x36, 0xa7, 0x18, 0x86, 0xbe, 0x39, 0x5d, 0x8a,
5638 0x8a, 0x3b, 0xb9, 0xc6, 0xd2, 0xca, 0x2f, 0x61, 0xd5, 0xd2, 0x47, 0x21, 0x6d, 0x65, 0xfd, 0x7c,
5639 0x37, 0x7d, 0x53, 0x4a, 0x83, 0xc1, 0x93, 0x20, 0xc6, 0x3f, 0x2d, 0xc1, 0x66, 0x32, 0xc5, 0xca,
5640 0x4e, 0xef, 0x26, 0xd2, 0x11, 0x0b, 0x07, 0xe9, 0x5c, 0x77, 0xe2, 0x09, 0xa9, 0x91, 0x91, 0xfe,
5641 0x85, 0x3e, 0x64, 0xae, 0xee, 0x3b, 0x81, 0x73, 0x49, 0x4c, 0xdb, 0x73, 0xce, 0x45, 0x1a, 0xcc,
5642 0x35, 0xb2, 0xb8, 0xa8, 0xe8, 0x87, 0x8c, 0xcc, 0x04, 0x5d, 0x72, 0x61, 0x69, 0x82, 0x73, 0x5c,
5643 0x70, 0x16, 0x17, 0x15, 0x5d, 0x08, 0x7e, 0x0a, 0x65, 0x9b, 0xf4, 0x9d, 0x81, 0x13, 0x10, 0xcf,
5644 0x1c, 0x38, 0xbe, 0x6f, 0xda, 0x24, 0x90, 0xa5, 0xd5, 0x3c, 0x57, 0x99, 0xc3, 0x9b, 0xa1, 0xc4,
5645 0x6b, 0xc7, 0xf7, 0x0f, 0x15, 0x1f, 0x3d, 0x04, 0x38, 0x73, 0x86, 0x26, 0x89, 0x0e, 0x43, 0xb9,
5646 0xc6, 0x3c, 0xce, 0x9f, 0x39, 0x43, 0x71, 0x08, 0x42, 0xef, 0x00, 0x6b, 0xb0, 0xbc, 0x2c, 0xeb,
5647 0x81, 0x5c, 0x23, 0x87, 0x17, 0xcf, 0x9c, 0xe1, 0x29, 0xa3, 0xb0, 0xb3, 0xf4, 0x39, 0xe9, 0x99,
5648 0xe1, 0xc6, 0x68, 0xfa, 0x6f, 0x07, 0x67, 0xb4, 0x2f, 0xea, 0x81, 0x5c, 0x63, 0x01, 0xaf, 0x9d,
5649 0x93, 0xde, 0x81, 0xe2, 0x76, 0x04, 0x93, 0x9d, 0xe2, 0x84, 0x96, 0x4d, 0x7e, 0xc6, 0x76, 0xb1,
5650 0x48, 0x9f, 0x57, 0x07, 0xb9, 0xc6, 0x22, 0xde, 0xe0, 0x7a, 0x92, 0x1f, 0x02, 0xa0, 0x1f, 0xc1,
5651 0xbd, 0xb8, 0x66, 0x6c, 0x5b, 0xe4, 0xc5, 0x42, 0xae, 0x91, 0xc7, 0x77, 0x75, 0xed, 0x53, 0x5d,
5652 0x04, 0xbd, 0x0f, 0xc5, 0x18, 0x02, 0xaf, 0x15, 0x72, 0x0d, 0xc0, 0x4b, 0xba, 0x0e, 0x3b, 0x2e,
5653 0xc6, 0x07, 0x26, 0x66, 0x60, 0x89, 0x0b, 0x17, 0xf0, 0xaa, 0x3e, 0x2c, 0x31, 0x15, 0x8f, 0x61,
5654 0x65, 0x7c, 0x41, 0x06, 0xe6, 0x1b, 0xf2, 0x56, 0xcd, 0x67, 0x91, 0x4b, 0x2f, 0xe1, 0x22, 0x63,
5655 0x84, 0x07, 0x4b, 0x36, 0xa7, 0x5c, 0xb2, 0x4f, 0x7d, 0x51, 0x04, 0xe4, 0x1a, 0x45, 0xbc, 0xc8,
5656 0x48, 0xaf, 0xa8, 0xcf, 0x81, 0xbc, 0xb1, 0x39, 0xec, 0x53, 0x6b, 0xe0, 0x0b, 0xa4, 0xf2, 0x0a,
5657 0x17, 0x5a, 0xc6, 0x45, 0x6f, 0xdc, 0xe6, 0x74, 0x71, 0xbd, 0xfc, 0x09, 0xa0, 0x48, 0xd2, 0xa5,
5658 0xae, 0xe9, 0xd8, 0x7d, 0x52, 0x2e, 0x71, 0xe1, 0x15, 0xbc, 0xa2, 0x84, 0x5b, 0xd4, 0x6d, 0xda,
5659 0x7d, 0xee, 0xae, 0xde, 0xd8, 0xa4, 0x83, 0x9e, 0x53, 0x5e, 0xe5, 0x32, 0x25, 0x9c, 0xf3, 0xc6,
5660 0x6c, 0xc7, 0x67, 0xac, 0x40, 0xb2, 0x10, 0x67, 0xad, 0xe2, 0x5c, 0x20, 0x58, 0x9f, 0xc2, 0x5d,
5661 0xa9, 0x65, 0xca, 0x4a, 0xc5, 0xec, 0x79, 0x3d, 0x69, 0xd8, 0x1a, 0x17, 0x46, 0x78, 0x43, 0xe0,
5662 0xc8, 0xf4, 0x75, 0x20, 0xab, 0x4b, 0x74, 0x0f, 0x16, 0xbd, 0xb1, 0x79, 0xc6, 0x53, 0xcf, 0x3a,
5663 0x17, 0x5d, 0x8b, 0x32, 0xe0, 0x43, 0x00, 0x66, 0xbd, 0x4c, 0x81, 0x1b, 0x9c, 0xbd, 0xae, 0x27,
5664 0xcf, 0x7b, 0xb0, 0x18, 0x28, 0xed, 0x4d, 0xce, 0xde, 0x88, 0x2e, 0xd2, 0x1e, 0x02, 0x04, 0x91,
5665 0xf6, 0x1d, 0xce, 0xde, 0xd4, 0x53, 0xe8, 0x77, 0x60, 0xe9, 0x8c, 0x78, 0xa6, 0x47, 0xe4, 0xa5,
5666 0x7d, 0x99, 0x8b, 0xdc, 0xc1, 0x85, 0x33, 0x76, 0x0e, 0x90, 0xd7, 0xf6, 0xef, 0x42, 0xa1, 0xdf,
5667 0xb3, 0x2f, 0xd4, 0x82, 0xdd, 0xe5, 0x32, 0x65, 0x0c, 0x8c, 0x28, 0x57, 0x8b, 0x99, 0x69, 0x3b,
5668 0x4a, 0x62, 0x8b, 0x4b, 0xdc, 0xc5, 0x79, 0xcf, 0x76, 0xa4, 0xc0, 0x03, 0xc8, 0x07, 0xce, 0x80,
5669 0xf8, 0x81, 0x35, 0x18, 0x96, 0xef, 0xf1, 0x68, 0xdf, 0xc2, 0x11, 0xa9, 0xb6, 0x04, 0xe0, 0xf8,
5670 0xa6, 0x4c, 0x14, 0xb5, 0x02, 0xe4, 0x1d, 0xdf, 0x14, 0xb9, 0xa1, 0xb6, 0x06, 0xab, 0x8e, 0x6f,
5671 0xc6, 0xf3, 0x81, 0x24, 0xc6, 0x63, 0xbf, 0xf6, 0x0e, 0xdc, 0x73, 0x58, 0x60, 0xa7, 0xc7, 0x79,
5672 0x6d, 0x05, 0x8a, 0x8e, 0x6f, 0x46, 0xa1, 0x2c, 0x8f, 0x53, 0x61, 0xe8, 0xd6, 0xb6, 0xa0, 0xec,
5673 0xf8, 0x66, 0x6a, 0xac, 0xd6, 0xee, 0xc3, 0x56, 0xc8, 0x9b, 0x88, 0xc8, 0xda, 0x23, 0x78, 0x30,
5674 0xc1, 0x8d, 0x45, 0x5d, 0x0d, 0x41, 0x29, 0x29, 0x51, 0x2b, 0xc3, 0xe6, 0x44, 0x7f, 0xc2, 0x92,
5675 0x75, 0x40, 0x8e, 0x6f, 0x26, 0x42, 0x45, 0xda, 0x1b, 0x86, 0x85, 0x94, 0x4a, 0xc4, 0x41, 0xed,
5676 0x0e, 0x6c, 0xc4, 0xa8, 0xca, 0xe7, 0xe5, 0x1c, 0x4b, 0x3f, 0x95, 0x2d, 0xe9, 0xd0, 0xb5, 0x07,
5677 0x70, 0x3f, 0xe2, 0x4d, 0xfa, 0x70, 0xad, 0x08, 0x05, 0xc1, 0xe7, 0x9e, 0x26, 0xa7, 0x32, 0xf2,
5678 0x4c, 0xc9, 0x0f, 0xe2, 0xfc, 0xc8, 0xf7, 0x6a, 0xab, 0xb0, 0xc2, 0xa6, 0x5a, 0xf3, 0xb5, 0x5a,
5679 0x09, 0x96, 0x1d, 0xdf, 0xd4, 0x3c, 0x4b, 0xa1, 0x86, 0x8e, 0x24, 0x07, 0x1c, 0x7a, 0x89, 0xf1,
5680 0xc7, 0xf3, 0x70, 0xef, 0x8a, 0xc3, 0x37, 0x7a, 0x08, 0x05, 0xdb, 0xa3, 0x43, 0x93, 0x44, 0x17,
5681 0x4f, 0xb9, 0x2b, 0x2e, 0x9e, 0x72, 0xe1, 0xc5, 0xd3, 0x26, 0xe4, 0xce, 0xa3, 0x4a, 0x3c, 0x87,
5682 0x65, 0x0b, 0x7d, 0xa4, 0x5d, 0x3b, 0x99, 0x52, 0x82, 0xef, 0x30, 0x78, 0x25, 0xa4, 0x1f, 0x85,
5683 0xa2, 0xe1, 0xed, 0x92, 0x12, 0x9d, 0x17, 0xa2, 0x21, 0x3d, 0xbc, 0x02, 0x40, 0xe1, 0xcc, 0x12,
5684 0x5b, 0x09, 0xf3, 0x8d, 0x05, 0x97, 0xa2, 0x5b, 0xa7, 0x08, 0x38, 0xbc, 0x5c, 0x52, 0xb2, 0x0b,
5685 0x02, 0x38, 0xa4, 0x4b, 0xd1, 0x0f, 0xa3, 0x3b, 0x27, 0x25, 0xc9, 0xf7, 0x18, 0xbc, 0xac, 0xc8,
5686 0x52, 0xf0, 0x31, 0x94, 0x04, 0xdf, 0xdc, 0x7b, 0x6e, 0x6a, 0x77, 0x4e, 0x39, 0xbc, 0x2c, 0xe8,
5687 0x7b, 0xcf, 0xc3, 0x8b, 0xa0, 0x3b, 0x4a, 0x72, 0xd7, 0x0c, 0xa8, 0xb9, 0x53, 0x79, 0x61, 0x6a,
5688 0xb7, 0x4e, 0x39, 0xbc, 0x26, 0x15, 0xc4, 0xa5, 0xd3, 0x89, 0xba, 0x08, 0x2a, 0x4b, 0xad, 0x9d,
5689 0xca, 0x3e, 0x53, 0xab, 0xec, 0xee, 0x2a, 0x35, 0xbe, 0x97, 0xe0, 0x75, 0xc1, 0x4f, 0x5c, 0x3b,
5690 0x45, 0x7a, 0x95, 0xdd, 0x3d, 0xa6, 0xb7, 0xbb, 0xb3, 0x63, 0x6a, 0x37, 0x4f, 0xa1, 0x9e, 0xba,
5691 0x78, 0x3a, 0x51, 0x17, 0x48, 0x77, 0xa5, 0xde, 0xee, 0x4e, 0x85, 0x9b, 0xf9, 0xb4, 0xf2, 0xcc,
5692 0xd4, 0xee, 0x9e, 0x72, 0x78, 0x43, 0x08, 0x84, 0x57, 0x4f, 0x52, 0xf3, 0x53, 0xd8, 0x52, 0x96,
5693 0x3e, 0xad, 0x3c, 0xe7, 0xaa, 0xbb, 0x3b, 0xfb, 0xa6, 0x76, 0xfb, 0x94, 0xc3, 0x9b, 0xd2, 0xd6,
5694 0xf0, 0xf2, 0x49, 0xe8, 0x1a, 0xff, 0x96, 0x85, 0x0f, 0xae, 0x2b, 0x07, 0xc3, 0x03, 0xe2, 0xe2,
5695 0x68, 0xe8, 0x07, 0x1e, 0xb1, 0x06, 0xf2, 0x74, 0xa8, 0x7f, 0x96, 0xb9, 0x0a, 0x21, 0xd4, 0x43,
5696 0x47, 0x00, 0x36, 0xfd, 0x99, 0x2b, 0x51, 0xb2, 0xb7, 0x42, 0xd1, 0x34, 0xd1, 0xcf, 0x33, 0xf0,
5697 0x01, 0x0f, 0x73, 0x22, 0x85, 0x85, 0xaf, 0x98, 0x44, 0x8a, 0x9b, 0xc3, 0x81, 0x79, 0x4e, 0xbd,
5698 0x81, 0x15, 0xc8, 0xcf, 0x82, 0xfb, 0x89, 0x5b, 0xe7, 0xeb, 0xc7, 0xbb, 0x7d, 0xc4, 0xf5, 0xf1,
5699 0xbb, 0x74, 0xba, 0xac, 0x10, 0x31, 0x9e, 0x42, 0x4e, 0xfc, 0xc5, 0x3f, 0xe0, 0x35, 0x9a, 0xb8,
5700 0xfb, 0x95, 0xd9, 0xfd, 0xe2, 0xc4, 0xac, 0x35, 0xbb, 0xe2, 0x93, 0x61, 0xa7, 0xf9, 0x65, 0xf7,
5701 0x2b, 0xf3, 0xe8, 0xe4, 0x14, 0x73, 0x5a, 0xc6, 0x08, 0x60, 0x41, 0x96, 0xaa, 0x5a, 0x11, 0x9a,
5702 0xd1, 0x8a, 0x50, 0x16, 0xce, 0x7e, 0x60, 0x05, 0x23, 0x5f, 0xd6, 0xa6, 0xb2, 0xc5, 0xf2, 0xc3,
5703 0xb9, 0xe5, 0xf4, 0x4d, 0x8f, 0x58, 0x3e, 0x75, 0xf9, 0xe8, 0xf2, 0x18, 0x18, 0x09, 0x73, 0x0a,
5704 0xba, 0xcb, 0xf7, 0x62, 0xfe, 0x9d, 0x81, 0xc7, 0x79, 0x86, 0xed, 0xc4, 0xbc, 0x2b, 0x83, 0x88,
5705 0x4b, 0x04, 0xad, 0x4c, 0x96, 0x4b, 0x7b, 0x4d, 0x9d, 0xfc, 0x89, 0x06, 0x29, 0xce, 0xf4, 0x48,
5706 0x9b, 0x4e, 0x05, 0x16, 0x76, 0xf3, 0x67, 0xe2, 0x73, 0x5f, 0xb2, 0x93, 0x5b, 0x16, 0xf5, 0xda,
5707 0x0c, 0xcc, 0x5e, 0x35, 0x03, 0x73, 0x57, 0xce, 0xc0, 0x7c, 0x7c, 0x06, 0x7e, 0x47, 0x15, 0x17,
5708 0xcc, 0x01, 0xba, 0x63, 0x3c, 0x8e, 0x55, 0xc5, 0xb7, 0xbb, 0x87, 0xfa, 0x97, 0x59, 0xb8, 0x97,
5709 0x0a, 0x26, 0xc7, 0xfb, 0x11, 0xac, 0x9e, 0x59, 0x3e, 0x61, 0x5b, 0x88, 0xe5, 0xa9, 0x5c, 0x26,
5710 0x6f, 0xa3, 0x18, 0xa3, 0x3b, 0xae, 0x7a, 0x61, 0x7e, 0x14, 0xa2, 0xde, 0xd8, 0xb4, 0xde, 0x28,
5711 0xd1, 0x6c, 0x24, 0x8a, 0xc7, 0xd5, 0x37, 0x52, 0x74, 0x1b, 0xd6, 0x15, 0xaa, 0x4b, 0x35, 0xe0,
5712 0x59, 0xf9, 0x25, 0x81, 0x03, 0xb7, 0x68, 0x08, 0xad, 0xe4, 0x3d, 0x21, 0xff, 0x46, 0xdf, 0x02,
5713 0xa4, 0x3c, 0x66, 0xf2, 0x6f, 0xc2, 0xfc, 0x5b, 0x22, 0xe3, 0x20, 0x6e, 0xb4, 0xb8, 0x9a, 0x2a,
5714 0x92, 0x71, 0xa0, 0xd9, 0x2c, 0x05, 0x63, 0x26, 0xe7, 0x42, 0x41, 0xcd, 0xe2, 0x8f, 0x61, 0x4d,
5715 0x22, 0xc6, 0x0c, 0x16, 0x1f, 0x1d, 0x56, 0x38, 0xa8, 0x66, 0xaf, 0x94, 0x4e, 0x9a, 0xbb, 0x18,
5716 0x4a, 0xc7, 0xac, 0xdd, 0x85, 0x3b, 0x72, 0xfb, 0x37, 0x7b, 0xa2, 0x6a, 0x33, 0x3d, 0x12, 0x78,
5717 0x0e, 0x51, 0xdf, 0x1f, 0xd6, 0xc5, 0xe9, 0x56, 0x96, 0x74, 0x58, 0xf0, 0xd0, 0x0b, 0x28, 0x27,
5718 0xd5, 0xd8, 0x0e, 0x4d, 0x47, 0xe1, 0x87, 0x88, 0x8d, 0x98, 0x5e, 0x57, 0x32, 0x8d, 0xd7, 0xea,
5719 0xe6, 0x94, 0x31, 0xab, 0x3d, 0x76, 0x70, 0xe3, 0x4f, 0x5f, 0xbe, 0xa5, 0x0b, 0xfd, 0x21, 0xe4,
5720 0xb9, 0x3a, 0xbf, 0x21, 0xbe, 0x0b, 0x8b, 0xbd, 0xbe, 0xe5, 0xfb, 0x2a, 0x40, 0x8a, 0x78, 0x81,
5721 0xb7, 0x9b, 0x36, 0x73, 0x79, 0xc7, 0x15, 0x8f, 0x3c, 0x54, 0x98, 0x14, 0x31, 0x28, 0x52, 0xd3,
5722 0x46, 0x08, 0xe6, 0x5c, 0x6b, 0x40, 0x64, 0xa4, 0xf0, 0xbf, 0xd1, 0x23, 0x28, 0xd8, 0xc4, 0xef,
5723 0x79, 0x0e, 0xbf, 0xef, 0x96, 0x71, 0xa2, 0x93, 0x8c, 0xdf, 0x85, 0x07, 0xd3, 0x46, 0x23, 0x7d,
5724 0xf8, 0x7b, 0x50, 0xb4, 0x38, 0xdd, 0xe4, 0x4f, 0x7a, 0x7c, 0x59, 0x6a, 0xaf, 0x6b, 0xe1, 0x1f,
5725 0x0e, 0x00, 0x2f, 0x59, 0x1a, 0x84, 0xf1, 0xcb, 0x0c, 0xbc, 0xcb, 0xd0, 0xcf, 0xcf, 0xfb, 0xd4,
5726 0xb2, 0x89, 0x5d, 0x1d, 0x0e, 0x7d, 0xed, 0x6a, 0x47, 0xce, 0xd7, 0x29, 0x2c, 0xfa, 0xbc, 0x40,
5727 0xa7, 0x9e, 0xfc, 0x3e, 0xf8, 0xbd, 0x44, 0xa6, 0xbe, 0x52, 0x7f, 0x5b, 0x67, 0xe3, 0x10, 0xca,
5728 0x38, 0x82, 0x25, 0x9d, 0x93, 0xfc, 0x4c, 0x58, 0x80, 0x85, 0x76, 0xbb, 0x4d, 0x49, 0xb3, 0x2a,
5729 0xdf, 0x2a, 0x34, 0x0e, 0xda, 0x97, 0xcf, 0x71, 0xb5, 0x94, 0x0d, 0x5b, 0x7b, 0xb8, 0x5a, 0x9a,
5730 0x35, 0x7e, 0xbe, 0x09, 0xc6, 0x55, 0x46, 0xc8, 0x69, 0xea, 0x41, 0xd1, 0xfe, 0xba, 0x37, 0xbc,
5731 0x7c, 0x8e, 0x2d, 0x9e, 0x03, 0xe4, 0xea, 0x7f, 0xff, 0x86, 0x43, 0x91, 0x1b, 0x8e, 0xb2, 0x82,
5732 0x43, 0x34, 0x66, 0x70, 0x1c, 0x33, 0xec, 0x64, 0x4f, 0x75, 0x92, 0xfd, 0xd6, 0x9d, 0xec, 0x25,
5733 0x3b, 0x51, 0x98, 0xe8, 0xa7, 0xb0, 0x34, 0x1c, 0x0e, 0x29, 0x69, 0xca, 0x3e, 0x66, 0x79, 0x1f,
5734 0x9f, 0xde, 0xae, 0x0f, 0x39, 0xb7, 0xaa, 0x8b, 0x18, 0xe2, 0xd6, 0x7f, 0xcd, 0x43, 0x31, 0x36,
5735 0x52, 0x76, 0x7e, 0x71, 0x5c, 0xf3, 0xcc, 0xb2, 0xc3, 0x43, 0xfb, 0xb9, 0x47, 0x07, 0x66, 0xaf,
5736 0xef, 0x10, 0x57, 0x5d, 0x21, 0x6e, 0x3a, 0x6e, 0xcd, 0x52, 0x1f, 0x31, 0x8f, 0x3c, 0x3a, 0x38,
5737 0xe0, 0xdc, 0x69, 0xba, 0x3e, 0xf1, 0x2e, 0xe5, 0x47, 0xf4, 0x14, 0xdd, 0x0e, 0xe7, 0xa2, 0x67,
5738 0xb0, 0xe9, 0xb8, 0xa9, 0x7d, 0x8a, 0x64, 0xba, 0xe6, 0xb8, 0x93, 0x1d, 0xa6, 0x28, 0xc9, 0xce,
5739 0xe6, 0x52, 0x94, 0x64, 0x4f, 0x3b, 0xb0, 0x41, 0x47, 0x41, 0xa8, 0x15, 0x50, 0xa5, 0x23, 0x32,
5740 0x2b, 0xa2, 0x23, 0xf5, 0x35, 0xb7, 0x4b, 0xa7, 0xaa, 0x48, 0xdb, 0x72, 0x93, 0x2a, 0xd2, 0xb4,
5741 0xd7, 0xf0, 0x1e, 0xe5, 0x81, 0x6d, 0xee, 0x57, 0x4c, 0xc7, 0xf5, 0x09, 0xab, 0x51, 0x52, 0x3a,
5742 0x15, 0x99, 0xf7, 0xa1, 0x90, 0xdd, 0xaf, 0x34, 0xa5, 0x64, 0xd2, 0x82, 0x97, 0xf0, 0x9d, 0x08,
5743 0xce, 0x23, 0x03, 0x7a, 0x19, 0x47, 0x93, 0xf6, 0x88, 0xcc, 0xfc, 0x40, 0xa1, 0x61, 0x21, 0x98,
5744 0xb4, 0xad, 0x0e, 0x8f, 0x22, 0x30, 0x97, 0x06, 0x91, 0x7d, 0x91, 0x5d, 0x22, 0x63, 0xdf, 0x53,
5745 0x48, 0x2d, 0x1a, 0x28, 0xd3, 0x42, 0x9b, 0xfe, 0x00, 0x4a, 0x96, 0x6d, 0x3b, 0xe2, 0x41, 0x92,
5746 0xc9, 0xc3, 0xbd, 0x0c, 0x3c, 0x25, 0xb5, 0x7f, 0x85, 0x58, 0xdb, 0xae, 0x86, 0x98, 0xbc, 0x5d,
5747 0x77, 0x03, 0xef, 0x2d, 0x5e, 0xb1, 0xe2, 0xd4, 0xad, 0x1a, 0xac, 0xa7, 0x09, 0xa2, 0x12, 0xcc,
5748 0xbe, 0x21, 0x6f, 0xe5, 0xb1, 0x89, 0xfd, 0x89, 0xd6, 0xf5, 0xa7, 0x89, 0x79, 0xf9, 0xfe, 0xf0,
5749 0xd3, 0xec, 0x7e, 0x66, 0xeb, 0xdf, 0x73, 0xd2, 0xfb, 0xf7, 0xfe, 0xaf, 0xbd, 0x3f, 0xf2, 0x96,
5750 0x9d, 0x17, 0x57, 0x79, 0xcb, 0xac, 0xee, 0x2d, 0x3b, 0x2f, 0xae, 0xf7, 0x96, 0x9d, 0x17, 0x57,
5751 0x78, 0xcb, 0x9c, 0xee, 0x2d, 0x3b, 0x2f, 0xa6, 0x78, 0x8b, 0x66, 0xdb, 0xfe, 0x55, 0xb6, 0xcd,
5752 0xc7, 0x6c, 0xdb, 0xbf, 0x81, 0x6d, 0xfb, 0x57, 0xd8, 0x96, 0x8b, 0xd9, 0xb6, 0x7f, 0xad, 0x6d,
5753 0xcf, 0x5e, 0xdc, 0x38, 0xca, 0x9e, 0xdd, 0x60, 0xde, 0x9e, 0xbd, 0xb8, 0x69, 0x94, 0x3d, 0x9b,
5754 0x36, 0x6f, 0x5f, 0xc0, 0x47, 0x74, 0x14, 0x5c, 0x50, 0xc7, 0xbd, 0x30, 0x07, 0xc1, 0xc8, 0x24,
5755 0xe3, 0x1e, 0x21, 0x36, 0x49, 0x77, 0x2d, 0x11, 0x6e, 0xef, 0x29, 0x85, 0xd7, 0xc1, 0xa8, 0x2e,
5756 0xc5, 0x27, 0x1d, 0xed, 0xd7, 0x1b, 0x77, 0x7b, 0xbf, 0xf9, 0xb8, 0xfb, 0xbb, 0x1c, 0x2c, 0xe9,
5757 0xdb, 0x12, 0xfa, 0x21, 0xdc, 0x77, 0x5c, 0x71, 0x7f, 0x71, 0x45, 0xe0, 0x95, 0x1d, 0x57, 0x7f,
5758 0x30, 0xa7, 0xcd, 0xc8, 0x54, 0xfd, 0x58, 0xf0, 0xa5, 0xe8, 0xff, 0x3f, 0xdd, 0x7c, 0x7e, 0x0a,
5759 0xdb, 0x97, 0xc4, 0xb5, 0xa9, 0x67, 0xfa, 0xe2, 0xc5, 0x76, 0xcf, 0x0c, 0xac, 0x8b, 0xeb, 0x03,
5760 0xe4, 0xb1, 0xd0, 0x92, 0xcf, 0xbc, 0x7b, 0x5d, 0xeb, 0x62, 0x5a, 0xa4, 0xfc, 0x04, 0x3e, 0x49,
5761 0xeb, 0xe1, 0xba, 0x98, 0xf9, 0x70, 0xa2, 0x83, 0xdf, 0x74, 0xf0, 0x7c, 0x33, 0x35, 0x78, 0x4e,
5762 0xbe, 0xfd, 0xb9, 0xea, 0x37, 0x17, 0x3b, 0xb5, 0x05, 0x98, 0xe7, 0x46, 0x1b, 0xff, 0x91, 0x87,
5763 0x95, 0x63, 0x12, 0xf0, 0xe7, 0xf3, 0xea, 0x00, 0xff, 0xfd, 0xc4, 0x7b, 0xf4, 0x42, 0xe5, 0x9d,
5764 0xf8, 0xa0, 0x12, 0x2f, 0xdf, 0x1b, 0x33, 0xd1, 0x83, 0x75, 0xf4, 0x7d, 0x58, 0x18, 0x89, 0xd7,
5765 0xd9, 0xf2, 0x30, 0xfb, 0x70, 0xfa, 0xeb, 0x6d, 0xa5, 0xad, 0x34, 0x50, 0x15, 0x0a, 0x54, 0xbc,
5766 0xcb, 0xe5, 0x00, 0xb3, 0x69, 0x9d, 0x27, 0x1e, 0xee, 0x36, 0x66, 0xb0, 0xae, 0x83, 0x9a, 0xfc,
5767 0x51, 0x8e, 0xf6, 0x84, 0x93, 0xc7, 0x51, 0x9a, 0x19, 0xf1, 0x97, 0x9e, 0x8d, 0x19, 0x9c, 0x50,
5768 0x44, 0x18, 0x8a, 0x24, 0xf8, 0x3a, 0x7a, 0x4f, 0xc8, 0xa3, 0x2b, 0xfe, 0x51, 0xf2, 0x9a, 0xa7,
5769 0x87, 0xec, 0x30, 0x1e, 0x83, 0x40, 0xbf, 0xcd, 0x1f, 0x9d, 0x48, 0x36, 0x8f, 0xbd, 0x42, 0xe5,
5770 0xde, 0x04, 0x60, 0xf4, 0x0a, 0xa6, 0x31, 0x83, 0x35, 0x05, 0x54, 0x03, 0xa0, 0xdc, 0x72, 0x3e,
5771 0xb2, 0x85, 0x89, 0x0f, 0xba, 0xa9, 0x0f, 0x4a, 0x18, 0x46, 0xa4, 0x85, 0x5e, 0xc1, 0x02, 0x75,
5772 0x47, 0x1c, 0x60, 0x91, 0x03, 0x3c, 0xbd, 0xc5, 0x45, 0x5a, 0xb8, 0x64, 0x12, 0x02, 0xed, 0x83,
5773 0xba, 0x89, 0xe1, 0x01, 0x54, 0xa8, 0xdc, 0x8f, 0xa3, 0xc5, 0x9f, 0x6f, 0x30, 0x4d, 0x29, 0x8e,
5774 0x5e, 0xc2, 0x12, 0x15, 0x75, 0x6a, 0x47, 0xc6, 0x0f, 0x53, 0x7f, 0x7f, 0x62, 0x34, 0x69, 0xf7,
5775 0x3a, 0xac, 0x04, 0xd1, 0x95, 0x51, 0x15, 0x80, 0x86, 0x97, 0x60, 0xfc, 0x32, 0x77, 0x72, 0xc9,
5776 0xfb, 0x93, 0xc6, 0x68, 0x4a, 0xa8, 0x0b, 0x2b, 0xd4, 0x1d, 0xe9, 0x35, 0x33, 0xbf, 0xdc, 0x2d,
5777 0x54, 0x1e, 0xa7, 0x9a, 0x94, 0x72, 0x55, 0xd0, 0x98, 0xc1, 0x49, 0x08, 0xf4, 0x13, 0x40, 0x34,
5778 0x99, 0x03, 0xc4, 0xe5, 0x6f, 0xa1, 0xf2, 0xf1, 0x6d, 0xea, 0xe2, 0xc6, 0x0c, 0x4e, 0x41, 0x42,
5779 0xa7, 0x50, 0xa2, 0x89, 0x2f, 0xe3, 0xfc, 0x7e, 0xb8, 0x50, 0xf9, 0x70, 0xc2, 0xec, 0xf4, 0xd7,
5780 0x88, 0x8d, 0x19, 0x3c, 0x01, 0x81, 0xda, 0x7c, 0x32, 0xf4, 0x0f, 0xed, 0xfc, 0x4b, 0x66, 0xa1,
5781 0xf2, 0xde, 0x04, 0x6a, 0xca, 0xc3, 0x0d, 0x39, 0x11, 0x3a, 0x27, 0x8c, 0x6d, 0xf1, 0x4c, 0x86,
5782 0x7f, 0xea, 0x9c, 0x88, 0xed, 0xc4, 0x03, 0x9d, 0x30, 0xb6, 0x5d, 0xb5, 0xc8, 0xac, 0xd9, 0x72,
5783 0xa5, 0xc3, 0xac, 0xa6, 0x41, 0x24, 0x9e, 0xc5, 0x48, 0x08, 0xa5, 0x53, 0xcb, 0xc3, 0x82, 0x27,
5784 0x38, 0xc6, 0x3f, 0x17, 0xf9, 0xbb, 0x35, 0x99, 0xfa, 0x64, 0xd9, 0xff, 0x69, 0x78, 0x43, 0x29,
5785 0xae, 0x2e, 0x8c, 0x38, 0x7a, 0x4c, 0x78, 0xbb, 0xc3, 0x25, 0xc3, 0x5b, 0xcc, 0x3a, 0xe4, 0x89,
5786 0xe7, 0x89, 0x1b, 0x4b, 0xf9, 0x2b, 0x87, 0x0f, 0xaf, 0x52, 0xe7, 0xc7, 0x08, 0x21, 0x8e, 0x23,
5787 0x4d, 0xf4, 0x03, 0x2d, 0xfd, 0xce, 0x4e, 0x3c, 0x28, 0x4c, 0xf9, 0x01, 0x51, 0x2c, 0xff, 0xfe,
5788 0x20, 0xca, 0xbf, 0x73, 0x53, 0xd2, 0x43, 0xe2, 0xd7, 0x33, 0x7a, 0x02, 0x7e, 0x09, 0x4b, 0x43,
5789 0x91, 0x5c, 0x03, 0x97, 0x78, 0xbe, 0xcc, 0x78, 0xef, 0x5f, 0x99, 0x81, 0x35, 0x9c, 0x98, 0x32,
5790 0xfa, 0x6c, 0x22, 0x15, 0xe7, 0xa6, 0x38, 0x66, 0xfa, 0xa3, 0xfb, 0x94, 0x94, 0x7c, 0x06, 0xab,
5791 0xb1, 0x7c, 0xaa, 0xa5, 0xc1, 0xca, 0xcd, 0xd3, 0xb2, 0xd6, 0xc1, 0x24, 0x1c, 0xaa, 0xc7, 0x52,
5792 0xb4, 0x48, 0x91, 0xdf, 0xb9, 0x22, 0x45, 0x6b, 0x68, 0x7a, 0xaa, 0x7e, 0xc9, 0x47, 0xdf, 0xa6,
5793 0xae, 0x9a, 0x27, 0x99, 0x1f, 0xdf, 0xbd, 0x22, 0x5d, 0xc7, 0xc6, 0xad, 0xa9, 0xa2, 0x53, 0xfe,
5794 0x70, 0x2f, 0x44, 0x12, 0xa9, 0x72, 0xe7, 0xd6, 0x1f, 0x40, 0x78, 0x34, 0x44, 0x38, 0xe8, 0x7b,
5795 0x51, 0xf2, 0x2e, 0xa4, 0x05, 0x53, 0xe2, 0xbe, 0x5f, 0xcf, 0xde, 0xaf, 0x12, 0xd9, 0x7b, 0x69,
5796 0xe2, 0xc3, 0xcf, 0x15, 0x17, 0xe9, 0x13, 0xe9, 0xbb, 0x16, 0x4b, 0xdf, 0xc5, 0x54, 0xc7, 0xed,
5797 0xa7, 0x98, 0xa3, 0xe7, 0xef, 0xd3, 0xc9, 0xfc, 0x2d, 0x12, 0xe1, 0x47, 0x37, 0xc8, 0xdf, 0x21,
5798 0xe2, 0x44, 0x02, 0x37, 0x53, 0x13, 0xb8, 0x48, 0x86, 0x9f, 0xdc, 0xea, 0xb0, 0x37, 0x25, 0x83,
5799 0x9f, 0x43, 0x39, 0x99, 0x7e, 0x95, 0x86, 0xcc, 0x92, 0x8f, 0xaf, 0xcf, 0xe4, 0x61, 0x0f, 0x53,
5800 0xb1, 0x90, 0x05, 0x77, 0x68, 0xfa, 0x13, 0x2c, 0x99, 0x49, 0xdf, 0xbf, 0x26, 0xb5, 0x87, 0x7d,
5801 0x4c, 0xc3, 0x41, 0x18, 0xd6, 0xb4, 0x7c, 0x1d, 0xc2, 0xa3, 0xb4, 0x2c, 0x96, 0x94, 0x6a, 0xcc,
5802 0xe0, 0x34, 0x65, 0x89, 0xa9, 0x12, 0x78, 0x88, 0xb9, 0x96, 0x86, 0x99, 0x7c, 0xb7, 0x28, 0x31,
5803 0x93, 0xca, 0xc6, 0x0e, 0xe4, 0x44, 0xee, 0x46, 0xeb, 0x50, 0xea, 0x74, 0xab, 0xdd, 0xd3, 0x4e,
5804 0xec, 0x87, 0x6f, 0x39, 0xc8, 0x9e, 0xbc, 0x2c, 0x65, 0xf8, 0x4f, 0x59, 0x31, 0x3e, 0xc1, 0xa5,
5805 0xac, 0xf1, 0xd7, 0x19, 0x28, 0x68, 0x09, 0x9b, 0x29, 0xe2, 0x7a, 0xb5, 0x73, 0xd2, 0x8a, 0x29,
5806 0xae, 0x40, 0xe1, 0xb4, 0xd5, 0x39, 0x6d, 0xb7, 0x4f, 0x70, 0x97, 0xff, 0x6a, 0x6e, 0x03, 0x56,
5807 0x9b, 0xad, 0xcf, 0xab, 0xaf, 0x9a, 0x87, 0xe6, 0x61, 0xfd, 0xf3, 0xe6, 0x41, 0xdd, 0x6c, 0x1e,
5808 0x96, 0xb2, 0x3a, 0x99, 0x89, 0x9a, 0xdd, 0xaf, 0xda, 0xf5, 0xd2, 0x2c, 0x2a, 0xc0, 0x42, 0xb7,
5809 0xf9, 0xba, 0x7e, 0x72, 0xda, 0x2d, 0xcd, 0xb1, 0x1e, 0x94, 0x0c, 0xae, 0x7f, 0x26, 0x44, 0xe6,
5810 0x11, 0x82, 0xe5, 0x66, 0xab, 0x5b, 0xc7, 0xad, 0xea, 0x2b, 0x53, 0xd8, 0x96, 0x13, 0x34, 0xbd,
5811 0x93, 0xd2, 0x42, 0x0d, 0x60, 0xd1, 0x53, 0xc3, 0xfd, 0xab, 0x0c, 0x94, 0xaa, 0xc3, 0xa1, 0x74,
5812 0x4f, 0xf1, 0x63, 0x48, 0xf4, 0x01, 0x2c, 0x13, 0xd7, 0x3a, 0xeb, 0x13, 0x75, 0x6f, 0xc6, 0x77,
5813 0xbc, 0x45, 0x9c, 0xa0, 0x26, 0xe4, 0xf6, 0x70, 0x95, 0x6f, 0x6d, 0x71, 0xb9, 0x3d, 0x5c, 0x45,
5814 0xef, 0x41, 0x51, 0x50, 0x58, 0x49, 0x53, 0x6f, 0x56, 0xe5, 0x1b, 0xe1, 0x38, 0x11, 0x19, 0xb0,
5815 0x64, 0xf5, 0x7a, 0xc4, 0xf7, 0x5b, 0xd4, 0x26, 0xcd, 0x43, 0xf9, 0x09, 0x23, 0x46, 0x33, 0xfe,
5816 0x3b, 0x03, 0x6b, 0x91, 0xb9, 0x3c, 0x41, 0x72, 0x8b, 0xaf, 0x7f, 0xbd, 0xfc, 0x12, 0x60, 0x48,
5817 0x3c, 0xb9, 0xbf, 0x95, 0xe7, 0x79, 0x41, 0xf6, 0x5b, 0xfa, 0x87, 0x8d, 0x49, 0xd4, 0xed, 0x36,
5818 0x57, 0x10, 0x0d, 0xac, 0xa9, 0x6f, 0x8d, 0x61, 0x49, 0xe7, 0xb1, 0x01, 0x5a, 0x17, 0xc4, 0x0d,
5819 0x58, 0xad, 0x19, 0x30, 0xdb, 0x45, 0x55, 0x15, 0x27, 0xb2, 0xe9, 0xe2, 0x84, 0x03, 0xc7, 0xeb,
5820 0x8d, 0x9c, 0xa0, 0x79, 0x28, 0x3f, 0xe0, 0x24, 0xa8, 0x68, 0x0b, 0x16, 0xa9, 0xd8, 0x8a, 0x6d,
5821 0xf5, 0xfb, 0x62, 0xd5, 0x36, 0xfe, 0x33, 0x03, 0x2b, 0x9d, 0x44, 0x51, 0x96, 0xfc, 0xb5, 0x76,
5822 0xe6, 0xa6, 0xbf, 0xd6, 0x46, 0x2f, 0x01, 0x59, 0xc3, 0xa1, 0x29, 0x33, 0x4f, 0xfc, 0xd7, 0xde,
5823 0xf7, 0x52, 0x27, 0x27, 0xc4, 0x29, 0x59, 0x49, 0xaf, 0x39, 0x85, 0x4d, 0x1d, 0x8c, 0xba, 0x23,
5824 0x05, 0x38, 0x79, 0x54, 0x49, 0x99, 0x6d, 0x16, 0x90, 0xd6, 0x24, 0x59, 0x3f, 0x96, 0xfd, 0x7d,
5825 0x16, 0x4a, 0x9d, 0xdb, 0x1c, 0xcb, 0x3a, 0xbf, 0xda, 0xb1, 0xac, 0x73, 0xb3, 0x63, 0xd9, 0xb7,
5826 0xc9, 0x19, 0xdf, 0xfc, 0x3a, 0x53, 0xc6, 0x5d, 0xd8, 0x50, 0xe4, 0x93, 0xd6, 0xa9, 0xc6, 0x9a,
5827 0xd5, 0xe3, 0xff, 0xb4, 0xd5, 0x64, 0xb4, 0x39, 0xc3, 0x81, 0x8d, 0x8e, 0xe3, 0x5e, 0xf4, 0x49,
5828 0xb2, 0xba, 0xdf, 0x82, 0xc5, 0xc0, 0xf2, 0x2e, 0x48, 0x10, 0x86, 0x50, 0xd8, 0x46, 0xcf, 0xc3,
5829 0x65, 0x90, 0xfe, 0xb1, 0x95, 0x7a, 0x7e, 0xe5, 0x12, 0x38, 0x5c, 0xb1, 0xcf, 0x60, 0x33, 0xd9,
5830 0x95, 0x5c, 0xb6, 0x17, 0x51, 0x12, 0x92, 0x0e, 0x7b, 0xef, 0x8a, 0x03, 0x31, 0x8e, 0x32, 0x56,
5831 0x68, 0x7d, 0xe7, 0xd7, 0x65, 0x7d, 0xe7, 0x5a, 0xeb, 0x3b, 0xb7, 0xb3, 0xbe, 0x33, 0xd5, 0xfa,
5832 0xca, 0xdf, 0x64, 0x20, 0x5f, 0x57, 0x82, 0x08, 0x43, 0xe1, 0x98, 0x04, 0xf5, 0xb1, 0x10, 0x47,
5833 0xfa, 0xb1, 0x26, 0x75, 0x85, 0xb6, 0xde, 0xbd, 0x42, 0x22, 0xdc, 0x14, 0x0b, 0x9d, 0x2b, 0x31,
5834 0x3b, 0xd7, 0x62, 0x26, 0xed, 0xaf, 0x61, 0x78, 0x87, 0x7a, 0x17, 0xdb, 0x74, 0x48, 0xdc, 0x1e,
5835 0xf5, 0xec, 0x6d, 0xf1, 0xcf, 0x4a, 0x44, 0x7a, 0x3f, 0xde, 0xb9, 0x70, 0x82, 0xaf, 0x47, 0x67,
5836 0xdb, 0x3d, 0x3a, 0x78, 0xa2, 0xa4, 0x9e, 0x08, 0xa9, 0x4f, 0xe4, 0x3f, 0x3e, 0x71, 0xb9, 0xfb,
5837 0xe4, 0x82, 0x46, 0xff, 0xd4, 0xc5, 0x59, 0x8e, 0xd3, 0x9f, 0xfd, 0x4f, 0x00, 0x00, 0x00, 0xff,
5838 0xff, 0xa2, 0xb9, 0x08, 0xdb, 0x0c, 0x43, 0x00, 0x00,
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005839}
5840
5841// Reference imports to suppress errors if they are not otherwise used.
5842var _ context.Context
5843var _ grpc.ClientConn
5844
5845// This is a compile-time assertion to ensure that this generated file
5846// is compatible with the grpc package it is being compiled against.
5847const _ = grpc.SupportPackageIsVersion4
5848
5849// ExtensionClient is the client API for Extension service.
5850//
5851// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
5852type ExtensionClient interface {
5853 // Get a single attribute
5854 GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error)
5855 // Set a single attribute
5856 SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error)
5857}
5858
5859type extensionClient struct {
5860 cc *grpc.ClientConn
5861}
5862
5863func NewExtensionClient(cc *grpc.ClientConn) ExtensionClient {
5864 return &extensionClient{cc}
5865}
5866
5867func (c *extensionClient) GetExtValue(ctx context.Context, in *SingleGetValueRequest, opts ...grpc.CallOption) (*SingleGetValueResponse, error) {
5868 out := new(SingleGetValueResponse)
5869 err := c.cc.Invoke(ctx, "/extension.Extension/GetExtValue", in, out, opts...)
5870 if err != nil {
5871 return nil, err
5872 }
5873 return out, nil
5874}
5875
5876func (c *extensionClient) SetExtValue(ctx context.Context, in *SingleSetValueRequest, opts ...grpc.CallOption) (*SingleSetValueResponse, error) {
5877 out := new(SingleSetValueResponse)
5878 err := c.cc.Invoke(ctx, "/extension.Extension/SetExtValue", in, out, opts...)
5879 if err != nil {
5880 return nil, err
5881 }
5882 return out, nil
5883}
5884
5885// ExtensionServer is the server API for Extension service.
5886type ExtensionServer interface {
5887 // Get a single attribute
5888 GetExtValue(context.Context, *SingleGetValueRequest) (*SingleGetValueResponse, error)
5889 // Set a single attribute
5890 SetExtValue(context.Context, *SingleSetValueRequest) (*SingleSetValueResponse, error)
5891}
5892
David K. Bainbridgec4bf5382021-04-08 16:06:54 +00005893// UnimplementedExtensionServer can be embedded to have forward compatible implementations.
5894type UnimplementedExtensionServer struct {
5895}
5896
5897func (*UnimplementedExtensionServer) GetExtValue(ctx context.Context, req *SingleGetValueRequest) (*SingleGetValueResponse, error) {
5898 return nil, status.Errorf(codes.Unimplemented, "method GetExtValue not implemented")
5899}
5900func (*UnimplementedExtensionServer) SetExtValue(ctx context.Context, req *SingleSetValueRequest) (*SingleSetValueResponse, error) {
5901 return nil, status.Errorf(codes.Unimplemented, "method SetExtValue not implemented")
5902}
5903
amit.ghosh9f6af0e2020-11-04 14:09:25 +01005904func RegisterExtensionServer(s *grpc.Server, srv ExtensionServer) {
5905 s.RegisterService(&_Extension_serviceDesc, srv)
5906}
5907
5908func _Extension_GetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
5909 in := new(SingleGetValueRequest)
5910 if err := dec(in); err != nil {
5911 return nil, err
5912 }
5913 if interceptor == nil {
5914 return srv.(ExtensionServer).GetExtValue(ctx, in)
5915 }
5916 info := &grpc.UnaryServerInfo{
5917 Server: srv,
5918 FullMethod: "/extension.Extension/GetExtValue",
5919 }
5920 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
5921 return srv.(ExtensionServer).GetExtValue(ctx, req.(*SingleGetValueRequest))
5922 }
5923 return interceptor(ctx, in, info, handler)
5924}
5925
5926func _Extension_SetExtValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
5927 in := new(SingleSetValueRequest)
5928 if err := dec(in); err != nil {
5929 return nil, err
5930 }
5931 if interceptor == nil {
5932 return srv.(ExtensionServer).SetExtValue(ctx, in)
5933 }
5934 info := &grpc.UnaryServerInfo{
5935 Server: srv,
5936 FullMethod: "/extension.Extension/SetExtValue",
5937 }
5938 handler := func(ctx context.Context, req interface{}) (interface{}, error) {
5939 return srv.(ExtensionServer).SetExtValue(ctx, req.(*SingleSetValueRequest))
5940 }
5941 return interceptor(ctx, in, info, handler)
5942}
5943
5944var _Extension_serviceDesc = grpc.ServiceDesc{
5945 ServiceName: "extension.Extension",
5946 HandlerType: (*ExtensionServer)(nil),
5947 Methods: []grpc.MethodDesc{
5948 {
5949 MethodName: "GetExtValue",
5950 Handler: _Extension_GetExtValue_Handler,
5951 },
5952 {
5953 MethodName: "SetExtValue",
5954 Handler: _Extension_SetExtValue_Handler,
5955 },
5956 },
5957 Streams: []grpc.StreamDesc{},
5958 Metadata: "voltha_protos/extensions.proto",
5959}