blob: 4b6af02a386c49b39563df49e73ff72c8418a988 [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/inter_container.proto
3
4package inter_container
5
6import (
7 fmt "fmt"
8 proto "github.com/golang/protobuf/proto"
9 any "github.com/golang/protobuf/ptypes/any"
10 openflow_13 "github.com/opencord/voltha-protos/go/openflow_13"
11 voltha "github.com/opencord/voltha-protos/go/voltha"
12 math "math"
13)
14
15// Reference imports to suppress errors if they are not otherwise used.
16var _ = proto.Marshal
17var _ = fmt.Errorf
18var _ = math.Inf
19
20// This is a compile-time assertion to ensure that this generated file
21// is compatible with the proto package it is being compiled against.
22// A compilation error at this line likely means your copy of the
23// proto package needs to be updated.
24const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
25
26// LogicalPortId from public import voltha_protos/logical_device.proto
27type LogicalPortId = voltha.LogicalPortId
28
29// LogicalPort from public import voltha_protos/logical_device.proto
30type LogicalPort = voltha.LogicalPort
31
32// LogicalPorts from public import voltha_protos/logical_device.proto
33type LogicalPorts = voltha.LogicalPorts
34
35// LogicalDevice from public import voltha_protos/logical_device.proto
36type LogicalDevice = voltha.LogicalDevice
37
38// LogicalDevices from public import voltha_protos/logical_device.proto
39type LogicalDevices = voltha.LogicalDevices
40
41type MessageType int32
42
43const (
44 MessageType_REQUEST MessageType = 0
45 MessageType_RESPONSE MessageType = 1
46 MessageType_DEVICE_DISCOVERED MessageType = 2
47)
48
49var MessageType_name = map[int32]string{
50 0: "REQUEST",
51 1: "RESPONSE",
52 2: "DEVICE_DISCOVERED",
53}
54
55var MessageType_value = map[string]int32{
56 "REQUEST": 0,
57 "RESPONSE": 1,
58 "DEVICE_DISCOVERED": 2,
59}
60
61func (x MessageType) String() string {
62 return proto.EnumName(MessageType_name, int32(x))
63}
64
65func (MessageType) EnumDescriptor() ([]byte, []int) {
66 return fileDescriptor_941f0031a549667f, []int{0}
67}
68
69type ErrorCodeCodes int32
70
71const (
72 ErrorCode_UNSUPPORTED_REQUEST ErrorCodeCodes = 0
73 ErrorCode_INVALID_PARAMETERS ErrorCodeCodes = 1
74)
75
76var ErrorCodeCodes_name = map[int32]string{
77 0: "UNSUPPORTED_REQUEST",
78 1: "INVALID_PARAMETERS",
79}
80
81var ErrorCodeCodes_value = map[string]int32{
82 "UNSUPPORTED_REQUEST": 0,
83 "INVALID_PARAMETERS": 1,
84}
85
86func (x ErrorCodeCodes) String() string {
87 return proto.EnumName(ErrorCodeCodes_name, int32(x))
88}
89
90func (ErrorCodeCodes) EnumDescriptor() ([]byte, []int) {
91 return fileDescriptor_941f0031a549667f, []int{4, 0}
92}
93
94type InterAdapterMessageType_Types int32
95
96const (
Matt Jeanneretf61d3422019-04-19 15:01:52 -040097 InterAdapterMessageType_FLOW_REQUEST InterAdapterMessageType_Types = 0
98 InterAdapterMessageType_FLOW_RESPONSE InterAdapterMessageType_Types = 1
99 InterAdapterMessageType_OMCI_REQUEST InterAdapterMessageType_Types = 2
100 InterAdapterMessageType_OMCI_RESPONSE InterAdapterMessageType_Types = 3
101 InterAdapterMessageType_METRICS_REQUEST InterAdapterMessageType_Types = 4
102 InterAdapterMessageType_METRICS_RESPONSE InterAdapterMessageType_Types = 5
103 InterAdapterMessageType_ONU_IND_REQUEST InterAdapterMessageType_Types = 6
104 InterAdapterMessageType_ONU_IND_RESPONSE InterAdapterMessageType_Types = 7
105 InterAdapterMessageType_TECH_PROFILE_DOWNLOAD_REQUEST InterAdapterMessageType_Types = 8
William Kurkianea869482019-04-09 15:16:11 -0400106)
107
108var InterAdapterMessageType_Types_name = map[int32]string{
109 0: "FLOW_REQUEST",
110 1: "FLOW_RESPONSE",
111 2: "OMCI_REQUEST",
112 3: "OMCI_RESPONSE",
113 4: "METRICS_REQUEST",
114 5: "METRICS_RESPONSE",
115 6: "ONU_IND_REQUEST",
116 7: "ONU_IND_RESPONSE",
Matt Jeanneretf61d3422019-04-19 15:01:52 -0400117 8: "TECH_PROFILE_DOWNLOAD_REQUEST",
William Kurkianea869482019-04-09 15:16:11 -0400118}
119
120var InterAdapterMessageType_Types_value = map[string]int32{
Matt Jeanneretf61d3422019-04-19 15:01:52 -0400121 "FLOW_REQUEST": 0,
122 "FLOW_RESPONSE": 1,
123 "OMCI_REQUEST": 2,
124 "OMCI_RESPONSE": 3,
125 "METRICS_REQUEST": 4,
126 "METRICS_RESPONSE": 5,
127 "ONU_IND_REQUEST": 6,
128 "ONU_IND_RESPONSE": 7,
129 "TECH_PROFILE_DOWNLOAD_REQUEST": 8,
William Kurkianea869482019-04-09 15:16:11 -0400130}
131
132func (x InterAdapterMessageType_Types) String() string {
133 return proto.EnumName(InterAdapterMessageType_Types_name, int32(x))
134}
135
136func (InterAdapterMessageType_Types) EnumDescriptor() ([]byte, []int) {
137 return fileDescriptor_941f0031a549667f, []int{14, 0}
138}
139
140type StrType struct {
141 Val string `protobuf:"bytes,1,opt,name=val,proto3" json:"val,omitempty"`
142 XXX_NoUnkeyedLiteral struct{} `json:"-"`
143 XXX_unrecognized []byte `json:"-"`
144 XXX_sizecache int32 `json:"-"`
145}
146
147func (m *StrType) Reset() { *m = StrType{} }
148func (m *StrType) String() string { return proto.CompactTextString(m) }
149func (*StrType) ProtoMessage() {}
150func (*StrType) Descriptor() ([]byte, []int) {
151 return fileDescriptor_941f0031a549667f, []int{0}
152}
153
154func (m *StrType) XXX_Unmarshal(b []byte) error {
155 return xxx_messageInfo_StrType.Unmarshal(m, b)
156}
157func (m *StrType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
158 return xxx_messageInfo_StrType.Marshal(b, m, deterministic)
159}
160func (m *StrType) XXX_Merge(src proto.Message) {
161 xxx_messageInfo_StrType.Merge(m, src)
162}
163func (m *StrType) XXX_Size() int {
164 return xxx_messageInfo_StrType.Size(m)
165}
166func (m *StrType) XXX_DiscardUnknown() {
167 xxx_messageInfo_StrType.DiscardUnknown(m)
168}
169
170var xxx_messageInfo_StrType proto.InternalMessageInfo
171
172func (m *StrType) GetVal() string {
173 if m != nil {
174 return m.Val
175 }
176 return ""
177}
178
179type IntType struct {
180 Val int64 `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"`
181 XXX_NoUnkeyedLiteral struct{} `json:"-"`
182 XXX_unrecognized []byte `json:"-"`
183 XXX_sizecache int32 `json:"-"`
184}
185
186func (m *IntType) Reset() { *m = IntType{} }
187func (m *IntType) String() string { return proto.CompactTextString(m) }
188func (*IntType) ProtoMessage() {}
189func (*IntType) Descriptor() ([]byte, []int) {
190 return fileDescriptor_941f0031a549667f, []int{1}
191}
192
193func (m *IntType) XXX_Unmarshal(b []byte) error {
194 return xxx_messageInfo_IntType.Unmarshal(m, b)
195}
196func (m *IntType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
197 return xxx_messageInfo_IntType.Marshal(b, m, deterministic)
198}
199func (m *IntType) XXX_Merge(src proto.Message) {
200 xxx_messageInfo_IntType.Merge(m, src)
201}
202func (m *IntType) XXX_Size() int {
203 return xxx_messageInfo_IntType.Size(m)
204}
205func (m *IntType) XXX_DiscardUnknown() {
206 xxx_messageInfo_IntType.DiscardUnknown(m)
207}
208
209var xxx_messageInfo_IntType proto.InternalMessageInfo
210
211func (m *IntType) GetVal() int64 {
212 if m != nil {
213 return m.Val
214 }
215 return 0
216}
217
218type BoolType struct {
219 Val bool `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"`
220 XXX_NoUnkeyedLiteral struct{} `json:"-"`
221 XXX_unrecognized []byte `json:"-"`
222 XXX_sizecache int32 `json:"-"`
223}
224
225func (m *BoolType) Reset() { *m = BoolType{} }
226func (m *BoolType) String() string { return proto.CompactTextString(m) }
227func (*BoolType) ProtoMessage() {}
228func (*BoolType) Descriptor() ([]byte, []int) {
229 return fileDescriptor_941f0031a549667f, []int{2}
230}
231
232func (m *BoolType) XXX_Unmarshal(b []byte) error {
233 return xxx_messageInfo_BoolType.Unmarshal(m, b)
234}
235func (m *BoolType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
236 return xxx_messageInfo_BoolType.Marshal(b, m, deterministic)
237}
238func (m *BoolType) XXX_Merge(src proto.Message) {
239 xxx_messageInfo_BoolType.Merge(m, src)
240}
241func (m *BoolType) XXX_Size() int {
242 return xxx_messageInfo_BoolType.Size(m)
243}
244func (m *BoolType) XXX_DiscardUnknown() {
245 xxx_messageInfo_BoolType.DiscardUnknown(m)
246}
247
248var xxx_messageInfo_BoolType proto.InternalMessageInfo
249
250func (m *BoolType) GetVal() bool {
251 if m != nil {
252 return m.Val
253 }
254 return false
255}
256
257type Packet struct {
258 Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
259 XXX_NoUnkeyedLiteral struct{} `json:"-"`
260 XXX_unrecognized []byte `json:"-"`
261 XXX_sizecache int32 `json:"-"`
262}
263
264func (m *Packet) Reset() { *m = Packet{} }
265func (m *Packet) String() string { return proto.CompactTextString(m) }
266func (*Packet) ProtoMessage() {}
267func (*Packet) Descriptor() ([]byte, []int) {
268 return fileDescriptor_941f0031a549667f, []int{3}
269}
270
271func (m *Packet) XXX_Unmarshal(b []byte) error {
272 return xxx_messageInfo_Packet.Unmarshal(m, b)
273}
274func (m *Packet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
275 return xxx_messageInfo_Packet.Marshal(b, m, deterministic)
276}
277func (m *Packet) XXX_Merge(src proto.Message) {
278 xxx_messageInfo_Packet.Merge(m, src)
279}
280func (m *Packet) XXX_Size() int {
281 return xxx_messageInfo_Packet.Size(m)
282}
283func (m *Packet) XXX_DiscardUnknown() {
284 xxx_messageInfo_Packet.DiscardUnknown(m)
285}
286
287var xxx_messageInfo_Packet proto.InternalMessageInfo
288
289func (m *Packet) GetPayload() []byte {
290 if m != nil {
291 return m.Payload
292 }
293 return nil
294}
295
296type ErrorCode struct {
297 XXX_NoUnkeyedLiteral struct{} `json:"-"`
298 XXX_unrecognized []byte `json:"-"`
299 XXX_sizecache int32 `json:"-"`
300}
301
302func (m *ErrorCode) Reset() { *m = ErrorCode{} }
303func (m *ErrorCode) String() string { return proto.CompactTextString(m) }
304func (*ErrorCode) ProtoMessage() {}
305func (*ErrorCode) Descriptor() ([]byte, []int) {
306 return fileDescriptor_941f0031a549667f, []int{4}
307}
308
309func (m *ErrorCode) XXX_Unmarshal(b []byte) error {
310 return xxx_messageInfo_ErrorCode.Unmarshal(m, b)
311}
312func (m *ErrorCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
313 return xxx_messageInfo_ErrorCode.Marshal(b, m, deterministic)
314}
315func (m *ErrorCode) XXX_Merge(src proto.Message) {
316 xxx_messageInfo_ErrorCode.Merge(m, src)
317}
318func (m *ErrorCode) XXX_Size() int {
319 return xxx_messageInfo_ErrorCode.Size(m)
320}
321func (m *ErrorCode) XXX_DiscardUnknown() {
322 xxx_messageInfo_ErrorCode.DiscardUnknown(m)
323}
324
325var xxx_messageInfo_ErrorCode proto.InternalMessageInfo
326
327type Error struct {
328 Code *ErrorCode `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
329 Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
330 XXX_NoUnkeyedLiteral struct{} `json:"-"`
331 XXX_unrecognized []byte `json:"-"`
332 XXX_sizecache int32 `json:"-"`
333}
334
335func (m *Error) Reset() { *m = Error{} }
336func (m *Error) String() string { return proto.CompactTextString(m) }
337func (*Error) ProtoMessage() {}
338func (*Error) Descriptor() ([]byte, []int) {
339 return fileDescriptor_941f0031a549667f, []int{5}
340}
341
342func (m *Error) XXX_Unmarshal(b []byte) error {
343 return xxx_messageInfo_Error.Unmarshal(m, b)
344}
345func (m *Error) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
346 return xxx_messageInfo_Error.Marshal(b, m, deterministic)
347}
348func (m *Error) XXX_Merge(src proto.Message) {
349 xxx_messageInfo_Error.Merge(m, src)
350}
351func (m *Error) XXX_Size() int {
352 return xxx_messageInfo_Error.Size(m)
353}
354func (m *Error) XXX_DiscardUnknown() {
355 xxx_messageInfo_Error.DiscardUnknown(m)
356}
357
358var xxx_messageInfo_Error proto.InternalMessageInfo
359
360func (m *Error) GetCode() *ErrorCode {
361 if m != nil {
362 return m.Code
363 }
364 return nil
365}
366
367func (m *Error) GetReason() string {
368 if m != nil {
369 return m.Reason
370 }
371 return ""
372}
373
374type Header struct {
375 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
376 Type MessageType `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.MessageType" json:"type,omitempty"`
377 FromTopic string `protobuf:"bytes,3,opt,name=from_topic,json=fromTopic,proto3" json:"from_topic,omitempty"`
378 ToTopic string `protobuf:"bytes,4,opt,name=to_topic,json=toTopic,proto3" json:"to_topic,omitempty"`
379 KeyTopic string `protobuf:"bytes,5,opt,name=key_topic,json=keyTopic,proto3" json:"key_topic,omitempty"`
380 Timestamp int64 `protobuf:"varint,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
381 XXX_NoUnkeyedLiteral struct{} `json:"-"`
382 XXX_unrecognized []byte `json:"-"`
383 XXX_sizecache int32 `json:"-"`
384}
385
386func (m *Header) Reset() { *m = Header{} }
387func (m *Header) String() string { return proto.CompactTextString(m) }
388func (*Header) ProtoMessage() {}
389func (*Header) Descriptor() ([]byte, []int) {
390 return fileDescriptor_941f0031a549667f, []int{6}
391}
392
393func (m *Header) XXX_Unmarshal(b []byte) error {
394 return xxx_messageInfo_Header.Unmarshal(m, b)
395}
396func (m *Header) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
397 return xxx_messageInfo_Header.Marshal(b, m, deterministic)
398}
399func (m *Header) XXX_Merge(src proto.Message) {
400 xxx_messageInfo_Header.Merge(m, src)
401}
402func (m *Header) XXX_Size() int {
403 return xxx_messageInfo_Header.Size(m)
404}
405func (m *Header) XXX_DiscardUnknown() {
406 xxx_messageInfo_Header.DiscardUnknown(m)
407}
408
409var xxx_messageInfo_Header proto.InternalMessageInfo
410
411func (m *Header) GetId() string {
412 if m != nil {
413 return m.Id
414 }
415 return ""
416}
417
418func (m *Header) GetType() MessageType {
419 if m != nil {
420 return m.Type
421 }
422 return MessageType_REQUEST
423}
424
425func (m *Header) GetFromTopic() string {
426 if m != nil {
427 return m.FromTopic
428 }
429 return ""
430}
431
432func (m *Header) GetToTopic() string {
433 if m != nil {
434 return m.ToTopic
435 }
436 return ""
437}
438
439func (m *Header) GetKeyTopic() string {
440 if m != nil {
441 return m.KeyTopic
442 }
443 return ""
444}
445
446func (m *Header) GetTimestamp() int64 {
447 if m != nil {
448 return m.Timestamp
449 }
450 return 0
451}
452
453type Argument struct {
454 Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
455 Value *any.Any `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
456 XXX_NoUnkeyedLiteral struct{} `json:"-"`
457 XXX_unrecognized []byte `json:"-"`
458 XXX_sizecache int32 `json:"-"`
459}
460
461func (m *Argument) Reset() { *m = Argument{} }
462func (m *Argument) String() string { return proto.CompactTextString(m) }
463func (*Argument) ProtoMessage() {}
464func (*Argument) Descriptor() ([]byte, []int) {
465 return fileDescriptor_941f0031a549667f, []int{7}
466}
467
468func (m *Argument) XXX_Unmarshal(b []byte) error {
469 return xxx_messageInfo_Argument.Unmarshal(m, b)
470}
471func (m *Argument) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
472 return xxx_messageInfo_Argument.Marshal(b, m, deterministic)
473}
474func (m *Argument) XXX_Merge(src proto.Message) {
475 xxx_messageInfo_Argument.Merge(m, src)
476}
477func (m *Argument) XXX_Size() int {
478 return xxx_messageInfo_Argument.Size(m)
479}
480func (m *Argument) XXX_DiscardUnknown() {
481 xxx_messageInfo_Argument.DiscardUnknown(m)
482}
483
484var xxx_messageInfo_Argument proto.InternalMessageInfo
485
486func (m *Argument) GetKey() string {
487 if m != nil {
488 return m.Key
489 }
490 return ""
491}
492
493func (m *Argument) GetValue() *any.Any {
494 if m != nil {
495 return m.Value
496 }
497 return nil
498}
499
500type InterContainerMessage struct {
501 Header *Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
502 Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
503 XXX_NoUnkeyedLiteral struct{} `json:"-"`
504 XXX_unrecognized []byte `json:"-"`
505 XXX_sizecache int32 `json:"-"`
506}
507
508func (m *InterContainerMessage) Reset() { *m = InterContainerMessage{} }
509func (m *InterContainerMessage) String() string { return proto.CompactTextString(m) }
510func (*InterContainerMessage) ProtoMessage() {}
511func (*InterContainerMessage) Descriptor() ([]byte, []int) {
512 return fileDescriptor_941f0031a549667f, []int{8}
513}
514
515func (m *InterContainerMessage) XXX_Unmarshal(b []byte) error {
516 return xxx_messageInfo_InterContainerMessage.Unmarshal(m, b)
517}
518func (m *InterContainerMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
519 return xxx_messageInfo_InterContainerMessage.Marshal(b, m, deterministic)
520}
521func (m *InterContainerMessage) XXX_Merge(src proto.Message) {
522 xxx_messageInfo_InterContainerMessage.Merge(m, src)
523}
524func (m *InterContainerMessage) XXX_Size() int {
525 return xxx_messageInfo_InterContainerMessage.Size(m)
526}
527func (m *InterContainerMessage) XXX_DiscardUnknown() {
528 xxx_messageInfo_InterContainerMessage.DiscardUnknown(m)
529}
530
531var xxx_messageInfo_InterContainerMessage proto.InternalMessageInfo
532
533func (m *InterContainerMessage) GetHeader() *Header {
534 if m != nil {
535 return m.Header
536 }
537 return nil
538}
539
540func (m *InterContainerMessage) GetBody() *any.Any {
541 if m != nil {
542 return m.Body
543 }
544 return nil
545}
546
547type InterContainerRequestBody struct {
548 Rpc string `protobuf:"bytes,2,opt,name=rpc,proto3" json:"rpc,omitempty"`
549 Args []*Argument `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"`
550 ResponseRequired bool `protobuf:"varint,4,opt,name=response_required,json=responseRequired,proto3" json:"response_required,omitempty"`
551 ReplyToTopic string `protobuf:"bytes,5,opt,name=reply_to_topic,json=replyToTopic,proto3" json:"reply_to_topic,omitempty"`
552 XXX_NoUnkeyedLiteral struct{} `json:"-"`
553 XXX_unrecognized []byte `json:"-"`
554 XXX_sizecache int32 `json:"-"`
555}
556
557func (m *InterContainerRequestBody) Reset() { *m = InterContainerRequestBody{} }
558func (m *InterContainerRequestBody) String() string { return proto.CompactTextString(m) }
559func (*InterContainerRequestBody) ProtoMessage() {}
560func (*InterContainerRequestBody) Descriptor() ([]byte, []int) {
561 return fileDescriptor_941f0031a549667f, []int{9}
562}
563
564func (m *InterContainerRequestBody) XXX_Unmarshal(b []byte) error {
565 return xxx_messageInfo_InterContainerRequestBody.Unmarshal(m, b)
566}
567func (m *InterContainerRequestBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
568 return xxx_messageInfo_InterContainerRequestBody.Marshal(b, m, deterministic)
569}
570func (m *InterContainerRequestBody) XXX_Merge(src proto.Message) {
571 xxx_messageInfo_InterContainerRequestBody.Merge(m, src)
572}
573func (m *InterContainerRequestBody) XXX_Size() int {
574 return xxx_messageInfo_InterContainerRequestBody.Size(m)
575}
576func (m *InterContainerRequestBody) XXX_DiscardUnknown() {
577 xxx_messageInfo_InterContainerRequestBody.DiscardUnknown(m)
578}
579
580var xxx_messageInfo_InterContainerRequestBody proto.InternalMessageInfo
581
582func (m *InterContainerRequestBody) GetRpc() string {
583 if m != nil {
584 return m.Rpc
585 }
586 return ""
587}
588
589func (m *InterContainerRequestBody) GetArgs() []*Argument {
590 if m != nil {
591 return m.Args
592 }
593 return nil
594}
595
596func (m *InterContainerRequestBody) GetResponseRequired() bool {
597 if m != nil {
598 return m.ResponseRequired
599 }
600 return false
601}
602
603func (m *InterContainerRequestBody) GetReplyToTopic() string {
604 if m != nil {
605 return m.ReplyToTopic
606 }
607 return ""
608}
609
610type InterContainerResponseBody struct {
611 Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
612 Result *any.Any `protobuf:"bytes,3,opt,name=result,proto3" json:"result,omitempty"`
613 XXX_NoUnkeyedLiteral struct{} `json:"-"`
614 XXX_unrecognized []byte `json:"-"`
615 XXX_sizecache int32 `json:"-"`
616}
617
618func (m *InterContainerResponseBody) Reset() { *m = InterContainerResponseBody{} }
619func (m *InterContainerResponseBody) String() string { return proto.CompactTextString(m) }
620func (*InterContainerResponseBody) ProtoMessage() {}
621func (*InterContainerResponseBody) Descriptor() ([]byte, []int) {
622 return fileDescriptor_941f0031a549667f, []int{10}
623}
624
625func (m *InterContainerResponseBody) XXX_Unmarshal(b []byte) error {
626 return xxx_messageInfo_InterContainerResponseBody.Unmarshal(m, b)
627}
628func (m *InterContainerResponseBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
629 return xxx_messageInfo_InterContainerResponseBody.Marshal(b, m, deterministic)
630}
631func (m *InterContainerResponseBody) XXX_Merge(src proto.Message) {
632 xxx_messageInfo_InterContainerResponseBody.Merge(m, src)
633}
634func (m *InterContainerResponseBody) XXX_Size() int {
635 return xxx_messageInfo_InterContainerResponseBody.Size(m)
636}
637func (m *InterContainerResponseBody) XXX_DiscardUnknown() {
638 xxx_messageInfo_InterContainerResponseBody.DiscardUnknown(m)
639}
640
641var xxx_messageInfo_InterContainerResponseBody proto.InternalMessageInfo
642
643func (m *InterContainerResponseBody) GetSuccess() bool {
644 if m != nil {
645 return m.Success
646 }
647 return false
648}
649
650func (m *InterContainerResponseBody) GetResult() *any.Any {
651 if m != nil {
652 return m.Result
653 }
654 return nil
655}
656
657type SwitchCapability struct {
658 Desc *openflow_13.OfpDesc `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc,omitempty"`
659 SwitchFeatures *openflow_13.OfpSwitchFeatures `protobuf:"bytes,2,opt,name=switch_features,json=switchFeatures,proto3" json:"switch_features,omitempty"`
660 XXX_NoUnkeyedLiteral struct{} `json:"-"`
661 XXX_unrecognized []byte `json:"-"`
662 XXX_sizecache int32 `json:"-"`
663}
664
665func (m *SwitchCapability) Reset() { *m = SwitchCapability{} }
666func (m *SwitchCapability) String() string { return proto.CompactTextString(m) }
667func (*SwitchCapability) ProtoMessage() {}
668func (*SwitchCapability) Descriptor() ([]byte, []int) {
669 return fileDescriptor_941f0031a549667f, []int{11}
670}
671
672func (m *SwitchCapability) XXX_Unmarshal(b []byte) error {
673 return xxx_messageInfo_SwitchCapability.Unmarshal(m, b)
674}
675func (m *SwitchCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
676 return xxx_messageInfo_SwitchCapability.Marshal(b, m, deterministic)
677}
678func (m *SwitchCapability) XXX_Merge(src proto.Message) {
679 xxx_messageInfo_SwitchCapability.Merge(m, src)
680}
681func (m *SwitchCapability) XXX_Size() int {
682 return xxx_messageInfo_SwitchCapability.Size(m)
683}
684func (m *SwitchCapability) XXX_DiscardUnknown() {
685 xxx_messageInfo_SwitchCapability.DiscardUnknown(m)
686}
687
688var xxx_messageInfo_SwitchCapability proto.InternalMessageInfo
689
690func (m *SwitchCapability) GetDesc() *openflow_13.OfpDesc {
691 if m != nil {
692 return m.Desc
693 }
694 return nil
695}
696
697func (m *SwitchCapability) GetSwitchFeatures() *openflow_13.OfpSwitchFeatures {
698 if m != nil {
699 return m.SwitchFeatures
700 }
701 return nil
702}
703
704type PortCapability struct {
705 Port *voltha.LogicalPort `protobuf:"bytes,1,opt,name=port,proto3" json:"port,omitempty"`
706 XXX_NoUnkeyedLiteral struct{} `json:"-"`
707 XXX_unrecognized []byte `json:"-"`
708 XXX_sizecache int32 `json:"-"`
709}
710
711func (m *PortCapability) Reset() { *m = PortCapability{} }
712func (m *PortCapability) String() string { return proto.CompactTextString(m) }
713func (*PortCapability) ProtoMessage() {}
714func (*PortCapability) Descriptor() ([]byte, []int) {
715 return fileDescriptor_941f0031a549667f, []int{12}
716}
717
718func (m *PortCapability) XXX_Unmarshal(b []byte) error {
719 return xxx_messageInfo_PortCapability.Unmarshal(m, b)
720}
721func (m *PortCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
722 return xxx_messageInfo_PortCapability.Marshal(b, m, deterministic)
723}
724func (m *PortCapability) XXX_Merge(src proto.Message) {
725 xxx_messageInfo_PortCapability.Merge(m, src)
726}
727func (m *PortCapability) XXX_Size() int {
728 return xxx_messageInfo_PortCapability.Size(m)
729}
730func (m *PortCapability) XXX_DiscardUnknown() {
731 xxx_messageInfo_PortCapability.DiscardUnknown(m)
732}
733
734var xxx_messageInfo_PortCapability proto.InternalMessageInfo
735
736func (m *PortCapability) GetPort() *voltha.LogicalPort {
737 if m != nil {
738 return m.Port
739 }
740 return nil
741}
742
743type DeviceDiscovered struct {
744 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
745 ParentId string `protobuf:"bytes,2,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
746 DeviceType string `protobuf:"bytes,3,opt,name=device_type,json=deviceType,proto3" json:"device_type,omitempty"`
747 Publisher string `protobuf:"bytes,4,opt,name=publisher,proto3" json:"publisher,omitempty"`
748 XXX_NoUnkeyedLiteral struct{} `json:"-"`
749 XXX_unrecognized []byte `json:"-"`
750 XXX_sizecache int32 `json:"-"`
751}
752
753func (m *DeviceDiscovered) Reset() { *m = DeviceDiscovered{} }
754func (m *DeviceDiscovered) String() string { return proto.CompactTextString(m) }
755func (*DeviceDiscovered) ProtoMessage() {}
756func (*DeviceDiscovered) Descriptor() ([]byte, []int) {
757 return fileDescriptor_941f0031a549667f, []int{13}
758}
759
760func (m *DeviceDiscovered) XXX_Unmarshal(b []byte) error {
761 return xxx_messageInfo_DeviceDiscovered.Unmarshal(m, b)
762}
763func (m *DeviceDiscovered) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
764 return xxx_messageInfo_DeviceDiscovered.Marshal(b, m, deterministic)
765}
766func (m *DeviceDiscovered) XXX_Merge(src proto.Message) {
767 xxx_messageInfo_DeviceDiscovered.Merge(m, src)
768}
769func (m *DeviceDiscovered) XXX_Size() int {
770 return xxx_messageInfo_DeviceDiscovered.Size(m)
771}
772func (m *DeviceDiscovered) XXX_DiscardUnknown() {
773 xxx_messageInfo_DeviceDiscovered.DiscardUnknown(m)
774}
775
776var xxx_messageInfo_DeviceDiscovered proto.InternalMessageInfo
777
778func (m *DeviceDiscovered) GetId() string {
779 if m != nil {
780 return m.Id
781 }
782 return ""
783}
784
785func (m *DeviceDiscovered) GetParentId() string {
786 if m != nil {
787 return m.ParentId
788 }
789 return ""
790}
791
792func (m *DeviceDiscovered) GetDeviceType() string {
793 if m != nil {
794 return m.DeviceType
795 }
796 return ""
797}
798
799func (m *DeviceDiscovered) GetPublisher() string {
800 if m != nil {
801 return m.Publisher
802 }
803 return ""
804}
805
806type InterAdapterMessageType struct {
807 XXX_NoUnkeyedLiteral struct{} `json:"-"`
808 XXX_unrecognized []byte `json:"-"`
809 XXX_sizecache int32 `json:"-"`
810}
811
812func (m *InterAdapterMessageType) Reset() { *m = InterAdapterMessageType{} }
813func (m *InterAdapterMessageType) String() string { return proto.CompactTextString(m) }
814func (*InterAdapterMessageType) ProtoMessage() {}
815func (*InterAdapterMessageType) Descriptor() ([]byte, []int) {
816 return fileDescriptor_941f0031a549667f, []int{14}
817}
818
819func (m *InterAdapterMessageType) XXX_Unmarshal(b []byte) error {
820 return xxx_messageInfo_InterAdapterMessageType.Unmarshal(m, b)
821}
822func (m *InterAdapterMessageType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
823 return xxx_messageInfo_InterAdapterMessageType.Marshal(b, m, deterministic)
824}
825func (m *InterAdapterMessageType) XXX_Merge(src proto.Message) {
826 xxx_messageInfo_InterAdapterMessageType.Merge(m, src)
827}
828func (m *InterAdapterMessageType) XXX_Size() int {
829 return xxx_messageInfo_InterAdapterMessageType.Size(m)
830}
831func (m *InterAdapterMessageType) XXX_DiscardUnknown() {
832 xxx_messageInfo_InterAdapterMessageType.DiscardUnknown(m)
833}
834
835var xxx_messageInfo_InterAdapterMessageType proto.InternalMessageInfo
836
837type InterAdapterHeader struct {
838 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
839 Type InterAdapterMessageType_Types `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.InterAdapterMessageType_Types" json:"type,omitempty"`
840 FromTopic string `protobuf:"bytes,3,opt,name=from_topic,json=fromTopic,proto3" json:"from_topic,omitempty"`
841 ToTopic string `protobuf:"bytes,4,opt,name=to_topic,json=toTopic,proto3" json:"to_topic,omitempty"`
842 ToDeviceId string `protobuf:"bytes,5,opt,name=to_device_id,json=toDeviceId,proto3" json:"to_device_id,omitempty"`
843 ProxyDeviceId string `protobuf:"bytes,6,opt,name=proxy_device_id,json=proxyDeviceId,proto3" json:"proxy_device_id,omitempty"`
844 Timestamp int64 `protobuf:"varint,7,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
845 XXX_NoUnkeyedLiteral struct{} `json:"-"`
846 XXX_unrecognized []byte `json:"-"`
847 XXX_sizecache int32 `json:"-"`
848}
849
850func (m *InterAdapterHeader) Reset() { *m = InterAdapterHeader{} }
851func (m *InterAdapterHeader) String() string { return proto.CompactTextString(m) }
852func (*InterAdapterHeader) ProtoMessage() {}
853func (*InterAdapterHeader) Descriptor() ([]byte, []int) {
854 return fileDescriptor_941f0031a549667f, []int{15}
855}
856
857func (m *InterAdapterHeader) XXX_Unmarshal(b []byte) error {
858 return xxx_messageInfo_InterAdapterHeader.Unmarshal(m, b)
859}
860func (m *InterAdapterHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
861 return xxx_messageInfo_InterAdapterHeader.Marshal(b, m, deterministic)
862}
863func (m *InterAdapterHeader) XXX_Merge(src proto.Message) {
864 xxx_messageInfo_InterAdapterHeader.Merge(m, src)
865}
866func (m *InterAdapterHeader) XXX_Size() int {
867 return xxx_messageInfo_InterAdapterHeader.Size(m)
868}
869func (m *InterAdapterHeader) XXX_DiscardUnknown() {
870 xxx_messageInfo_InterAdapterHeader.DiscardUnknown(m)
871}
872
873var xxx_messageInfo_InterAdapterHeader proto.InternalMessageInfo
874
875func (m *InterAdapterHeader) GetId() string {
876 if m != nil {
877 return m.Id
878 }
879 return ""
880}
881
882func (m *InterAdapterHeader) GetType() InterAdapterMessageType_Types {
883 if m != nil {
884 return m.Type
885 }
886 return InterAdapterMessageType_FLOW_REQUEST
887}
888
889func (m *InterAdapterHeader) GetFromTopic() string {
890 if m != nil {
891 return m.FromTopic
892 }
893 return ""
894}
895
896func (m *InterAdapterHeader) GetToTopic() string {
897 if m != nil {
898 return m.ToTopic
899 }
900 return ""
901}
902
903func (m *InterAdapterHeader) GetToDeviceId() string {
904 if m != nil {
905 return m.ToDeviceId
906 }
907 return ""
908}
909
910func (m *InterAdapterHeader) GetProxyDeviceId() string {
911 if m != nil {
912 return m.ProxyDeviceId
913 }
914 return ""
915}
916
917func (m *InterAdapterHeader) GetTimestamp() int64 {
918 if m != nil {
919 return m.Timestamp
920 }
921 return 0
922}
923
924type InterAdapterOmciMessage struct {
925 Message []byte `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
926 XXX_NoUnkeyedLiteral struct{} `json:"-"`
927 XXX_unrecognized []byte `json:"-"`
928 XXX_sizecache int32 `json:"-"`
929}
930
931func (m *InterAdapterOmciMessage) Reset() { *m = InterAdapterOmciMessage{} }
932func (m *InterAdapterOmciMessage) String() string { return proto.CompactTextString(m) }
933func (*InterAdapterOmciMessage) ProtoMessage() {}
934func (*InterAdapterOmciMessage) Descriptor() ([]byte, []int) {
935 return fileDescriptor_941f0031a549667f, []int{16}
936}
937
938func (m *InterAdapterOmciMessage) XXX_Unmarshal(b []byte) error {
939 return xxx_messageInfo_InterAdapterOmciMessage.Unmarshal(m, b)
940}
941func (m *InterAdapterOmciMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
942 return xxx_messageInfo_InterAdapterOmciMessage.Marshal(b, m, deterministic)
943}
944func (m *InterAdapterOmciMessage) XXX_Merge(src proto.Message) {
945 xxx_messageInfo_InterAdapterOmciMessage.Merge(m, src)
946}
947func (m *InterAdapterOmciMessage) XXX_Size() int {
948 return xxx_messageInfo_InterAdapterOmciMessage.Size(m)
949}
950func (m *InterAdapterOmciMessage) XXX_DiscardUnknown() {
951 xxx_messageInfo_InterAdapterOmciMessage.DiscardUnknown(m)
952}
953
954var xxx_messageInfo_InterAdapterOmciMessage proto.InternalMessageInfo
955
956func (m *InterAdapterOmciMessage) GetMessage() []byte {
957 if m != nil {
958 return m.Message
959 }
960 return nil
961}
962
Matt Jeanneretf61d3422019-04-19 15:01:52 -0400963type InterAdapterTechProfileDownloadMessage struct {
964 UniId uint32 `protobuf:"varint,1,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"`
965 Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
966 XXX_NoUnkeyedLiteral struct{} `json:"-"`
967 XXX_unrecognized []byte `json:"-"`
968 XXX_sizecache int32 `json:"-"`
969}
970
971func (m *InterAdapterTechProfileDownloadMessage) Reset() {
972 *m = InterAdapterTechProfileDownloadMessage{}
973}
974func (m *InterAdapterTechProfileDownloadMessage) String() string { return proto.CompactTextString(m) }
975func (*InterAdapterTechProfileDownloadMessage) ProtoMessage() {}
976func (*InterAdapterTechProfileDownloadMessage) Descriptor() ([]byte, []int) {
977 return fileDescriptor_941f0031a549667f, []int{17}
978}
979
980func (m *InterAdapterTechProfileDownloadMessage) XXX_Unmarshal(b []byte) error {
981 return xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Unmarshal(m, b)
982}
983func (m *InterAdapterTechProfileDownloadMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
984 return xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Marshal(b, m, deterministic)
985}
986func (m *InterAdapterTechProfileDownloadMessage) XXX_Merge(src proto.Message) {
987 xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Merge(m, src)
988}
989func (m *InterAdapterTechProfileDownloadMessage) XXX_Size() int {
990 return xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Size(m)
991}
992func (m *InterAdapterTechProfileDownloadMessage) XXX_DiscardUnknown() {
993 xxx_messageInfo_InterAdapterTechProfileDownloadMessage.DiscardUnknown(m)
994}
995
996var xxx_messageInfo_InterAdapterTechProfileDownloadMessage proto.InternalMessageInfo
997
998func (m *InterAdapterTechProfileDownloadMessage) GetUniId() uint32 {
999 if m != nil {
1000 return m.UniId
1001 }
1002 return 0
1003}
1004
1005func (m *InterAdapterTechProfileDownloadMessage) GetPath() string {
1006 if m != nil {
1007 return m.Path
1008 }
1009 return ""
1010}
1011
William Kurkianea869482019-04-09 15:16:11 -04001012type InterAdapterResponseBody struct {
1013 Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
1014 // Types that are valid to be assigned to Payload:
1015 // *InterAdapterResponseBody_Body
1016 // *InterAdapterResponseBody_Omci
1017 Payload isInterAdapterResponseBody_Payload `protobuf_oneof:"payload"`
1018 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1019 XXX_unrecognized []byte `json:"-"`
1020 XXX_sizecache int32 `json:"-"`
1021}
1022
1023func (m *InterAdapterResponseBody) Reset() { *m = InterAdapterResponseBody{} }
1024func (m *InterAdapterResponseBody) String() string { return proto.CompactTextString(m) }
1025func (*InterAdapterResponseBody) ProtoMessage() {}
1026func (*InterAdapterResponseBody) Descriptor() ([]byte, []int) {
Matt Jeanneretf61d3422019-04-19 15:01:52 -04001027 return fileDescriptor_941f0031a549667f, []int{18}
William Kurkianea869482019-04-09 15:16:11 -04001028}
1029
1030func (m *InterAdapterResponseBody) XXX_Unmarshal(b []byte) error {
1031 return xxx_messageInfo_InterAdapterResponseBody.Unmarshal(m, b)
1032}
1033func (m *InterAdapterResponseBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1034 return xxx_messageInfo_InterAdapterResponseBody.Marshal(b, m, deterministic)
1035}
1036func (m *InterAdapterResponseBody) XXX_Merge(src proto.Message) {
1037 xxx_messageInfo_InterAdapterResponseBody.Merge(m, src)
1038}
1039func (m *InterAdapterResponseBody) XXX_Size() int {
1040 return xxx_messageInfo_InterAdapterResponseBody.Size(m)
1041}
1042func (m *InterAdapterResponseBody) XXX_DiscardUnknown() {
1043 xxx_messageInfo_InterAdapterResponseBody.DiscardUnknown(m)
1044}
1045
1046var xxx_messageInfo_InterAdapterResponseBody proto.InternalMessageInfo
1047
1048func (m *InterAdapterResponseBody) GetStatus() bool {
1049 if m != nil {
1050 return m.Status
1051 }
1052 return false
1053}
1054
1055type isInterAdapterResponseBody_Payload interface {
1056 isInterAdapterResponseBody_Payload()
1057}
1058
1059type InterAdapterResponseBody_Body struct {
1060 Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3,oneof"`
1061}
1062
1063type InterAdapterResponseBody_Omci struct {
1064 Omci *InterAdapterOmciMessage `protobuf:"bytes,3,opt,name=omci,proto3,oneof"`
1065}
1066
1067func (*InterAdapterResponseBody_Body) isInterAdapterResponseBody_Payload() {}
1068
1069func (*InterAdapterResponseBody_Omci) isInterAdapterResponseBody_Payload() {}
1070
1071func (m *InterAdapterResponseBody) GetPayload() isInterAdapterResponseBody_Payload {
1072 if m != nil {
1073 return m.Payload
1074 }
1075 return nil
1076}
1077
1078func (m *InterAdapterResponseBody) GetBody() *any.Any {
1079 if x, ok := m.GetPayload().(*InterAdapterResponseBody_Body); ok {
1080 return x.Body
1081 }
1082 return nil
1083}
1084
1085func (m *InterAdapterResponseBody) GetOmci() *InterAdapterOmciMessage {
1086 if x, ok := m.GetPayload().(*InterAdapterResponseBody_Omci); ok {
1087 return x.Omci
1088 }
1089 return nil
1090}
1091
1092// XXX_OneofWrappers is for the internal use of the proto package.
1093func (*InterAdapterResponseBody) XXX_OneofWrappers() []interface{} {
1094 return []interface{}{
1095 (*InterAdapterResponseBody_Body)(nil),
1096 (*InterAdapterResponseBody_Omci)(nil),
1097 }
1098}
1099
1100type InterAdapterMessage struct {
1101 Header *InterAdapterHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
1102 Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
1103 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1104 XXX_unrecognized []byte `json:"-"`
1105 XXX_sizecache int32 `json:"-"`
1106}
1107
1108func (m *InterAdapterMessage) Reset() { *m = InterAdapterMessage{} }
1109func (m *InterAdapterMessage) String() string { return proto.CompactTextString(m) }
1110func (*InterAdapterMessage) ProtoMessage() {}
1111func (*InterAdapterMessage) Descriptor() ([]byte, []int) {
Matt Jeanneretf61d3422019-04-19 15:01:52 -04001112 return fileDescriptor_941f0031a549667f, []int{19}
William Kurkianea869482019-04-09 15:16:11 -04001113}
1114
1115func (m *InterAdapterMessage) XXX_Unmarshal(b []byte) error {
1116 return xxx_messageInfo_InterAdapterMessage.Unmarshal(m, b)
1117}
1118func (m *InterAdapterMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1119 return xxx_messageInfo_InterAdapterMessage.Marshal(b, m, deterministic)
1120}
1121func (m *InterAdapterMessage) XXX_Merge(src proto.Message) {
1122 xxx_messageInfo_InterAdapterMessage.Merge(m, src)
1123}
1124func (m *InterAdapterMessage) XXX_Size() int {
1125 return xxx_messageInfo_InterAdapterMessage.Size(m)
1126}
1127func (m *InterAdapterMessage) XXX_DiscardUnknown() {
1128 xxx_messageInfo_InterAdapterMessage.DiscardUnknown(m)
1129}
1130
1131var xxx_messageInfo_InterAdapterMessage proto.InternalMessageInfo
1132
1133func (m *InterAdapterMessage) GetHeader() *InterAdapterHeader {
1134 if m != nil {
1135 return m.Header
1136 }
1137 return nil
1138}
1139
1140func (m *InterAdapterMessage) GetBody() *any.Any {
1141 if m != nil {
1142 return m.Body
1143 }
1144 return nil
1145}
1146
1147func init() {
1148 proto.RegisterEnum("voltha.MessageType", MessageType_name, MessageType_value)
1149 proto.RegisterEnum("voltha.ErrorCodeCodes", ErrorCodeCodes_name, ErrorCodeCodes_value)
1150 proto.RegisterEnum("voltha.InterAdapterMessageType_Types", InterAdapterMessageType_Types_name, InterAdapterMessageType_Types_value)
1151 proto.RegisterType((*StrType)(nil), "voltha.StrType")
1152 proto.RegisterType((*IntType)(nil), "voltha.IntType")
1153 proto.RegisterType((*BoolType)(nil), "voltha.BoolType")
1154 proto.RegisterType((*Packet)(nil), "voltha.Packet")
1155 proto.RegisterType((*ErrorCode)(nil), "voltha.ErrorCode")
1156 proto.RegisterType((*Error)(nil), "voltha.Error")
1157 proto.RegisterType((*Header)(nil), "voltha.Header")
1158 proto.RegisterType((*Argument)(nil), "voltha.Argument")
1159 proto.RegisterType((*InterContainerMessage)(nil), "voltha.InterContainerMessage")
1160 proto.RegisterType((*InterContainerRequestBody)(nil), "voltha.InterContainerRequestBody")
1161 proto.RegisterType((*InterContainerResponseBody)(nil), "voltha.InterContainerResponseBody")
1162 proto.RegisterType((*SwitchCapability)(nil), "voltha.SwitchCapability")
1163 proto.RegisterType((*PortCapability)(nil), "voltha.PortCapability")
1164 proto.RegisterType((*DeviceDiscovered)(nil), "voltha.DeviceDiscovered")
1165 proto.RegisterType((*InterAdapterMessageType)(nil), "voltha.InterAdapterMessageType")
1166 proto.RegisterType((*InterAdapterHeader)(nil), "voltha.InterAdapterHeader")
1167 proto.RegisterType((*InterAdapterOmciMessage)(nil), "voltha.InterAdapterOmciMessage")
Matt Jeanneretf61d3422019-04-19 15:01:52 -04001168 proto.RegisterType((*InterAdapterTechProfileDownloadMessage)(nil), "voltha.InterAdapterTechProfileDownloadMessage")
William Kurkianea869482019-04-09 15:16:11 -04001169 proto.RegisterType((*InterAdapterResponseBody)(nil), "voltha.InterAdapterResponseBody")
1170 proto.RegisterType((*InterAdapterMessage)(nil), "voltha.InterAdapterMessage")
1171}
1172
1173func init() {
1174 proto.RegisterFile("voltha_protos/inter_container.proto", fileDescriptor_941f0031a549667f)
1175}
1176
1177var fileDescriptor_941f0031a549667f = []byte{
Matt Jeanneretf61d3422019-04-19 15:01:52 -04001178 // 1136 bytes of a gzipped FileDescriptorProto
1179 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcd, 0x6e, 0xdb, 0x46,
1180 0x17, 0x8d, 0xfe, 0xa5, 0x2b, 0x47, 0x91, 0xc7, 0x71, 0xa2, 0x38, 0x09, 0xec, 0x8f, 0x5f, 0xe2,
1181 0xb8, 0x6e, 0x2b, 0xa3, 0x76, 0x5b, 0x34, 0xab, 0x42, 0x96, 0x68, 0x98, 0x80, 0x2d, 0xa9, 0x94,
1182 0xec, 0x00, 0xdd, 0x10, 0x14, 0x39, 0x92, 0x08, 0x53, 0x1c, 0x66, 0x38, 0xb4, 0xcb, 0x4d, 0x81,
1183 0xee, 0xfa, 0x18, 0x5d, 0xf5, 0x11, 0xfa, 0x10, 0x7d, 0x90, 0x3e, 0x47, 0x31, 0x3f, 0xd4, 0x5f,
1184 0xed, 0x16, 0x68, 0x77, 0x33, 0xe7, 0x9c, 0xb9, 0x33, 0x73, 0xef, 0x9d, 0x43, 0xc2, 0xff, 0x6f,
1185 0x89, 0xcf, 0xa6, 0xb6, 0x15, 0x52, 0xc2, 0x48, 0x74, 0xe4, 0x05, 0x0c, 0x53, 0xcb, 0x21, 0x01,
1186 0xb3, 0xbd, 0x00, 0xd3, 0xa6, 0x80, 0x51, 0x51, 0x8a, 0x76, 0x5e, 0x4c, 0x08, 0x99, 0xf8, 0xf8,
1187 0x48, 0xa0, 0xa3, 0x78, 0x7c, 0x64, 0x07, 0x89, 0x94, 0xec, 0xec, 0xae, 0xc6, 0x21, 0x21, 0x0e,
1188 0xc6, 0x3e, 0xb9, 0xb3, 0xbe, 0x38, 0x51, 0x02, 0x6d, 0x55, 0xe0, 0x93, 0x89, 0xe7, 0xd8, 0xbe,
1189 0xe5, 0xe2, 0x5b, 0xcf, 0xc1, 0x52, 0xa3, 0xbd, 0x84, 0xd2, 0x80, 0xd1, 0x61, 0x12, 0x62, 0x54,
1190 0x87, 0xdc, 0xad, 0xed, 0x37, 0x32, 0x7b, 0x99, 0x83, 0x8a, 0xc9, 0x87, 0x9c, 0x34, 0x02, 0xb6,
1191 0x4e, 0xe6, 0x24, 0xf9, 0x0a, 0xca, 0xa7, 0x84, 0xf8, 0xeb, 0x6c, 0x59, 0xb2, 0x1a, 0x14, 0xfb,
1192 0xb6, 0x73, 0x83, 0x19, 0x6a, 0x40, 0x29, 0xb4, 0x13, 0x9f, 0xd8, 0xae, 0xe0, 0x37, 0xcc, 0x74,
1193 0xaa, 0xe9, 0x50, 0xd1, 0x29, 0x25, 0xb4, 0x4d, 0x5c, 0xac, 0x7d, 0x03, 0x05, 0x87, 0xb8, 0x38,
1194 0x42, 0xcf, 0x61, 0xeb, 0xaa, 0x3b, 0xb8, 0xea, 0xf7, 0x7b, 0xe6, 0x50, 0xef, 0x58, 0xa6, 0xfe,
1195 0xdd, 0x95, 0x3e, 0x18, 0xd6, 0x1f, 0xa1, 0x67, 0x80, 0x8c, 0xee, 0x75, 0xeb, 0xc2, 0xe8, 0x58,
1196 0xfd, 0x96, 0xd9, 0xba, 0xd4, 0x87, 0xba, 0x39, 0xa8, 0x67, 0xb4, 0x33, 0x28, 0x88, 0x30, 0xe8,
1197 0x2d, 0xe4, 0x79, 0x08, 0xb1, 0x4d, 0xf5, 0x78, 0xb3, 0x29, 0xaf, 0xdf, 0x9c, 0xef, 0x61, 0x0a,
1198 0x1a, 0x3d, 0x83, 0x22, 0xc5, 0x76, 0x44, 0x82, 0x46, 0x56, 0x5c, 0x55, 0xcd, 0xb4, 0xdf, 0x32,
1199 0x50, 0x3c, 0xc7, 0xb6, 0x8b, 0x29, 0xaa, 0x41, 0xd6, 0x73, 0x55, 0x26, 0xb2, 0x9e, 0x8b, 0xde,
1200 0x41, 0x9e, 0x25, 0x21, 0x16, 0x0b, 0x6a, 0xc7, 0x5b, 0x69, 0xe4, 0x4b, 0x1c, 0x45, 0xf6, 0x04,
1201 0xf3, 0x14, 0x98, 0x42, 0x80, 0x5e, 0x03, 0x8c, 0x29, 0x99, 0x59, 0x8c, 0x84, 0x9e, 0xd3, 0xc8,
1202 0x89, 0x00, 0x15, 0x8e, 0x0c, 0x39, 0x80, 0x5e, 0x40, 0x99, 0x11, 0x45, 0xe6, 0x05, 0x59, 0x62,
1203 0x44, 0x52, 0x2f, 0xa1, 0x72, 0x83, 0x13, 0xc5, 0x15, 0x04, 0x57, 0xbe, 0xc1, 0x89, 0x24, 0x5f,
1204 0x41, 0x85, 0x79, 0x33, 0x1c, 0x31, 0x7b, 0x16, 0x36, 0x8a, 0xa2, 0x06, 0x0b, 0x40, 0x3b, 0x87,
1205 0x72, 0x8b, 0x4e, 0xe2, 0x19, 0x0e, 0x18, 0xaf, 0xc4, 0x0d, 0x4e, 0xd2, 0x22, 0xde, 0xe0, 0x04,
1206 0x1d, 0x42, 0xe1, 0xd6, 0xf6, 0x63, 0x79, 0xf8, 0xea, 0xf1, 0xd3, 0xa6, 0xec, 0xa8, 0x66, 0xda,
1207 0x51, 0xcd, 0x56, 0x90, 0x98, 0x52, 0xa2, 0x79, 0xb0, 0x6d, 0xf0, 0x76, 0x6c, 0xa7, 0xdd, 0xa8,
1208 0x6e, 0x88, 0xf6, 0xa1, 0x38, 0x15, 0xa9, 0x51, 0xc9, 0xad, 0xa5, 0x29, 0x90, 0x09, 0x33, 0x15,
1209 0x8b, 0x0e, 0x20, 0x3f, 0x22, 0x6e, 0xf2, 0xb7, 0x7b, 0x09, 0x85, 0xf6, 0x6b, 0x06, 0x5e, 0xac,
1210 0xee, 0x65, 0xe2, 0x8f, 0x31, 0x8e, 0xd8, 0x29, 0x71, 0x13, 0x7e, 0x0d, 0x1a, 0x3a, 0xaa, 0x40,
1211 0x7c, 0x88, 0xde, 0x40, 0xde, 0xa6, 0x93, 0xa8, 0x91, 0xdb, 0xcb, 0x1d, 0x54, 0x8f, 0xeb, 0xe9,
1212 0xfe, 0xe9, 0xc5, 0x4d, 0xc1, 0xa2, 0x4f, 0x61, 0x93, 0xe2, 0x28, 0x24, 0x41, 0x84, 0x2d, 0x8a,
1213 0x3f, 0xc6, 0x1e, 0xc5, 0xae, 0xc8, 0x74, 0xd9, 0xac, 0xa7, 0x84, 0xa9, 0x70, 0xf4, 0x06, 0x6a,
1214 0x14, 0x87, 0x3e, 0x4f, 0xfa, 0x4a, 0xde, 0x37, 0x04, 0x3a, 0x94, 0x85, 0xd1, 0x5c, 0xd8, 0x59,
1215 0x3f, 0xa7, 0x8c, 0x23, 0x0e, 0xda, 0x80, 0x52, 0x14, 0x3b, 0x0e, 0x8e, 0x22, 0xd5, 0xfd, 0xe9,
1216 0x14, 0x7d, 0xc6, 0xdb, 0x2c, 0x8a, 0x7d, 0x26, 0xda, 0xe0, 0xa1, 0x64, 0x28, 0x8d, 0xf6, 0x73,
1217 0x06, 0xea, 0x83, 0x3b, 0x8f, 0x39, 0xd3, 0xb6, 0x1d, 0xda, 0x23, 0xcf, 0xf7, 0x58, 0x82, 0x3e,
1218 0x81, 0xbc, 0x8b, 0x23, 0x47, 0xe5, 0x7c, 0xbb, 0xb9, 0xfc, 0xc4, 0xc9, 0x38, 0xb4, 0x38, 0x69,
1219 0x0a, 0x09, 0x32, 0xe0, 0x49, 0x24, 0x96, 0x5b, 0x63, 0x6c, 0xb3, 0x98, 0xe2, 0x48, 0xd5, 0x60,
1220 0xef, 0x2f, 0xab, 0xd6, 0x74, 0x66, 0x4d, 0x02, 0x67, 0x6a, 0xae, 0xbd, 0x87, 0x5a, 0x9f, 0x50,
1221 0xb6, 0x74, 0x8e, 0x77, 0x90, 0x0f, 0x09, 0x65, 0xea, 0x1c, 0xf3, 0xf6, 0xbf, 0x90, 0x86, 0xc2,
1222 0xc5, 0xa6, 0x10, 0x68, 0x3f, 0x42, 0xbd, 0x23, 0xdc, 0xa5, 0xe3, 0x45, 0x0e, 0xb9, 0xc5, 0x3c,
1223 0xcb, 0xeb, 0x6f, 0xe9, 0x25, 0x54, 0x42, 0x9b, 0xe2, 0x80, 0x59, 0x9e, 0xab, 0x0a, 0x5c, 0x96,
1224 0x80, 0xe1, 0xa2, 0x5d, 0xa8, 0x4a, 0x7b, 0xb2, 0xc4, 0x7b, 0x93, 0x0f, 0x08, 0x24, 0x24, 0x9c,
1225 0xe6, 0x15, 0x54, 0xc2, 0x78, 0xe4, 0x7b, 0xd1, 0x14, 0x53, 0xf5, 0x84, 0x16, 0x80, 0xf6, 0x47,
1226 0x06, 0x9e, 0x8b, 0x62, 0xb5, 0x5c, 0x3b, 0x64, 0xf3, 0xf6, 0xe5, 0x2b, 0xb5, 0xdf, 0x33, 0x50,
1227 0xe0, 0x83, 0x08, 0xd5, 0x61, 0xe3, 0xec, 0xa2, 0xf7, 0x61, 0xc9, 0x5a, 0x36, 0xe1, 0xb1, 0x42,
1228 0x06, 0xfd, 0x5e, 0x77, 0xa0, 0xd7, 0x33, 0x5c, 0xd4, 0xbb, 0x6c, 0x1b, 0x73, 0x51, 0x96, 0x8b,
1229 0x14, 0xa2, 0x44, 0x39, 0xb4, 0x05, 0x4f, 0x2e, 0xf5, 0xa1, 0x69, 0xb4, 0x07, 0x73, 0x5d, 0x1e,
1230 0x3d, 0x85, 0xfa, 0x02, 0x54, 0xd2, 0x02, 0x97, 0xf6, 0xba, 0x57, 0x96, 0xd1, 0x5d, 0x58, 0x5a,
1231 0x91, 0x4b, 0x17, 0xa0, 0x92, 0x96, 0xd0, 0xff, 0xe0, 0xf5, 0x50, 0x6f, 0x9f, 0x5b, 0x7d, 0xb3,
1232 0x77, 0x66, 0x5c, 0xe8, 0x56, 0xa7, 0xf7, 0xa1, 0x7b, 0xd1, 0x6b, 0x2d, 0x16, 0x96, 0xb5, 0x9f,
1233 0xb2, 0x80, 0x96, 0x2f, 0xfa, 0x80, 0x6f, 0xbd, 0x5f, 0xf1, 0xad, 0xb7, 0x69, 0xe1, 0x1e, 0x48,
1234 0x51, 0x53, 0xa4, 0xe7, 0x3f, 0x3b, 0xd9, 0x1e, 0x6c, 0x30, 0xa2, 0xbe, 0x32, 0xbc, 0xc6, 0xf2,
1235 0x51, 0x01, 0x23, 0xb2, 0x35, 0x0c, 0x17, 0xed, 0xc3, 0x93, 0x90, 0x92, 0x1f, 0x92, 0x25, 0x51,
1236 0x51, 0x88, 0x1e, 0x0b, 0x78, 0xae, 0x5b, 0xb1, 0xbd, 0xd2, 0xba, 0xed, 0x9d, 0xac, 0xd6, 0xba,
1237 0x37, 0x73, 0xbc, 0xd4, 0xae, 0x1a, 0x50, 0x9a, 0xc9, 0x61, 0xfa, 0xcd, 0x51, 0x53, 0x6d, 0x00,
1238 0xfb, 0xcb, 0x8b, 0x86, 0xd8, 0x99, 0xf6, 0x29, 0x19, 0x7b, 0x3e, 0xee, 0x90, 0xbb, 0x80, 0x7f,
1239 0x96, 0xd2, 0x18, 0xdb, 0x50, 0x8c, 0x03, 0xcf, 0x52, 0xf9, 0x7c, 0x6c, 0x16, 0xe2, 0xc0, 0x33,
1240 0x5c, 0x84, 0x20, 0x1f, 0xda, 0x6c, 0xaa, 0x3a, 0x57, 0x8c, 0xb5, 0x5f, 0x32, 0xd0, 0x58, 0x8e,
1241 0xba, 0xe2, 0x10, 0xcf, 0xa0, 0x18, 0x31, 0x9b, 0xc5, 0xa9, 0x41, 0xa8, 0x19, 0x3a, 0xfc, 0x67,
1242 0xab, 0x3c, 0x7f, 0x24, 0xcd, 0x12, 0x7d, 0x05, 0x79, 0x32, 0x73, 0x3c, 0xe5, 0x24, 0xbb, 0xf7,
1243 0xd5, 0x71, 0xe9, 0xfa, 0x7c, 0x19, 0x97, 0x9f, 0x56, 0xe6, 0x9f, 0x5e, 0x2d, 0x82, 0xad, 0x7b,
1244 0xaa, 0x8e, 0x8e, 0xd7, 0x7c, 0x7d, 0xe7, 0xbe, 0xd0, 0xff, 0xd6, 0xe3, 0x0f, 0xbf, 0x85, 0xea,
1245 0x52, 0x7b, 0xa1, 0x2a, 0x94, 0x16, 0x4f, 0x6e, 0x03, 0xca, 0x4b, 0xaf, 0x6d, 0x1b, 0x36, 0x3b,
1246 0xfa, 0xb5, 0xd1, 0xd6, 0xad, 0x8e, 0x31, 0x68, 0xf7, 0xae, 0x75, 0x53, 0xef, 0xd4, 0xb3, 0xa7,
1247 0x5f, 0x7f, 0xff, 0xe5, 0xc4, 0x63, 0xd3, 0x78, 0xd4, 0x74, 0xc8, 0x4c, 0xfc, 0xe1, 0x38, 0x84,
1248 0xba, 0x47, 0xf2, 0x8c, 0x9f, 0xab, 0xff, 0x9a, 0x09, 0x59, 0xff, 0x87, 0xea, 0x67, 0x47, 0x45,
1249 0x41, 0x9e, 0xfc, 0x19, 0x00, 0x00, 0xff, 0xff, 0x1a, 0xaf, 0x50, 0xc3, 0x6d, 0x09, 0x00, 0x00,
William Kurkianea869482019-04-09 15:16:11 -04001250}