blob: fbffef28a91d020cb52ceaf3b0ba3a86c5b56360 [file] [log] [blame]
William Kurkian1b363f42019-03-12 15:28:12 -04001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/inter_container.proto
3
William Kurkianad745652019-03-20 08:45:51 -04004package inter_container
William Kurkian1b363f42019-03-12 15:28:12 -04005
William Kurkianad745652019-03-20 08:45:51 -04006import (
7 fmt "fmt"
8 proto "github.com/golang/protobuf/proto"
khenaidoo5fc5cea2021-08-11 17:39:16 -04009 common "github.com/opencord/voltha-protos/v5/go/common"
10 openflow_13 "github.com/opencord/voltha-protos/v5/go/openflow_13"
11 openolt "github.com/opencord/voltha-protos/v5/go/openolt"
12 tech_profile "github.com/opencord/voltha-protos/v5/go/tech_profile"
13 voltha "github.com/opencord/voltha-protos/v5/go/voltha"
William Kurkianad745652019-03-20 08:45:51 -040014 math "math"
15)
William Kurkian1b363f42019-03-12 15:28:12 -040016
17// Reference imports to suppress errors if they are not otherwise used.
18var _ = proto.Marshal
19var _ = fmt.Errorf
20var _ = math.Inf
21
22// This is a compile-time assertion to ensure that this generated file
23// is compatible with the proto package it is being compiled against.
24// A compilation error at this line likely means your copy of the
25// proto package needs to be updated.
William Kurkianad745652019-03-20 08:45:51 -040026const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
William Kurkian1b363f42019-03-12 15:28:12 -040027
khenaidoo5fc5cea2021-08-11 17:39:16 -040028//
29// Core-Adapter messages
30// ****
31// ****
32// ****
33type AdapterRegistration struct {
34 Adapter *voltha.Adapter `protobuf:"bytes,1,opt,name=adapter,proto3" json:"adapter,omitempty"`
35 DTypes *voltha.DeviceTypes `protobuf:"bytes,2,opt,name=dTypes,proto3" json:"dTypes,omitempty"`
36 XXX_NoUnkeyedLiteral struct{} `json:"-"`
37 XXX_unrecognized []byte `json:"-"`
38 XXX_sizecache int32 `json:"-"`
William Kurkian1b363f42019-03-12 15:28:12 -040039}
William Kurkianad745652019-03-20 08:45:51 -040040
khenaidoo5fc5cea2021-08-11 17:39:16 -040041func (m *AdapterRegistration) Reset() { *m = AdapterRegistration{} }
42func (m *AdapterRegistration) String() string { return proto.CompactTextString(m) }
43func (*AdapterRegistration) ProtoMessage() {}
44func (*AdapterRegistration) Descriptor() ([]byte, []int) {
William Kurkianad745652019-03-20 08:45:51 -040045 return fileDescriptor_941f0031a549667f, []int{0}
William Kurkian1b363f42019-03-12 15:28:12 -040046}
47
khenaidoo5fc5cea2021-08-11 17:39:16 -040048func (m *AdapterRegistration) XXX_Unmarshal(b []byte) error {
49 return xxx_messageInfo_AdapterRegistration.Unmarshal(m, b)
50}
51func (m *AdapterRegistration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
52 return xxx_messageInfo_AdapterRegistration.Marshal(b, m, deterministic)
53}
54func (m *AdapterRegistration) XXX_Merge(src proto.Message) {
55 xxx_messageInfo_AdapterRegistration.Merge(m, src)
56}
57func (m *AdapterRegistration) XXX_Size() int {
58 return xxx_messageInfo_AdapterRegistration.Size(m)
59}
60func (m *AdapterRegistration) XXX_DiscardUnknown() {
61 xxx_messageInfo_AdapterRegistration.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -040062}
William Kurkianad745652019-03-20 08:45:51 -040063
khenaidoo5fc5cea2021-08-11 17:39:16 -040064var xxx_messageInfo_AdapterRegistration proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -040065
khenaidoo5fc5cea2021-08-11 17:39:16 -040066func (m *AdapterRegistration) GetAdapter() *voltha.Adapter {
William Kurkian1b363f42019-03-12 15:28:12 -040067 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -040068 return m.Adapter
William Kurkian1b363f42019-03-12 15:28:12 -040069 }
70 return nil
71}
72
khenaidoo5fc5cea2021-08-11 17:39:16 -040073func (m *AdapterRegistration) GetDTypes() *voltha.DeviceTypes {
74 if m != nil {
75 return m.DTypes
76 }
77 return nil
78}
79
80type ChildDeviceFilter struct {
81 ParentId string `protobuf:"bytes,1,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
82 SerialNumber string `protobuf:"bytes,2,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
83 OnuId uint32 `protobuf:"varint,3,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
84 ParentPortNo uint32 `protobuf:"varint,4,opt,name=parent_port_no,json=parentPortNo,proto3" json:"parent_port_no,omitempty"`
William Kurkian1b363f42019-03-12 15:28:12 -040085 XXX_NoUnkeyedLiteral struct{} `json:"-"`
86 XXX_unrecognized []byte `json:"-"`
87 XXX_sizecache int32 `json:"-"`
88}
89
khenaidoo5fc5cea2021-08-11 17:39:16 -040090func (m *ChildDeviceFilter) Reset() { *m = ChildDeviceFilter{} }
91func (m *ChildDeviceFilter) String() string { return proto.CompactTextString(m) }
92func (*ChildDeviceFilter) ProtoMessage() {}
93func (*ChildDeviceFilter) Descriptor() ([]byte, []int) {
94 return fileDescriptor_941f0031a549667f, []int{1}
95}
96
97func (m *ChildDeviceFilter) XXX_Unmarshal(b []byte) error {
98 return xxx_messageInfo_ChildDeviceFilter.Unmarshal(m, b)
99}
100func (m *ChildDeviceFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
101 return xxx_messageInfo_ChildDeviceFilter.Marshal(b, m, deterministic)
102}
103func (m *ChildDeviceFilter) XXX_Merge(src proto.Message) {
104 xxx_messageInfo_ChildDeviceFilter.Merge(m, src)
105}
106func (m *ChildDeviceFilter) XXX_Size() int {
107 return xxx_messageInfo_ChildDeviceFilter.Size(m)
108}
109func (m *ChildDeviceFilter) XXX_DiscardUnknown() {
110 xxx_messageInfo_ChildDeviceFilter.DiscardUnknown(m)
111}
112
113var xxx_messageInfo_ChildDeviceFilter proto.InternalMessageInfo
114
115func (m *ChildDeviceFilter) GetParentId() string {
116 if m != nil {
117 return m.ParentId
118 }
119 return ""
120}
121
122func (m *ChildDeviceFilter) GetSerialNumber() string {
123 if m != nil {
124 return m.SerialNumber
125 }
126 return ""
127}
128
129func (m *ChildDeviceFilter) GetOnuId() uint32 {
130 if m != nil {
131 return m.OnuId
132 }
133 return 0
134}
135
136func (m *ChildDeviceFilter) GetParentPortNo() uint32 {
137 if m != nil {
138 return m.ParentPortNo
139 }
140 return 0
141}
142
143type PortFilter struct {
144 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
145 Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
146 PortType voltha.Port_PortType `protobuf:"varint,3,opt,name=port_type,json=portType,proto3,enum=voltha.Port_PortType" json:"port_type,omitempty"`
147 XXX_NoUnkeyedLiteral struct{} `json:"-"`
148 XXX_unrecognized []byte `json:"-"`
149 XXX_sizecache int32 `json:"-"`
150}
151
152func (m *PortFilter) Reset() { *m = PortFilter{} }
153func (m *PortFilter) String() string { return proto.CompactTextString(m) }
154func (*PortFilter) ProtoMessage() {}
155func (*PortFilter) Descriptor() ([]byte, []int) {
156 return fileDescriptor_941f0031a549667f, []int{2}
157}
158
159func (m *PortFilter) XXX_Unmarshal(b []byte) error {
160 return xxx_messageInfo_PortFilter.Unmarshal(m, b)
161}
162func (m *PortFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
163 return xxx_messageInfo_PortFilter.Marshal(b, m, deterministic)
164}
165func (m *PortFilter) XXX_Merge(src proto.Message) {
166 xxx_messageInfo_PortFilter.Merge(m, src)
167}
168func (m *PortFilter) XXX_Size() int {
169 return xxx_messageInfo_PortFilter.Size(m)
170}
171func (m *PortFilter) XXX_DiscardUnknown() {
172 xxx_messageInfo_PortFilter.DiscardUnknown(m)
173}
174
175var xxx_messageInfo_PortFilter proto.InternalMessageInfo
176
177func (m *PortFilter) GetDeviceId() string {
178 if m != nil {
179 return m.DeviceId
180 }
181 return ""
182}
183
184func (m *PortFilter) GetPort() uint32 {
185 if m != nil {
186 return m.Port
187 }
188 return 0
189}
190
191func (m *PortFilter) GetPortType() voltha.Port_PortType {
192 if m != nil {
193 return m.PortType
194 }
195 return voltha.Port_UNKNOWN
196}
197
198type DeviceDiscovery struct {
199 ParentId string `protobuf:"bytes,1,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
200 ParentPortNo uint32 `protobuf:"varint,2,opt,name=parent_port_no,json=parentPortNo,proto3" json:"parent_port_no,omitempty"`
201 ChildDeviceType string `protobuf:"bytes,3,opt,name=child_device_type,json=childDeviceType,proto3" json:"child_device_type,omitempty"`
202 ChannelId uint32 `protobuf:"varint,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
203 VendorId string `protobuf:"bytes,5,opt,name=vendor_id,json=vendorId,proto3" json:"vendor_id,omitempty"`
204 SerialNumber string `protobuf:"bytes,6,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
205 OnuId uint32 `protobuf:"varint,7,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
206 XXX_NoUnkeyedLiteral struct{} `json:"-"`
207 XXX_unrecognized []byte `json:"-"`
208 XXX_sizecache int32 `json:"-"`
209}
210
211func (m *DeviceDiscovery) Reset() { *m = DeviceDiscovery{} }
212func (m *DeviceDiscovery) String() string { return proto.CompactTextString(m) }
213func (*DeviceDiscovery) ProtoMessage() {}
214func (*DeviceDiscovery) Descriptor() ([]byte, []int) {
215 return fileDescriptor_941f0031a549667f, []int{3}
216}
217
218func (m *DeviceDiscovery) XXX_Unmarshal(b []byte) error {
219 return xxx_messageInfo_DeviceDiscovery.Unmarshal(m, b)
220}
221func (m *DeviceDiscovery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
222 return xxx_messageInfo_DeviceDiscovery.Marshal(b, m, deterministic)
223}
224func (m *DeviceDiscovery) XXX_Merge(src proto.Message) {
225 xxx_messageInfo_DeviceDiscovery.Merge(m, src)
226}
227func (m *DeviceDiscovery) XXX_Size() int {
228 return xxx_messageInfo_DeviceDiscovery.Size(m)
229}
230func (m *DeviceDiscovery) XXX_DiscardUnknown() {
231 xxx_messageInfo_DeviceDiscovery.DiscardUnknown(m)
232}
233
234var xxx_messageInfo_DeviceDiscovery proto.InternalMessageInfo
235
236func (m *DeviceDiscovery) GetParentId() string {
237 if m != nil {
238 return m.ParentId
239 }
240 return ""
241}
242
243func (m *DeviceDiscovery) GetParentPortNo() uint32 {
244 if m != nil {
245 return m.ParentPortNo
246 }
247 return 0
248}
249
250func (m *DeviceDiscovery) GetChildDeviceType() string {
251 if m != nil {
252 return m.ChildDeviceType
253 }
254 return ""
255}
256
257func (m *DeviceDiscovery) GetChannelId() uint32 {
258 if m != nil {
259 return m.ChannelId
260 }
261 return 0
262}
263
264func (m *DeviceDiscovery) GetVendorId() string {
265 if m != nil {
266 return m.VendorId
267 }
268 return ""
269}
270
271func (m *DeviceDiscovery) GetSerialNumber() string {
272 if m != nil {
273 return m.SerialNumber
274 }
275 return ""
276}
277
278func (m *DeviceDiscovery) GetOnuId() uint32 {
279 if m != nil {
280 return m.OnuId
281 }
282 return 0
283}
284
285type DeviceStateFilter struct {
286 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
287 ParentDeviceId string `protobuf:"bytes,2,opt,name=parent_device_id,json=parentDeviceId,proto3" json:"parent_device_id,omitempty"`
288 OperStatus common.OperStatus_Types `protobuf:"varint,3,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
289 ConnStatus common.ConnectStatus_Types `protobuf:"varint,4,opt,name=conn_status,json=connStatus,proto3,enum=common.ConnectStatus_Types" json:"conn_status,omitempty"`
290 XXX_NoUnkeyedLiteral struct{} `json:"-"`
291 XXX_unrecognized []byte `json:"-"`
292 XXX_sizecache int32 `json:"-"`
293}
294
295func (m *DeviceStateFilter) Reset() { *m = DeviceStateFilter{} }
296func (m *DeviceStateFilter) String() string { return proto.CompactTextString(m) }
297func (*DeviceStateFilter) ProtoMessage() {}
298func (*DeviceStateFilter) Descriptor() ([]byte, []int) {
William Kurkianad745652019-03-20 08:45:51 -0400299 return fileDescriptor_941f0031a549667f, []int{4}
William Kurkian1b363f42019-03-12 15:28:12 -0400300}
William Kurkianad745652019-03-20 08:45:51 -0400301
khenaidoo5fc5cea2021-08-11 17:39:16 -0400302func (m *DeviceStateFilter) XXX_Unmarshal(b []byte) error {
303 return xxx_messageInfo_DeviceStateFilter.Unmarshal(m, b)
William Kurkian1b363f42019-03-12 15:28:12 -0400304}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400305func (m *DeviceStateFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
306 return xxx_messageInfo_DeviceStateFilter.Marshal(b, m, deterministic)
William Kurkian1b363f42019-03-12 15:28:12 -0400307}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400308func (m *DeviceStateFilter) XXX_Merge(src proto.Message) {
309 xxx_messageInfo_DeviceStateFilter.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400310}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400311func (m *DeviceStateFilter) XXX_Size() int {
312 return xxx_messageInfo_DeviceStateFilter.Size(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400313}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400314func (m *DeviceStateFilter) XXX_DiscardUnknown() {
315 xxx_messageInfo_DeviceStateFilter.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400316}
317
khenaidoo5fc5cea2021-08-11 17:39:16 -0400318var xxx_messageInfo_DeviceStateFilter proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -0400319
khenaidoo5fc5cea2021-08-11 17:39:16 -0400320func (m *DeviceStateFilter) GetDeviceId() string {
321 if m != nil {
322 return m.DeviceId
323 }
324 return ""
William Kurkian1b363f42019-03-12 15:28:12 -0400325}
326
khenaidoo5fc5cea2021-08-11 17:39:16 -0400327func (m *DeviceStateFilter) GetParentDeviceId() string {
328 if m != nil {
329 return m.ParentDeviceId
330 }
331 return ""
332}
333
334func (m *DeviceStateFilter) GetOperStatus() common.OperStatus_Types {
335 if m != nil {
336 return m.OperStatus
337 }
338 return common.OperStatus_UNKNOWN
339}
340
341func (m *DeviceStateFilter) GetConnStatus() common.ConnectStatus_Types {
342 if m != nil {
343 return m.ConnStatus
344 }
345 return common.ConnectStatus_UNKNOWN
346}
347
348type PortState struct {
349 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
350 PortType voltha.Port_PortType `protobuf:"varint,2,opt,name=port_type,json=portType,proto3,enum=voltha.Port_PortType" json:"port_type,omitempty"`
351 PortNo uint32 `protobuf:"varint,3,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"`
352 OperStatus common.OperStatus_Types `protobuf:"varint,4,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
353 XXX_NoUnkeyedLiteral struct{} `json:"-"`
354 XXX_unrecognized []byte `json:"-"`
355 XXX_sizecache int32 `json:"-"`
356}
357
358func (m *PortState) Reset() { *m = PortState{} }
359func (m *PortState) String() string { return proto.CompactTextString(m) }
360func (*PortState) ProtoMessage() {}
361func (*PortState) Descriptor() ([]byte, []int) {
William Kurkianad745652019-03-20 08:45:51 -0400362 return fileDescriptor_941f0031a549667f, []int{5}
William Kurkian1b363f42019-03-12 15:28:12 -0400363}
William Kurkianad745652019-03-20 08:45:51 -0400364
khenaidoo5fc5cea2021-08-11 17:39:16 -0400365func (m *PortState) XXX_Unmarshal(b []byte) error {
366 return xxx_messageInfo_PortState.Unmarshal(m, b)
William Kurkian1b363f42019-03-12 15:28:12 -0400367}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400368func (m *PortState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
369 return xxx_messageInfo_PortState.Marshal(b, m, deterministic)
William Kurkian1b363f42019-03-12 15:28:12 -0400370}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400371func (m *PortState) XXX_Merge(src proto.Message) {
372 xxx_messageInfo_PortState.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400373}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400374func (m *PortState) XXX_Size() int {
375 return xxx_messageInfo_PortState.Size(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400376}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400377func (m *PortState) XXX_DiscardUnknown() {
378 xxx_messageInfo_PortState.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400379}
380
khenaidoo5fc5cea2021-08-11 17:39:16 -0400381var xxx_messageInfo_PortState proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -0400382
khenaidoo5fc5cea2021-08-11 17:39:16 -0400383func (m *PortState) GetDeviceId() string {
William Kurkian1b363f42019-03-12 15:28:12 -0400384 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -0400385 return m.DeviceId
William Kurkian1b363f42019-03-12 15:28:12 -0400386 }
khenaidoo5fc5cea2021-08-11 17:39:16 -0400387 return ""
William Kurkian1b363f42019-03-12 15:28:12 -0400388}
389
khenaidoo5fc5cea2021-08-11 17:39:16 -0400390func (m *PortState) GetPortType() voltha.Port_PortType {
391 if m != nil {
392 return m.PortType
393 }
394 return voltha.Port_UNKNOWN
395}
396
397func (m *PortState) GetPortNo() uint32 {
398 if m != nil {
399 return m.PortNo
400 }
401 return 0
402}
403
404func (m *PortState) GetOperStatus() common.OperStatus_Types {
405 if m != nil {
406 return m.OperStatus
407 }
408 return common.OperStatus_UNKNOWN
409}
410
411type PortStateFilter struct {
412 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
413 PortTypeFilter uint32 `protobuf:"varint,2,opt,name=port_type_filter,json=portTypeFilter,proto3" json:"port_type_filter,omitempty"`
414 OperStatus common.OperStatus_Types `protobuf:"varint,4,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
415 XXX_NoUnkeyedLiteral struct{} `json:"-"`
416 XXX_unrecognized []byte `json:"-"`
417 XXX_sizecache int32 `json:"-"`
418}
419
420func (m *PortStateFilter) Reset() { *m = PortStateFilter{} }
421func (m *PortStateFilter) String() string { return proto.CompactTextString(m) }
422func (*PortStateFilter) ProtoMessage() {}
423func (*PortStateFilter) Descriptor() ([]byte, []int) {
424 return fileDescriptor_941f0031a549667f, []int{6}
425}
426
427func (m *PortStateFilter) XXX_Unmarshal(b []byte) error {
428 return xxx_messageInfo_PortStateFilter.Unmarshal(m, b)
429}
430func (m *PortStateFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
431 return xxx_messageInfo_PortStateFilter.Marshal(b, m, deterministic)
432}
433func (m *PortStateFilter) XXX_Merge(src proto.Message) {
434 xxx_messageInfo_PortStateFilter.Merge(m, src)
435}
436func (m *PortStateFilter) XXX_Size() int {
437 return xxx_messageInfo_PortStateFilter.Size(m)
438}
439func (m *PortStateFilter) XXX_DiscardUnknown() {
440 xxx_messageInfo_PortStateFilter.DiscardUnknown(m)
441}
442
443var xxx_messageInfo_PortStateFilter proto.InternalMessageInfo
444
445func (m *PortStateFilter) GetDeviceId() string {
446 if m != nil {
447 return m.DeviceId
448 }
449 return ""
450}
451
452func (m *PortStateFilter) GetPortTypeFilter() uint32 {
453 if m != nil {
454 return m.PortTypeFilter
455 }
456 return 0
457}
458
459func (m *PortStateFilter) GetOperStatus() common.OperStatus_Types {
460 if m != nil {
461 return m.OperStatus
462 }
463 return common.OperStatus_UNKNOWN
464}
465
466type PacketIn struct {
467 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
468 Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
469 Packet []byte `protobuf:"bytes,3,opt,name=packet,proto3" json:"packet,omitempty"`
470 XXX_NoUnkeyedLiteral struct{} `json:"-"`
471 XXX_unrecognized []byte `json:"-"`
472 XXX_sizecache int32 `json:"-"`
473}
474
475func (m *PacketIn) Reset() { *m = PacketIn{} }
476func (m *PacketIn) String() string { return proto.CompactTextString(m) }
477func (*PacketIn) ProtoMessage() {}
478func (*PacketIn) Descriptor() ([]byte, []int) {
479 return fileDescriptor_941f0031a549667f, []int{7}
480}
481
482func (m *PacketIn) XXX_Unmarshal(b []byte) error {
483 return xxx_messageInfo_PacketIn.Unmarshal(m, b)
484}
485func (m *PacketIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
486 return xxx_messageInfo_PacketIn.Marshal(b, m, deterministic)
487}
488func (m *PacketIn) XXX_Merge(src proto.Message) {
489 xxx_messageInfo_PacketIn.Merge(m, src)
490}
491func (m *PacketIn) XXX_Size() int {
492 return xxx_messageInfo_PacketIn.Size(m)
493}
494func (m *PacketIn) XXX_DiscardUnknown() {
495 xxx_messageInfo_PacketIn.DiscardUnknown(m)
496}
497
498var xxx_messageInfo_PacketIn proto.InternalMessageInfo
499
500func (m *PacketIn) GetDeviceId() string {
501 if m != nil {
502 return m.DeviceId
503 }
504 return ""
505}
506
507func (m *PacketIn) GetPort() uint32 {
508 if m != nil {
509 return m.Port
510 }
511 return 0
512}
513
514func (m *PacketIn) GetPacket() []byte {
515 if m != nil {
516 return m.Packet
517 }
518 return nil
519}
520
521type PacketOut struct {
522 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
523 EgressPortNo uint32 `protobuf:"varint,2,opt,name=egress_port_no,json=egressPortNo,proto3" json:"egress_port_no,omitempty"`
524 Packet *openflow_13.OfpPacketOut `protobuf:"bytes,3,opt,name=packet,proto3" json:"packet,omitempty"`
525 XXX_NoUnkeyedLiteral struct{} `json:"-"`
526 XXX_unrecognized []byte `json:"-"`
527 XXX_sizecache int32 `json:"-"`
528}
529
530func (m *PacketOut) Reset() { *m = PacketOut{} }
531func (m *PacketOut) String() string { return proto.CompactTextString(m) }
532func (*PacketOut) ProtoMessage() {}
533func (*PacketOut) Descriptor() ([]byte, []int) {
534 return fileDescriptor_941f0031a549667f, []int{8}
535}
536
537func (m *PacketOut) XXX_Unmarshal(b []byte) error {
538 return xxx_messageInfo_PacketOut.Unmarshal(m, b)
539}
540func (m *PacketOut) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
541 return xxx_messageInfo_PacketOut.Marshal(b, m, deterministic)
542}
543func (m *PacketOut) XXX_Merge(src proto.Message) {
544 xxx_messageInfo_PacketOut.Merge(m, src)
545}
546func (m *PacketOut) XXX_Size() int {
547 return xxx_messageInfo_PacketOut.Size(m)
548}
549func (m *PacketOut) XXX_DiscardUnknown() {
550 xxx_messageInfo_PacketOut.DiscardUnknown(m)
551}
552
553var xxx_messageInfo_PacketOut proto.InternalMessageInfo
554
555func (m *PacketOut) GetDeviceId() string {
556 if m != nil {
557 return m.DeviceId
558 }
559 return ""
560}
561
562func (m *PacketOut) GetEgressPortNo() uint32 {
563 if m != nil {
564 return m.EgressPortNo
565 }
566 return 0
567}
568
569func (m *PacketOut) GetPacket() *openflow_13.OfpPacketOut {
570 if m != nil {
571 return m.Packet
572 }
573 return nil
574}
575
576type DeviceReason struct {
577 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
578 Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
579 XXX_NoUnkeyedLiteral struct{} `json:"-"`
580 XXX_unrecognized []byte `json:"-"`
581 XXX_sizecache int32 `json:"-"`
582}
583
584func (m *DeviceReason) Reset() { *m = DeviceReason{} }
585func (m *DeviceReason) String() string { return proto.CompactTextString(m) }
586func (*DeviceReason) ProtoMessage() {}
587func (*DeviceReason) Descriptor() ([]byte, []int) {
588 return fileDescriptor_941f0031a549667f, []int{9}
589}
590
591func (m *DeviceReason) XXX_Unmarshal(b []byte) error {
592 return xxx_messageInfo_DeviceReason.Unmarshal(m, b)
593}
594func (m *DeviceReason) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
595 return xxx_messageInfo_DeviceReason.Marshal(b, m, deterministic)
596}
597func (m *DeviceReason) XXX_Merge(src proto.Message) {
598 xxx_messageInfo_DeviceReason.Merge(m, src)
599}
600func (m *DeviceReason) XXX_Size() int {
601 return xxx_messageInfo_DeviceReason.Size(m)
602}
603func (m *DeviceReason) XXX_DiscardUnknown() {
604 xxx_messageInfo_DeviceReason.DiscardUnknown(m)
605}
606
607var xxx_messageInfo_DeviceReason proto.InternalMessageInfo
608
609func (m *DeviceReason) GetDeviceId() string {
610 if m != nil {
611 return m.DeviceId
612 }
613 return ""
614}
615
616func (m *DeviceReason) GetReason() string {
William Kurkian1b363f42019-03-12 15:28:12 -0400617 if m != nil {
618 return m.Reason
619 }
620 return ""
621}
622
khenaidoo5fc5cea2021-08-11 17:39:16 -0400623type BulkFlows struct {
624 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
625 Flows *openflow_13.Flows `protobuf:"bytes,2,opt,name=flows,proto3" json:"flows,omitempty"`
626 Groups *openflow_13.FlowGroups `protobuf:"bytes,3,opt,name=groups,proto3" json:"groups,omitempty"`
627 FlowMetadata *voltha.FlowMetadata `protobuf:"bytes,4,opt,name=flow_metadata,json=flowMetadata,proto3" json:"flow_metadata,omitempty"`
628 XXX_NoUnkeyedLiteral struct{} `json:"-"`
629 XXX_unrecognized []byte `json:"-"`
630 XXX_sizecache int32 `json:"-"`
William Kurkian1b363f42019-03-12 15:28:12 -0400631}
632
khenaidoo5fc5cea2021-08-11 17:39:16 -0400633func (m *BulkFlows) Reset() { *m = BulkFlows{} }
634func (m *BulkFlows) String() string { return proto.CompactTextString(m) }
635func (*BulkFlows) ProtoMessage() {}
636func (*BulkFlows) Descriptor() ([]byte, []int) {
William Kurkianad745652019-03-20 08:45:51 -0400637 return fileDescriptor_941f0031a549667f, []int{10}
William Kurkian1b363f42019-03-12 15:28:12 -0400638}
William Kurkianad745652019-03-20 08:45:51 -0400639
khenaidoo5fc5cea2021-08-11 17:39:16 -0400640func (m *BulkFlows) XXX_Unmarshal(b []byte) error {
641 return xxx_messageInfo_BulkFlows.Unmarshal(m, b)
William Kurkian1b363f42019-03-12 15:28:12 -0400642}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400643func (m *BulkFlows) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
644 return xxx_messageInfo_BulkFlows.Marshal(b, m, deterministic)
William Kurkian1b363f42019-03-12 15:28:12 -0400645}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400646func (m *BulkFlows) XXX_Merge(src proto.Message) {
647 xxx_messageInfo_BulkFlows.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400648}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400649func (m *BulkFlows) XXX_Size() int {
650 return xxx_messageInfo_BulkFlows.Size(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400651}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400652func (m *BulkFlows) XXX_DiscardUnknown() {
653 xxx_messageInfo_BulkFlows.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400654}
655
khenaidoo5fc5cea2021-08-11 17:39:16 -0400656var xxx_messageInfo_BulkFlows proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -0400657
khenaidoo5fc5cea2021-08-11 17:39:16 -0400658func (m *BulkFlows) GetDevice() *voltha.Device {
William Kurkian1b363f42019-03-12 15:28:12 -0400659 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -0400660 return m.Device
William Kurkian1b363f42019-03-12 15:28:12 -0400661 }
khenaidoo5fc5cea2021-08-11 17:39:16 -0400662 return nil
William Kurkian1b363f42019-03-12 15:28:12 -0400663}
664
khenaidoo5fc5cea2021-08-11 17:39:16 -0400665func (m *BulkFlows) GetFlows() *openflow_13.Flows {
William Kurkian1b363f42019-03-12 15:28:12 -0400666 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -0400667 return m.Flows
668 }
669 return nil
670}
671
672func (m *BulkFlows) GetGroups() *openflow_13.FlowGroups {
673 if m != nil {
674 return m.Groups
675 }
676 return nil
677}
678
679func (m *BulkFlows) GetFlowMetadata() *voltha.FlowMetadata {
680 if m != nil {
681 return m.FlowMetadata
682 }
683 return nil
684}
685
686type IncrementalFlows struct {
687 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
688 Flows *openflow_13.FlowChanges `protobuf:"bytes,2,opt,name=flows,proto3" json:"flows,omitempty"`
689 Groups *openflow_13.FlowGroupChanges `protobuf:"bytes,3,opt,name=groups,proto3" json:"groups,omitempty"`
690 FlowMetadata *voltha.FlowMetadata `protobuf:"bytes,4,opt,name=flow_metadata,json=flowMetadata,proto3" json:"flow_metadata,omitempty"`
691 XXX_NoUnkeyedLiteral struct{} `json:"-"`
692 XXX_unrecognized []byte `json:"-"`
693 XXX_sizecache int32 `json:"-"`
694}
695
696func (m *IncrementalFlows) Reset() { *m = IncrementalFlows{} }
697func (m *IncrementalFlows) String() string { return proto.CompactTextString(m) }
698func (*IncrementalFlows) ProtoMessage() {}
699func (*IncrementalFlows) Descriptor() ([]byte, []int) {
700 return fileDescriptor_941f0031a549667f, []int{11}
701}
702
703func (m *IncrementalFlows) XXX_Unmarshal(b []byte) error {
704 return xxx_messageInfo_IncrementalFlows.Unmarshal(m, b)
705}
706func (m *IncrementalFlows) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
707 return xxx_messageInfo_IncrementalFlows.Marshal(b, m, deterministic)
708}
709func (m *IncrementalFlows) XXX_Merge(src proto.Message) {
710 xxx_messageInfo_IncrementalFlows.Merge(m, src)
711}
712func (m *IncrementalFlows) XXX_Size() int {
713 return xxx_messageInfo_IncrementalFlows.Size(m)
714}
715func (m *IncrementalFlows) XXX_DiscardUnknown() {
716 xxx_messageInfo_IncrementalFlows.DiscardUnknown(m)
717}
718
719var xxx_messageInfo_IncrementalFlows proto.InternalMessageInfo
720
721func (m *IncrementalFlows) GetDevice() *voltha.Device {
722 if m != nil {
723 return m.Device
724 }
725 return nil
726}
727
728func (m *IncrementalFlows) GetFlows() *openflow_13.FlowChanges {
729 if m != nil {
730 return m.Flows
731 }
732 return nil
733}
734
735func (m *IncrementalFlows) GetGroups() *openflow_13.FlowGroupChanges {
736 if m != nil {
737 return m.Groups
738 }
739 return nil
740}
741
742func (m *IncrementalFlows) GetFlowMetadata() *voltha.FlowMetadata {
743 if m != nil {
744 return m.FlowMetadata
745 }
746 return nil
747}
748
749type PmConfigsInfo struct {
750 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
751 PmConfigs *voltha.PmConfigs `protobuf:"bytes,2,opt,name=pm_configs,json=pmConfigs,proto3" json:"pm_configs,omitempty"`
752 XXX_NoUnkeyedLiteral struct{} `json:"-"`
753 XXX_unrecognized []byte `json:"-"`
754 XXX_sizecache int32 `json:"-"`
755}
756
757func (m *PmConfigsInfo) Reset() { *m = PmConfigsInfo{} }
758func (m *PmConfigsInfo) String() string { return proto.CompactTextString(m) }
759func (*PmConfigsInfo) ProtoMessage() {}
760func (*PmConfigsInfo) Descriptor() ([]byte, []int) {
761 return fileDescriptor_941f0031a549667f, []int{12}
762}
763
764func (m *PmConfigsInfo) XXX_Unmarshal(b []byte) error {
765 return xxx_messageInfo_PmConfigsInfo.Unmarshal(m, b)
766}
767func (m *PmConfigsInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
768 return xxx_messageInfo_PmConfigsInfo.Marshal(b, m, deterministic)
769}
770func (m *PmConfigsInfo) XXX_Merge(src proto.Message) {
771 xxx_messageInfo_PmConfigsInfo.Merge(m, src)
772}
773func (m *PmConfigsInfo) XXX_Size() int {
774 return xxx_messageInfo_PmConfigsInfo.Size(m)
775}
776func (m *PmConfigsInfo) XXX_DiscardUnknown() {
777 xxx_messageInfo_PmConfigsInfo.DiscardUnknown(m)
778}
779
780var xxx_messageInfo_PmConfigsInfo proto.InternalMessageInfo
781
782func (m *PmConfigsInfo) GetDeviceId() string {
783 if m != nil {
784 return m.DeviceId
785 }
786 return ""
787}
788
789func (m *PmConfigsInfo) GetPmConfigs() *voltha.PmConfigs {
790 if m != nil {
791 return m.PmConfigs
William Kurkian1b363f42019-03-12 15:28:12 -0400792 }
793 return nil
794}
795
796type SwitchCapability struct {
797 Desc *openflow_13.OfpDesc `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc,omitempty"`
798 SwitchFeatures *openflow_13.OfpSwitchFeatures `protobuf:"bytes,2,opt,name=switch_features,json=switchFeatures,proto3" json:"switch_features,omitempty"`
799 XXX_NoUnkeyedLiteral struct{} `json:"-"`
800 XXX_unrecognized []byte `json:"-"`
801 XXX_sizecache int32 `json:"-"`
802}
803
804func (m *SwitchCapability) Reset() { *m = SwitchCapability{} }
805func (m *SwitchCapability) String() string { return proto.CompactTextString(m) }
806func (*SwitchCapability) ProtoMessage() {}
807func (*SwitchCapability) Descriptor() ([]byte, []int) {
khenaidoo5fc5cea2021-08-11 17:39:16 -0400808 return fileDescriptor_941f0031a549667f, []int{13}
William Kurkian1b363f42019-03-12 15:28:12 -0400809}
William Kurkianad745652019-03-20 08:45:51 -0400810
William Kurkian1b363f42019-03-12 15:28:12 -0400811func (m *SwitchCapability) XXX_Unmarshal(b []byte) error {
812 return xxx_messageInfo_SwitchCapability.Unmarshal(m, b)
813}
814func (m *SwitchCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
815 return xxx_messageInfo_SwitchCapability.Marshal(b, m, deterministic)
816}
William Kurkianad745652019-03-20 08:45:51 -0400817func (m *SwitchCapability) XXX_Merge(src proto.Message) {
818 xxx_messageInfo_SwitchCapability.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400819}
820func (m *SwitchCapability) XXX_Size() int {
821 return xxx_messageInfo_SwitchCapability.Size(m)
822}
823func (m *SwitchCapability) XXX_DiscardUnknown() {
824 xxx_messageInfo_SwitchCapability.DiscardUnknown(m)
825}
826
827var xxx_messageInfo_SwitchCapability proto.InternalMessageInfo
828
829func (m *SwitchCapability) GetDesc() *openflow_13.OfpDesc {
830 if m != nil {
831 return m.Desc
832 }
833 return nil
834}
835
836func (m *SwitchCapability) GetSwitchFeatures() *openflow_13.OfpSwitchFeatures {
837 if m != nil {
838 return m.SwitchFeatures
839 }
840 return nil
841}
842
khenaidoo5fc5cea2021-08-11 17:39:16 -0400843type ImageDownloadMessage struct {
844 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
845 Image *voltha.ImageDownload `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
846 XXX_NoUnkeyedLiteral struct{} `json:"-"`
847 XXX_unrecognized []byte `json:"-"`
848 XXX_sizecache int32 `json:"-"`
William Kurkian1b363f42019-03-12 15:28:12 -0400849}
850
khenaidoo5fc5cea2021-08-11 17:39:16 -0400851func (m *ImageDownloadMessage) Reset() { *m = ImageDownloadMessage{} }
852func (m *ImageDownloadMessage) String() string { return proto.CompactTextString(m) }
853func (*ImageDownloadMessage) ProtoMessage() {}
854func (*ImageDownloadMessage) Descriptor() ([]byte, []int) {
khenaidooce41ea42020-06-09 18:10:16 -0400855 return fileDescriptor_941f0031a549667f, []int{14}
William Kurkian1b363f42019-03-12 15:28:12 -0400856}
William Kurkianad745652019-03-20 08:45:51 -0400857
khenaidoo5fc5cea2021-08-11 17:39:16 -0400858func (m *ImageDownloadMessage) XXX_Unmarshal(b []byte) error {
859 return xxx_messageInfo_ImageDownloadMessage.Unmarshal(m, b)
William Kurkian1b363f42019-03-12 15:28:12 -0400860}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400861func (m *ImageDownloadMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
862 return xxx_messageInfo_ImageDownloadMessage.Marshal(b, m, deterministic)
William Kurkian1b363f42019-03-12 15:28:12 -0400863}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400864func (m *ImageDownloadMessage) XXX_Merge(src proto.Message) {
865 xxx_messageInfo_ImageDownloadMessage.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400866}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400867func (m *ImageDownloadMessage) XXX_Size() int {
868 return xxx_messageInfo_ImageDownloadMessage.Size(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400869}
khenaidoo5fc5cea2021-08-11 17:39:16 -0400870func (m *ImageDownloadMessage) XXX_DiscardUnknown() {
871 xxx_messageInfo_ImageDownloadMessage.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -0400872}
873
khenaidoo5fc5cea2021-08-11 17:39:16 -0400874var xxx_messageInfo_ImageDownloadMessage proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -0400875
khenaidoo5fc5cea2021-08-11 17:39:16 -0400876func (m *ImageDownloadMessage) GetDevice() *voltha.Device {
William Kurkian1b363f42019-03-12 15:28:12 -0400877 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -0400878 return m.Device
William Kurkian1b363f42019-03-12 15:28:12 -0400879 }
Scott Baker06cb92d2020-04-16 10:05:23 -0700880 return nil
William Kurkian1b363f42019-03-12 15:28:12 -0400881}
882
khenaidoo5fc5cea2021-08-11 17:39:16 -0400883func (m *ImageDownloadMessage) GetImage() *voltha.ImageDownload {
884 if m != nil {
885 return m.Image
886 }
887 return nil
888}
889
890type OMCITest struct {
891 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
892 Request *voltha.OmciTestRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
893 XXX_NoUnkeyedLiteral struct{} `json:"-"`
894 XXX_unrecognized []byte `json:"-"`
895 XXX_sizecache int32 `json:"-"`
896}
897
898func (m *OMCITest) Reset() { *m = OMCITest{} }
899func (m *OMCITest) String() string { return proto.CompactTextString(m) }
900func (*OMCITest) ProtoMessage() {}
901func (*OMCITest) Descriptor() ([]byte, []int) {
902 return fileDescriptor_941f0031a549667f, []int{15}
903}
904
905func (m *OMCITest) XXX_Unmarshal(b []byte) error {
906 return xxx_messageInfo_OMCITest.Unmarshal(m, b)
907}
908func (m *OMCITest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
909 return xxx_messageInfo_OMCITest.Marshal(b, m, deterministic)
910}
911func (m *OMCITest) XXX_Merge(src proto.Message) {
912 xxx_messageInfo_OMCITest.Merge(m, src)
913}
914func (m *OMCITest) XXX_Size() int {
915 return xxx_messageInfo_OMCITest.Size(m)
916}
917func (m *OMCITest) XXX_DiscardUnknown() {
918 xxx_messageInfo_OMCITest.DiscardUnknown(m)
919}
920
921var xxx_messageInfo_OMCITest proto.InternalMessageInfo
922
923func (m *OMCITest) GetDevice() *voltha.Device {
924 if m != nil {
925 return m.Device
926 }
927 return nil
928}
929
930func (m *OMCITest) GetRequest() *voltha.OmciTestRequest {
931 if m != nil {
932 return m.Request
933 }
934 return nil
935}
936
937type SimulateAlarmMessage struct {
938 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
939 Request *voltha.SimulateAlarmRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
940 XXX_NoUnkeyedLiteral struct{} `json:"-"`
941 XXX_unrecognized []byte `json:"-"`
942 XXX_sizecache int32 `json:"-"`
943}
944
945func (m *SimulateAlarmMessage) Reset() { *m = SimulateAlarmMessage{} }
946func (m *SimulateAlarmMessage) String() string { return proto.CompactTextString(m) }
947func (*SimulateAlarmMessage) ProtoMessage() {}
948func (*SimulateAlarmMessage) Descriptor() ([]byte, []int) {
949 return fileDescriptor_941f0031a549667f, []int{16}
950}
951
952func (m *SimulateAlarmMessage) XXX_Unmarshal(b []byte) error {
953 return xxx_messageInfo_SimulateAlarmMessage.Unmarshal(m, b)
954}
955func (m *SimulateAlarmMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
956 return xxx_messageInfo_SimulateAlarmMessage.Marshal(b, m, deterministic)
957}
958func (m *SimulateAlarmMessage) XXX_Merge(src proto.Message) {
959 xxx_messageInfo_SimulateAlarmMessage.Merge(m, src)
960}
961func (m *SimulateAlarmMessage) XXX_Size() int {
962 return xxx_messageInfo_SimulateAlarmMessage.Size(m)
963}
964func (m *SimulateAlarmMessage) XXX_DiscardUnknown() {
965 xxx_messageInfo_SimulateAlarmMessage.DiscardUnknown(m)
966}
967
968var xxx_messageInfo_SimulateAlarmMessage proto.InternalMessageInfo
969
970func (m *SimulateAlarmMessage) GetDevice() *voltha.Device {
971 if m != nil {
972 return m.Device
973 }
974 return nil
975}
976
977func (m *SimulateAlarmMessage) GetRequest() *voltha.SimulateAlarmRequest {
978 if m != nil {
979 return m.Request
980 }
981 return nil
982}
983
984type GetExtValueMessage struct {
985 ParentDevice *voltha.Device `protobuf:"bytes,1,opt,name=parent_device,json=parentDevice,proto3" json:"parent_device,omitempty"`
986 ChildDevice *voltha.Device `protobuf:"bytes,2,opt,name=child_device,json=childDevice,proto3" json:"child_device,omitempty"`
987 ValueType common.ValueType_Type `protobuf:"varint,3,opt,name=value_type,json=valueType,proto3,enum=common.ValueType_Type" json:"value_type,omitempty"`
988 XXX_NoUnkeyedLiteral struct{} `json:"-"`
989 XXX_unrecognized []byte `json:"-"`
990 XXX_sizecache int32 `json:"-"`
991}
992
993func (m *GetExtValueMessage) Reset() { *m = GetExtValueMessage{} }
994func (m *GetExtValueMessage) String() string { return proto.CompactTextString(m) }
995func (*GetExtValueMessage) ProtoMessage() {}
996func (*GetExtValueMessage) Descriptor() ([]byte, []int) {
997 return fileDescriptor_941f0031a549667f, []int{17}
998}
999
1000func (m *GetExtValueMessage) XXX_Unmarshal(b []byte) error {
1001 return xxx_messageInfo_GetExtValueMessage.Unmarshal(m, b)
1002}
1003func (m *GetExtValueMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1004 return xxx_messageInfo_GetExtValueMessage.Marshal(b, m, deterministic)
1005}
1006func (m *GetExtValueMessage) XXX_Merge(src proto.Message) {
1007 xxx_messageInfo_GetExtValueMessage.Merge(m, src)
1008}
1009func (m *GetExtValueMessage) XXX_Size() int {
1010 return xxx_messageInfo_GetExtValueMessage.Size(m)
1011}
1012func (m *GetExtValueMessage) XXX_DiscardUnknown() {
1013 xxx_messageInfo_GetExtValueMessage.DiscardUnknown(m)
1014}
1015
1016var xxx_messageInfo_GetExtValueMessage proto.InternalMessageInfo
1017
1018func (m *GetExtValueMessage) GetParentDevice() *voltha.Device {
1019 if m != nil {
1020 return m.ParentDevice
1021 }
1022 return nil
1023}
1024
1025func (m *GetExtValueMessage) GetChildDevice() *voltha.Device {
1026 if m != nil {
1027 return m.ChildDevice
1028 }
1029 return nil
1030}
1031
1032func (m *GetExtValueMessage) GetValueType() common.ValueType_Type {
1033 if m != nil {
1034 return m.ValueType
1035 }
1036 return common.ValueType_EMPTY
1037}
1038
1039type SetExtValueMessage struct {
1040 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
1041 Value *voltha.ValueSet `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
1042 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1043 XXX_unrecognized []byte `json:"-"`
1044 XXX_sizecache int32 `json:"-"`
1045}
1046
1047func (m *SetExtValueMessage) Reset() { *m = SetExtValueMessage{} }
1048func (m *SetExtValueMessage) String() string { return proto.CompactTextString(m) }
1049func (*SetExtValueMessage) ProtoMessage() {}
1050func (*SetExtValueMessage) Descriptor() ([]byte, []int) {
1051 return fileDescriptor_941f0031a549667f, []int{18}
1052}
1053
1054func (m *SetExtValueMessage) XXX_Unmarshal(b []byte) error {
1055 return xxx_messageInfo_SetExtValueMessage.Unmarshal(m, b)
1056}
1057func (m *SetExtValueMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1058 return xxx_messageInfo_SetExtValueMessage.Marshal(b, m, deterministic)
1059}
1060func (m *SetExtValueMessage) XXX_Merge(src proto.Message) {
1061 xxx_messageInfo_SetExtValueMessage.Merge(m, src)
1062}
1063func (m *SetExtValueMessage) XXX_Size() int {
1064 return xxx_messageInfo_SetExtValueMessage.Size(m)
1065}
1066func (m *SetExtValueMessage) XXX_DiscardUnknown() {
1067 xxx_messageInfo_SetExtValueMessage.DiscardUnknown(m)
1068}
1069
1070var xxx_messageInfo_SetExtValueMessage proto.InternalMessageInfo
1071
1072func (m *SetExtValueMessage) GetDevice() *voltha.Device {
1073 if m != nil {
1074 return m.Device
1075 }
1076 return nil
1077}
1078
1079func (m *SetExtValueMessage) GetValue() *voltha.ValueSet {
1080 if m != nil {
1081 return m.Value
1082 }
1083 return nil
1084}
1085
1086type OmciMessage struct {
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +03001087 Message []byte `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
1088 ConnectStatus common.ConnectStatus_Types `protobuf:"varint,2,opt,name=connect_status,json=connectStatus,proto3,enum=common.ConnectStatus_Types" json:"connect_status,omitempty"`
1089 ProxyAddress *voltha.Device_ProxyAddress `protobuf:"bytes,3,opt,name=proxy_address,json=proxyAddress,proto3" json:"proxy_address,omitempty"`
khenaidoo5fc5cea2021-08-11 17:39:16 -04001090 ParentDeviceId string `protobuf:"bytes,4,opt,name=parent_device_id,json=parentDeviceId,proto3" json:"parent_device_id,omitempty"`
1091 ChildDeviceId string `protobuf:"bytes,5,opt,name=child_device_id,json=childDeviceId,proto3" json:"child_device_id,omitempty"`
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +03001092 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1093 XXX_unrecognized []byte `json:"-"`
1094 XXX_sizecache int32 `json:"-"`
William Kurkian1b363f42019-03-12 15:28:12 -04001095}
1096
khenaidoo5fc5cea2021-08-11 17:39:16 -04001097func (m *OmciMessage) Reset() { *m = OmciMessage{} }
1098func (m *OmciMessage) String() string { return proto.CompactTextString(m) }
1099func (*OmciMessage) ProtoMessage() {}
1100func (*OmciMessage) Descriptor() ([]byte, []int) {
1101 return fileDescriptor_941f0031a549667f, []int{19}
William Kurkian1b363f42019-03-12 15:28:12 -04001102}
William Kurkianad745652019-03-20 08:45:51 -04001103
khenaidoo5fc5cea2021-08-11 17:39:16 -04001104func (m *OmciMessage) XXX_Unmarshal(b []byte) error {
1105 return xxx_messageInfo_OmciMessage.Unmarshal(m, b)
William Kurkian1b363f42019-03-12 15:28:12 -04001106}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001107func (m *OmciMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1108 return xxx_messageInfo_OmciMessage.Marshal(b, m, deterministic)
William Kurkian1b363f42019-03-12 15:28:12 -04001109}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001110func (m *OmciMessage) XXX_Merge(src proto.Message) {
1111 xxx_messageInfo_OmciMessage.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -04001112}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001113func (m *OmciMessage) XXX_Size() int {
1114 return xxx_messageInfo_OmciMessage.Size(m)
William Kurkian1b363f42019-03-12 15:28:12 -04001115}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001116func (m *OmciMessage) XXX_DiscardUnknown() {
1117 xxx_messageInfo_OmciMessage.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -04001118}
1119
khenaidoo5fc5cea2021-08-11 17:39:16 -04001120var xxx_messageInfo_OmciMessage proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -04001121
khenaidoo5fc5cea2021-08-11 17:39:16 -04001122func (m *OmciMessage) GetMessage() []byte {
William Kurkian1b363f42019-03-12 15:28:12 -04001123 if m != nil {
1124 return m.Message
1125 }
1126 return nil
1127}
1128
khenaidoo5fc5cea2021-08-11 17:39:16 -04001129func (m *OmciMessage) GetConnectStatus() common.ConnectStatus_Types {
Mahir Gunyel4b0dab22019-05-16 13:56:09 -07001130 if m != nil {
1131 return m.ConnectStatus
1132 }
1133 return common.ConnectStatus_UNKNOWN
1134}
1135
khenaidoo5fc5cea2021-08-11 17:39:16 -04001136func (m *OmciMessage) GetProxyAddress() *voltha.Device_ProxyAddress {
Mahir Gunyel4b0dab22019-05-16 13:56:09 -07001137 if m != nil {
1138 return m.ProxyAddress
1139 }
1140 return nil
1141}
1142
khenaidoo5fc5cea2021-08-11 17:39:16 -04001143func (m *OmciMessage) GetParentDeviceId() string {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001144 if m != nil {
1145 return m.ParentDeviceId
1146 }
1147 return ""
1148}
1149
khenaidoo5fc5cea2021-08-11 17:39:16 -04001150func (m *OmciMessage) GetChildDeviceId() string {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001151 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -04001152 return m.ChildDeviceId
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001153 }
khenaidoo5fc5cea2021-08-11 17:39:16 -04001154 return ""
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001155}
1156
khenaidoo5fc5cea2021-08-11 17:39:16 -04001157type TechProfileDownloadMessage struct {
1158 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
1159 UniId uint32 `protobuf:"varint,2,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"`
1160 TpInstancePath string `protobuf:"bytes,3,opt,name=tp_instance_path,json=tpInstancePath,proto3" json:"tp_instance_path,omitempty"`
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001161 // Types that are valid to be assigned to TechTpInstance:
khenaidoo5fc5cea2021-08-11 17:39:16 -04001162 // *TechProfileDownloadMessage_TpInstance
1163 // *TechProfileDownloadMessage_EponTpInstance
1164 TechTpInstance isTechProfileDownloadMessage_TechTpInstance `protobuf_oneof:"tech_tp_instance"`
1165 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1166 XXX_unrecognized []byte `json:"-"`
1167 XXX_sizecache int32 `json:"-"`
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001168}
1169
khenaidoo5fc5cea2021-08-11 17:39:16 -04001170func (m *TechProfileDownloadMessage) Reset() { *m = TechProfileDownloadMessage{} }
1171func (m *TechProfileDownloadMessage) String() string { return proto.CompactTextString(m) }
1172func (*TechProfileDownloadMessage) ProtoMessage() {}
1173func (*TechProfileDownloadMessage) Descriptor() ([]byte, []int) {
1174 return fileDescriptor_941f0031a549667f, []int{20}
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001175}
1176
khenaidoo5fc5cea2021-08-11 17:39:16 -04001177func (m *TechProfileDownloadMessage) XXX_Unmarshal(b []byte) error {
1178 return xxx_messageInfo_TechProfileDownloadMessage.Unmarshal(m, b)
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001179}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001180func (m *TechProfileDownloadMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1181 return xxx_messageInfo_TechProfileDownloadMessage.Marshal(b, m, deterministic)
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001182}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001183func (m *TechProfileDownloadMessage) XXX_Merge(src proto.Message) {
1184 xxx_messageInfo_TechProfileDownloadMessage.Merge(m, src)
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001185}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001186func (m *TechProfileDownloadMessage) XXX_Size() int {
1187 return xxx_messageInfo_TechProfileDownloadMessage.Size(m)
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001188}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001189func (m *TechProfileDownloadMessage) XXX_DiscardUnknown() {
1190 xxx_messageInfo_TechProfileDownloadMessage.DiscardUnknown(m)
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001191}
1192
khenaidoo5fc5cea2021-08-11 17:39:16 -04001193var xxx_messageInfo_TechProfileDownloadMessage proto.InternalMessageInfo
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001194
khenaidoo5fc5cea2021-08-11 17:39:16 -04001195func (m *TechProfileDownloadMessage) GetDeviceId() string {
1196 if m != nil {
1197 return m.DeviceId
1198 }
1199 return ""
1200}
1201
1202func (m *TechProfileDownloadMessage) GetUniId() uint32 {
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001203 if m != nil {
1204 return m.UniId
1205 }
1206 return 0
1207}
1208
khenaidoo5fc5cea2021-08-11 17:39:16 -04001209func (m *TechProfileDownloadMessage) GetTpInstancePath() string {
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001210 if m != nil {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001211 return m.TpInstancePath
Matt Jeanneret15249fa2019-04-12 20:25:31 -04001212 }
1213 return ""
1214}
1215
khenaidoo5fc5cea2021-08-11 17:39:16 -04001216type isTechProfileDownloadMessage_TechTpInstance interface {
1217 isTechProfileDownloadMessage_TechTpInstance()
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001218}
1219
khenaidoo5fc5cea2021-08-11 17:39:16 -04001220type TechProfileDownloadMessage_TpInstance struct {
1221 TpInstance *tech_profile.TechProfileInstance `protobuf:"bytes,4,opt,name=tp_instance,json=tpInstance,proto3,oneof"`
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001222}
1223
khenaidoo5fc5cea2021-08-11 17:39:16 -04001224type TechProfileDownloadMessage_EponTpInstance struct {
1225 EponTpInstance *tech_profile.EponTechProfileInstance `protobuf:"bytes,5,opt,name=epon_tp_instance,json=eponTpInstance,proto3,oneof"`
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001226}
1227
khenaidoo5fc5cea2021-08-11 17:39:16 -04001228func (*TechProfileDownloadMessage_TpInstance) isTechProfileDownloadMessage_TechTpInstance() {}
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001229
khenaidoo5fc5cea2021-08-11 17:39:16 -04001230func (*TechProfileDownloadMessage_EponTpInstance) isTechProfileDownloadMessage_TechTpInstance() {}
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001231
khenaidoo5fc5cea2021-08-11 17:39:16 -04001232func (m *TechProfileDownloadMessage) GetTechTpInstance() isTechProfileDownloadMessage_TechTpInstance {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001233 if m != nil {
1234 return m.TechTpInstance
1235 }
1236 return nil
1237}
1238
khenaidoo5fc5cea2021-08-11 17:39:16 -04001239func (m *TechProfileDownloadMessage) GetTpInstance() *tech_profile.TechProfileInstance {
1240 if x, ok := m.GetTechTpInstance().(*TechProfileDownloadMessage_TpInstance); ok {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001241 return x.TpInstance
1242 }
1243 return nil
1244}
1245
khenaidoo5fc5cea2021-08-11 17:39:16 -04001246func (m *TechProfileDownloadMessage) GetEponTpInstance() *tech_profile.EponTechProfileInstance {
1247 if x, ok := m.GetTechTpInstance().(*TechProfileDownloadMessage_EponTpInstance); ok {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001248 return x.EponTpInstance
1249 }
1250 return nil
1251}
1252
1253// XXX_OneofWrappers is for the internal use of the proto package.
khenaidoo5fc5cea2021-08-11 17:39:16 -04001254func (*TechProfileDownloadMessage) XXX_OneofWrappers() []interface{} {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001255 return []interface{}{
khenaidoo5fc5cea2021-08-11 17:39:16 -04001256 (*TechProfileDownloadMessage_TpInstance)(nil),
1257 (*TechProfileDownloadMessage_EponTpInstance)(nil),
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001258 }
1259}
1260
khenaidoo5fc5cea2021-08-11 17:39:16 -04001261type DeleteGemPortMessage struct {
1262 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
1263 UniId uint32 `protobuf:"varint,2,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"`
1264 TpInstancePath string `protobuf:"bytes,3,opt,name=tp_instance_path,json=tpInstancePath,proto3" json:"tp_instance_path,omitempty"`
1265 GemPortId uint32 `protobuf:"varint,4,opt,name=gem_port_id,json=gemPortId,proto3" json:"gem_port_id,omitempty"`
Girish Gowdra475e63e2019-11-20 16:42:59 +05301266 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1267 XXX_unrecognized []byte `json:"-"`
1268 XXX_sizecache int32 `json:"-"`
1269}
1270
khenaidoo5fc5cea2021-08-11 17:39:16 -04001271func (m *DeleteGemPortMessage) Reset() { *m = DeleteGemPortMessage{} }
1272func (m *DeleteGemPortMessage) String() string { return proto.CompactTextString(m) }
1273func (*DeleteGemPortMessage) ProtoMessage() {}
1274func (*DeleteGemPortMessage) Descriptor() ([]byte, []int) {
1275 return fileDescriptor_941f0031a549667f, []int{21}
Girish Gowdra475e63e2019-11-20 16:42:59 +05301276}
1277
khenaidoo5fc5cea2021-08-11 17:39:16 -04001278func (m *DeleteGemPortMessage) XXX_Unmarshal(b []byte) error {
1279 return xxx_messageInfo_DeleteGemPortMessage.Unmarshal(m, b)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301280}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001281func (m *DeleteGemPortMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1282 return xxx_messageInfo_DeleteGemPortMessage.Marshal(b, m, deterministic)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301283}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001284func (m *DeleteGemPortMessage) XXX_Merge(src proto.Message) {
1285 xxx_messageInfo_DeleteGemPortMessage.Merge(m, src)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301286}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001287func (m *DeleteGemPortMessage) XXX_Size() int {
1288 return xxx_messageInfo_DeleteGemPortMessage.Size(m)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301289}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001290func (m *DeleteGemPortMessage) XXX_DiscardUnknown() {
1291 xxx_messageInfo_DeleteGemPortMessage.DiscardUnknown(m)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301292}
1293
khenaidoo5fc5cea2021-08-11 17:39:16 -04001294var xxx_messageInfo_DeleteGemPortMessage proto.InternalMessageInfo
Girish Gowdra475e63e2019-11-20 16:42:59 +05301295
khenaidoo5fc5cea2021-08-11 17:39:16 -04001296func (m *DeleteGemPortMessage) GetDeviceId() string {
1297 if m != nil {
1298 return m.DeviceId
1299 }
1300 return ""
1301}
1302
1303func (m *DeleteGemPortMessage) GetUniId() uint32 {
Girish Gowdra475e63e2019-11-20 16:42:59 +05301304 if m != nil {
1305 return m.UniId
1306 }
1307 return 0
1308}
1309
khenaidoo5fc5cea2021-08-11 17:39:16 -04001310func (m *DeleteGemPortMessage) GetTpInstancePath() string {
Girish Gowdra475e63e2019-11-20 16:42:59 +05301311 if m != nil {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001312 return m.TpInstancePath
Girish Gowdra475e63e2019-11-20 16:42:59 +05301313 }
1314 return ""
1315}
1316
khenaidoo5fc5cea2021-08-11 17:39:16 -04001317func (m *DeleteGemPortMessage) GetGemPortId() uint32 {
Girish Gowdra475e63e2019-11-20 16:42:59 +05301318 if m != nil {
1319 return m.GemPortId
1320 }
1321 return 0
1322}
1323
khenaidoo5fc5cea2021-08-11 17:39:16 -04001324type DeleteTcontMessage struct {
1325 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
1326 UniId uint32 `protobuf:"varint,2,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"`
1327 TpInstancePath string `protobuf:"bytes,3,opt,name=tp_instance_path,json=tpInstancePath,proto3" json:"tp_instance_path,omitempty"`
1328 AllocId uint32 `protobuf:"varint,4,opt,name=alloc_id,json=allocId,proto3" json:"alloc_id,omitempty"`
Girish Gowdra475e63e2019-11-20 16:42:59 +05301329 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1330 XXX_unrecognized []byte `json:"-"`
1331 XXX_sizecache int32 `json:"-"`
1332}
1333
khenaidoo5fc5cea2021-08-11 17:39:16 -04001334func (m *DeleteTcontMessage) Reset() { *m = DeleteTcontMessage{} }
1335func (m *DeleteTcontMessage) String() string { return proto.CompactTextString(m) }
1336func (*DeleteTcontMessage) ProtoMessage() {}
1337func (*DeleteTcontMessage) Descriptor() ([]byte, []int) {
1338 return fileDescriptor_941f0031a549667f, []int{22}
Girish Gowdra475e63e2019-11-20 16:42:59 +05301339}
1340
khenaidoo5fc5cea2021-08-11 17:39:16 -04001341func (m *DeleteTcontMessage) XXX_Unmarshal(b []byte) error {
1342 return xxx_messageInfo_DeleteTcontMessage.Unmarshal(m, b)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301343}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001344func (m *DeleteTcontMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1345 return xxx_messageInfo_DeleteTcontMessage.Marshal(b, m, deterministic)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301346}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001347func (m *DeleteTcontMessage) XXX_Merge(src proto.Message) {
1348 xxx_messageInfo_DeleteTcontMessage.Merge(m, src)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301349}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001350func (m *DeleteTcontMessage) XXX_Size() int {
1351 return xxx_messageInfo_DeleteTcontMessage.Size(m)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301352}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001353func (m *DeleteTcontMessage) XXX_DiscardUnknown() {
1354 xxx_messageInfo_DeleteTcontMessage.DiscardUnknown(m)
Girish Gowdra475e63e2019-11-20 16:42:59 +05301355}
1356
khenaidoo5fc5cea2021-08-11 17:39:16 -04001357var xxx_messageInfo_DeleteTcontMessage proto.InternalMessageInfo
Girish Gowdra475e63e2019-11-20 16:42:59 +05301358
khenaidoo5fc5cea2021-08-11 17:39:16 -04001359func (m *DeleteTcontMessage) GetDeviceId() string {
1360 if m != nil {
1361 return m.DeviceId
1362 }
1363 return ""
1364}
1365
1366func (m *DeleteTcontMessage) GetUniId() uint32 {
Girish Gowdra475e63e2019-11-20 16:42:59 +05301367 if m != nil {
1368 return m.UniId
1369 }
1370 return 0
1371}
1372
khenaidoo5fc5cea2021-08-11 17:39:16 -04001373func (m *DeleteTcontMessage) GetTpInstancePath() string {
Girish Gowdra475e63e2019-11-20 16:42:59 +05301374 if m != nil {
Girish Gowdra9c3e1c82021-06-01 14:29:34 -07001375 return m.TpInstancePath
Girish Gowdra475e63e2019-11-20 16:42:59 +05301376 }
1377 return ""
1378}
1379
khenaidoo5fc5cea2021-08-11 17:39:16 -04001380func (m *DeleteTcontMessage) GetAllocId() uint32 {
Girish Gowdra475e63e2019-11-20 16:42:59 +05301381 if m != nil {
1382 return m.AllocId
1383 }
1384 return 0
1385}
1386
khenaidoo5fc5cea2021-08-11 17:39:16 -04001387type OnuIndicationMessage struct {
1388 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
1389 OnuIndication *openolt.OnuIndication `protobuf:"bytes,2,opt,name=onu_indication,json=onuIndication,proto3" json:"onu_indication,omitempty"`
1390 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1391 XXX_unrecognized []byte `json:"-"`
1392 XXX_sizecache int32 `json:"-"`
William Kurkian1b363f42019-03-12 15:28:12 -04001393}
1394
khenaidoo5fc5cea2021-08-11 17:39:16 -04001395func (m *OnuIndicationMessage) Reset() { *m = OnuIndicationMessage{} }
1396func (m *OnuIndicationMessage) String() string { return proto.CompactTextString(m) }
1397func (*OnuIndicationMessage) ProtoMessage() {}
1398func (*OnuIndicationMessage) Descriptor() ([]byte, []int) {
1399 return fileDescriptor_941f0031a549667f, []int{23}
William Kurkian1b363f42019-03-12 15:28:12 -04001400}
William Kurkianad745652019-03-20 08:45:51 -04001401
khenaidoo5fc5cea2021-08-11 17:39:16 -04001402func (m *OnuIndicationMessage) XXX_Unmarshal(b []byte) error {
1403 return xxx_messageInfo_OnuIndicationMessage.Unmarshal(m, b)
William Kurkian1b363f42019-03-12 15:28:12 -04001404}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001405func (m *OnuIndicationMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1406 return xxx_messageInfo_OnuIndicationMessage.Marshal(b, m, deterministic)
William Kurkian1b363f42019-03-12 15:28:12 -04001407}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001408func (m *OnuIndicationMessage) XXX_Merge(src proto.Message) {
1409 xxx_messageInfo_OnuIndicationMessage.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -04001410}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001411func (m *OnuIndicationMessage) XXX_Size() int {
1412 return xxx_messageInfo_OnuIndicationMessage.Size(m)
William Kurkian1b363f42019-03-12 15:28:12 -04001413}
khenaidoo5fc5cea2021-08-11 17:39:16 -04001414func (m *OnuIndicationMessage) XXX_DiscardUnknown() {
1415 xxx_messageInfo_OnuIndicationMessage.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -04001416}
1417
khenaidoo5fc5cea2021-08-11 17:39:16 -04001418var xxx_messageInfo_OnuIndicationMessage proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -04001419
khenaidoo5fc5cea2021-08-11 17:39:16 -04001420func (m *OnuIndicationMessage) GetDeviceId() string {
William Kurkian1b363f42019-03-12 15:28:12 -04001421 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -04001422 return m.DeviceId
William Kurkian1b363f42019-03-12 15:28:12 -04001423 }
khenaidoo5fc5cea2021-08-11 17:39:16 -04001424 return ""
William Kurkian1b363f42019-03-12 15:28:12 -04001425}
1426
khenaidoo5fc5cea2021-08-11 17:39:16 -04001427func (m *OnuIndicationMessage) GetOnuIndication() *openolt.OnuIndication {
William Kurkian1b363f42019-03-12 15:28:12 -04001428 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -04001429 return m.OnuIndication
William Kurkian1b363f42019-03-12 15:28:12 -04001430 }
1431 return nil
1432}
1433
khenaidoo5fc5cea2021-08-11 17:39:16 -04001434type TechProfileInstanceRequestMessage struct {
1435 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
1436 TpInstancePath string `protobuf:"bytes,2,opt,name=tp_instance_path,json=tpInstancePath,proto3" json:"tp_instance_path,omitempty"`
1437 ParentDeviceId string `protobuf:"bytes,3,opt,name=parent_device_id,json=parentDeviceId,proto3" json:"parent_device_id,omitempty"`
1438 ParentPonPort uint32 `protobuf:"varint,4,opt,name=parent_pon_port,json=parentPonPort,proto3" json:"parent_pon_port,omitempty"`
1439 OnuId uint32 `protobuf:"varint,5,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
1440 UniId uint32 `protobuf:"varint,6,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"`
1441 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1442 XXX_unrecognized []byte `json:"-"`
1443 XXX_sizecache int32 `json:"-"`
William Kurkian1b363f42019-03-12 15:28:12 -04001444}
1445
khenaidoo5fc5cea2021-08-11 17:39:16 -04001446func (m *TechProfileInstanceRequestMessage) Reset() { *m = TechProfileInstanceRequestMessage{} }
1447func (m *TechProfileInstanceRequestMessage) String() string { return proto.CompactTextString(m) }
1448func (*TechProfileInstanceRequestMessage) ProtoMessage() {}
1449func (*TechProfileInstanceRequestMessage) Descriptor() ([]byte, []int) {
1450 return fileDescriptor_941f0031a549667f, []int{24}
William Kurkian1b363f42019-03-12 15:28:12 -04001451}
1452
khenaidoo5fc5cea2021-08-11 17:39:16 -04001453func (m *TechProfileInstanceRequestMessage) XXX_Unmarshal(b []byte) error {
1454 return xxx_messageInfo_TechProfileInstanceRequestMessage.Unmarshal(m, b)
1455}
1456func (m *TechProfileInstanceRequestMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1457 return xxx_messageInfo_TechProfileInstanceRequestMessage.Marshal(b, m, deterministic)
1458}
1459func (m *TechProfileInstanceRequestMessage) XXX_Merge(src proto.Message) {
1460 xxx_messageInfo_TechProfileInstanceRequestMessage.Merge(m, src)
1461}
1462func (m *TechProfileInstanceRequestMessage) XXX_Size() int {
1463 return xxx_messageInfo_TechProfileInstanceRequestMessage.Size(m)
1464}
1465func (m *TechProfileInstanceRequestMessage) XXX_DiscardUnknown() {
1466 xxx_messageInfo_TechProfileInstanceRequestMessage.DiscardUnknown(m)
William Kurkian1b363f42019-03-12 15:28:12 -04001467}
1468
khenaidoo5fc5cea2021-08-11 17:39:16 -04001469var xxx_messageInfo_TechProfileInstanceRequestMessage proto.InternalMessageInfo
William Kurkian1b363f42019-03-12 15:28:12 -04001470
khenaidoo5fc5cea2021-08-11 17:39:16 -04001471func (m *TechProfileInstanceRequestMessage) GetDeviceId() string {
William Kurkian1b363f42019-03-12 15:28:12 -04001472 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -04001473 return m.DeviceId
William Kurkian1b363f42019-03-12 15:28:12 -04001474 }
khenaidoo5fc5cea2021-08-11 17:39:16 -04001475 return ""
William Kurkian1b363f42019-03-12 15:28:12 -04001476}
1477
khenaidoo5fc5cea2021-08-11 17:39:16 -04001478func (m *TechProfileInstanceRequestMessage) GetTpInstancePath() string {
William Kurkian1b363f42019-03-12 15:28:12 -04001479 if m != nil {
khenaidoo5fc5cea2021-08-11 17:39:16 -04001480 return m.TpInstancePath
William Kurkian1b363f42019-03-12 15:28:12 -04001481 }
khenaidoo5fc5cea2021-08-11 17:39:16 -04001482 return ""
1483}
1484
1485func (m *TechProfileInstanceRequestMessage) GetParentDeviceId() string {
1486 if m != nil {
1487 return m.ParentDeviceId
1488 }
1489 return ""
1490}
1491
1492func (m *TechProfileInstanceRequestMessage) GetParentPonPort() uint32 {
1493 if m != nil {
1494 return m.ParentPonPort
1495 }
1496 return 0
1497}
1498
1499func (m *TechProfileInstanceRequestMessage) GetOnuId() uint32 {
1500 if m != nil {
1501 return m.OnuId
1502 }
1503 return 0
1504}
1505
1506func (m *TechProfileInstanceRequestMessage) GetUniId() uint32 {
1507 if m != nil {
1508 return m.UniId
1509 }
1510 return 0
William Kurkian1b363f42019-03-12 15:28:12 -04001511}
1512
1513func init() {
khenaidoo5fc5cea2021-08-11 17:39:16 -04001514 proto.RegisterType((*AdapterRegistration)(nil), "voltha.AdapterRegistration")
1515 proto.RegisterType((*ChildDeviceFilter)(nil), "voltha.ChildDeviceFilter")
1516 proto.RegisterType((*PortFilter)(nil), "voltha.PortFilter")
1517 proto.RegisterType((*DeviceDiscovery)(nil), "voltha.DeviceDiscovery")
1518 proto.RegisterType((*DeviceStateFilter)(nil), "voltha.DeviceStateFilter")
1519 proto.RegisterType((*PortState)(nil), "voltha.PortState")
1520 proto.RegisterType((*PortStateFilter)(nil), "voltha.PortStateFilter")
1521 proto.RegisterType((*PacketIn)(nil), "voltha.PacketIn")
1522 proto.RegisterType((*PacketOut)(nil), "voltha.PacketOut")
1523 proto.RegisterType((*DeviceReason)(nil), "voltha.DeviceReason")
1524 proto.RegisterType((*BulkFlows)(nil), "voltha.BulkFlows")
1525 proto.RegisterType((*IncrementalFlows)(nil), "voltha.IncrementalFlows")
1526 proto.RegisterType((*PmConfigsInfo)(nil), "voltha.PmConfigsInfo")
William Kurkian1b363f42019-03-12 15:28:12 -04001527 proto.RegisterType((*SwitchCapability)(nil), "voltha.SwitchCapability")
khenaidoo5fc5cea2021-08-11 17:39:16 -04001528 proto.RegisterType((*ImageDownloadMessage)(nil), "voltha.ImageDownloadMessage")
1529 proto.RegisterType((*OMCITest)(nil), "voltha.OMCITest")
1530 proto.RegisterType((*SimulateAlarmMessage)(nil), "voltha.SimulateAlarmMessage")
1531 proto.RegisterType((*GetExtValueMessage)(nil), "voltha.GetExtValueMessage")
1532 proto.RegisterType((*SetExtValueMessage)(nil), "voltha.SetExtValueMessage")
1533 proto.RegisterType((*OmciMessage)(nil), "voltha.OmciMessage")
1534 proto.RegisterType((*TechProfileDownloadMessage)(nil), "voltha.TechProfileDownloadMessage")
1535 proto.RegisterType((*DeleteGemPortMessage)(nil), "voltha.DeleteGemPortMessage")
1536 proto.RegisterType((*DeleteTcontMessage)(nil), "voltha.DeleteTcontMessage")
1537 proto.RegisterType((*OnuIndicationMessage)(nil), "voltha.OnuIndicationMessage")
1538 proto.RegisterType((*TechProfileInstanceRequestMessage)(nil), "voltha.TechProfileInstanceRequestMessage")
William Kurkian1b363f42019-03-12 15:28:12 -04001539}
1540
1541func init() {
William Kurkianad745652019-03-20 08:45:51 -04001542 proto.RegisterFile("voltha_protos/inter_container.proto", fileDescriptor_941f0031a549667f)
William Kurkian1b363f42019-03-12 15:28:12 -04001543}
1544
William Kurkianad745652019-03-20 08:45:51 -04001545var fileDescriptor_941f0031a549667f = []byte{
khenaidoo5fc5cea2021-08-11 17:39:16 -04001546 // 1440 bytes of a gzipped FileDescriptorProto
1547 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x4f, 0x6f, 0xdb, 0xc6,
1548 0x12, 0x7f, 0x74, 0x2c, 0xd9, 0x1a, 0xfd, 0xb1, 0xbd, 0xb1, 0x1d, 0xbf, 0xf8, 0xe5, 0x3d, 0x87,
1549 0xc9, 0x0b, 0x9c, 0x06, 0x95, 0x1b, 0x1b, 0x69, 0x11, 0xa0, 0x05, 0x1a, 0xcb, 0x49, 0xca, 0x43,
1550 0x62, 0x97, 0x32, 0x7a, 0xe8, 0xa1, 0xc4, 0x9a, 0x5c, 0x49, 0x44, 0xc8, 0x5d, 0x86, 0x5c, 0xca,
1551 0xf1, 0xb9, 0x97, 0x5e, 0x7a, 0x69, 0xfb, 0x1d, 0x7a, 0x2d, 0xd0, 0x4f, 0xd1, 0x73, 0xaf, 0xfd,
1552 0x04, 0xfd, 0x04, 0xbd, 0xb5, 0xd8, 0x7f, 0x12, 0x29, 0x29, 0x8e, 0x82, 0x16, 0xb9, 0x08, 0xdc,
1553 0x9d, 0xdf, 0xcc, 0xfc, 0x66, 0x66, 0x77, 0x76, 0x57, 0x70, 0x6b, 0xc8, 0x22, 0x3e, 0xc0, 0x5e,
1554 0x92, 0x32, 0xce, 0xb2, 0xbd, 0x90, 0x72, 0x92, 0x7a, 0x3e, 0xa3, 0x1c, 0x87, 0x94, 0xa4, 0x6d,
1555 0x39, 0x8d, 0xaa, 0x0a, 0x74, 0xfd, 0x7a, 0x19, 0xec, 0xb3, 0x38, 0x66, 0x54, 0x61, 0x26, 0x65,
1556 0x6a, 0xa4, 0x65, 0xff, 0x2b, 0xcb, 0x58, 0x42, 0x68, 0x2f, 0x62, 0xe7, 0xde, 0xfd, 0x03, 0x0d,
1557 0xd8, 0x29, 0x03, 0x38, 0xf1, 0x07, 0xe2, 0xbb, 0x17, 0x46, 0x44, 0x23, 0xb6, 0xa7, 0x4d, 0xb0,
1558 0x88, 0xcf, 0x16, 0xe2, 0x00, 0x27, 0xdc, 0x90, 0x9f, 0x24, 0x16, 0x90, 0x61, 0xe8, 0x6b, 0xab,
1559 0x76, 0x0c, 0x57, 0x1f, 0x29, 0xb0, 0x4b, 0xfa, 0x61, 0xc6, 0x53, 0xcc, 0x43, 0x46, 0xd1, 0x5d,
1560 0x58, 0xd2, 0x36, 0xb6, 0xac, 0x1d, 0x6b, 0xb7, 0xbe, 0xbf, 0xd2, 0xd6, 0xf1, 0x18, 0xb4, 0x91,
1561 0xa3, 0x7b, 0x50, 0x0d, 0x4e, 0x2f, 0x12, 0x92, 0x6d, 0x2d, 0x48, 0xe4, 0x55, 0x83, 0x3c, 0x92,
1562 0x7e, 0xa4, 0xc8, 0xd5, 0x10, 0xfb, 0x3b, 0x0b, 0xd6, 0x3a, 0x83, 0x30, 0x0a, 0x94, 0xf0, 0x49,
1563 0x18, 0x09, 0x13, 0xdb, 0x50, 0x4b, 0x70, 0x4a, 0x28, 0xf7, 0xc2, 0x40, 0xfa, 0xab, 0xb9, 0xcb,
1564 0x6a, 0xc2, 0x09, 0xd0, 0x2d, 0x68, 0x66, 0x24, 0x0d, 0x71, 0xe4, 0xd1, 0x3c, 0x3e, 0x23, 0xa9,
1565 0x74, 0x53, 0x73, 0x1b, 0x6a, 0xf2, 0xb9, 0x9c, 0x43, 0x1b, 0x50, 0x65, 0x34, 0x17, 0xea, 0x57,
1566 0x76, 0xac, 0xdd, 0xa6, 0x5b, 0x61, 0x34, 0x77, 0x02, 0x74, 0x1b, 0x5a, 0xda, 0x70, 0xc2, 0x52,
1567 0xee, 0x51, 0xb6, 0xb5, 0x28, 0xc5, 0x0d, 0x35, 0x7b, 0xc2, 0x52, 0xfe, 0x9c, 0xd9, 0x2f, 0x01,
1568 0xc4, 0xd7, 0x98, 0x8c, 0xca, 0x50, 0x81, 0x8c, 0x9a, 0x70, 0x02, 0x84, 0x60, 0x51, 0x58, 0x92,
1569 0x1c, 0x9a, 0xae, 0xfc, 0x46, 0xfb, 0x50, 0x93, 0xd6, 0xf9, 0x45, 0x42, 0xa4, 0xfb, 0xd6, 0xfe,
1570 0x86, 0xc9, 0x81, 0xb0, 0x2b, 0x7f, 0x44, 0xf8, 0xee, 0x72, 0xa2, 0xbf, 0xec, 0x3f, 0x2c, 0x58,
1571 0x51, 0x29, 0x38, 0x0a, 0x33, 0x9f, 0x0d, 0x49, 0x7a, 0x71, 0x79, 0x16, 0xa6, 0x23, 0x59, 0x98,
1572 0x8e, 0x04, 0xbd, 0x07, 0x6b, 0xbe, 0xc8, 0xae, 0xa7, 0x23, 0x18, 0x51, 0xaa, 0xb9, 0x2b, 0xfe,
1573 0x38, 0xed, 0x82, 0x02, 0xba, 0x01, 0xe0, 0x0f, 0x30, 0xa5, 0x24, 0x12, 0xfe, 0x54, 0x5e, 0x6a,
1574 0x7a, 0xc6, 0x09, 0x04, 0x9b, 0x21, 0xa1, 0x01, 0x4b, 0x85, 0xb4, 0xa2, 0xd8, 0xa8, 0x89, 0x59,
1575 0x35, 0xa9, 0x5e, 0x5a, 0x93, 0xa5, 0x42, 0x4d, 0xec, 0x5f, 0x2d, 0x58, 0x53, 0x34, 0xba, 0x1c,
1576 0x73, 0x32, 0x4f, 0xd6, 0x77, 0x61, 0x55, 0x07, 0x3f, 0xc6, 0xa8, 0x55, 0xa0, 0x93, 0x72, 0x64,
1577 0x90, 0x0f, 0xa1, 0xce, 0x12, 0x92, 0x7a, 0x19, 0xc7, 0x3c, 0xcf, 0x74, 0x35, 0xb6, 0xda, 0x7a,
1578 0x9f, 0x1e, 0x27, 0x24, 0xed, 0x4a, 0x49, 0x5b, 0x2d, 0x4b, 0x60, 0xa3, 0x19, 0xf4, 0x31, 0xd4,
1579 0x7d, 0x46, 0xa9, 0x51, 0x5d, 0x94, 0xaa, 0xdb, 0x46, 0xb5, 0xc3, 0x28, 0x25, 0x3e, 0x2f, 0x6b,
1580 0x0b, 0xbc, 0x9a, 0xb1, 0x7f, 0xb2, 0xa0, 0x26, 0x8a, 0x20, 0x63, 0xba, 0x3c, 0x9a, 0xd2, 0x7a,
1581 0x59, 0x98, 0x6b, 0xbd, 0xa0, 0x6b, 0xb0, 0x64, 0xea, 0xae, 0x16, 0x78, 0x35, 0x51, 0x15, 0x9f,
1582 0x08, 0x78, 0x71, 0xfe, 0x80, 0xed, 0xef, 0x2d, 0x58, 0x19, 0x51, 0x9e, 0xb7, 0x0c, 0x86, 0xb8,
1583 0xd7, 0x93, 0x0a, 0x7a, 0x15, 0xb6, 0x0c, 0x51, 0x6d, 0xe6, 0x6f, 0xb0, 0xea, 0xc2, 0xf2, 0x09,
1584 0xf6, 0x5f, 0x10, 0xee, 0xd0, 0xb7, 0xdf, 0x8a, 0x9b, 0x50, 0x4d, 0xa4, 0xb2, 0xcc, 0x52, 0xc3,
1585 0xd5, 0x23, 0xfb, 0x6b, 0x51, 0x1d, 0xf9, 0x79, 0x9c, 0xf3, 0xcb, 0xcd, 0xde, 0x86, 0x16, 0xe9,
1586 0xa7, 0x24, 0xcb, 0x26, 0x37, 0x9a, 0x9a, 0xd5, 0x1b, 0xed, 0xa0, 0xe4, 0xa8, 0xbe, 0xbf, 0xdd,
1587 0x2e, 0xb6, 0x74, 0xd6, 0x4b, 0x3c, 0x25, 0xf6, 0x58, 0xce, 0x47, 0x2c, 0x3a, 0xd0, 0x50, 0x0b,
1588 0xd5, 0x25, 0x38, 0x63, 0x6f, 0x08, 0x6f, 0x13, 0xaa, 0xa9, 0x84, 0xe9, 0x95, 0xae, 0x47, 0xf6,
1589 0x2f, 0x16, 0xd4, 0x0e, 0xf3, 0xe8, 0xc5, 0x93, 0x88, 0x9d, 0x67, 0xe8, 0x0e, 0x54, 0x95, 0x86,
1590 0x6e, 0xd3, 0xad, 0x72, 0xf3, 0x75, 0xb5, 0x14, 0xed, 0x42, 0x45, 0x90, 0x33, 0x3d, 0x1a, 0x95,
1591 0xe8, 0x4a, 0x53, 0xae, 0x02, 0xa0, 0x3d, 0xa8, 0xf6, 0x53, 0x96, 0x27, 0x99, 0x8e, 0xec, 0xda,
1592 0x14, 0xf4, 0xa9, 0x14, 0xbb, 0x1a, 0x86, 0x1e, 0x42, 0x53, 0x4a, 0x63, 0xc2, 0x71, 0x80, 0x39,
1593 0x96, 0xd5, 0xae, 0xef, 0xaf, 0x1b, 0x26, 0x42, 0xe5, 0x99, 0x96, 0xb9, 0x8d, 0x5e, 0x61, 0x64,
1594 0xff, 0x66, 0xc1, 0xaa, 0x43, 0xfd, 0x94, 0xc4, 0x84, 0x72, 0x1c, 0xbd, 0x5d, 0x48, 0xed, 0x72,
1595 0x48, 0x5b, 0x53, 0x3c, 0x3b, 0x03, 0x4c, 0xfb, 0x64, 0x14, 0xd8, 0x83, 0x89, 0xc0, 0x6e, 0xcc,
1596 0x0e, 0xcc, 0x68, 0xfd, 0x03, 0xe1, 0x7d, 0x05, 0xcd, 0x93, 0xb8, 0xc3, 0x68, 0x2f, 0xec, 0x67,
1597 0x0e, 0xed, 0xb1, 0xcb, 0x0b, 0xfe, 0x01, 0x40, 0x12, 0x8b, 0x8b, 0x87, 0x80, 0xeb, 0xa0, 0xd6,
1598 0x46, 0x7d, 0xc1, 0xd8, 0x71, 0x6b, 0x89, 0xf9, 0xb4, 0xbf, 0xb1, 0x60, 0xb5, 0x7b, 0x1e, 0x72,
1599 0x7f, 0xd0, 0xc1, 0x09, 0x3e, 0x0b, 0xa3, 0x90, 0x5f, 0xa0, 0xbb, 0xb0, 0x18, 0x90, 0xcc, 0xd7,
1600 0xc9, 0xdb, 0x98, 0x5a, 0x97, 0x42, 0xe8, 0x4a, 0x08, 0x72, 0x60, 0x25, 0x93, 0xea, 0x5e, 0x8f,
1601 0x60, 0x9e, 0xa7, 0xa3, 0x23, 0x7c, 0x67, 0x4a, 0x6b, 0x02, 0xe7, 0xb6, 0xd4, 0xc4, 0x13, 0x3d,
1602 0xb6, 0x5f, 0xc0, 0xba, 0x13, 0xe3, 0x3e, 0x39, 0x62, 0xe7, 0x34, 0x62, 0x38, 0x78, 0x46, 0xb2,
1603 0x0c, 0xf7, 0xc9, 0xdc, 0xc5, 0xbc, 0x07, 0x95, 0x50, 0xe8, 0x6b, 0x02, 0xa3, 0x7e, 0x58, 0x32,
1604 0xea, 0x2a, 0x8c, 0x4d, 0x60, 0xf9, 0xf8, 0x59, 0xc7, 0x39, 0x25, 0x19, 0x9f, 0xdb, 0xc1, 0x7d,
1605 0x58, 0x4a, 0xc9, 0xcb, 0x9c, 0x64, 0x5c, 0xbb, 0xb8, 0x66, 0x80, 0xc7, 0xb1, 0x1f, 0x0a, 0x53,
1606 0xae, 0x12, 0xbb, 0x06, 0x67, 0x0f, 0x61, 0xbd, 0x1b, 0xc6, 0x79, 0x84, 0x39, 0x79, 0x14, 0xe1,
1607 0x34, 0x7e, 0xdb, 0x98, 0x3e, 0x9c, 0x74, 0xf9, 0x1f, 0x03, 0x2c, 0x99, 0x9d, 0xf2, 0xfb, 0xb3,
1608 0x05, 0xe8, 0x29, 0xe1, 0x8f, 0x5f, 0xf1, 0x2f, 0x70, 0x94, 0x13, 0xe3, 0xf6, 0x00, 0x9a, 0xa5,
1609 0x43, 0xf0, 0x35, 0xde, 0x1b, 0xc5, 0x13, 0x11, 0xdd, 0x87, 0x46, 0xf1, 0x42, 0xa0, 0x89, 0x4c,
1610 0xea, 0xd4, 0x0b, 0x77, 0x03, 0xf4, 0x00, 0x60, 0x28, 0xfc, 0x16, 0xef, 0x33, 0x9b, 0xa6, 0x75,
1611 0x4b, 0x46, 0xa2, 0x69, 0xcb, 0xce, 0xed, 0xd6, 0x86, 0x66, 0x6c, 0x07, 0x80, 0xba, 0xd3, 0xa4,
1612 0xe7, 0xcd, 0xd5, 0x1d, 0xa8, 0x48, 0x53, 0x7a, 0x6f, 0xae, 0x1a, 0x98, 0x34, 0xd6, 0x25, 0xdc,
1613 0x55, 0x62, 0xfb, 0x4f, 0x0b, 0xea, 0xa2, 0x60, 0xc6, 0xfe, 0x16, 0x2c, 0xc5, 0xea, 0x53, 0x3a,
1614 0x68, 0xb8, 0x66, 0x88, 0x0e, 0xa1, 0xe5, 0xab, 0x33, 0xdb, 0x9c, 0x42, 0x0b, 0x6f, 0x3e, 0xd1,
1615 0x9b, 0x7e, 0x71, 0x12, 0x7d, 0x0a, 0xcd, 0x24, 0x65, 0xaf, 0x2e, 0x3c, 0x1c, 0x04, 0xa2, 0xf9,
1616 0x8f, 0x9a, 0x7d, 0x29, 0x88, 0xf6, 0x89, 0xc0, 0x3c, 0x52, 0x10, 0xb7, 0x91, 0x14, 0x46, 0x33,
1617 0x6f, 0x2e, 0x8b, 0x33, 0x6f, 0x2e, 0x77, 0x60, 0xa5, 0x74, 0x75, 0x1b, 0xdd, 0xba, 0x9a, 0x85,
1618 0xe2, 0x38, 0x81, 0xfd, 0xe3, 0x02, 0x5c, 0x3f, 0x25, 0xfe, 0xe0, 0x44, 0x3d, 0x0e, 0x26, 0x37,
1619 0xdc, 0xa5, 0x2d, 0x66, 0x03, 0xaa, 0x39, 0x0d, 0xcd, 0xed, 0xa9, 0xe9, 0x56, 0x72, 0x1a, 0xaa,
1620 0x73, 0x9d, 0x27, 0x5e, 0x48, 0x33, 0x8e, 0xa9, 0x4f, 0xbc, 0x04, 0xf3, 0x81, 0xbe, 0x34, 0xb6,
1621 0x78, 0xe2, 0xe8, 0xe9, 0x13, 0xcc, 0x07, 0xe8, 0x08, 0xea, 0x05, 0xa4, 0x6e, 0x85, 0x37, 0xdb,
1622 0xa5, 0xd7, 0x4a, 0x81, 0x9c, 0xd1, 0xfd, 0xec, 0x5f, 0x2e, 0x8c, 0x2d, 0xa1, 0xcf, 0x61, 0x95,
1623 0x24, 0x8c, 0x7a, 0x45, 0x53, 0x15, 0x69, 0xea, 0xff, 0x65, 0x53, 0x8f, 0x13, 0x46, 0x67, 0x9b,
1624 0x6b, 0x09, 0x03, 0xa7, 0x23, 0x93, 0x87, 0x08, 0x56, 0xa5, 0x66, 0xc1, 0xa4, 0xfd, 0x83, 0x05,
1625 0xeb, 0x47, 0x24, 0x22, 0x9c, 0x3c, 0x25, 0xb1, 0x38, 0xb7, 0xdf, 0x4d, 0x8e, 0xfe, 0x0b, 0xf5,
1626 0x3e, 0x89, 0xd5, 0xed, 0x61, 0x7c, 0xb1, 0xee, 0x2b, 0x0a, 0x4e, 0x60, 0x7f, 0x6b, 0x01, 0x52,
1627 0xb4, 0x4e, 0xc5, 0x2b, 0xf3, 0xdd, 0x90, 0xfa, 0x37, 0x2c, 0xe3, 0x28, 0x62, 0xfe, 0x98, 0xd1,
1628 0x92, 0x1c, 0x3b, 0x81, 0x9d, 0xc2, 0xfa, 0x31, 0xcd, 0x1d, 0x1a, 0x84, 0xbe, 0x7c, 0xfb, 0xcd,
1629 0x45, 0xe8, 0x13, 0x68, 0xc9, 0xbb, 0xfd, 0x48, 0x4b, 0x77, 0x96, 0xcd, 0xb6, 0x79, 0x97, 0x96,
1630 0x6c, 0xba, 0x4d, 0x56, 0x1c, 0xda, 0xbf, 0x5b, 0x70, 0x73, 0x46, 0x61, 0x75, 0x2b, 0x9c, 0x8b,
1631 0xc1, 0xac, 0xd8, 0x17, 0x66, 0xc6, 0x3e, 0x6b, 0x0f, 0x5e, 0x79, 0xdd, 0x1e, 0x1c, 0x3d, 0xb2,
1632 0xa8, 0xac, 0xa0, 0x4e, 0x56, 0xd3, 0xbc, 0xb2, 0xa8, 0x28, 0x62, 0xe1, 0x65, 0x53, 0x29, 0xbe,
1633 0x36, 0xc7, 0x55, 0xaa, 0x16, 0xaa, 0x74, 0xf8, 0x1c, 0xae, 0xb2, 0xb4, 0x2f, 0x13, 0xe3, 0xb3,
1634 0x34, 0xd0, 0xcd, 0xe3, 0xcb, 0x8f, 0xfa, 0x21, 0x1f, 0xe4, 0x67, 0xa2, 0x1d, 0xed, 0x19, 0x99,
1635 0xfe, 0xd3, 0xe0, 0x7d, 0xf3, 0x17, 0xc2, 0x83, 0xbd, 0x3e, 0x9b, 0xfc, 0x47, 0xe2, 0xac, 0x2a,
1636 0xa5, 0x07, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x82, 0x0a, 0xe6, 0xb9, 0x10, 0x00, 0x00,
William Kurkian1b363f42019-03-12 15:28:12 -04001637}