William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 | // source: voltha_protos/events.proto |
| 3 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4 | package voltha |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6 | import ( |
| 7 | fmt "fmt" |
| 8 | proto "github.com/golang/protobuf/proto" |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 9 | timestamp "github.com/golang/protobuf/ptypes/timestamp" |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 10 | common "github.com/opencord/voltha-protos/v4/go/common" |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 11 | _ "google.golang.org/genproto/googleapis/api/annotations" |
| 12 | math "math" |
| 13 | ) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 14 | |
| 15 | // Reference imports to suppress errors if they are not otherwise used. |
| 16 | var _ = proto.Marshal |
| 17 | var _ = fmt.Errorf |
| 18 | var _ = 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. |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 24 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 25 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 26 | type ConfigEventType_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 27 | |
| 28 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 29 | ConfigEventType_add ConfigEventType_Types = 0 |
| 30 | ConfigEventType_remove ConfigEventType_Types = 1 |
| 31 | ConfigEventType_update ConfigEventType_Types = 2 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 32 | ) |
| 33 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 34 | var ConfigEventType_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 35 | 0: "add", |
| 36 | 1: "remove", |
| 37 | 2: "update", |
| 38 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 39 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 40 | var ConfigEventType_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 41 | "add": 0, |
| 42 | "remove": 1, |
| 43 | "update": 2, |
| 44 | } |
| 45 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 46 | func (x ConfigEventType_Types) String() string { |
| 47 | return proto.EnumName(ConfigEventType_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 48 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 49 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 50 | func (ConfigEventType_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 51 | return fileDescriptor_e63e6c07044fd2c4, []int{0, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 52 | } |
| 53 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 54 | type KpiEventType_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 55 | |
| 56 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 57 | KpiEventType_slice KpiEventType_Types = 0 |
| 58 | KpiEventType_ts KpiEventType_Types = 1 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 59 | ) |
| 60 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 61 | var KpiEventType_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 62 | 0: "slice", |
| 63 | 1: "ts", |
| 64 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 65 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 66 | var KpiEventType_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 67 | "slice": 0, |
| 68 | "ts": 1, |
| 69 | } |
| 70 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 71 | func (x KpiEventType_Types) String() string { |
| 72 | return proto.EnumName(KpiEventType_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 73 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 74 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 75 | func (KpiEventType_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 76 | return fileDescriptor_e63e6c07044fd2c4, []int{2, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 77 | } |
| 78 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 79 | type EventCategory_Types int32 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 80 | |
| 81 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 82 | EventCategory_COMMUNICATION EventCategory_Types = 0 |
| 83 | EventCategory_ENVIRONMENT EventCategory_Types = 1 |
| 84 | EventCategory_EQUIPMENT EventCategory_Types = 2 |
| 85 | EventCategory_SERVICE EventCategory_Types = 3 |
| 86 | EventCategory_PROCESSING EventCategory_Types = 4 |
| 87 | EventCategory_SECURITY EventCategory_Types = 5 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 88 | ) |
| 89 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 90 | var EventCategory_Types_name = map[int32]string{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 91 | 0: "COMMUNICATION", |
| 92 | 1: "ENVIRONMENT", |
| 93 | 2: "EQUIPMENT", |
| 94 | 3: "SERVICE", |
| 95 | 4: "PROCESSING", |
| 96 | 5: "SECURITY", |
| 97 | } |
| 98 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 99 | var EventCategory_Types_value = map[string]int32{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 100 | "COMMUNICATION": 0, |
| 101 | "ENVIRONMENT": 1, |
| 102 | "EQUIPMENT": 2, |
| 103 | "SERVICE": 3, |
| 104 | "PROCESSING": 4, |
| 105 | "SECURITY": 5, |
| 106 | } |
| 107 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 108 | func (x EventCategory_Types) String() string { |
| 109 | return proto.EnumName(EventCategory_Types_name, int32(x)) |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 110 | } |
| 111 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 112 | func (EventCategory_Types) EnumDescriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 113 | return fileDescriptor_e63e6c07044fd2c4, []int{10, 0} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 114 | } |
| 115 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 116 | type EventSubCategory_Types int32 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 117 | |
| 118 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 119 | EventSubCategory_PON EventSubCategory_Types = 0 |
| 120 | EventSubCategory_OLT EventSubCategory_Types = 1 |
| 121 | EventSubCategory_ONT EventSubCategory_Types = 2 |
| 122 | EventSubCategory_ONU EventSubCategory_Types = 3 |
| 123 | EventSubCategory_NNI EventSubCategory_Types = 4 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 124 | ) |
| 125 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 126 | var EventSubCategory_Types_name = map[int32]string{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 127 | 0: "PON", |
| 128 | 1: "OLT", |
| 129 | 2: "ONT", |
| 130 | 3: "ONU", |
| 131 | 4: "NNI", |
| 132 | } |
| 133 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 134 | var EventSubCategory_Types_value = map[string]int32{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 135 | "PON": 0, |
| 136 | "OLT": 1, |
| 137 | "ONT": 2, |
| 138 | "ONU": 3, |
| 139 | "NNI": 4, |
| 140 | } |
| 141 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 142 | func (x EventSubCategory_Types) String() string { |
| 143 | return proto.EnumName(EventSubCategory_Types_name, int32(x)) |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 144 | } |
| 145 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 146 | func (EventSubCategory_Types) EnumDescriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 147 | return fileDescriptor_e63e6c07044fd2c4, []int{11, 0} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 148 | } |
| 149 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 150 | type EventType_Types int32 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 151 | |
| 152 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 153 | EventType_CONFIG_EVENT EventType_Types = 0 |
| 154 | EventType_KPI_EVENT EventType_Types = 1 |
| 155 | EventType_KPI_EVENT2 EventType_Types = 2 |
| 156 | EventType_DEVICE_EVENT EventType_Types = 3 |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 157 | EventType_RPC_EVENT EventType_Types = 4 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 158 | ) |
| 159 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 160 | var EventType_Types_name = map[int32]string{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 161 | 0: "CONFIG_EVENT", |
| 162 | 1: "KPI_EVENT", |
| 163 | 2: "KPI_EVENT2", |
| 164 | 3: "DEVICE_EVENT", |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 165 | 4: "RPC_EVENT", |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 166 | } |
| 167 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 168 | var EventType_Types_value = map[string]int32{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 169 | "CONFIG_EVENT": 0, |
| 170 | "KPI_EVENT": 1, |
| 171 | "KPI_EVENT2": 2, |
| 172 | "DEVICE_EVENT": 3, |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 173 | "RPC_EVENT": 4, |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 174 | } |
| 175 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 176 | func (x EventType_Types) String() string { |
| 177 | return proto.EnumName(EventType_Types_name, int32(x)) |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 178 | } |
| 179 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 180 | func (EventType_Types) EnumDescriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 181 | return fileDescriptor_e63e6c07044fd2c4, []int{12, 0} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 182 | } |
| 183 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 184 | type ConfigEventType struct { |
| 185 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 186 | XXX_unrecognized []byte `json:"-"` |
| 187 | XXX_sizecache int32 `json:"-"` |
| 188 | } |
| 189 | |
| 190 | func (m *ConfigEventType) Reset() { *m = ConfigEventType{} } |
| 191 | func (m *ConfigEventType) String() string { return proto.CompactTextString(m) } |
| 192 | func (*ConfigEventType) ProtoMessage() {} |
| 193 | func (*ConfigEventType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 194 | return fileDescriptor_e63e6c07044fd2c4, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 195 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 196 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 197 | func (m *ConfigEventType) XXX_Unmarshal(b []byte) error { |
| 198 | return xxx_messageInfo_ConfigEventType.Unmarshal(m, b) |
| 199 | } |
| 200 | func (m *ConfigEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 201 | return xxx_messageInfo_ConfigEventType.Marshal(b, m, deterministic) |
| 202 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 203 | func (m *ConfigEventType) XXX_Merge(src proto.Message) { |
| 204 | xxx_messageInfo_ConfigEventType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 205 | } |
| 206 | func (m *ConfigEventType) XXX_Size() int { |
| 207 | return xxx_messageInfo_ConfigEventType.Size(m) |
| 208 | } |
| 209 | func (m *ConfigEventType) XXX_DiscardUnknown() { |
| 210 | xxx_messageInfo_ConfigEventType.DiscardUnknown(m) |
| 211 | } |
| 212 | |
| 213 | var xxx_messageInfo_ConfigEventType proto.InternalMessageInfo |
| 214 | |
| 215 | type ConfigEvent struct { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 216 | Type ConfigEventType_Types `protobuf:"varint,1,opt,name=type,proto3,enum=voltha.ConfigEventType_Types" json:"type,omitempty"` |
| 217 | Hash string `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"` |
| 218 | Data string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` |
| 219 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 220 | XXX_unrecognized []byte `json:"-"` |
| 221 | XXX_sizecache int32 `json:"-"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | func (m *ConfigEvent) Reset() { *m = ConfigEvent{} } |
| 225 | func (m *ConfigEvent) String() string { return proto.CompactTextString(m) } |
| 226 | func (*ConfigEvent) ProtoMessage() {} |
| 227 | func (*ConfigEvent) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 228 | return fileDescriptor_e63e6c07044fd2c4, []int{1} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 229 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 230 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 231 | func (m *ConfigEvent) XXX_Unmarshal(b []byte) error { |
| 232 | return xxx_messageInfo_ConfigEvent.Unmarshal(m, b) |
| 233 | } |
| 234 | func (m *ConfigEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 235 | return xxx_messageInfo_ConfigEvent.Marshal(b, m, deterministic) |
| 236 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 237 | func (m *ConfigEvent) XXX_Merge(src proto.Message) { |
| 238 | xxx_messageInfo_ConfigEvent.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 239 | } |
| 240 | func (m *ConfigEvent) XXX_Size() int { |
| 241 | return xxx_messageInfo_ConfigEvent.Size(m) |
| 242 | } |
| 243 | func (m *ConfigEvent) XXX_DiscardUnknown() { |
| 244 | xxx_messageInfo_ConfigEvent.DiscardUnknown(m) |
| 245 | } |
| 246 | |
| 247 | var xxx_messageInfo_ConfigEvent proto.InternalMessageInfo |
| 248 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 249 | func (m *ConfigEvent) GetType() ConfigEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 250 | if m != nil { |
| 251 | return m.Type |
| 252 | } |
| 253 | return ConfigEventType_add |
| 254 | } |
| 255 | |
| 256 | func (m *ConfigEvent) GetHash() string { |
| 257 | if m != nil { |
| 258 | return m.Hash |
| 259 | } |
| 260 | return "" |
| 261 | } |
| 262 | |
| 263 | func (m *ConfigEvent) GetData() string { |
| 264 | if m != nil { |
| 265 | return m.Data |
| 266 | } |
| 267 | return "" |
| 268 | } |
| 269 | |
| 270 | type KpiEventType struct { |
| 271 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 272 | XXX_unrecognized []byte `json:"-"` |
| 273 | XXX_sizecache int32 `json:"-"` |
| 274 | } |
| 275 | |
| 276 | func (m *KpiEventType) Reset() { *m = KpiEventType{} } |
| 277 | func (m *KpiEventType) String() string { return proto.CompactTextString(m) } |
| 278 | func (*KpiEventType) ProtoMessage() {} |
| 279 | func (*KpiEventType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 280 | return fileDescriptor_e63e6c07044fd2c4, []int{2} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 281 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 282 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 283 | func (m *KpiEventType) XXX_Unmarshal(b []byte) error { |
| 284 | return xxx_messageInfo_KpiEventType.Unmarshal(m, b) |
| 285 | } |
| 286 | func (m *KpiEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 287 | return xxx_messageInfo_KpiEventType.Marshal(b, m, deterministic) |
| 288 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 289 | func (m *KpiEventType) XXX_Merge(src proto.Message) { |
| 290 | xxx_messageInfo_KpiEventType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 291 | } |
| 292 | func (m *KpiEventType) XXX_Size() int { |
| 293 | return xxx_messageInfo_KpiEventType.Size(m) |
| 294 | } |
| 295 | func (m *KpiEventType) XXX_DiscardUnknown() { |
| 296 | xxx_messageInfo_KpiEventType.DiscardUnknown(m) |
| 297 | } |
| 298 | |
| 299 | var xxx_messageInfo_KpiEventType proto.InternalMessageInfo |
| 300 | |
| 301 | // |
| 302 | // Struct to convey a dictionary of metric metadata. |
| 303 | type MetricMetaData struct { |
| 304 | Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` |
| 305 | Ts float64 `protobuf:"fixed64,2,opt,name=ts,proto3" json:"ts,omitempty"` |
| 306 | LogicalDeviceId string `protobuf:"bytes,3,opt,name=logical_device_id,json=logicalDeviceId,proto3" json:"logical_device_id,omitempty"` |
| 307 | // (equivalent to the DPID that ONOS has |
| 308 | // for the VOLTHA device without the |
| 309 | // 'of:' prefix |
| 310 | SerialNo string `protobuf:"bytes,4,opt,name=serial_no,json=serialNo,proto3" json:"serial_no,omitempty"` |
| 311 | DeviceId string `protobuf:"bytes,5,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"` |
| 312 | Context map[string]string `protobuf:"bytes,6,rep,name=context,proto3" json:"context,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` |
onkar.kundargi | 7b85fa1 | 2020-02-27 13:19:22 +0530 | [diff] [blame] | 313 | Uuid string `protobuf:"bytes,7,opt,name=uuid,proto3" json:"uuid,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 314 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 315 | XXX_unrecognized []byte `json:"-"` |
| 316 | XXX_sizecache int32 `json:"-"` |
| 317 | } |
| 318 | |
| 319 | func (m *MetricMetaData) Reset() { *m = MetricMetaData{} } |
| 320 | func (m *MetricMetaData) String() string { return proto.CompactTextString(m) } |
| 321 | func (*MetricMetaData) ProtoMessage() {} |
| 322 | func (*MetricMetaData) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 323 | return fileDescriptor_e63e6c07044fd2c4, []int{3} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 324 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 325 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 326 | func (m *MetricMetaData) XXX_Unmarshal(b []byte) error { |
| 327 | return xxx_messageInfo_MetricMetaData.Unmarshal(m, b) |
| 328 | } |
| 329 | func (m *MetricMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 330 | return xxx_messageInfo_MetricMetaData.Marshal(b, m, deterministic) |
| 331 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 332 | func (m *MetricMetaData) XXX_Merge(src proto.Message) { |
| 333 | xxx_messageInfo_MetricMetaData.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 334 | } |
| 335 | func (m *MetricMetaData) XXX_Size() int { |
| 336 | return xxx_messageInfo_MetricMetaData.Size(m) |
| 337 | } |
| 338 | func (m *MetricMetaData) XXX_DiscardUnknown() { |
| 339 | xxx_messageInfo_MetricMetaData.DiscardUnknown(m) |
| 340 | } |
| 341 | |
| 342 | var xxx_messageInfo_MetricMetaData proto.InternalMessageInfo |
| 343 | |
| 344 | func (m *MetricMetaData) GetTitle() string { |
| 345 | if m != nil { |
| 346 | return m.Title |
| 347 | } |
| 348 | return "" |
| 349 | } |
| 350 | |
| 351 | func (m *MetricMetaData) GetTs() float64 { |
| 352 | if m != nil { |
| 353 | return m.Ts |
| 354 | } |
| 355 | return 0 |
| 356 | } |
| 357 | |
| 358 | func (m *MetricMetaData) GetLogicalDeviceId() string { |
| 359 | if m != nil { |
| 360 | return m.LogicalDeviceId |
| 361 | } |
| 362 | return "" |
| 363 | } |
| 364 | |
| 365 | func (m *MetricMetaData) GetSerialNo() string { |
| 366 | if m != nil { |
| 367 | return m.SerialNo |
| 368 | } |
| 369 | return "" |
| 370 | } |
| 371 | |
| 372 | func (m *MetricMetaData) GetDeviceId() string { |
| 373 | if m != nil { |
| 374 | return m.DeviceId |
| 375 | } |
| 376 | return "" |
| 377 | } |
| 378 | |
| 379 | func (m *MetricMetaData) GetContext() map[string]string { |
| 380 | if m != nil { |
| 381 | return m.Context |
| 382 | } |
| 383 | return nil |
| 384 | } |
| 385 | |
onkar.kundargi | 7b85fa1 | 2020-02-27 13:19:22 +0530 | [diff] [blame] | 386 | func (m *MetricMetaData) GetUuid() string { |
| 387 | if m != nil { |
| 388 | return m.Uuid |
| 389 | } |
| 390 | return "" |
| 391 | } |
| 392 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 393 | // |
| 394 | // Struct to convey a dictionary of metric->value pairs. Typically used in |
| 395 | // pure shared-timestamp or shared-timestamp + shared object prefix situations. |
| 396 | type MetricValuePairs struct { |
| 397 | // Metric / value pairs. |
| 398 | Metrics map[string]float32 `protobuf:"bytes,1,rep,name=metrics,proto3" json:"metrics,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` |
| 399 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 400 | XXX_unrecognized []byte `json:"-"` |
| 401 | XXX_sizecache int32 `json:"-"` |
| 402 | } |
| 403 | |
| 404 | func (m *MetricValuePairs) Reset() { *m = MetricValuePairs{} } |
| 405 | func (m *MetricValuePairs) String() string { return proto.CompactTextString(m) } |
| 406 | func (*MetricValuePairs) ProtoMessage() {} |
| 407 | func (*MetricValuePairs) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 408 | return fileDescriptor_e63e6c07044fd2c4, []int{4} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 409 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 410 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 411 | func (m *MetricValuePairs) XXX_Unmarshal(b []byte) error { |
| 412 | return xxx_messageInfo_MetricValuePairs.Unmarshal(m, b) |
| 413 | } |
| 414 | func (m *MetricValuePairs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 415 | return xxx_messageInfo_MetricValuePairs.Marshal(b, m, deterministic) |
| 416 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 417 | func (m *MetricValuePairs) XXX_Merge(src proto.Message) { |
| 418 | xxx_messageInfo_MetricValuePairs.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 419 | } |
| 420 | func (m *MetricValuePairs) XXX_Size() int { |
| 421 | return xxx_messageInfo_MetricValuePairs.Size(m) |
| 422 | } |
| 423 | func (m *MetricValuePairs) XXX_DiscardUnknown() { |
| 424 | xxx_messageInfo_MetricValuePairs.DiscardUnknown(m) |
| 425 | } |
| 426 | |
| 427 | var xxx_messageInfo_MetricValuePairs proto.InternalMessageInfo |
| 428 | |
| 429 | func (m *MetricValuePairs) GetMetrics() map[string]float32 { |
| 430 | if m != nil { |
| 431 | return m.Metrics |
| 432 | } |
| 433 | return nil |
| 434 | } |
| 435 | |
| 436 | // |
| 437 | // Struct to group metadata for a metric (or group of metrics) with the key-value |
| 438 | // pairs of collected metrics |
| 439 | type MetricInformation struct { |
| 440 | Metadata *MetricMetaData `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` |
| 441 | Metrics map[string]float32 `protobuf:"bytes,2,rep,name=metrics,proto3" json:"metrics,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` |
| 442 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 443 | XXX_unrecognized []byte `json:"-"` |
| 444 | XXX_sizecache int32 `json:"-"` |
| 445 | } |
| 446 | |
| 447 | func (m *MetricInformation) Reset() { *m = MetricInformation{} } |
| 448 | func (m *MetricInformation) String() string { return proto.CompactTextString(m) } |
| 449 | func (*MetricInformation) ProtoMessage() {} |
| 450 | func (*MetricInformation) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 451 | return fileDescriptor_e63e6c07044fd2c4, []int{5} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 452 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 453 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 454 | func (m *MetricInformation) XXX_Unmarshal(b []byte) error { |
| 455 | return xxx_messageInfo_MetricInformation.Unmarshal(m, b) |
| 456 | } |
| 457 | func (m *MetricInformation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 458 | return xxx_messageInfo_MetricInformation.Marshal(b, m, deterministic) |
| 459 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 460 | func (m *MetricInformation) XXX_Merge(src proto.Message) { |
| 461 | xxx_messageInfo_MetricInformation.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 462 | } |
| 463 | func (m *MetricInformation) XXX_Size() int { |
| 464 | return xxx_messageInfo_MetricInformation.Size(m) |
| 465 | } |
| 466 | func (m *MetricInformation) XXX_DiscardUnknown() { |
| 467 | xxx_messageInfo_MetricInformation.DiscardUnknown(m) |
| 468 | } |
| 469 | |
| 470 | var xxx_messageInfo_MetricInformation proto.InternalMessageInfo |
| 471 | |
| 472 | func (m *MetricInformation) GetMetadata() *MetricMetaData { |
| 473 | if m != nil { |
| 474 | return m.Metadata |
| 475 | } |
| 476 | return nil |
| 477 | } |
| 478 | |
| 479 | func (m *MetricInformation) GetMetrics() map[string]float32 { |
| 480 | if m != nil { |
| 481 | return m.Metrics |
| 482 | } |
| 483 | return nil |
| 484 | } |
| 485 | |
| 486 | // |
| 487 | // Legacy KPI Event structured. In mid-August, the KPI event format was updated |
| 488 | // to a more easily parsable format. See VOL-1140 |
| 489 | // for more information. |
| 490 | type KpiEvent struct { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 491 | Type KpiEventType_Types `protobuf:"varint,1,opt,name=type,proto3,enum=voltha.KpiEventType_Types" json:"type,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 492 | Ts float32 `protobuf:"fixed32,2,opt,name=ts,proto3" json:"ts,omitempty"` |
| 493 | Prefixes map[string]*MetricValuePairs `protobuf:"bytes,3,rep,name=prefixes,proto3" json:"prefixes,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` |
| 494 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 495 | XXX_unrecognized []byte `json:"-"` |
| 496 | XXX_sizecache int32 `json:"-"` |
| 497 | } |
| 498 | |
| 499 | func (m *KpiEvent) Reset() { *m = KpiEvent{} } |
| 500 | func (m *KpiEvent) String() string { return proto.CompactTextString(m) } |
| 501 | func (*KpiEvent) ProtoMessage() {} |
| 502 | func (*KpiEvent) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 503 | return fileDescriptor_e63e6c07044fd2c4, []int{6} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 504 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 505 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 506 | func (m *KpiEvent) XXX_Unmarshal(b []byte) error { |
| 507 | return xxx_messageInfo_KpiEvent.Unmarshal(m, b) |
| 508 | } |
| 509 | func (m *KpiEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 510 | return xxx_messageInfo_KpiEvent.Marshal(b, m, deterministic) |
| 511 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 512 | func (m *KpiEvent) XXX_Merge(src proto.Message) { |
| 513 | xxx_messageInfo_KpiEvent.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 514 | } |
| 515 | func (m *KpiEvent) XXX_Size() int { |
| 516 | return xxx_messageInfo_KpiEvent.Size(m) |
| 517 | } |
| 518 | func (m *KpiEvent) XXX_DiscardUnknown() { |
| 519 | xxx_messageInfo_KpiEvent.DiscardUnknown(m) |
| 520 | } |
| 521 | |
| 522 | var xxx_messageInfo_KpiEvent proto.InternalMessageInfo |
| 523 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 524 | func (m *KpiEvent) GetType() KpiEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 525 | if m != nil { |
| 526 | return m.Type |
| 527 | } |
| 528 | return KpiEventType_slice |
| 529 | } |
| 530 | |
| 531 | func (m *KpiEvent) GetTs() float32 { |
| 532 | if m != nil { |
| 533 | return m.Ts |
| 534 | } |
| 535 | return 0 |
| 536 | } |
| 537 | |
| 538 | func (m *KpiEvent) GetPrefixes() map[string]*MetricValuePairs { |
| 539 | if m != nil { |
| 540 | return m.Prefixes |
| 541 | } |
| 542 | return nil |
| 543 | } |
| 544 | |
| 545 | type KpiEvent2 struct { |
| 546 | // Type of KPI Event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 547 | Type KpiEventType_Types `protobuf:"varint,1,opt,name=type,proto3,enum=voltha.KpiEventType_Types" json:"type,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 548 | // Fields used when for slice: |
| 549 | Ts float64 `protobuf:"fixed64,2,opt,name=ts,proto3" json:"ts,omitempty"` |
| 550 | SliceData []*MetricInformation `protobuf:"bytes,3,rep,name=slice_data,json=sliceData,proto3" json:"slice_data,omitempty"` |
| 551 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 552 | XXX_unrecognized []byte `json:"-"` |
| 553 | XXX_sizecache int32 `json:"-"` |
| 554 | } |
| 555 | |
| 556 | func (m *KpiEvent2) Reset() { *m = KpiEvent2{} } |
| 557 | func (m *KpiEvent2) String() string { return proto.CompactTextString(m) } |
| 558 | func (*KpiEvent2) ProtoMessage() {} |
| 559 | func (*KpiEvent2) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 560 | return fileDescriptor_e63e6c07044fd2c4, []int{7} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 561 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 562 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 563 | func (m *KpiEvent2) XXX_Unmarshal(b []byte) error { |
| 564 | return xxx_messageInfo_KpiEvent2.Unmarshal(m, b) |
| 565 | } |
| 566 | func (m *KpiEvent2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 567 | return xxx_messageInfo_KpiEvent2.Marshal(b, m, deterministic) |
| 568 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 569 | func (m *KpiEvent2) XXX_Merge(src proto.Message) { |
| 570 | xxx_messageInfo_KpiEvent2.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 571 | } |
| 572 | func (m *KpiEvent2) XXX_Size() int { |
| 573 | return xxx_messageInfo_KpiEvent2.Size(m) |
| 574 | } |
| 575 | func (m *KpiEvent2) XXX_DiscardUnknown() { |
| 576 | xxx_messageInfo_KpiEvent2.DiscardUnknown(m) |
| 577 | } |
| 578 | |
| 579 | var xxx_messageInfo_KpiEvent2 proto.InternalMessageInfo |
| 580 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 581 | func (m *KpiEvent2) GetType() KpiEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 582 | if m != nil { |
| 583 | return m.Type |
| 584 | } |
| 585 | return KpiEventType_slice |
| 586 | } |
| 587 | |
| 588 | func (m *KpiEvent2) GetTs() float64 { |
| 589 | if m != nil { |
| 590 | return m.Ts |
| 591 | } |
| 592 | return 0 |
| 593 | } |
| 594 | |
| 595 | func (m *KpiEvent2) GetSliceData() []*MetricInformation { |
| 596 | if m != nil { |
| 597 | return m.SliceData |
| 598 | } |
| 599 | return nil |
| 600 | } |
| 601 | |
| 602 | // |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 603 | // Describes the events specific to device |
| 604 | type DeviceEvent struct { |
| 605 | // Identifier of the originating resource of the event, for ex: device_id |
| 606 | ResourceId string `protobuf:"bytes,1,opt,name=resource_id,json=resourceId,proto3" json:"resource_id,omitempty"` |
| 607 | // device_event_name indicates clearly the name of the device event |
| 608 | DeviceEventName string `protobuf:"bytes,2,opt,name=device_event_name,json=deviceEventName,proto3" json:"device_event_name,omitempty"` |
| 609 | // Textual explanation of the device event |
| 610 | Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` |
| 611 | // Key/Value storage for extra information that may give context to the event |
| 612 | Context map[string]string `protobuf:"bytes,4,rep,name=context,proto3" json:"context,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` |
| 613 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 614 | XXX_unrecognized []byte `json:"-"` |
| 615 | XXX_sizecache int32 `json:"-"` |
| 616 | } |
| 617 | |
| 618 | func (m *DeviceEvent) Reset() { *m = DeviceEvent{} } |
| 619 | func (m *DeviceEvent) String() string { return proto.CompactTextString(m) } |
| 620 | func (*DeviceEvent) ProtoMessage() {} |
| 621 | func (*DeviceEvent) Descriptor() ([]byte, []int) { |
Mahir Gunyel | 24adfd6 | 2020-08-31 22:16:59 -0700 | [diff] [blame] | 622 | return fileDescriptor_e63e6c07044fd2c4, []int{8} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | func (m *DeviceEvent) XXX_Unmarshal(b []byte) error { |
| 626 | return xxx_messageInfo_DeviceEvent.Unmarshal(m, b) |
| 627 | } |
| 628 | func (m *DeviceEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 629 | return xxx_messageInfo_DeviceEvent.Marshal(b, m, deterministic) |
| 630 | } |
| 631 | func (m *DeviceEvent) XXX_Merge(src proto.Message) { |
| 632 | xxx_messageInfo_DeviceEvent.Merge(m, src) |
| 633 | } |
| 634 | func (m *DeviceEvent) XXX_Size() int { |
| 635 | return xxx_messageInfo_DeviceEvent.Size(m) |
| 636 | } |
| 637 | func (m *DeviceEvent) XXX_DiscardUnknown() { |
| 638 | xxx_messageInfo_DeviceEvent.DiscardUnknown(m) |
| 639 | } |
| 640 | |
| 641 | var xxx_messageInfo_DeviceEvent proto.InternalMessageInfo |
| 642 | |
| 643 | func (m *DeviceEvent) GetResourceId() string { |
| 644 | if m != nil { |
| 645 | return m.ResourceId |
| 646 | } |
| 647 | return "" |
| 648 | } |
| 649 | |
| 650 | func (m *DeviceEvent) GetDeviceEventName() string { |
| 651 | if m != nil { |
| 652 | return m.DeviceEventName |
| 653 | } |
| 654 | return "" |
| 655 | } |
| 656 | |
| 657 | func (m *DeviceEvent) GetDescription() string { |
| 658 | if m != nil { |
| 659 | return m.Description |
| 660 | } |
| 661 | return "" |
| 662 | } |
| 663 | |
| 664 | func (m *DeviceEvent) GetContext() map[string]string { |
| 665 | if m != nil { |
| 666 | return m.Context |
| 667 | } |
| 668 | return nil |
| 669 | } |
| 670 | |
| 671 | // |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 672 | // Describes the events specific to an RPC request |
| 673 | type RPCEvent struct { |
| 674 | // RPC name |
| 675 | Rpc string `protobuf:"bytes,1,opt,name=rpc,proto3" json:"rpc,omitempty"` |
| 676 | // The operation id of that request. Can be a log correlation ID |
| 677 | OperationId string `protobuf:"bytes,2,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"` |
| 678 | // Identifies the service name originating the event |
| 679 | Service string `protobuf:"bytes,3,opt,name=service,proto3" json:"service,omitempty"` |
| 680 | // Identifies the stack originating the event |
| 681 | StackId string `protobuf:"bytes,4,opt,name=stack_id,json=stackId,proto3" json:"stack_id,omitempty"` |
| 682 | // Identifies the resource upon which the action is taken, e.g. device_id |
| 683 | ResourceId string `protobuf:"bytes,5,opt,name=resource_id,json=resourceId,proto3" json:"resource_id,omitempty"` |
| 684 | // Textual explanation of the event |
| 685 | Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"` |
| 686 | // Key/Value storage for extra information that may give context to the event |
| 687 | Context map[string]string `protobuf:"bytes,7,rep,name=context,proto3" json:"context,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` |
| 688 | // Status of the RPC Event |
| 689 | Status *common.OperationResp `protobuf:"bytes,8,opt,name=status,proto3" json:"status,omitempty"` |
| 690 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 691 | XXX_unrecognized []byte `json:"-"` |
| 692 | XXX_sizecache int32 `json:"-"` |
| 693 | } |
| 694 | |
| 695 | func (m *RPCEvent) Reset() { *m = RPCEvent{} } |
| 696 | func (m *RPCEvent) String() string { return proto.CompactTextString(m) } |
| 697 | func (*RPCEvent) ProtoMessage() {} |
| 698 | func (*RPCEvent) Descriptor() ([]byte, []int) { |
| 699 | return fileDescriptor_e63e6c07044fd2c4, []int{9} |
| 700 | } |
| 701 | |
| 702 | func (m *RPCEvent) XXX_Unmarshal(b []byte) error { |
| 703 | return xxx_messageInfo_RPCEvent.Unmarshal(m, b) |
| 704 | } |
| 705 | func (m *RPCEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 706 | return xxx_messageInfo_RPCEvent.Marshal(b, m, deterministic) |
| 707 | } |
| 708 | func (m *RPCEvent) XXX_Merge(src proto.Message) { |
| 709 | xxx_messageInfo_RPCEvent.Merge(m, src) |
| 710 | } |
| 711 | func (m *RPCEvent) XXX_Size() int { |
| 712 | return xxx_messageInfo_RPCEvent.Size(m) |
| 713 | } |
| 714 | func (m *RPCEvent) XXX_DiscardUnknown() { |
| 715 | xxx_messageInfo_RPCEvent.DiscardUnknown(m) |
| 716 | } |
| 717 | |
| 718 | var xxx_messageInfo_RPCEvent proto.InternalMessageInfo |
| 719 | |
| 720 | func (m *RPCEvent) GetRpc() string { |
| 721 | if m != nil { |
| 722 | return m.Rpc |
| 723 | } |
| 724 | return "" |
| 725 | } |
| 726 | |
| 727 | func (m *RPCEvent) GetOperationId() string { |
| 728 | if m != nil { |
| 729 | return m.OperationId |
| 730 | } |
| 731 | return "" |
| 732 | } |
| 733 | |
| 734 | func (m *RPCEvent) GetService() string { |
| 735 | if m != nil { |
| 736 | return m.Service |
| 737 | } |
| 738 | return "" |
| 739 | } |
| 740 | |
| 741 | func (m *RPCEvent) GetStackId() string { |
| 742 | if m != nil { |
| 743 | return m.StackId |
| 744 | } |
| 745 | return "" |
| 746 | } |
| 747 | |
| 748 | func (m *RPCEvent) GetResourceId() string { |
| 749 | if m != nil { |
| 750 | return m.ResourceId |
| 751 | } |
| 752 | return "" |
| 753 | } |
| 754 | |
| 755 | func (m *RPCEvent) GetDescription() string { |
| 756 | if m != nil { |
| 757 | return m.Description |
| 758 | } |
| 759 | return "" |
| 760 | } |
| 761 | |
| 762 | func (m *RPCEvent) GetContext() map[string]string { |
| 763 | if m != nil { |
| 764 | return m.Context |
| 765 | } |
| 766 | return nil |
| 767 | } |
| 768 | |
| 769 | func (m *RPCEvent) GetStatus() *common.OperationResp { |
| 770 | if m != nil { |
| 771 | return m.Status |
| 772 | } |
| 773 | return nil |
| 774 | } |
| 775 | |
| 776 | // |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 777 | // Identify the area of the system impacted by the event. |
| 778 | type EventCategory struct { |
| 779 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 780 | XXX_unrecognized []byte `json:"-"` |
| 781 | XXX_sizecache int32 `json:"-"` |
| 782 | } |
| 783 | |
| 784 | func (m *EventCategory) Reset() { *m = EventCategory{} } |
| 785 | func (m *EventCategory) String() string { return proto.CompactTextString(m) } |
| 786 | func (*EventCategory) ProtoMessage() {} |
| 787 | func (*EventCategory) Descriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 788 | return fileDescriptor_e63e6c07044fd2c4, []int{10} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 789 | } |
| 790 | |
| 791 | func (m *EventCategory) XXX_Unmarshal(b []byte) error { |
| 792 | return xxx_messageInfo_EventCategory.Unmarshal(m, b) |
| 793 | } |
| 794 | func (m *EventCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 795 | return xxx_messageInfo_EventCategory.Marshal(b, m, deterministic) |
| 796 | } |
| 797 | func (m *EventCategory) XXX_Merge(src proto.Message) { |
| 798 | xxx_messageInfo_EventCategory.Merge(m, src) |
| 799 | } |
| 800 | func (m *EventCategory) XXX_Size() int { |
| 801 | return xxx_messageInfo_EventCategory.Size(m) |
| 802 | } |
| 803 | func (m *EventCategory) XXX_DiscardUnknown() { |
| 804 | xxx_messageInfo_EventCategory.DiscardUnknown(m) |
| 805 | } |
| 806 | |
| 807 | var xxx_messageInfo_EventCategory proto.InternalMessageInfo |
| 808 | |
| 809 | // |
| 810 | // Identify the functional category originating the event |
| 811 | type EventSubCategory struct { |
| 812 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 813 | XXX_unrecognized []byte `json:"-"` |
| 814 | XXX_sizecache int32 `json:"-"` |
| 815 | } |
| 816 | |
| 817 | func (m *EventSubCategory) Reset() { *m = EventSubCategory{} } |
| 818 | func (m *EventSubCategory) String() string { return proto.CompactTextString(m) } |
| 819 | func (*EventSubCategory) ProtoMessage() {} |
| 820 | func (*EventSubCategory) Descriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 821 | return fileDescriptor_e63e6c07044fd2c4, []int{11} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | func (m *EventSubCategory) XXX_Unmarshal(b []byte) error { |
| 825 | return xxx_messageInfo_EventSubCategory.Unmarshal(m, b) |
| 826 | } |
| 827 | func (m *EventSubCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 828 | return xxx_messageInfo_EventSubCategory.Marshal(b, m, deterministic) |
| 829 | } |
| 830 | func (m *EventSubCategory) XXX_Merge(src proto.Message) { |
| 831 | xxx_messageInfo_EventSubCategory.Merge(m, src) |
| 832 | } |
| 833 | func (m *EventSubCategory) XXX_Size() int { |
| 834 | return xxx_messageInfo_EventSubCategory.Size(m) |
| 835 | } |
| 836 | func (m *EventSubCategory) XXX_DiscardUnknown() { |
| 837 | xxx_messageInfo_EventSubCategory.DiscardUnknown(m) |
| 838 | } |
| 839 | |
| 840 | var xxx_messageInfo_EventSubCategory proto.InternalMessageInfo |
| 841 | |
| 842 | // |
| 843 | // Identify the type of event |
| 844 | type EventType struct { |
| 845 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 846 | XXX_unrecognized []byte `json:"-"` |
| 847 | XXX_sizecache int32 `json:"-"` |
| 848 | } |
| 849 | |
| 850 | func (m *EventType) Reset() { *m = EventType{} } |
| 851 | func (m *EventType) String() string { return proto.CompactTextString(m) } |
| 852 | func (*EventType) ProtoMessage() {} |
| 853 | func (*EventType) Descriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 854 | return fileDescriptor_e63e6c07044fd2c4, []int{12} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 855 | } |
| 856 | |
| 857 | func (m *EventType) XXX_Unmarshal(b []byte) error { |
| 858 | return xxx_messageInfo_EventType.Unmarshal(m, b) |
| 859 | } |
| 860 | func (m *EventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 861 | return xxx_messageInfo_EventType.Marshal(b, m, deterministic) |
| 862 | } |
| 863 | func (m *EventType) XXX_Merge(src proto.Message) { |
| 864 | xxx_messageInfo_EventType.Merge(m, src) |
| 865 | } |
| 866 | func (m *EventType) XXX_Size() int { |
| 867 | return xxx_messageInfo_EventType.Size(m) |
| 868 | } |
| 869 | func (m *EventType) XXX_DiscardUnknown() { |
| 870 | xxx_messageInfo_EventType.DiscardUnknown(m) |
| 871 | } |
| 872 | |
| 873 | var xxx_messageInfo_EventType proto.InternalMessageInfo |
| 874 | |
| 875 | // |
| 876 | // Identify the functional category originating the event |
| 877 | type EventHeader struct { |
| 878 | // Unique ID for this event. e.g. voltha.some_olt.1234 |
| 879 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 880 | // Refers to the functional area affect by the event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 881 | Category EventCategory_Types `protobuf:"varint,2,opt,name=category,proto3,enum=voltha.EventCategory_Types" json:"category,omitempty"` |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 882 | // Refers to functional category of the event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 883 | SubCategory EventSubCategory_Types `protobuf:"varint,3,opt,name=sub_category,json=subCategory,proto3,enum=voltha.EventSubCategory_Types" json:"sub_category,omitempty"` |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 884 | // Refers to the type of the event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 885 | Type EventType_Types `protobuf:"varint,4,opt,name=type,proto3,enum=voltha.EventType_Types" json:"type,omitempty"` |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 886 | // The version identifier for this event type, thus allowing each |
| 887 | // event type to evolve independently. The version should be in the |
| 888 | // format “MAJOR.MINOR” format and minor changes must only be additive |
| 889 | // and non-breaking. |
| 890 | TypeVersion string `protobuf:"bytes,5,opt,name=type_version,json=typeVersion,proto3" json:"type_version,omitempty"` |
| 891 | // Timestamp at which the event was first raised. |
| 892 | // This represents the UTC time stamp since epoch (in seconds) when the |
| 893 | // the event was first raised from the source entity. |
| 894 | // If the source entity doesn't send the raised_ts, this shall be set |
| 895 | // to timestamp when the event was received. |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 896 | RaisedTs *timestamp.Timestamp `protobuf:"bytes,6,opt,name=raised_ts,json=raisedTs,proto3" json:"raised_ts,omitempty"` |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 897 | // Timestamp at which the event was reported. |
| 898 | // This represents the UTC time stamp since epoch (in seconds) when the |
| 899 | // the event was reported (this time stamp is >= raised_ts). |
| 900 | // If the source entity that reported this event doesn't send the |
| 901 | // reported_ts, this shall be set to the same value as raised_ts. |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 902 | ReportedTs *timestamp.Timestamp `protobuf:"bytes,7,opt,name=reported_ts,json=reportedTs,proto3" json:"reported_ts,omitempty"` |
| 903 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 904 | XXX_unrecognized []byte `json:"-"` |
| 905 | XXX_sizecache int32 `json:"-"` |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 906 | } |
| 907 | |
| 908 | func (m *EventHeader) Reset() { *m = EventHeader{} } |
| 909 | func (m *EventHeader) String() string { return proto.CompactTextString(m) } |
| 910 | func (*EventHeader) ProtoMessage() {} |
| 911 | func (*EventHeader) Descriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 912 | return fileDescriptor_e63e6c07044fd2c4, []int{13} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | func (m *EventHeader) XXX_Unmarshal(b []byte) error { |
| 916 | return xxx_messageInfo_EventHeader.Unmarshal(m, b) |
| 917 | } |
| 918 | func (m *EventHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 919 | return xxx_messageInfo_EventHeader.Marshal(b, m, deterministic) |
| 920 | } |
| 921 | func (m *EventHeader) XXX_Merge(src proto.Message) { |
| 922 | xxx_messageInfo_EventHeader.Merge(m, src) |
| 923 | } |
| 924 | func (m *EventHeader) XXX_Size() int { |
| 925 | return xxx_messageInfo_EventHeader.Size(m) |
| 926 | } |
| 927 | func (m *EventHeader) XXX_DiscardUnknown() { |
| 928 | xxx_messageInfo_EventHeader.DiscardUnknown(m) |
| 929 | } |
| 930 | |
| 931 | var xxx_messageInfo_EventHeader proto.InternalMessageInfo |
| 932 | |
| 933 | func (m *EventHeader) GetId() string { |
| 934 | if m != nil { |
| 935 | return m.Id |
| 936 | } |
| 937 | return "" |
| 938 | } |
| 939 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 940 | func (m *EventHeader) GetCategory() EventCategory_Types { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 941 | if m != nil { |
| 942 | return m.Category |
| 943 | } |
| 944 | return EventCategory_COMMUNICATION |
| 945 | } |
| 946 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 947 | func (m *EventHeader) GetSubCategory() EventSubCategory_Types { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 948 | if m != nil { |
| 949 | return m.SubCategory |
| 950 | } |
| 951 | return EventSubCategory_PON |
| 952 | } |
| 953 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 954 | func (m *EventHeader) GetType() EventType_Types { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 955 | if m != nil { |
| 956 | return m.Type |
| 957 | } |
| 958 | return EventType_CONFIG_EVENT |
| 959 | } |
| 960 | |
| 961 | func (m *EventHeader) GetTypeVersion() string { |
| 962 | if m != nil { |
| 963 | return m.TypeVersion |
| 964 | } |
| 965 | return "" |
| 966 | } |
| 967 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 968 | func (m *EventHeader) GetRaisedTs() *timestamp.Timestamp { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 969 | if m != nil { |
| 970 | return m.RaisedTs |
| 971 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 972 | return nil |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 973 | } |
| 974 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 975 | func (m *EventHeader) GetReportedTs() *timestamp.Timestamp { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 976 | if m != nil { |
| 977 | return m.ReportedTs |
| 978 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 979 | return nil |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | // |
| 983 | // Event Structure |
| 984 | type Event struct { |
| 985 | // event header |
| 986 | Header *EventHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` |
| 987 | // oneof event types referred by EventType. |
| 988 | // |
| 989 | // Types that are valid to be assigned to EventType: |
| 990 | // *Event_ConfigEvent |
| 991 | // *Event_KpiEvent |
| 992 | // *Event_KpiEvent2 |
| 993 | // *Event_DeviceEvent |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 994 | // *Event_RpcEvent |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 995 | EventType isEvent_EventType `protobuf_oneof:"event_type"` |
| 996 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 997 | XXX_unrecognized []byte `json:"-"` |
| 998 | XXX_sizecache int32 `json:"-"` |
| 999 | } |
| 1000 | |
| 1001 | func (m *Event) Reset() { *m = Event{} } |
| 1002 | func (m *Event) String() string { return proto.CompactTextString(m) } |
| 1003 | func (*Event) ProtoMessage() {} |
| 1004 | func (*Event) Descriptor() ([]byte, []int) { |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1005 | return fileDescriptor_e63e6c07044fd2c4, []int{14} |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1006 | } |
| 1007 | |
| 1008 | func (m *Event) XXX_Unmarshal(b []byte) error { |
| 1009 | return xxx_messageInfo_Event.Unmarshal(m, b) |
| 1010 | } |
| 1011 | func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1012 | return xxx_messageInfo_Event.Marshal(b, m, deterministic) |
| 1013 | } |
| 1014 | func (m *Event) XXX_Merge(src proto.Message) { |
| 1015 | xxx_messageInfo_Event.Merge(m, src) |
| 1016 | } |
| 1017 | func (m *Event) XXX_Size() int { |
| 1018 | return xxx_messageInfo_Event.Size(m) |
| 1019 | } |
| 1020 | func (m *Event) XXX_DiscardUnknown() { |
| 1021 | xxx_messageInfo_Event.DiscardUnknown(m) |
| 1022 | } |
| 1023 | |
| 1024 | var xxx_messageInfo_Event proto.InternalMessageInfo |
| 1025 | |
| 1026 | func (m *Event) GetHeader() *EventHeader { |
| 1027 | if m != nil { |
| 1028 | return m.Header |
| 1029 | } |
| 1030 | return nil |
| 1031 | } |
| 1032 | |
| 1033 | type isEvent_EventType interface { |
| 1034 | isEvent_EventType() |
| 1035 | } |
| 1036 | |
| 1037 | type Event_ConfigEvent struct { |
| 1038 | ConfigEvent *ConfigEvent `protobuf:"bytes,2,opt,name=config_event,json=configEvent,proto3,oneof"` |
| 1039 | } |
| 1040 | |
| 1041 | type Event_KpiEvent struct { |
| 1042 | KpiEvent *KpiEvent `protobuf:"bytes,3,opt,name=kpi_event,json=kpiEvent,proto3,oneof"` |
| 1043 | } |
| 1044 | |
| 1045 | type Event_KpiEvent2 struct { |
| 1046 | KpiEvent2 *KpiEvent2 `protobuf:"bytes,4,opt,name=kpi_event2,json=kpiEvent2,proto3,oneof"` |
| 1047 | } |
| 1048 | |
| 1049 | type Event_DeviceEvent struct { |
| 1050 | DeviceEvent *DeviceEvent `protobuf:"bytes,5,opt,name=device_event,json=deviceEvent,proto3,oneof"` |
| 1051 | } |
| 1052 | |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1053 | type Event_RpcEvent struct { |
| 1054 | RpcEvent *RPCEvent `protobuf:"bytes,6,opt,name=rpc_event,json=rpcEvent,proto3,oneof"` |
| 1055 | } |
| 1056 | |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1057 | func (*Event_ConfigEvent) isEvent_EventType() {} |
| 1058 | |
| 1059 | func (*Event_KpiEvent) isEvent_EventType() {} |
| 1060 | |
| 1061 | func (*Event_KpiEvent2) isEvent_EventType() {} |
| 1062 | |
| 1063 | func (*Event_DeviceEvent) isEvent_EventType() {} |
| 1064 | |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1065 | func (*Event_RpcEvent) isEvent_EventType() {} |
| 1066 | |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1067 | func (m *Event) GetEventType() isEvent_EventType { |
| 1068 | if m != nil { |
| 1069 | return m.EventType |
| 1070 | } |
| 1071 | return nil |
| 1072 | } |
| 1073 | |
| 1074 | func (m *Event) GetConfigEvent() *ConfigEvent { |
| 1075 | if x, ok := m.GetEventType().(*Event_ConfigEvent); ok { |
| 1076 | return x.ConfigEvent |
| 1077 | } |
| 1078 | return nil |
| 1079 | } |
| 1080 | |
| 1081 | func (m *Event) GetKpiEvent() *KpiEvent { |
| 1082 | if x, ok := m.GetEventType().(*Event_KpiEvent); ok { |
| 1083 | return x.KpiEvent |
| 1084 | } |
| 1085 | return nil |
| 1086 | } |
| 1087 | |
| 1088 | func (m *Event) GetKpiEvent2() *KpiEvent2 { |
| 1089 | if x, ok := m.GetEventType().(*Event_KpiEvent2); ok { |
| 1090 | return x.KpiEvent2 |
| 1091 | } |
| 1092 | return nil |
| 1093 | } |
| 1094 | |
| 1095 | func (m *Event) GetDeviceEvent() *DeviceEvent { |
| 1096 | if x, ok := m.GetEventType().(*Event_DeviceEvent); ok { |
| 1097 | return x.DeviceEvent |
| 1098 | } |
| 1099 | return nil |
| 1100 | } |
| 1101 | |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1102 | func (m *Event) GetRpcEvent() *RPCEvent { |
| 1103 | if x, ok := m.GetEventType().(*Event_RpcEvent); ok { |
| 1104 | return x.RpcEvent |
| 1105 | } |
| 1106 | return nil |
| 1107 | } |
| 1108 | |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1109 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 1110 | func (*Event) XXX_OneofWrappers() []interface{} { |
| 1111 | return []interface{}{ |
| 1112 | (*Event_ConfigEvent)(nil), |
| 1113 | (*Event_KpiEvent)(nil), |
| 1114 | (*Event_KpiEvent2)(nil), |
| 1115 | (*Event_DeviceEvent)(nil), |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1116 | (*Event_RpcEvent)(nil), |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1117 | } |
| 1118 | } |
| 1119 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1120 | func init() { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1121 | proto.RegisterEnum("voltha.ConfigEventType_Types", ConfigEventType_Types_name, ConfigEventType_Types_value) |
| 1122 | proto.RegisterEnum("voltha.KpiEventType_Types", KpiEventType_Types_name, KpiEventType_Types_value) |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1123 | proto.RegisterEnum("voltha.EventCategory_Types", EventCategory_Types_name, EventCategory_Types_value) |
| 1124 | proto.RegisterEnum("voltha.EventSubCategory_Types", EventSubCategory_Types_name, EventSubCategory_Types_value) |
| 1125 | proto.RegisterEnum("voltha.EventType_Types", EventType_Types_name, EventType_Types_value) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1126 | proto.RegisterType((*ConfigEventType)(nil), "voltha.ConfigEventType") |
| 1127 | proto.RegisterType((*ConfigEvent)(nil), "voltha.ConfigEvent") |
| 1128 | proto.RegisterType((*KpiEventType)(nil), "voltha.KpiEventType") |
| 1129 | proto.RegisterType((*MetricMetaData)(nil), "voltha.MetricMetaData") |
| 1130 | proto.RegisterMapType((map[string]string)(nil), "voltha.MetricMetaData.ContextEntry") |
| 1131 | proto.RegisterType((*MetricValuePairs)(nil), "voltha.MetricValuePairs") |
| 1132 | proto.RegisterMapType((map[string]float32)(nil), "voltha.MetricValuePairs.MetricsEntry") |
| 1133 | proto.RegisterType((*MetricInformation)(nil), "voltha.MetricInformation") |
| 1134 | proto.RegisterMapType((map[string]float32)(nil), "voltha.MetricInformation.MetricsEntry") |
| 1135 | proto.RegisterType((*KpiEvent)(nil), "voltha.KpiEvent") |
| 1136 | proto.RegisterMapType((map[string]*MetricValuePairs)(nil), "voltha.KpiEvent.PrefixesEntry") |
| 1137 | proto.RegisterType((*KpiEvent2)(nil), "voltha.KpiEvent2") |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1138 | proto.RegisterType((*DeviceEvent)(nil), "voltha.DeviceEvent") |
| 1139 | proto.RegisterMapType((map[string]string)(nil), "voltha.DeviceEvent.ContextEntry") |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1140 | proto.RegisterType((*RPCEvent)(nil), "voltha.RPCEvent") |
| 1141 | proto.RegisterMapType((map[string]string)(nil), "voltha.RPCEvent.ContextEntry") |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1142 | proto.RegisterType((*EventCategory)(nil), "voltha.EventCategory") |
| 1143 | proto.RegisterType((*EventSubCategory)(nil), "voltha.EventSubCategory") |
| 1144 | proto.RegisterType((*EventType)(nil), "voltha.EventType") |
| 1145 | proto.RegisterType((*EventHeader)(nil), "voltha.EventHeader") |
| 1146 | proto.RegisterType((*Event)(nil), "voltha.Event") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1147 | } |
| 1148 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1149 | func init() { proto.RegisterFile("voltha_protos/events.proto", fileDescriptor_e63e6c07044fd2c4) } |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1150 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1151 | var fileDescriptor_e63e6c07044fd2c4 = []byte{ |
Himani Chawla | 9499e95 | 2020-12-17 13:12:52 +0530 | [diff] [blame] | 1152 | // 1274 bytes of a gzipped FileDescriptorProto |
| 1153 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdf, 0x6e, 0xdb, 0xb6, |
| 1154 | 0x17, 0xb6, 0xe4, 0xff, 0x47, 0x4e, 0xa2, 0xb0, 0xbf, 0xdf, 0xe6, 0xba, 0x5b, 0x9b, 0x7a, 0xd8, |
| 1155 | 0x10, 0xb4, 0xa8, 0x8c, 0x69, 0x05, 0x1a, 0xa4, 0x18, 0xb6, 0xd6, 0xf5, 0x1a, 0xa1, 0x8b, 0xed, |
| 1156 | 0x29, 0x4e, 0x80, 0xee, 0xc6, 0x60, 0x24, 0xc6, 0x11, 0x62, 0x5b, 0x02, 0x49, 0x1b, 0xcd, 0x03, |
| 1157 | 0xec, 0x7a, 0x0f, 0xb2, 0xe7, 0xd8, 0xdd, 0xde, 0x60, 0x18, 0xf6, 0x12, 0x7b, 0x80, 0x81, 0x7f, |
| 1158 | 0x64, 0x4b, 0x6e, 0x8a, 0x5e, 0x04, 0xbb, 0x12, 0x79, 0x78, 0x3e, 0x9e, 0xef, 0x7c, 0xe2, 0x39, |
| 1159 | 0x24, 0xb4, 0x96, 0xf1, 0x94, 0x5f, 0xe2, 0x71, 0x42, 0x63, 0x1e, 0xb3, 0x0e, 0x59, 0x92, 0x39, |
| 1160 | 0x67, 0x8e, 0x9c, 0xa1, 0x8a, 0x5a, 0x6b, 0x35, 0xf3, 0x3e, 0x33, 0xc2, 0xb1, 0xf2, 0x68, 0x7d, |
| 1161 | 0x36, 0x89, 0xe3, 0xc9, 0x94, 0x74, 0x70, 0x12, 0x75, 0xf0, 0x7c, 0x1e, 0x73, 0xcc, 0xa3, 0x78, |
| 1162 | 0xae, 0xf1, 0xad, 0x07, 0x7a, 0x55, 0xce, 0xce, 0x17, 0x17, 0x1d, 0x1e, 0xcd, 0x08, 0xe3, 0x78, |
| 1163 | 0x96, 0x68, 0x87, 0x8d, 0xe0, 0x41, 0x3c, 0x9b, 0xc5, 0x73, 0xb5, 0xd6, 0x7e, 0x0e, 0x3b, 0xdd, |
| 1164 | 0x78, 0x7e, 0x11, 0x4d, 0x7a, 0x82, 0xd2, 0xe8, 0x3a, 0x21, 0xed, 0x7d, 0x28, 0x8b, 0x2f, 0x43, |
| 1165 | 0x55, 0x28, 0xe2, 0x30, 0xb4, 0x0b, 0x08, 0xa0, 0x42, 0xc9, 0x2c, 0x5e, 0x12, 0xdb, 0x10, 0xe3, |
| 1166 | 0x45, 0x12, 0x62, 0x4e, 0x6c, 0xb3, 0x7d, 0x09, 0x56, 0x06, 0x8c, 0xbe, 0x86, 0x12, 0xbf, 0x4e, |
| 1167 | 0x48, 0xd3, 0xd8, 0x33, 0xf6, 0xb7, 0xdd, 0xcf, 0x1d, 0x15, 0xd6, 0xd9, 0xd8, 0xdf, 0x91, 0x9b, |
| 1168 | 0xfb, 0xd2, 0x15, 0x21, 0x28, 0x5d, 0x62, 0x76, 0xd9, 0x34, 0xf7, 0x8c, 0xfd, 0xba, 0x2f, 0xc7, |
| 1169 | 0xc2, 0x16, 0x62, 0x8e, 0x9b, 0x45, 0x65, 0x13, 0xe3, 0xf6, 0x23, 0x68, 0xbc, 0x49, 0xa2, 0x35, |
| 1170 | 0xc7, 0x56, 0xca, 0xb1, 0x0e, 0x65, 0x36, 0x8d, 0x02, 0x62, 0x17, 0x50, 0x05, 0x4c, 0xce, 0x6c, |
| 1171 | 0xa3, 0xfd, 0x9b, 0x09, 0xdb, 0xc7, 0x84, 0xd3, 0x28, 0x38, 0x26, 0x1c, 0xbf, 0xc2, 0x1c, 0xa3, |
| 1172 | 0xff, 0x41, 0x99, 0x47, 0x7c, 0xaa, 0xa8, 0xd5, 0x7d, 0x35, 0x41, 0xdb, 0x02, 0x20, 0x43, 0x1b, |
| 1173 | 0xbe, 0xc9, 0x19, 0x7a, 0x04, 0xbb, 0xd3, 0x78, 0x12, 0x05, 0x78, 0x3a, 0x0e, 0xc9, 0x32, 0x0a, |
| 1174 | 0xc8, 0x38, 0x0a, 0x35, 0x8b, 0x1d, 0xbd, 0xf0, 0x4a, 0xda, 0xbd, 0x10, 0xdd, 0x83, 0x3a, 0x23, |
| 1175 | 0x34, 0xc2, 0xd3, 0xf1, 0x3c, 0x6e, 0x96, 0xa4, 0x4f, 0x4d, 0x19, 0xfa, 0xb1, 0x58, 0x5c, 0x6f, |
| 1176 | 0x50, 0x56, 0x8b, 0x61, 0x8a, 0xfc, 0x16, 0xaa, 0x41, 0x3c, 0xe7, 0xe4, 0x1d, 0x6f, 0x56, 0xf6, |
| 1177 | 0x8a, 0xfb, 0x96, 0xfb, 0x45, 0x2a, 0x54, 0x9e, 0xb4, 0xd0, 0x4d, 0x78, 0xf5, 0xe6, 0x9c, 0x5e, |
| 1178 | 0xfb, 0x29, 0x46, 0xa8, 0xb3, 0x58, 0x44, 0x61, 0xb3, 0xaa, 0xd4, 0x11, 0xe3, 0xd6, 0x21, 0x34, |
| 1179 | 0xb2, 0xce, 0xc8, 0x86, 0xe2, 0x15, 0xb9, 0xd6, 0xc9, 0x8a, 0xa1, 0x10, 0x60, 0x89, 0xa7, 0x0b, |
| 1180 | 0xa2, 0x85, 0x56, 0x93, 0x43, 0xf3, 0xc0, 0x68, 0xff, 0x6a, 0x80, 0xad, 0x02, 0x9f, 0x09, 0xdb, |
| 1181 | 0x10, 0x47, 0x94, 0xa1, 0xef, 0xa0, 0x3a, 0x93, 0x36, 0xd6, 0x34, 0x24, 0xc7, 0x2f, 0xf3, 0x1c, |
| 1182 | 0xd7, 0xae, 0xda, 0xc0, 0x34, 0x4b, 0x8d, 0x12, 0x8c, 0xb2, 0x0b, 0x1f, 0x63, 0x64, 0x66, 0x19, |
| 1183 | 0xfd, 0x6e, 0xc0, 0xae, 0x02, 0x7b, 0xf3, 0x8b, 0x98, 0xce, 0xe4, 0x61, 0x47, 0x2e, 0xd4, 0x44, |
| 1184 | 0x45, 0xc8, 0x93, 0x21, 0xb6, 0xb1, 0xdc, 0x4f, 0x6e, 0xd6, 0xcd, 0x5f, 0xf9, 0xa1, 0xef, 0xd7, |
| 1185 | 0x69, 0x98, 0x32, 0x8d, 0xaf, 0xf2, 0x90, 0xcc, 0xfe, 0xff, 0x41, 0x1e, 0x7f, 0x19, 0x50, 0x4b, |
| 1186 | 0x0f, 0x2d, 0x72, 0x72, 0xb5, 0xd1, 0x4a, 0x79, 0x64, 0x0f, 0x75, 0xae, 0x30, 0xd6, 0x67, 0xd3, |
| 1187 | 0x94, 0x67, 0xf3, 0x10, 0x6a, 0x09, 0x25, 0x17, 0xd1, 0x3b, 0xc2, 0x9a, 0x45, 0x99, 0xcb, 0xfd, |
| 1188 | 0xcd, 0x3d, 0x9c, 0xa1, 0x76, 0x50, 0x39, 0xac, 0xfc, 0x5b, 0xa7, 0xb0, 0x95, 0x5b, 0xba, 0x21, |
| 1189 | 0x0b, 0x27, 0x9b, 0x85, 0xe5, 0x36, 0x3f, 0xf4, 0xbb, 0xb3, 0xf9, 0xfd, 0x62, 0x40, 0x3d, 0x8d, |
| 1190 | 0xed, 0xde, 0x22, 0x41, 0x55, 0x7c, 0x07, 0x00, 0xb2, 0x90, 0xc7, 0xba, 0xf6, 0x45, 0x8a, 0x77, |
| 1191 | 0x3f, 0xf8, 0xbb, 0xfc, 0xba, 0x74, 0x16, 0xff, 0xbb, 0xfd, 0x8f, 0x01, 0x96, 0xaa, 0x4b, 0x25, |
| 1192 | 0xf5, 0x03, 0xb0, 0x28, 0x61, 0xf1, 0x82, 0xaa, 0xfa, 0x53, 0x59, 0x42, 0x6a, 0xf2, 0x42, 0x51, |
| 1193 | 0xe7, 0xba, 0x3c, 0x65, 0x1f, 0x1e, 0xcf, 0xf1, 0x2c, 0x2d, 0x8c, 0x9d, 0x70, 0xbd, 0x51, 0x1f, |
| 1194 | 0xcf, 0x08, 0xda, 0x03, 0x2b, 0x24, 0x2c, 0xa0, 0x51, 0x22, 0xc2, 0xea, 0x6e, 0x90, 0x35, 0xa1, |
| 1195 | 0xc3, 0x75, 0x3d, 0x97, 0x24, 0xeb, 0xbd, 0x94, 0x75, 0x86, 0xd4, 0xcd, 0xc5, 0x7c, 0xab, 0xc2, |
| 1196 | 0xfd, 0xd3, 0x84, 0x9a, 0x3f, 0xec, 0xaa, 0x9c, 0x6d, 0x28, 0xd2, 0x24, 0x48, 0x81, 0x34, 0x09, |
| 1197 | 0xd0, 0x43, 0x68, 0xc4, 0x09, 0xa1, 0x52, 0x2d, 0x21, 0x83, 0xc2, 0x5b, 0x2b, 0x9b, 0x17, 0xa2, |
| 1198 | 0x26, 0x54, 0x19, 0xa1, 0x82, 0xa3, 0xce, 0x2b, 0x9d, 0xa2, 0xbb, 0x50, 0x63, 0x1c, 0x07, 0x57, |
| 1199 | 0x02, 0x58, 0xd2, 0x4b, 0x62, 0xee, 0x85, 0x9b, 0xea, 0x96, 0xdf, 0x53, 0x77, 0x43, 0xb1, 0xca, |
| 1200 | 0xfb, 0x8a, 0x3d, 0x5b, 0x2b, 0x56, 0x95, 0x8a, 0xad, 0xae, 0x8a, 0x34, 0x9f, 0x0f, 0xf4, 0xbe, |
| 1201 | 0x27, 0x50, 0x61, 0x1c, 0xf3, 0x05, 0x6b, 0xd6, 0xe4, 0x31, 0xfd, 0xbf, 0xa3, 0xef, 0xb2, 0x41, |
| 1202 | 0x9a, 0x95, 0x4f, 0x58, 0xe2, 0x6b, 0xa7, 0x5b, 0xa9, 0xbb, 0x84, 0x2d, 0xc9, 0xa4, 0x8b, 0x39, |
| 1203 | 0x99, 0xc4, 0xf4, 0xba, 0x4d, 0xd2, 0x1b, 0x67, 0x17, 0xb6, 0xba, 0x83, 0xe3, 0xe3, 0xd3, 0xbe, |
| 1204 | 0xd7, 0x7d, 0x31, 0xf2, 0x06, 0x7d, 0xbb, 0x80, 0x76, 0xc0, 0xea, 0xf5, 0xcf, 0x3c, 0x7f, 0xd0, |
| 1205 | 0x3f, 0xee, 0xf5, 0x47, 0xb6, 0x81, 0xb6, 0xa0, 0xde, 0xfb, 0xe9, 0xd4, 0x1b, 0xca, 0xa9, 0x89, |
| 1206 | 0x2c, 0xa8, 0x9e, 0xf4, 0xfc, 0x33, 0xaf, 0xdb, 0xb3, 0x8b, 0x68, 0x1b, 0x60, 0xe8, 0x0f, 0xba, |
| 1207 | 0xbd, 0x93, 0x13, 0xaf, 0xff, 0xda, 0x2e, 0xa1, 0x06, 0xd4, 0x4e, 0x7a, 0xdd, 0x53, 0xdf, 0x1b, |
| 1208 | 0xbd, 0xb5, 0xcb, 0xed, 0x23, 0xb0, 0x65, 0xdc, 0x93, 0xc5, 0xf9, 0x2a, 0xf4, 0xd3, 0xcc, 0x85, |
| 1209 | 0x3c, 0x94, 0x01, 0xab, 0x50, 0x1c, 0xfc, 0x28, 0x02, 0x89, 0x81, 0x0c, 0x21, 0x07, 0xa7, 0x76, |
| 1210 | 0x51, 0x0c, 0xfa, 0x7d, 0xcf, 0x2e, 0xb5, 0x2f, 0xa0, 0xbe, 0xbe, 0x2f, 0xdf, 0xa6, 0x5b, 0xd8, |
| 1211 | 0xd0, 0xe8, 0x0e, 0xfa, 0x3f, 0x78, 0xaf, 0xc7, 0xbd, 0x33, 0x41, 0xae, 0x20, 0xb8, 0xbe, 0x19, |
| 1212 | 0x7a, 0x7a, 0x6a, 0x08, 0x7a, 0xab, 0xa9, 0x6b, 0x9b, 0x02, 0xf0, 0xaa, 0x27, 0xa8, 0x6b, 0x8f, |
| 1213 | 0xa2, 0x00, 0xf8, 0xc3, 0xae, 0x9e, 0x96, 0xda, 0x7f, 0x9b, 0x60, 0xc9, 0x40, 0x47, 0x04, 0x87, |
| 1214 | 0x84, 0x8a, 0xc2, 0x5e, 0x55, 0x9d, 0x19, 0x85, 0xe8, 0x19, 0xd4, 0x02, 0x9d, 0x89, 0x94, 0x79, |
| 1215 | 0xdb, 0xbd, 0x97, 0xfe, 0xee, 0x9c, 0xc2, 0xba, 0x3b, 0xac, 0x9c, 0xd1, 0x0b, 0x68, 0xb0, 0xc5, |
| 1216 | 0xf9, 0x78, 0x05, 0x2e, 0x4a, 0xf0, 0xfd, 0x1c, 0x38, 0x23, 0x93, 0xc6, 0x5b, 0x6c, 0x6d, 0x42, |
| 1217 | 0x8f, 0x75, 0x53, 0x2a, 0x49, 0xe8, 0xa7, 0x39, 0xe8, 0x7b, 0x1d, 0xe9, 0x21, 0x34, 0xc4, 0x77, |
| 1218 | 0xbc, 0x24, 0x94, 0x89, 0x93, 0xab, 0x8e, 0xb6, 0x25, 0x6c, 0x67, 0xca, 0x84, 0x9e, 0x41, 0x9d, |
| 1219 | 0xe2, 0x88, 0x91, 0x70, 0xcc, 0x99, 0x3c, 0xd9, 0x96, 0xdb, 0x72, 0xd4, 0xf3, 0xcb, 0x49, 0x9f, |
| 1220 | 0x5f, 0xce, 0x28, 0x7d, 0x7e, 0xf9, 0x35, 0xe5, 0x3c, 0x62, 0xe8, 0xb9, 0xa8, 0x9a, 0x24, 0xa6, |
| 1221 | 0x5c, 0x41, 0xab, 0x1f, 0x85, 0x42, 0xea, 0x3e, 0x62, 0xed, 0x3f, 0x4c, 0x28, 0xab, 0x32, 0x7f, |
| 1222 | 0x0c, 0x95, 0x4b, 0xa9, 0xb2, 0xbe, 0x02, 0xef, 0xe4, 0x32, 0x52, 0x3f, 0xc0, 0xd7, 0x2e, 0xe8, |
| 1223 | 0x00, 0x1a, 0x81, 0x7c, 0x7a, 0xa9, 0x36, 0xa7, 0x5b, 0xfb, 0x9d, 0x1b, 0x9e, 0x65, 0x47, 0x05, |
| 1224 | 0xdf, 0x0a, 0x32, 0x0f, 0xb9, 0x0e, 0xd4, 0xaf, 0x92, 0x48, 0xc3, 0x8a, 0x12, 0x66, 0x6f, 0x36, |
| 1225 | 0xf4, 0xa3, 0x82, 0x5f, 0xbb, 0x4a, 0x6f, 0x37, 0x17, 0x60, 0x05, 0x70, 0xa5, 0xda, 0x96, 0xbb, |
| 1226 | 0xbb, 0x89, 0x70, 0x8f, 0x0a, 0x7e, 0xfd, 0x6a, 0x75, 0x61, 0x1c, 0x40, 0x23, 0xdb, 0x85, 0xa5, |
| 1227 | 0xdc, 0x19, 0x7a, 0x99, 0xe6, 0x29, 0xe8, 0x65, 0xfa, 0xb2, 0xa0, 0x47, 0x93, 0x40, 0xc3, 0x2a, |
| 1228 | 0x79, 0x7a, 0x69, 0x07, 0x11, 0xf4, 0x68, 0x12, 0xc8, 0xf1, 0xcb, 0x06, 0x80, 0xea, 0xf4, 0xe2, |
| 1229 | 0x5f, 0xbe, 0xec, 0xc1, 0x9d, 0x98, 0x4e, 0x9c, 0x38, 0x21, 0xf3, 0x20, 0xa6, 0xa1, 0x46, 0xfe, |
| 1230 | 0xec, 0x4c, 0x22, 0x7e, 0xb9, 0x38, 0x17, 0x2d, 0xa5, 0x93, 0xae, 0x75, 0xd4, 0xda, 0x13, 0xfd, |
| 1231 | 0x72, 0x5e, 0x3e, 0xed, 0x4c, 0x62, 0x6d, 0x3b, 0xaf, 0x48, 0xe3, 0x37, 0xff, 0x06, 0x00, 0x00, |
| 1232 | 0xff, 0xff, 0x7b, 0x2c, 0xa9, 0x18, 0xdb, 0x0b, 0x00, 0x00, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1233 | } |