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" |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 10 | _ "github.com/opencord/voltha-protos/v3/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 AlarmEventType_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 80 | |
| 81 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 82 | AlarmEventType_COMMUNICATION AlarmEventType_Types = 0 |
| 83 | AlarmEventType_ENVIRONMENT AlarmEventType_Types = 1 |
| 84 | AlarmEventType_EQUIPMENT AlarmEventType_Types = 2 |
| 85 | AlarmEventType_SERVICE AlarmEventType_Types = 3 |
| 86 | AlarmEventType_PROCESSING AlarmEventType_Types = 4 |
| 87 | AlarmEventType_SECURITY AlarmEventType_Types = 5 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 88 | ) |
| 89 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 90 | var AlarmEventType_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 91 | 0: "COMMUNICATION", |
| 92 | 1: "ENVIRONMENT", |
| 93 | 2: "EQUIPMENT", |
| 94 | 3: "SERVICE", |
| 95 | 4: "PROCESSING", |
| 96 | 5: "SECURITY", |
| 97 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 98 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 99 | var AlarmEventType_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -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 AlarmEventType_Types) String() string { |
| 109 | return proto.EnumName(AlarmEventType_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 110 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 111 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 112 | func (AlarmEventType_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 113 | return fileDescriptor_e63e6c07044fd2c4, []int{8, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 114 | } |
| 115 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 116 | type AlarmEventCategory_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 117 | |
| 118 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 119 | AlarmEventCategory_PON AlarmEventCategory_Types = 0 |
| 120 | AlarmEventCategory_OLT AlarmEventCategory_Types = 1 |
| 121 | AlarmEventCategory_ONT AlarmEventCategory_Types = 2 |
| 122 | AlarmEventCategory_ONU AlarmEventCategory_Types = 3 |
| 123 | AlarmEventCategory_NNI AlarmEventCategory_Types = 4 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 124 | ) |
| 125 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 126 | var AlarmEventCategory_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 127 | 0: "PON", |
| 128 | 1: "OLT", |
| 129 | 2: "ONT", |
| 130 | 3: "ONU", |
| 131 | 4: "NNI", |
| 132 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 133 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 134 | var AlarmEventCategory_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -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 AlarmEventCategory_Types) String() string { |
| 143 | return proto.EnumName(AlarmEventCategory_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 144 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 145 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 146 | func (AlarmEventCategory_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 147 | return fileDescriptor_e63e6c07044fd2c4, []int{9, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 148 | } |
| 149 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 150 | type AlarmEventState_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 151 | |
| 152 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 153 | AlarmEventState_RAISED AlarmEventState_Types = 0 |
| 154 | AlarmEventState_CLEARED AlarmEventState_Types = 1 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 155 | ) |
| 156 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 157 | var AlarmEventState_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 158 | 0: "RAISED", |
| 159 | 1: "CLEARED", |
| 160 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 161 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 162 | var AlarmEventState_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 163 | "RAISED": 0, |
| 164 | "CLEARED": 1, |
| 165 | } |
| 166 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 167 | func (x AlarmEventState_Types) String() string { |
| 168 | return proto.EnumName(AlarmEventState_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 169 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 170 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 171 | func (AlarmEventState_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 172 | return fileDescriptor_e63e6c07044fd2c4, []int{10, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 173 | } |
| 174 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 175 | type AlarmEventSeverity_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 176 | |
| 177 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 178 | AlarmEventSeverity_INDETERMINATE AlarmEventSeverity_Types = 0 |
| 179 | AlarmEventSeverity_WARNING AlarmEventSeverity_Types = 1 |
| 180 | AlarmEventSeverity_MINOR AlarmEventSeverity_Types = 2 |
| 181 | AlarmEventSeverity_MAJOR AlarmEventSeverity_Types = 3 |
| 182 | AlarmEventSeverity_CRITICAL AlarmEventSeverity_Types = 4 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 183 | ) |
| 184 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 185 | var AlarmEventSeverity_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 186 | 0: "INDETERMINATE", |
| 187 | 1: "WARNING", |
| 188 | 2: "MINOR", |
| 189 | 3: "MAJOR", |
| 190 | 4: "CRITICAL", |
| 191 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 192 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 193 | var AlarmEventSeverity_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 194 | "INDETERMINATE": 0, |
| 195 | "WARNING": 1, |
| 196 | "MINOR": 2, |
| 197 | "MAJOR": 3, |
| 198 | "CRITICAL": 4, |
| 199 | } |
| 200 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 201 | func (x AlarmEventSeverity_Types) String() string { |
| 202 | return proto.EnumName(AlarmEventSeverity_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 203 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 204 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 205 | func (AlarmEventSeverity_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 206 | return fileDescriptor_e63e6c07044fd2c4, []int{11, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 207 | } |
| 208 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 209 | type EventCategory_Types int32 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 210 | |
| 211 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 212 | EventCategory_COMMUNICATION EventCategory_Types = 0 |
| 213 | EventCategory_ENVIRONMENT EventCategory_Types = 1 |
| 214 | EventCategory_EQUIPMENT EventCategory_Types = 2 |
| 215 | EventCategory_SERVICE EventCategory_Types = 3 |
| 216 | EventCategory_PROCESSING EventCategory_Types = 4 |
| 217 | EventCategory_SECURITY EventCategory_Types = 5 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 218 | ) |
| 219 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 220 | var EventCategory_Types_name = map[int32]string{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 221 | 0: "COMMUNICATION", |
| 222 | 1: "ENVIRONMENT", |
| 223 | 2: "EQUIPMENT", |
| 224 | 3: "SERVICE", |
| 225 | 4: "PROCESSING", |
| 226 | 5: "SECURITY", |
| 227 | } |
| 228 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 229 | var EventCategory_Types_value = map[string]int32{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 230 | "COMMUNICATION": 0, |
| 231 | "ENVIRONMENT": 1, |
| 232 | "EQUIPMENT": 2, |
| 233 | "SERVICE": 3, |
| 234 | "PROCESSING": 4, |
| 235 | "SECURITY": 5, |
| 236 | } |
| 237 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 238 | func (x EventCategory_Types) String() string { |
| 239 | return proto.EnumName(EventCategory_Types_name, int32(x)) |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 240 | } |
| 241 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 242 | func (EventCategory_Types) EnumDescriptor() ([]byte, []int) { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 243 | return fileDescriptor_e63e6c07044fd2c4, []int{14, 0} |
| 244 | } |
| 245 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 246 | type EventSubCategory_Types int32 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 247 | |
| 248 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 249 | EventSubCategory_PON EventSubCategory_Types = 0 |
| 250 | EventSubCategory_OLT EventSubCategory_Types = 1 |
| 251 | EventSubCategory_ONT EventSubCategory_Types = 2 |
| 252 | EventSubCategory_ONU EventSubCategory_Types = 3 |
| 253 | EventSubCategory_NNI EventSubCategory_Types = 4 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 254 | ) |
| 255 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 256 | var EventSubCategory_Types_name = map[int32]string{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 257 | 0: "PON", |
| 258 | 1: "OLT", |
| 259 | 2: "ONT", |
| 260 | 3: "ONU", |
| 261 | 4: "NNI", |
| 262 | } |
| 263 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 264 | var EventSubCategory_Types_value = map[string]int32{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 265 | "PON": 0, |
| 266 | "OLT": 1, |
| 267 | "ONT": 2, |
| 268 | "ONU": 3, |
| 269 | "NNI": 4, |
| 270 | } |
| 271 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 272 | func (x EventSubCategory_Types) String() string { |
| 273 | return proto.EnumName(EventSubCategory_Types_name, int32(x)) |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 274 | } |
| 275 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 276 | func (EventSubCategory_Types) EnumDescriptor() ([]byte, []int) { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 277 | return fileDescriptor_e63e6c07044fd2c4, []int{15, 0} |
| 278 | } |
| 279 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 280 | type EventType_Types int32 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 281 | |
| 282 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 283 | EventType_CONFIG_EVENT EventType_Types = 0 |
| 284 | EventType_KPI_EVENT EventType_Types = 1 |
| 285 | EventType_KPI_EVENT2 EventType_Types = 2 |
| 286 | EventType_DEVICE_EVENT EventType_Types = 3 |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 287 | ) |
| 288 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 289 | var EventType_Types_name = map[int32]string{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 290 | 0: "CONFIG_EVENT", |
| 291 | 1: "KPI_EVENT", |
| 292 | 2: "KPI_EVENT2", |
| 293 | 3: "DEVICE_EVENT", |
| 294 | } |
| 295 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 296 | var EventType_Types_value = map[string]int32{ |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 297 | "CONFIG_EVENT": 0, |
| 298 | "KPI_EVENT": 1, |
| 299 | "KPI_EVENT2": 2, |
| 300 | "DEVICE_EVENT": 3, |
| 301 | } |
| 302 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 303 | func (x EventType_Types) String() string { |
| 304 | return proto.EnumName(EventType_Types_name, int32(x)) |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 305 | } |
| 306 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 307 | func (EventType_Types) EnumDescriptor() ([]byte, []int) { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 308 | return fileDescriptor_e63e6c07044fd2c4, []int{16, 0} |
| 309 | } |
| 310 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 311 | type ConfigEventType struct { |
| 312 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 313 | XXX_unrecognized []byte `json:"-"` |
| 314 | XXX_sizecache int32 `json:"-"` |
| 315 | } |
| 316 | |
| 317 | func (m *ConfigEventType) Reset() { *m = ConfigEventType{} } |
| 318 | func (m *ConfigEventType) String() string { return proto.CompactTextString(m) } |
| 319 | func (*ConfigEventType) ProtoMessage() {} |
| 320 | func (*ConfigEventType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 321 | return fileDescriptor_e63e6c07044fd2c4, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 322 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 323 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 324 | func (m *ConfigEventType) XXX_Unmarshal(b []byte) error { |
| 325 | return xxx_messageInfo_ConfigEventType.Unmarshal(m, b) |
| 326 | } |
| 327 | func (m *ConfigEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 328 | return xxx_messageInfo_ConfigEventType.Marshal(b, m, deterministic) |
| 329 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 330 | func (m *ConfigEventType) XXX_Merge(src proto.Message) { |
| 331 | xxx_messageInfo_ConfigEventType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 332 | } |
| 333 | func (m *ConfigEventType) XXX_Size() int { |
| 334 | return xxx_messageInfo_ConfigEventType.Size(m) |
| 335 | } |
| 336 | func (m *ConfigEventType) XXX_DiscardUnknown() { |
| 337 | xxx_messageInfo_ConfigEventType.DiscardUnknown(m) |
| 338 | } |
| 339 | |
| 340 | var xxx_messageInfo_ConfigEventType proto.InternalMessageInfo |
| 341 | |
| 342 | type ConfigEvent struct { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 343 | Type ConfigEventType_Types `protobuf:"varint,1,opt,name=type,proto3,enum=voltha.ConfigEventType_Types" json:"type,omitempty"` |
| 344 | Hash string `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"` |
| 345 | Data string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` |
| 346 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 347 | XXX_unrecognized []byte `json:"-"` |
| 348 | XXX_sizecache int32 `json:"-"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | func (m *ConfigEvent) Reset() { *m = ConfigEvent{} } |
| 352 | func (m *ConfigEvent) String() string { return proto.CompactTextString(m) } |
| 353 | func (*ConfigEvent) ProtoMessage() {} |
| 354 | func (*ConfigEvent) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 355 | return fileDescriptor_e63e6c07044fd2c4, []int{1} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 356 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 357 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 358 | func (m *ConfigEvent) XXX_Unmarshal(b []byte) error { |
| 359 | return xxx_messageInfo_ConfigEvent.Unmarshal(m, b) |
| 360 | } |
| 361 | func (m *ConfigEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 362 | return xxx_messageInfo_ConfigEvent.Marshal(b, m, deterministic) |
| 363 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 364 | func (m *ConfigEvent) XXX_Merge(src proto.Message) { |
| 365 | xxx_messageInfo_ConfigEvent.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 366 | } |
| 367 | func (m *ConfigEvent) XXX_Size() int { |
| 368 | return xxx_messageInfo_ConfigEvent.Size(m) |
| 369 | } |
| 370 | func (m *ConfigEvent) XXX_DiscardUnknown() { |
| 371 | xxx_messageInfo_ConfigEvent.DiscardUnknown(m) |
| 372 | } |
| 373 | |
| 374 | var xxx_messageInfo_ConfigEvent proto.InternalMessageInfo |
| 375 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 376 | func (m *ConfigEvent) GetType() ConfigEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 377 | if m != nil { |
| 378 | return m.Type |
| 379 | } |
| 380 | return ConfigEventType_add |
| 381 | } |
| 382 | |
| 383 | func (m *ConfigEvent) GetHash() string { |
| 384 | if m != nil { |
| 385 | return m.Hash |
| 386 | } |
| 387 | return "" |
| 388 | } |
| 389 | |
| 390 | func (m *ConfigEvent) GetData() string { |
| 391 | if m != nil { |
| 392 | return m.Data |
| 393 | } |
| 394 | return "" |
| 395 | } |
| 396 | |
| 397 | type KpiEventType struct { |
| 398 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 399 | XXX_unrecognized []byte `json:"-"` |
| 400 | XXX_sizecache int32 `json:"-"` |
| 401 | } |
| 402 | |
| 403 | func (m *KpiEventType) Reset() { *m = KpiEventType{} } |
| 404 | func (m *KpiEventType) String() string { return proto.CompactTextString(m) } |
| 405 | func (*KpiEventType) ProtoMessage() {} |
| 406 | func (*KpiEventType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 407 | return fileDescriptor_e63e6c07044fd2c4, []int{2} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 408 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 409 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 410 | func (m *KpiEventType) XXX_Unmarshal(b []byte) error { |
| 411 | return xxx_messageInfo_KpiEventType.Unmarshal(m, b) |
| 412 | } |
| 413 | func (m *KpiEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 414 | return xxx_messageInfo_KpiEventType.Marshal(b, m, deterministic) |
| 415 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 416 | func (m *KpiEventType) XXX_Merge(src proto.Message) { |
| 417 | xxx_messageInfo_KpiEventType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 418 | } |
| 419 | func (m *KpiEventType) XXX_Size() int { |
| 420 | return xxx_messageInfo_KpiEventType.Size(m) |
| 421 | } |
| 422 | func (m *KpiEventType) XXX_DiscardUnknown() { |
| 423 | xxx_messageInfo_KpiEventType.DiscardUnknown(m) |
| 424 | } |
| 425 | |
| 426 | var xxx_messageInfo_KpiEventType proto.InternalMessageInfo |
| 427 | |
| 428 | // |
| 429 | // Struct to convey a dictionary of metric metadata. |
| 430 | type MetricMetaData struct { |
| 431 | Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` |
| 432 | Ts float64 `protobuf:"fixed64,2,opt,name=ts,proto3" json:"ts,omitempty"` |
| 433 | LogicalDeviceId string `protobuf:"bytes,3,opt,name=logical_device_id,json=logicalDeviceId,proto3" json:"logical_device_id,omitempty"` |
| 434 | // (equivalent to the DPID that ONOS has |
| 435 | // for the VOLTHA device without the |
| 436 | // 'of:' prefix |
| 437 | SerialNo string `protobuf:"bytes,4,opt,name=serial_no,json=serialNo,proto3" json:"serial_no,omitempty"` |
| 438 | DeviceId string `protobuf:"bytes,5,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"` |
| 439 | 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] | 440 | Uuid string `protobuf:"bytes,7,opt,name=uuid,proto3" json:"uuid,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 441 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 442 | XXX_unrecognized []byte `json:"-"` |
| 443 | XXX_sizecache int32 `json:"-"` |
| 444 | } |
| 445 | |
| 446 | func (m *MetricMetaData) Reset() { *m = MetricMetaData{} } |
| 447 | func (m *MetricMetaData) String() string { return proto.CompactTextString(m) } |
| 448 | func (*MetricMetaData) ProtoMessage() {} |
| 449 | func (*MetricMetaData) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 450 | return fileDescriptor_e63e6c07044fd2c4, []int{3} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 451 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 452 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 453 | func (m *MetricMetaData) XXX_Unmarshal(b []byte) error { |
| 454 | return xxx_messageInfo_MetricMetaData.Unmarshal(m, b) |
| 455 | } |
| 456 | func (m *MetricMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 457 | return xxx_messageInfo_MetricMetaData.Marshal(b, m, deterministic) |
| 458 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 459 | func (m *MetricMetaData) XXX_Merge(src proto.Message) { |
| 460 | xxx_messageInfo_MetricMetaData.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 461 | } |
| 462 | func (m *MetricMetaData) XXX_Size() int { |
| 463 | return xxx_messageInfo_MetricMetaData.Size(m) |
| 464 | } |
| 465 | func (m *MetricMetaData) XXX_DiscardUnknown() { |
| 466 | xxx_messageInfo_MetricMetaData.DiscardUnknown(m) |
| 467 | } |
| 468 | |
| 469 | var xxx_messageInfo_MetricMetaData proto.InternalMessageInfo |
| 470 | |
| 471 | func (m *MetricMetaData) GetTitle() string { |
| 472 | if m != nil { |
| 473 | return m.Title |
| 474 | } |
| 475 | return "" |
| 476 | } |
| 477 | |
| 478 | func (m *MetricMetaData) GetTs() float64 { |
| 479 | if m != nil { |
| 480 | return m.Ts |
| 481 | } |
| 482 | return 0 |
| 483 | } |
| 484 | |
| 485 | func (m *MetricMetaData) GetLogicalDeviceId() string { |
| 486 | if m != nil { |
| 487 | return m.LogicalDeviceId |
| 488 | } |
| 489 | return "" |
| 490 | } |
| 491 | |
| 492 | func (m *MetricMetaData) GetSerialNo() string { |
| 493 | if m != nil { |
| 494 | return m.SerialNo |
| 495 | } |
| 496 | return "" |
| 497 | } |
| 498 | |
| 499 | func (m *MetricMetaData) GetDeviceId() string { |
| 500 | if m != nil { |
| 501 | return m.DeviceId |
| 502 | } |
| 503 | return "" |
| 504 | } |
| 505 | |
| 506 | func (m *MetricMetaData) GetContext() map[string]string { |
| 507 | if m != nil { |
| 508 | return m.Context |
| 509 | } |
| 510 | return nil |
| 511 | } |
| 512 | |
onkar.kundargi | 7b85fa1 | 2020-02-27 13:19:22 +0530 | [diff] [blame] | 513 | func (m *MetricMetaData) GetUuid() string { |
| 514 | if m != nil { |
| 515 | return m.Uuid |
| 516 | } |
| 517 | return "" |
| 518 | } |
| 519 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 520 | // |
| 521 | // Struct to convey a dictionary of metric->value pairs. Typically used in |
| 522 | // pure shared-timestamp or shared-timestamp + shared object prefix situations. |
| 523 | type MetricValuePairs struct { |
| 524 | // Metric / value pairs. |
| 525 | 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"` |
| 526 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 527 | XXX_unrecognized []byte `json:"-"` |
| 528 | XXX_sizecache int32 `json:"-"` |
| 529 | } |
| 530 | |
| 531 | func (m *MetricValuePairs) Reset() { *m = MetricValuePairs{} } |
| 532 | func (m *MetricValuePairs) String() string { return proto.CompactTextString(m) } |
| 533 | func (*MetricValuePairs) ProtoMessage() {} |
| 534 | func (*MetricValuePairs) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 535 | return fileDescriptor_e63e6c07044fd2c4, []int{4} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 536 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 537 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 538 | func (m *MetricValuePairs) XXX_Unmarshal(b []byte) error { |
| 539 | return xxx_messageInfo_MetricValuePairs.Unmarshal(m, b) |
| 540 | } |
| 541 | func (m *MetricValuePairs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 542 | return xxx_messageInfo_MetricValuePairs.Marshal(b, m, deterministic) |
| 543 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 544 | func (m *MetricValuePairs) XXX_Merge(src proto.Message) { |
| 545 | xxx_messageInfo_MetricValuePairs.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 546 | } |
| 547 | func (m *MetricValuePairs) XXX_Size() int { |
| 548 | return xxx_messageInfo_MetricValuePairs.Size(m) |
| 549 | } |
| 550 | func (m *MetricValuePairs) XXX_DiscardUnknown() { |
| 551 | xxx_messageInfo_MetricValuePairs.DiscardUnknown(m) |
| 552 | } |
| 553 | |
| 554 | var xxx_messageInfo_MetricValuePairs proto.InternalMessageInfo |
| 555 | |
| 556 | func (m *MetricValuePairs) GetMetrics() map[string]float32 { |
| 557 | if m != nil { |
| 558 | return m.Metrics |
| 559 | } |
| 560 | return nil |
| 561 | } |
| 562 | |
| 563 | // |
| 564 | // Struct to group metadata for a metric (or group of metrics) with the key-value |
| 565 | // pairs of collected metrics |
| 566 | type MetricInformation struct { |
| 567 | Metadata *MetricMetaData `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` |
| 568 | 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"` |
| 569 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 570 | XXX_unrecognized []byte `json:"-"` |
| 571 | XXX_sizecache int32 `json:"-"` |
| 572 | } |
| 573 | |
| 574 | func (m *MetricInformation) Reset() { *m = MetricInformation{} } |
| 575 | func (m *MetricInformation) String() string { return proto.CompactTextString(m) } |
| 576 | func (*MetricInformation) ProtoMessage() {} |
| 577 | func (*MetricInformation) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 578 | return fileDescriptor_e63e6c07044fd2c4, []int{5} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 579 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 580 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 581 | func (m *MetricInformation) XXX_Unmarshal(b []byte) error { |
| 582 | return xxx_messageInfo_MetricInformation.Unmarshal(m, b) |
| 583 | } |
| 584 | func (m *MetricInformation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 585 | return xxx_messageInfo_MetricInformation.Marshal(b, m, deterministic) |
| 586 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 587 | func (m *MetricInformation) XXX_Merge(src proto.Message) { |
| 588 | xxx_messageInfo_MetricInformation.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 589 | } |
| 590 | func (m *MetricInformation) XXX_Size() int { |
| 591 | return xxx_messageInfo_MetricInformation.Size(m) |
| 592 | } |
| 593 | func (m *MetricInformation) XXX_DiscardUnknown() { |
| 594 | xxx_messageInfo_MetricInformation.DiscardUnknown(m) |
| 595 | } |
| 596 | |
| 597 | var xxx_messageInfo_MetricInformation proto.InternalMessageInfo |
| 598 | |
| 599 | func (m *MetricInformation) GetMetadata() *MetricMetaData { |
| 600 | if m != nil { |
| 601 | return m.Metadata |
| 602 | } |
| 603 | return nil |
| 604 | } |
| 605 | |
| 606 | func (m *MetricInformation) GetMetrics() map[string]float32 { |
| 607 | if m != nil { |
| 608 | return m.Metrics |
| 609 | } |
| 610 | return nil |
| 611 | } |
| 612 | |
| 613 | // |
| 614 | // Legacy KPI Event structured. In mid-August, the KPI event format was updated |
| 615 | // to a more easily parsable format. See VOL-1140 |
| 616 | // for more information. |
| 617 | type KpiEvent struct { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 618 | 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] | 619 | Ts float32 `protobuf:"fixed32,2,opt,name=ts,proto3" json:"ts,omitempty"` |
| 620 | 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"` |
| 621 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 622 | XXX_unrecognized []byte `json:"-"` |
| 623 | XXX_sizecache int32 `json:"-"` |
| 624 | } |
| 625 | |
| 626 | func (m *KpiEvent) Reset() { *m = KpiEvent{} } |
| 627 | func (m *KpiEvent) String() string { return proto.CompactTextString(m) } |
| 628 | func (*KpiEvent) ProtoMessage() {} |
| 629 | func (*KpiEvent) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 630 | return fileDescriptor_e63e6c07044fd2c4, []int{6} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 631 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 632 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 633 | func (m *KpiEvent) XXX_Unmarshal(b []byte) error { |
| 634 | return xxx_messageInfo_KpiEvent.Unmarshal(m, b) |
| 635 | } |
| 636 | func (m *KpiEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 637 | return xxx_messageInfo_KpiEvent.Marshal(b, m, deterministic) |
| 638 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 639 | func (m *KpiEvent) XXX_Merge(src proto.Message) { |
| 640 | xxx_messageInfo_KpiEvent.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 641 | } |
| 642 | func (m *KpiEvent) XXX_Size() int { |
| 643 | return xxx_messageInfo_KpiEvent.Size(m) |
| 644 | } |
| 645 | func (m *KpiEvent) XXX_DiscardUnknown() { |
| 646 | xxx_messageInfo_KpiEvent.DiscardUnknown(m) |
| 647 | } |
| 648 | |
| 649 | var xxx_messageInfo_KpiEvent proto.InternalMessageInfo |
| 650 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 651 | func (m *KpiEvent) GetType() KpiEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 652 | if m != nil { |
| 653 | return m.Type |
| 654 | } |
| 655 | return KpiEventType_slice |
| 656 | } |
| 657 | |
| 658 | func (m *KpiEvent) GetTs() float32 { |
| 659 | if m != nil { |
| 660 | return m.Ts |
| 661 | } |
| 662 | return 0 |
| 663 | } |
| 664 | |
| 665 | func (m *KpiEvent) GetPrefixes() map[string]*MetricValuePairs { |
| 666 | if m != nil { |
| 667 | return m.Prefixes |
| 668 | } |
| 669 | return nil |
| 670 | } |
| 671 | |
| 672 | type KpiEvent2 struct { |
| 673 | // Type of KPI Event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 674 | 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] | 675 | // Fields used when for slice: |
| 676 | Ts float64 `protobuf:"fixed64,2,opt,name=ts,proto3" json:"ts,omitempty"` |
| 677 | SliceData []*MetricInformation `protobuf:"bytes,3,rep,name=slice_data,json=sliceData,proto3" json:"slice_data,omitempty"` |
| 678 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 679 | XXX_unrecognized []byte `json:"-"` |
| 680 | XXX_sizecache int32 `json:"-"` |
| 681 | } |
| 682 | |
| 683 | func (m *KpiEvent2) Reset() { *m = KpiEvent2{} } |
| 684 | func (m *KpiEvent2) String() string { return proto.CompactTextString(m) } |
| 685 | func (*KpiEvent2) ProtoMessage() {} |
| 686 | func (*KpiEvent2) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 687 | return fileDescriptor_e63e6c07044fd2c4, []int{7} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 688 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 689 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 690 | func (m *KpiEvent2) XXX_Unmarshal(b []byte) error { |
| 691 | return xxx_messageInfo_KpiEvent2.Unmarshal(m, b) |
| 692 | } |
| 693 | func (m *KpiEvent2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 694 | return xxx_messageInfo_KpiEvent2.Marshal(b, m, deterministic) |
| 695 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 696 | func (m *KpiEvent2) XXX_Merge(src proto.Message) { |
| 697 | xxx_messageInfo_KpiEvent2.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 698 | } |
| 699 | func (m *KpiEvent2) XXX_Size() int { |
| 700 | return xxx_messageInfo_KpiEvent2.Size(m) |
| 701 | } |
| 702 | func (m *KpiEvent2) XXX_DiscardUnknown() { |
| 703 | xxx_messageInfo_KpiEvent2.DiscardUnknown(m) |
| 704 | } |
| 705 | |
| 706 | var xxx_messageInfo_KpiEvent2 proto.InternalMessageInfo |
| 707 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 708 | func (m *KpiEvent2) GetType() KpiEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 709 | if m != nil { |
| 710 | return m.Type |
| 711 | } |
| 712 | return KpiEventType_slice |
| 713 | } |
| 714 | |
| 715 | func (m *KpiEvent2) GetTs() float64 { |
| 716 | if m != nil { |
| 717 | return m.Ts |
| 718 | } |
| 719 | return 0 |
| 720 | } |
| 721 | |
| 722 | func (m *KpiEvent2) GetSliceData() []*MetricInformation { |
| 723 | if m != nil { |
| 724 | return m.SliceData |
| 725 | } |
| 726 | return nil |
| 727 | } |
| 728 | |
| 729 | // |
| 730 | // Identify to the area of the system impacted by the alarm |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 731 | // To be deprecated once python version of OpenOLT adapter |
| 732 | // moves to the new event defination for device alarms |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 733 | type AlarmEventType struct { |
| 734 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 735 | XXX_unrecognized []byte `json:"-"` |
| 736 | XXX_sizecache int32 `json:"-"` |
| 737 | } |
| 738 | |
| 739 | func (m *AlarmEventType) Reset() { *m = AlarmEventType{} } |
| 740 | func (m *AlarmEventType) String() string { return proto.CompactTextString(m) } |
| 741 | func (*AlarmEventType) ProtoMessage() {} |
| 742 | func (*AlarmEventType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 743 | return fileDescriptor_e63e6c07044fd2c4, []int{8} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 744 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 745 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 746 | func (m *AlarmEventType) XXX_Unmarshal(b []byte) error { |
| 747 | return xxx_messageInfo_AlarmEventType.Unmarshal(m, b) |
| 748 | } |
| 749 | func (m *AlarmEventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 750 | return xxx_messageInfo_AlarmEventType.Marshal(b, m, deterministic) |
| 751 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 752 | func (m *AlarmEventType) XXX_Merge(src proto.Message) { |
| 753 | xxx_messageInfo_AlarmEventType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 754 | } |
| 755 | func (m *AlarmEventType) XXX_Size() int { |
| 756 | return xxx_messageInfo_AlarmEventType.Size(m) |
| 757 | } |
| 758 | func (m *AlarmEventType) XXX_DiscardUnknown() { |
| 759 | xxx_messageInfo_AlarmEventType.DiscardUnknown(m) |
| 760 | } |
| 761 | |
| 762 | var xxx_messageInfo_AlarmEventType proto.InternalMessageInfo |
| 763 | |
| 764 | // |
| 765 | // Identify to the functional category originating the alarm |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 766 | // To be deprecated once python version of OpenOLT adapter |
| 767 | // as well as OpenONU adapter moves to the new event |
| 768 | // defination for device alarms |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 769 | type AlarmEventCategory struct { |
| 770 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 771 | XXX_unrecognized []byte `json:"-"` |
| 772 | XXX_sizecache int32 `json:"-"` |
| 773 | } |
| 774 | |
| 775 | func (m *AlarmEventCategory) Reset() { *m = AlarmEventCategory{} } |
| 776 | func (m *AlarmEventCategory) String() string { return proto.CompactTextString(m) } |
| 777 | func (*AlarmEventCategory) ProtoMessage() {} |
| 778 | func (*AlarmEventCategory) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 779 | return fileDescriptor_e63e6c07044fd2c4, []int{9} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 780 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 781 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 782 | func (m *AlarmEventCategory) XXX_Unmarshal(b []byte) error { |
| 783 | return xxx_messageInfo_AlarmEventCategory.Unmarshal(m, b) |
| 784 | } |
| 785 | func (m *AlarmEventCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 786 | return xxx_messageInfo_AlarmEventCategory.Marshal(b, m, deterministic) |
| 787 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 788 | func (m *AlarmEventCategory) XXX_Merge(src proto.Message) { |
| 789 | xxx_messageInfo_AlarmEventCategory.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 790 | } |
| 791 | func (m *AlarmEventCategory) XXX_Size() int { |
| 792 | return xxx_messageInfo_AlarmEventCategory.Size(m) |
| 793 | } |
| 794 | func (m *AlarmEventCategory) XXX_DiscardUnknown() { |
| 795 | xxx_messageInfo_AlarmEventCategory.DiscardUnknown(m) |
| 796 | } |
| 797 | |
| 798 | var xxx_messageInfo_AlarmEventCategory proto.InternalMessageInfo |
| 799 | |
| 800 | // |
| 801 | // Active state of the alarm |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 802 | // To be deprecated once python version of OpenOLT adapter |
| 803 | // as well as OpenONU adapter moves to the new event |
| 804 | // defination for device alarms |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 805 | type AlarmEventState struct { |
| 806 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 807 | XXX_unrecognized []byte `json:"-"` |
| 808 | XXX_sizecache int32 `json:"-"` |
| 809 | } |
| 810 | |
| 811 | func (m *AlarmEventState) Reset() { *m = AlarmEventState{} } |
| 812 | func (m *AlarmEventState) String() string { return proto.CompactTextString(m) } |
| 813 | func (*AlarmEventState) ProtoMessage() {} |
| 814 | func (*AlarmEventState) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 815 | return fileDescriptor_e63e6c07044fd2c4, []int{10} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 816 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 817 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 818 | func (m *AlarmEventState) XXX_Unmarshal(b []byte) error { |
| 819 | return xxx_messageInfo_AlarmEventState.Unmarshal(m, b) |
| 820 | } |
| 821 | func (m *AlarmEventState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 822 | return xxx_messageInfo_AlarmEventState.Marshal(b, m, deterministic) |
| 823 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 824 | func (m *AlarmEventState) XXX_Merge(src proto.Message) { |
| 825 | xxx_messageInfo_AlarmEventState.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 826 | } |
| 827 | func (m *AlarmEventState) XXX_Size() int { |
| 828 | return xxx_messageInfo_AlarmEventState.Size(m) |
| 829 | } |
| 830 | func (m *AlarmEventState) XXX_DiscardUnknown() { |
| 831 | xxx_messageInfo_AlarmEventState.DiscardUnknown(m) |
| 832 | } |
| 833 | |
| 834 | var xxx_messageInfo_AlarmEventState proto.InternalMessageInfo |
| 835 | |
| 836 | // |
| 837 | // Identify the overall impact of the alarm on the system |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 838 | // To be deprecated once python version of OpenOLT adapter |
| 839 | // as well as OpenONU adapter moves to the new event |
| 840 | // defination for device alarms |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 841 | type AlarmEventSeverity struct { |
| 842 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 843 | XXX_unrecognized []byte `json:"-"` |
| 844 | XXX_sizecache int32 `json:"-"` |
| 845 | } |
| 846 | |
| 847 | func (m *AlarmEventSeverity) Reset() { *m = AlarmEventSeverity{} } |
| 848 | func (m *AlarmEventSeverity) String() string { return proto.CompactTextString(m) } |
| 849 | func (*AlarmEventSeverity) ProtoMessage() {} |
| 850 | func (*AlarmEventSeverity) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 851 | return fileDescriptor_e63e6c07044fd2c4, []int{11} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 852 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 853 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 854 | func (m *AlarmEventSeverity) XXX_Unmarshal(b []byte) error { |
| 855 | return xxx_messageInfo_AlarmEventSeverity.Unmarshal(m, b) |
| 856 | } |
| 857 | func (m *AlarmEventSeverity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 858 | return xxx_messageInfo_AlarmEventSeverity.Marshal(b, m, deterministic) |
| 859 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 860 | func (m *AlarmEventSeverity) XXX_Merge(src proto.Message) { |
| 861 | xxx_messageInfo_AlarmEventSeverity.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 862 | } |
| 863 | func (m *AlarmEventSeverity) XXX_Size() int { |
| 864 | return xxx_messageInfo_AlarmEventSeverity.Size(m) |
| 865 | } |
| 866 | func (m *AlarmEventSeverity) XXX_DiscardUnknown() { |
| 867 | xxx_messageInfo_AlarmEventSeverity.DiscardUnknown(m) |
| 868 | } |
| 869 | |
| 870 | var xxx_messageInfo_AlarmEventSeverity proto.InternalMessageInfo |
| 871 | |
| 872 | // |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 873 | // To be deprecated once python version of OpenOLT adapter |
| 874 | // as well as OpenONU adapter moves to the new event |
| 875 | // defination for device alarms |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 876 | type AlarmEvent struct { |
| 877 | // Unique ID for this alarm. e.g. voltha.some_olt.1234 |
| 878 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 879 | // Refers to the area of the system impacted by the alarm |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 880 | Type AlarmEventType_Types `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.AlarmEventType_Types" json:"type,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 881 | // Refers to functional category of the alarm |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 882 | Category AlarmEventCategory_Types `protobuf:"varint,3,opt,name=category,proto3,enum=voltha.AlarmEventCategory_Types" json:"category,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 883 | // Current active state of the alarm |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 884 | State AlarmEventState_Types `protobuf:"varint,4,opt,name=state,proto3,enum=voltha.AlarmEventState_Types" json:"state,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 885 | // Overall impact of the alarm on the system |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 886 | Severity AlarmEventSeverity_Types `protobuf:"varint,5,opt,name=severity,proto3,enum=voltha.AlarmEventSeverity_Types" json:"severity,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 887 | // Timestamp at which the alarm was first raised |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 888 | // TODO: Is this obsolete? Eventheader already has a raised_ts |
| 889 | RaisedTs *timestamp.Timestamp `protobuf:"bytes,6,opt,name=raised_ts,json=raisedTs,proto3" json:"raised_ts,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 890 | // Timestamp at which the alarm was reported |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 891 | // TODO: Is this obsolete? Eventheader already has a reported_ts |
| 892 | ReportedTs *timestamp.Timestamp `protobuf:"bytes,7,opt,name=reported_ts,json=reportedTs,proto3" json:"reported_ts,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 893 | // Timestamp at which the alarm has changed since it was raised |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 894 | ChangedTs *timestamp.Timestamp `protobuf:"bytes,8,opt,name=changed_ts,json=changedTs,proto3" json:"changed_ts,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 895 | // Identifier of the originating resource of the alarm |
| 896 | ResourceId string `protobuf:"bytes,9,opt,name=resource_id,json=resourceId,proto3" json:"resource_id,omitempty"` |
| 897 | // Textual explanation of the alarm |
| 898 | Description string `protobuf:"bytes,10,opt,name=description,proto3" json:"description,omitempty"` |
| 899 | // Key/Value storage for extra information that may give context to the alarm |
| 900 | Context map[string]string `protobuf:"bytes,11,rep,name=context,proto3" json:"context,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` |
| 901 | // logical device id |
| 902 | LogicalDeviceId string `protobuf:"bytes,12,opt,name=logical_device_id,json=logicalDeviceId,proto3" json:"logical_device_id,omitempty"` |
| 903 | // alarm_type name indicates clearly the name of the alarm |
| 904 | AlarmTypeName string `protobuf:"bytes,13,opt,name=alarm_type_name,json=alarmTypeName,proto3" json:"alarm_type_name,omitempty"` |
| 905 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 906 | XXX_unrecognized []byte `json:"-"` |
| 907 | XXX_sizecache int32 `json:"-"` |
| 908 | } |
| 909 | |
| 910 | func (m *AlarmEvent) Reset() { *m = AlarmEvent{} } |
| 911 | func (m *AlarmEvent) String() string { return proto.CompactTextString(m) } |
| 912 | func (*AlarmEvent) ProtoMessage() {} |
| 913 | func (*AlarmEvent) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 914 | return fileDescriptor_e63e6c07044fd2c4, []int{12} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 915 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 916 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 917 | func (m *AlarmEvent) XXX_Unmarshal(b []byte) error { |
| 918 | return xxx_messageInfo_AlarmEvent.Unmarshal(m, b) |
| 919 | } |
| 920 | func (m *AlarmEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 921 | return xxx_messageInfo_AlarmEvent.Marshal(b, m, deterministic) |
| 922 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 923 | func (m *AlarmEvent) XXX_Merge(src proto.Message) { |
| 924 | xxx_messageInfo_AlarmEvent.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 925 | } |
| 926 | func (m *AlarmEvent) XXX_Size() int { |
| 927 | return xxx_messageInfo_AlarmEvent.Size(m) |
| 928 | } |
| 929 | func (m *AlarmEvent) XXX_DiscardUnknown() { |
| 930 | xxx_messageInfo_AlarmEvent.DiscardUnknown(m) |
| 931 | } |
| 932 | |
| 933 | var xxx_messageInfo_AlarmEvent proto.InternalMessageInfo |
| 934 | |
| 935 | func (m *AlarmEvent) GetId() string { |
| 936 | if m != nil { |
| 937 | return m.Id |
| 938 | } |
| 939 | return "" |
| 940 | } |
| 941 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 942 | func (m *AlarmEvent) GetType() AlarmEventType_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 943 | if m != nil { |
| 944 | return m.Type |
| 945 | } |
| 946 | return AlarmEventType_COMMUNICATION |
| 947 | } |
| 948 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 949 | func (m *AlarmEvent) GetCategory() AlarmEventCategory_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 950 | if m != nil { |
| 951 | return m.Category |
| 952 | } |
| 953 | return AlarmEventCategory_PON |
| 954 | } |
| 955 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 956 | func (m *AlarmEvent) GetState() AlarmEventState_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 957 | if m != nil { |
| 958 | return m.State |
| 959 | } |
| 960 | return AlarmEventState_RAISED |
| 961 | } |
| 962 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 963 | func (m *AlarmEvent) GetSeverity() AlarmEventSeverity_Types { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 964 | if m != nil { |
| 965 | return m.Severity |
| 966 | } |
| 967 | return AlarmEventSeverity_INDETERMINATE |
| 968 | } |
| 969 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 970 | func (m *AlarmEvent) GetRaisedTs() *timestamp.Timestamp { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 971 | if m != nil { |
| 972 | return m.RaisedTs |
| 973 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 974 | return nil |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 975 | } |
| 976 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 977 | func (m *AlarmEvent) GetReportedTs() *timestamp.Timestamp { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 978 | if m != nil { |
| 979 | return m.ReportedTs |
| 980 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 981 | return nil |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 982 | } |
| 983 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 984 | func (m *AlarmEvent) GetChangedTs() *timestamp.Timestamp { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 985 | if m != nil { |
| 986 | return m.ChangedTs |
| 987 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 988 | return nil |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | func (m *AlarmEvent) GetResourceId() string { |
| 992 | if m != nil { |
| 993 | return m.ResourceId |
| 994 | } |
| 995 | return "" |
| 996 | } |
| 997 | |
| 998 | func (m *AlarmEvent) GetDescription() string { |
| 999 | if m != nil { |
| 1000 | return m.Description |
| 1001 | } |
| 1002 | return "" |
| 1003 | } |
| 1004 | |
| 1005 | func (m *AlarmEvent) GetContext() map[string]string { |
| 1006 | if m != nil { |
| 1007 | return m.Context |
| 1008 | } |
| 1009 | return nil |
| 1010 | } |
| 1011 | |
| 1012 | func (m *AlarmEvent) GetLogicalDeviceId() string { |
| 1013 | if m != nil { |
| 1014 | return m.LogicalDeviceId |
| 1015 | } |
| 1016 | return "" |
| 1017 | } |
| 1018 | |
| 1019 | func (m *AlarmEvent) GetAlarmTypeName() string { |
| 1020 | if m != nil { |
| 1021 | return m.AlarmTypeName |
| 1022 | } |
| 1023 | return "" |
| 1024 | } |
| 1025 | |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1026 | // |
| 1027 | // Describes the events specific to device |
| 1028 | type DeviceEvent struct { |
| 1029 | // Identifier of the originating resource of the event, for ex: device_id |
| 1030 | ResourceId string `protobuf:"bytes,1,opt,name=resource_id,json=resourceId,proto3" json:"resource_id,omitempty"` |
| 1031 | // device_event_name indicates clearly the name of the device event |
| 1032 | DeviceEventName string `protobuf:"bytes,2,opt,name=device_event_name,json=deviceEventName,proto3" json:"device_event_name,omitempty"` |
| 1033 | // Textual explanation of the device event |
| 1034 | Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` |
| 1035 | // Key/Value storage for extra information that may give context to the event |
| 1036 | 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"` |
| 1037 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1038 | XXX_unrecognized []byte `json:"-"` |
| 1039 | XXX_sizecache int32 `json:"-"` |
| 1040 | } |
| 1041 | |
| 1042 | func (m *DeviceEvent) Reset() { *m = DeviceEvent{} } |
| 1043 | func (m *DeviceEvent) String() string { return proto.CompactTextString(m) } |
| 1044 | func (*DeviceEvent) ProtoMessage() {} |
| 1045 | func (*DeviceEvent) Descriptor() ([]byte, []int) { |
| 1046 | return fileDescriptor_e63e6c07044fd2c4, []int{13} |
| 1047 | } |
| 1048 | |
| 1049 | func (m *DeviceEvent) XXX_Unmarshal(b []byte) error { |
| 1050 | return xxx_messageInfo_DeviceEvent.Unmarshal(m, b) |
| 1051 | } |
| 1052 | func (m *DeviceEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1053 | return xxx_messageInfo_DeviceEvent.Marshal(b, m, deterministic) |
| 1054 | } |
| 1055 | func (m *DeviceEvent) XXX_Merge(src proto.Message) { |
| 1056 | xxx_messageInfo_DeviceEvent.Merge(m, src) |
| 1057 | } |
| 1058 | func (m *DeviceEvent) XXX_Size() int { |
| 1059 | return xxx_messageInfo_DeviceEvent.Size(m) |
| 1060 | } |
| 1061 | func (m *DeviceEvent) XXX_DiscardUnknown() { |
| 1062 | xxx_messageInfo_DeviceEvent.DiscardUnknown(m) |
| 1063 | } |
| 1064 | |
| 1065 | var xxx_messageInfo_DeviceEvent proto.InternalMessageInfo |
| 1066 | |
| 1067 | func (m *DeviceEvent) GetResourceId() string { |
| 1068 | if m != nil { |
| 1069 | return m.ResourceId |
| 1070 | } |
| 1071 | return "" |
| 1072 | } |
| 1073 | |
| 1074 | func (m *DeviceEvent) GetDeviceEventName() string { |
| 1075 | if m != nil { |
| 1076 | return m.DeviceEventName |
| 1077 | } |
| 1078 | return "" |
| 1079 | } |
| 1080 | |
| 1081 | func (m *DeviceEvent) GetDescription() string { |
| 1082 | if m != nil { |
| 1083 | return m.Description |
| 1084 | } |
| 1085 | return "" |
| 1086 | } |
| 1087 | |
| 1088 | func (m *DeviceEvent) GetContext() map[string]string { |
| 1089 | if m != nil { |
| 1090 | return m.Context |
| 1091 | } |
| 1092 | return nil |
| 1093 | } |
| 1094 | |
| 1095 | // |
| 1096 | // Identify the area of the system impacted by the event. |
| 1097 | type EventCategory struct { |
| 1098 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1099 | XXX_unrecognized []byte `json:"-"` |
| 1100 | XXX_sizecache int32 `json:"-"` |
| 1101 | } |
| 1102 | |
| 1103 | func (m *EventCategory) Reset() { *m = EventCategory{} } |
| 1104 | func (m *EventCategory) String() string { return proto.CompactTextString(m) } |
| 1105 | func (*EventCategory) ProtoMessage() {} |
| 1106 | func (*EventCategory) Descriptor() ([]byte, []int) { |
| 1107 | return fileDescriptor_e63e6c07044fd2c4, []int{14} |
| 1108 | } |
| 1109 | |
| 1110 | func (m *EventCategory) XXX_Unmarshal(b []byte) error { |
| 1111 | return xxx_messageInfo_EventCategory.Unmarshal(m, b) |
| 1112 | } |
| 1113 | func (m *EventCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1114 | return xxx_messageInfo_EventCategory.Marshal(b, m, deterministic) |
| 1115 | } |
| 1116 | func (m *EventCategory) XXX_Merge(src proto.Message) { |
| 1117 | xxx_messageInfo_EventCategory.Merge(m, src) |
| 1118 | } |
| 1119 | func (m *EventCategory) XXX_Size() int { |
| 1120 | return xxx_messageInfo_EventCategory.Size(m) |
| 1121 | } |
| 1122 | func (m *EventCategory) XXX_DiscardUnknown() { |
| 1123 | xxx_messageInfo_EventCategory.DiscardUnknown(m) |
| 1124 | } |
| 1125 | |
| 1126 | var xxx_messageInfo_EventCategory proto.InternalMessageInfo |
| 1127 | |
| 1128 | // |
| 1129 | // Identify the functional category originating the event |
| 1130 | type EventSubCategory struct { |
| 1131 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1132 | XXX_unrecognized []byte `json:"-"` |
| 1133 | XXX_sizecache int32 `json:"-"` |
| 1134 | } |
| 1135 | |
| 1136 | func (m *EventSubCategory) Reset() { *m = EventSubCategory{} } |
| 1137 | func (m *EventSubCategory) String() string { return proto.CompactTextString(m) } |
| 1138 | func (*EventSubCategory) ProtoMessage() {} |
| 1139 | func (*EventSubCategory) Descriptor() ([]byte, []int) { |
| 1140 | return fileDescriptor_e63e6c07044fd2c4, []int{15} |
| 1141 | } |
| 1142 | |
| 1143 | func (m *EventSubCategory) XXX_Unmarshal(b []byte) error { |
| 1144 | return xxx_messageInfo_EventSubCategory.Unmarshal(m, b) |
| 1145 | } |
| 1146 | func (m *EventSubCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1147 | return xxx_messageInfo_EventSubCategory.Marshal(b, m, deterministic) |
| 1148 | } |
| 1149 | func (m *EventSubCategory) XXX_Merge(src proto.Message) { |
| 1150 | xxx_messageInfo_EventSubCategory.Merge(m, src) |
| 1151 | } |
| 1152 | func (m *EventSubCategory) XXX_Size() int { |
| 1153 | return xxx_messageInfo_EventSubCategory.Size(m) |
| 1154 | } |
| 1155 | func (m *EventSubCategory) XXX_DiscardUnknown() { |
| 1156 | xxx_messageInfo_EventSubCategory.DiscardUnknown(m) |
| 1157 | } |
| 1158 | |
| 1159 | var xxx_messageInfo_EventSubCategory proto.InternalMessageInfo |
| 1160 | |
| 1161 | // |
| 1162 | // Identify the type of event |
| 1163 | type EventType struct { |
| 1164 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1165 | XXX_unrecognized []byte `json:"-"` |
| 1166 | XXX_sizecache int32 `json:"-"` |
| 1167 | } |
| 1168 | |
| 1169 | func (m *EventType) Reset() { *m = EventType{} } |
| 1170 | func (m *EventType) String() string { return proto.CompactTextString(m) } |
| 1171 | func (*EventType) ProtoMessage() {} |
| 1172 | func (*EventType) Descriptor() ([]byte, []int) { |
| 1173 | return fileDescriptor_e63e6c07044fd2c4, []int{16} |
| 1174 | } |
| 1175 | |
| 1176 | func (m *EventType) XXX_Unmarshal(b []byte) error { |
| 1177 | return xxx_messageInfo_EventType.Unmarshal(m, b) |
| 1178 | } |
| 1179 | func (m *EventType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1180 | return xxx_messageInfo_EventType.Marshal(b, m, deterministic) |
| 1181 | } |
| 1182 | func (m *EventType) XXX_Merge(src proto.Message) { |
| 1183 | xxx_messageInfo_EventType.Merge(m, src) |
| 1184 | } |
| 1185 | func (m *EventType) XXX_Size() int { |
| 1186 | return xxx_messageInfo_EventType.Size(m) |
| 1187 | } |
| 1188 | func (m *EventType) XXX_DiscardUnknown() { |
| 1189 | xxx_messageInfo_EventType.DiscardUnknown(m) |
| 1190 | } |
| 1191 | |
| 1192 | var xxx_messageInfo_EventType proto.InternalMessageInfo |
| 1193 | |
| 1194 | // |
| 1195 | // Identify the functional category originating the event |
| 1196 | type EventHeader struct { |
| 1197 | // Unique ID for this event. e.g. voltha.some_olt.1234 |
| 1198 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 1199 | // Refers to the functional area affect by the event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1200 | 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] | 1201 | // Refers to functional category of the event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1202 | 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] | 1203 | // Refers to the type of the event |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1204 | 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] | 1205 | // The version identifier for this event type, thus allowing each |
| 1206 | // event type to evolve independently. The version should be in the |
| 1207 | // format “MAJOR.MINOR” format and minor changes must only be additive |
| 1208 | // and non-breaking. |
| 1209 | TypeVersion string `protobuf:"bytes,5,opt,name=type_version,json=typeVersion,proto3" json:"type_version,omitempty"` |
| 1210 | // Timestamp at which the event was first raised. |
| 1211 | // This represents the UTC time stamp since epoch (in seconds) when the |
| 1212 | // the event was first raised from the source entity. |
| 1213 | // If the source entity doesn't send the raised_ts, this shall be set |
| 1214 | // to timestamp when the event was received. |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 1215 | 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] | 1216 | // Timestamp at which the event was reported. |
| 1217 | // This represents the UTC time stamp since epoch (in seconds) when the |
| 1218 | // the event was reported (this time stamp is >= raised_ts). |
| 1219 | // If the source entity that reported this event doesn't send the |
| 1220 | // 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] | 1221 | ReportedTs *timestamp.Timestamp `protobuf:"bytes,7,opt,name=reported_ts,json=reportedTs,proto3" json:"reported_ts,omitempty"` |
| 1222 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1223 | XXX_unrecognized []byte `json:"-"` |
| 1224 | XXX_sizecache int32 `json:"-"` |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1225 | } |
| 1226 | |
| 1227 | func (m *EventHeader) Reset() { *m = EventHeader{} } |
| 1228 | func (m *EventHeader) String() string { return proto.CompactTextString(m) } |
| 1229 | func (*EventHeader) ProtoMessage() {} |
| 1230 | func (*EventHeader) Descriptor() ([]byte, []int) { |
| 1231 | return fileDescriptor_e63e6c07044fd2c4, []int{17} |
| 1232 | } |
| 1233 | |
| 1234 | func (m *EventHeader) XXX_Unmarshal(b []byte) error { |
| 1235 | return xxx_messageInfo_EventHeader.Unmarshal(m, b) |
| 1236 | } |
| 1237 | func (m *EventHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1238 | return xxx_messageInfo_EventHeader.Marshal(b, m, deterministic) |
| 1239 | } |
| 1240 | func (m *EventHeader) XXX_Merge(src proto.Message) { |
| 1241 | xxx_messageInfo_EventHeader.Merge(m, src) |
| 1242 | } |
| 1243 | func (m *EventHeader) XXX_Size() int { |
| 1244 | return xxx_messageInfo_EventHeader.Size(m) |
| 1245 | } |
| 1246 | func (m *EventHeader) XXX_DiscardUnknown() { |
| 1247 | xxx_messageInfo_EventHeader.DiscardUnknown(m) |
| 1248 | } |
| 1249 | |
| 1250 | var xxx_messageInfo_EventHeader proto.InternalMessageInfo |
| 1251 | |
| 1252 | func (m *EventHeader) GetId() string { |
| 1253 | if m != nil { |
| 1254 | return m.Id |
| 1255 | } |
| 1256 | return "" |
| 1257 | } |
| 1258 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1259 | func (m *EventHeader) GetCategory() EventCategory_Types { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1260 | if m != nil { |
| 1261 | return m.Category |
| 1262 | } |
| 1263 | return EventCategory_COMMUNICATION |
| 1264 | } |
| 1265 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1266 | func (m *EventHeader) GetSubCategory() EventSubCategory_Types { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1267 | if m != nil { |
| 1268 | return m.SubCategory |
| 1269 | } |
| 1270 | return EventSubCategory_PON |
| 1271 | } |
| 1272 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1273 | func (m *EventHeader) GetType() EventType_Types { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1274 | if m != nil { |
| 1275 | return m.Type |
| 1276 | } |
| 1277 | return EventType_CONFIG_EVENT |
| 1278 | } |
| 1279 | |
| 1280 | func (m *EventHeader) GetTypeVersion() string { |
| 1281 | if m != nil { |
| 1282 | return m.TypeVersion |
| 1283 | } |
| 1284 | return "" |
| 1285 | } |
| 1286 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 1287 | func (m *EventHeader) GetRaisedTs() *timestamp.Timestamp { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1288 | if m != nil { |
| 1289 | return m.RaisedTs |
| 1290 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 1291 | return nil |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1292 | } |
| 1293 | |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 1294 | func (m *EventHeader) GetReportedTs() *timestamp.Timestamp { |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1295 | if m != nil { |
| 1296 | return m.ReportedTs |
| 1297 | } |
Scott Baker | 7c854aa | 2020-02-10 17:25:31 -0800 | [diff] [blame] | 1298 | return nil |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | // |
| 1302 | // Event Structure |
| 1303 | type Event struct { |
| 1304 | // event header |
| 1305 | Header *EventHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` |
| 1306 | // oneof event types referred by EventType. |
| 1307 | // |
| 1308 | // Types that are valid to be assigned to EventType: |
| 1309 | // *Event_ConfigEvent |
| 1310 | // *Event_KpiEvent |
| 1311 | // *Event_KpiEvent2 |
| 1312 | // *Event_DeviceEvent |
| 1313 | EventType isEvent_EventType `protobuf_oneof:"event_type"` |
| 1314 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1315 | XXX_unrecognized []byte `json:"-"` |
| 1316 | XXX_sizecache int32 `json:"-"` |
| 1317 | } |
| 1318 | |
| 1319 | func (m *Event) Reset() { *m = Event{} } |
| 1320 | func (m *Event) String() string { return proto.CompactTextString(m) } |
| 1321 | func (*Event) ProtoMessage() {} |
| 1322 | func (*Event) Descriptor() ([]byte, []int) { |
| 1323 | return fileDescriptor_e63e6c07044fd2c4, []int{18} |
| 1324 | } |
| 1325 | |
| 1326 | func (m *Event) XXX_Unmarshal(b []byte) error { |
| 1327 | return xxx_messageInfo_Event.Unmarshal(m, b) |
| 1328 | } |
| 1329 | func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1330 | return xxx_messageInfo_Event.Marshal(b, m, deterministic) |
| 1331 | } |
| 1332 | func (m *Event) XXX_Merge(src proto.Message) { |
| 1333 | xxx_messageInfo_Event.Merge(m, src) |
| 1334 | } |
| 1335 | func (m *Event) XXX_Size() int { |
| 1336 | return xxx_messageInfo_Event.Size(m) |
| 1337 | } |
| 1338 | func (m *Event) XXX_DiscardUnknown() { |
| 1339 | xxx_messageInfo_Event.DiscardUnknown(m) |
| 1340 | } |
| 1341 | |
| 1342 | var xxx_messageInfo_Event proto.InternalMessageInfo |
| 1343 | |
| 1344 | func (m *Event) GetHeader() *EventHeader { |
| 1345 | if m != nil { |
| 1346 | return m.Header |
| 1347 | } |
| 1348 | return nil |
| 1349 | } |
| 1350 | |
| 1351 | type isEvent_EventType interface { |
| 1352 | isEvent_EventType() |
| 1353 | } |
| 1354 | |
| 1355 | type Event_ConfigEvent struct { |
| 1356 | ConfigEvent *ConfigEvent `protobuf:"bytes,2,opt,name=config_event,json=configEvent,proto3,oneof"` |
| 1357 | } |
| 1358 | |
| 1359 | type Event_KpiEvent struct { |
| 1360 | KpiEvent *KpiEvent `protobuf:"bytes,3,opt,name=kpi_event,json=kpiEvent,proto3,oneof"` |
| 1361 | } |
| 1362 | |
| 1363 | type Event_KpiEvent2 struct { |
| 1364 | KpiEvent2 *KpiEvent2 `protobuf:"bytes,4,opt,name=kpi_event2,json=kpiEvent2,proto3,oneof"` |
| 1365 | } |
| 1366 | |
| 1367 | type Event_DeviceEvent struct { |
| 1368 | DeviceEvent *DeviceEvent `protobuf:"bytes,5,opt,name=device_event,json=deviceEvent,proto3,oneof"` |
| 1369 | } |
| 1370 | |
| 1371 | func (*Event_ConfigEvent) isEvent_EventType() {} |
| 1372 | |
| 1373 | func (*Event_KpiEvent) isEvent_EventType() {} |
| 1374 | |
| 1375 | func (*Event_KpiEvent2) isEvent_EventType() {} |
| 1376 | |
| 1377 | func (*Event_DeviceEvent) isEvent_EventType() {} |
| 1378 | |
| 1379 | func (m *Event) GetEventType() isEvent_EventType { |
| 1380 | if m != nil { |
| 1381 | return m.EventType |
| 1382 | } |
| 1383 | return nil |
| 1384 | } |
| 1385 | |
| 1386 | func (m *Event) GetConfigEvent() *ConfigEvent { |
| 1387 | if x, ok := m.GetEventType().(*Event_ConfigEvent); ok { |
| 1388 | return x.ConfigEvent |
| 1389 | } |
| 1390 | return nil |
| 1391 | } |
| 1392 | |
| 1393 | func (m *Event) GetKpiEvent() *KpiEvent { |
| 1394 | if x, ok := m.GetEventType().(*Event_KpiEvent); ok { |
| 1395 | return x.KpiEvent |
| 1396 | } |
| 1397 | return nil |
| 1398 | } |
| 1399 | |
| 1400 | func (m *Event) GetKpiEvent2() *KpiEvent2 { |
| 1401 | if x, ok := m.GetEventType().(*Event_KpiEvent2); ok { |
| 1402 | return x.KpiEvent2 |
| 1403 | } |
| 1404 | return nil |
| 1405 | } |
| 1406 | |
| 1407 | func (m *Event) GetDeviceEvent() *DeviceEvent { |
| 1408 | if x, ok := m.GetEventType().(*Event_DeviceEvent); ok { |
| 1409 | return x.DeviceEvent |
| 1410 | } |
| 1411 | return nil |
| 1412 | } |
| 1413 | |
| 1414 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 1415 | func (*Event) XXX_OneofWrappers() []interface{} { |
| 1416 | return []interface{}{ |
| 1417 | (*Event_ConfigEvent)(nil), |
| 1418 | (*Event_KpiEvent)(nil), |
| 1419 | (*Event_KpiEvent2)(nil), |
| 1420 | (*Event_DeviceEvent)(nil), |
| 1421 | } |
| 1422 | } |
| 1423 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1424 | func init() { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 1425 | proto.RegisterEnum("voltha.ConfigEventType_Types", ConfigEventType_Types_name, ConfigEventType_Types_value) |
| 1426 | proto.RegisterEnum("voltha.KpiEventType_Types", KpiEventType_Types_name, KpiEventType_Types_value) |
| 1427 | proto.RegisterEnum("voltha.AlarmEventType_Types", AlarmEventType_Types_name, AlarmEventType_Types_value) |
| 1428 | proto.RegisterEnum("voltha.AlarmEventCategory_Types", AlarmEventCategory_Types_name, AlarmEventCategory_Types_value) |
| 1429 | proto.RegisterEnum("voltha.AlarmEventState_Types", AlarmEventState_Types_name, AlarmEventState_Types_value) |
| 1430 | proto.RegisterEnum("voltha.AlarmEventSeverity_Types", AlarmEventSeverity_Types_name, AlarmEventSeverity_Types_value) |
| 1431 | proto.RegisterEnum("voltha.EventCategory_Types", EventCategory_Types_name, EventCategory_Types_value) |
| 1432 | proto.RegisterEnum("voltha.EventSubCategory_Types", EventSubCategory_Types_name, EventSubCategory_Types_value) |
| 1433 | proto.RegisterEnum("voltha.EventType_Types", EventType_Types_name, EventType_Types_value) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1434 | proto.RegisterType((*ConfigEventType)(nil), "voltha.ConfigEventType") |
| 1435 | proto.RegisterType((*ConfigEvent)(nil), "voltha.ConfigEvent") |
| 1436 | proto.RegisterType((*KpiEventType)(nil), "voltha.KpiEventType") |
| 1437 | proto.RegisterType((*MetricMetaData)(nil), "voltha.MetricMetaData") |
| 1438 | proto.RegisterMapType((map[string]string)(nil), "voltha.MetricMetaData.ContextEntry") |
| 1439 | proto.RegisterType((*MetricValuePairs)(nil), "voltha.MetricValuePairs") |
| 1440 | proto.RegisterMapType((map[string]float32)(nil), "voltha.MetricValuePairs.MetricsEntry") |
| 1441 | proto.RegisterType((*MetricInformation)(nil), "voltha.MetricInformation") |
| 1442 | proto.RegisterMapType((map[string]float32)(nil), "voltha.MetricInformation.MetricsEntry") |
| 1443 | proto.RegisterType((*KpiEvent)(nil), "voltha.KpiEvent") |
| 1444 | proto.RegisterMapType((map[string]*MetricValuePairs)(nil), "voltha.KpiEvent.PrefixesEntry") |
| 1445 | proto.RegisterType((*KpiEvent2)(nil), "voltha.KpiEvent2") |
| 1446 | proto.RegisterType((*AlarmEventType)(nil), "voltha.AlarmEventType") |
| 1447 | proto.RegisterType((*AlarmEventCategory)(nil), "voltha.AlarmEventCategory") |
| 1448 | proto.RegisterType((*AlarmEventState)(nil), "voltha.AlarmEventState") |
| 1449 | proto.RegisterType((*AlarmEventSeverity)(nil), "voltha.AlarmEventSeverity") |
| 1450 | proto.RegisterType((*AlarmEvent)(nil), "voltha.AlarmEvent") |
| 1451 | proto.RegisterMapType((map[string]string)(nil), "voltha.AlarmEvent.ContextEntry") |
Devmalya Paul | f98ca13 | 2019-07-09 06:14:19 -0400 | [diff] [blame] | 1452 | proto.RegisterType((*DeviceEvent)(nil), "voltha.DeviceEvent") |
| 1453 | proto.RegisterMapType((map[string]string)(nil), "voltha.DeviceEvent.ContextEntry") |
| 1454 | proto.RegisterType((*EventCategory)(nil), "voltha.EventCategory") |
| 1455 | proto.RegisterType((*EventSubCategory)(nil), "voltha.EventSubCategory") |
| 1456 | proto.RegisterType((*EventType)(nil), "voltha.EventType") |
| 1457 | proto.RegisterType((*EventHeader)(nil), "voltha.EventHeader") |
| 1458 | proto.RegisterType((*Event)(nil), "voltha.Event") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1459 | } |
| 1460 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1461 | func init() { proto.RegisterFile("voltha_protos/events.proto", fileDescriptor_e63e6c07044fd2c4) } |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1462 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1463 | var fileDescriptor_e63e6c07044fd2c4 = []byte{ |
onkar.kundargi | 7b85fa1 | 2020-02-27 13:19:22 +0530 | [diff] [blame] | 1464 | // 1388 bytes of a gzipped FileDescriptorProto |
| 1465 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0x5d, 0x6e, 0xdb, 0xc6, |
| 1466 | 0x16, 0x16, 0xa9, 0xff, 0x43, 0xd9, 0xa6, 0x27, 0x17, 0xf7, 0xea, 0x2a, 0xb9, 0x89, 0x2f, 0x8b, |
| 1467 | 0x06, 0x46, 0x82, 0x4a, 0xad, 0x5c, 0x20, 0x8e, 0xd3, 0xa2, 0x55, 0x64, 0x36, 0x66, 0x12, 0x51, |
| 1468 | 0x2e, 0x25, 0x3b, 0x68, 0x5f, 0x84, 0xb1, 0x38, 0x96, 0x08, 0x4b, 0xa2, 0x40, 0x8e, 0xd4, 0x78, |
| 1469 | 0x01, 0x7d, 0xee, 0x02, 0xba, 0x84, 0xee, 0xa1, 0x6f, 0x5d, 0x46, 0xd1, 0x4d, 0x74, 0x01, 0xc5, |
| 1470 | 0xfc, 0x50, 0x24, 0x65, 0xa5, 0x79, 0x30, 0xda, 0x3e, 0x69, 0x78, 0xe6, 0x7c, 0xe7, 0xe7, 0x3b, |
| 1471 | 0x73, 0xce, 0x8c, 0xa0, 0xb6, 0xf4, 0x27, 0x74, 0x8c, 0x07, 0xf3, 0xc0, 0xa7, 0x7e, 0xd8, 0x20, |
| 1472 | 0x4b, 0x32, 0xa3, 0x61, 0x9d, 0x7f, 0xa1, 0x82, 0xd8, 0xab, 0x55, 0xd3, 0x3a, 0x53, 0x42, 0xb1, |
| 1473 | 0xd0, 0xa8, 0xdd, 0x1b, 0xf9, 0xfe, 0x68, 0x42, 0x1a, 0x78, 0xee, 0x35, 0xf0, 0x6c, 0xe6, 0x53, |
| 1474 | 0x4c, 0x3d, 0x7f, 0x26, 0xf1, 0xb5, 0x07, 0x72, 0x97, 0x7f, 0x5d, 0x2c, 0x2e, 0x1b, 0xd4, 0x9b, |
| 1475 | 0x92, 0x90, 0xe2, 0xe9, 0x5c, 0x28, 0x18, 0xcf, 0x60, 0xa7, 0xed, 0xcf, 0x2e, 0xbd, 0x91, 0xc9, |
| 1476 | 0xdc, 0xf6, 0xaf, 0xe7, 0xc4, 0xd8, 0x87, 0x3c, 0xfb, 0x0d, 0x51, 0x11, 0xb2, 0xd8, 0x75, 0xf5, |
| 1477 | 0x0c, 0x02, 0x28, 0x04, 0x64, 0xea, 0x2f, 0x89, 0xae, 0xb0, 0xf5, 0x62, 0xee, 0x62, 0x4a, 0x74, |
| 1478 | 0xd5, 0x18, 0x83, 0x96, 0x00, 0xa3, 0x4f, 0x20, 0x47, 0xaf, 0xe7, 0xa4, 0xaa, 0xec, 0x29, 0xfb, |
| 1479 | 0xdb, 0xcd, 0xff, 0xd5, 0x45, 0xcc, 0xf5, 0x35, 0xfb, 0x75, 0x6e, 0xdc, 0xe1, 0xaa, 0x08, 0x41, |
| 1480 | 0x6e, 0x8c, 0xc3, 0x71, 0x55, 0xdd, 0x53, 0xf6, 0xcb, 0x0e, 0x5f, 0x33, 0x99, 0x8b, 0x29, 0xae, |
| 1481 | 0x66, 0x85, 0x8c, 0xad, 0x8d, 0x47, 0x50, 0x79, 0x35, 0xf7, 0xe2, 0x18, 0x6b, 0x51, 0x8c, 0x65, |
| 1482 | 0xc8, 0x87, 0x13, 0x6f, 0x48, 0xf4, 0x0c, 0x2a, 0x80, 0x4a, 0x43, 0x5d, 0x31, 0x7e, 0x52, 0x61, |
| 1483 | 0xbb, 0x43, 0x68, 0xe0, 0x0d, 0x3b, 0x84, 0xe2, 0x63, 0x4c, 0x31, 0xfa, 0x17, 0xe4, 0xa9, 0x47, |
| 1484 | 0x27, 0x22, 0xb4, 0xb2, 0x23, 0x3e, 0xd0, 0x36, 0x03, 0x70, 0xd7, 0x8a, 0xa3, 0xd2, 0x10, 0x3d, |
| 1485 | 0x82, 0xdd, 0x89, 0x3f, 0xf2, 0x86, 0x78, 0x32, 0x70, 0xc9, 0xd2, 0x1b, 0x92, 0x81, 0xe7, 0xca, |
| 1486 | 0x28, 0x76, 0xe4, 0xc6, 0x31, 0x97, 0x5b, 0x2e, 0xba, 0x0b, 0xe5, 0x90, 0x04, 0x1e, 0x9e, 0x0c, |
| 1487 | 0x66, 0x7e, 0x35, 0xc7, 0x75, 0x4a, 0x42, 0x60, 0xfb, 0x6c, 0x33, 0x36, 0x90, 0x17, 0x9b, 0x6e, |
| 1488 | 0x84, 0xfc, 0x1c, 0x8a, 0x43, 0x7f, 0x46, 0xc9, 0x5b, 0x5a, 0x2d, 0xec, 0x65, 0xf7, 0xb5, 0xe6, |
| 1489 | 0x07, 0x11, 0x51, 0xe9, 0xa0, 0x19, 0x6f, 0x4c, 0xcb, 0x9c, 0xd1, 0xe0, 0xda, 0x89, 0x30, 0x8c, |
| 1490 | 0x9d, 0xc5, 0xc2, 0x73, 0xab, 0x45, 0xc1, 0x0e, 0x5b, 0xd7, 0x8e, 0xa0, 0x92, 0x54, 0x46, 0x3a, |
| 1491 | 0x64, 0xaf, 0xc8, 0xb5, 0x4c, 0x96, 0x2d, 0x19, 0x01, 0x4b, 0x3c, 0x59, 0x10, 0x49, 0xb4, 0xf8, |
| 1492 | 0x38, 0x52, 0x0f, 0x15, 0xe3, 0x07, 0x05, 0x74, 0xe1, 0xf8, 0x9c, 0xc9, 0x4e, 0xb1, 0x17, 0x84, |
| 1493 | 0xe8, 0x0b, 0x28, 0x4e, 0xb9, 0x2c, 0xac, 0x2a, 0x3c, 0xc6, 0x0f, 0xd3, 0x31, 0xc6, 0xaa, 0x52, |
| 1494 | 0x10, 0xca, 0x28, 0x25, 0x8a, 0x45, 0x94, 0xdc, 0x78, 0x5f, 0x44, 0x6a, 0x32, 0xa2, 0x5f, 0x14, |
| 1495 | 0xd8, 0x15, 0x60, 0x6b, 0x76, 0xe9, 0x07, 0x53, 0x7e, 0xa0, 0x51, 0x13, 0x4a, 0xec, 0xd4, 0xf3, |
| 1496 | 0x93, 0xc1, 0xcc, 0x68, 0xcd, 0x7f, 0x6f, 0xe6, 0xcd, 0x59, 0xe9, 0xa1, 0x2f, 0xe3, 0x34, 0x54, |
| 1497 | 0x9e, 0xc6, 0xc3, 0x34, 0x24, 0x61, 0xff, 0x2f, 0xc8, 0xe3, 0x57, 0x05, 0x4a, 0xd1, 0xa1, 0x45, |
| 1498 | 0xf5, 0x54, 0x6f, 0xd4, 0xa2, 0x38, 0x92, 0x87, 0x3a, 0xd5, 0x18, 0xf1, 0xd9, 0x54, 0xf9, 0xd9, |
| 1499 | 0x3c, 0x82, 0xd2, 0x3c, 0x20, 0x97, 0xde, 0x5b, 0x12, 0x56, 0xb3, 0x3c, 0x97, 0xfb, 0xeb, 0x36, |
| 1500 | 0xea, 0xa7, 0x52, 0x41, 0xe4, 0xb0, 0xd2, 0xaf, 0x9d, 0xc1, 0x56, 0x6a, 0x6b, 0x43, 0x16, 0xf5, |
| 1501 | 0x64, 0x16, 0x5a, 0xb3, 0xfa, 0xae, 0x72, 0x27, 0xf3, 0xfb, 0x5e, 0x81, 0x72, 0xe4, 0xbb, 0x79, |
| 1502 | 0x8b, 0x04, 0x45, 0xf3, 0x1d, 0x02, 0xf0, 0x46, 0x1e, 0xc8, 0xde, 0x67, 0x29, 0xfe, 0xf7, 0x9d, |
| 1503 | 0xe5, 0x72, 0xca, 0x5c, 0x99, 0xd5, 0xdb, 0xf8, 0x0e, 0xb6, 0x5b, 0x13, 0x1c, 0x4c, 0xe3, 0xe9, |
| 1504 | 0x40, 0xa2, 0xe9, 0xb0, 0x0b, 0x5b, 0xed, 0x6e, 0xa7, 0x73, 0x66, 0x5b, 0xed, 0x56, 0xdf, 0xea, |
| 1505 | 0xda, 0x7a, 0x06, 0xed, 0x80, 0x66, 0xda, 0xe7, 0x96, 0xd3, 0xb5, 0x3b, 0xa6, 0xdd, 0xd7, 0x15, |
| 1506 | 0xb4, 0x05, 0x65, 0xf3, 0xeb, 0x33, 0xeb, 0x94, 0x7f, 0xaa, 0x48, 0x83, 0x62, 0xcf, 0x74, 0xce, |
| 1507 | 0xad, 0xb6, 0xa9, 0x67, 0xd1, 0x36, 0xc0, 0xa9, 0xd3, 0x6d, 0x9b, 0xbd, 0x9e, 0x65, 0xbf, 0xd0, |
| 1508 | 0x73, 0xa8, 0x02, 0xa5, 0x9e, 0xd9, 0x3e, 0x73, 0xac, 0xfe, 0x37, 0x7a, 0xde, 0x78, 0x09, 0x28, |
| 1509 | 0x76, 0xdc, 0xc6, 0x94, 0x8c, 0xfc, 0xe0, 0xda, 0xf8, 0x34, 0x31, 0x3e, 0x4f, 0xb9, 0xcb, 0x22, |
| 1510 | 0x64, 0xbb, 0xaf, 0x99, 0x2b, 0xb6, 0xe0, 0x4e, 0xf8, 0xe2, 0x4c, 0xcf, 0xb2, 0x85, 0x6d, 0x5b, |
| 1511 | 0x7a, 0xce, 0x38, 0x80, 0x9d, 0xd8, 0x56, 0x8f, 0x62, 0x4a, 0x8c, 0xbd, 0xc8, 0x10, 0x40, 0xc1, |
| 1512 | 0x69, 0x59, 0x3d, 0xf3, 0x58, 0xcf, 0xb0, 0xf0, 0xda, 0xaf, 0xcd, 0x96, 0x63, 0x1e, 0xeb, 0x8a, |
| 1513 | 0x81, 0x93, 0x01, 0xf4, 0xc8, 0x92, 0x04, 0x1e, 0xbd, 0x36, 0x5e, 0x25, 0xb2, 0xb7, 0xec, 0x63, |
| 1514 | 0xb3, 0x6f, 0x3a, 0x1d, 0xcb, 0x6e, 0xf5, 0x4d, 0x01, 0x7f, 0xd3, 0x72, 0x6c, 0x96, 0x8d, 0xc2, |
| 1515 | 0x66, 0x67, 0xc7, 0xb2, 0xbb, 0x8e, 0xae, 0xf2, 0x65, 0xeb, 0x65, 0xd7, 0xd1, 0xb3, 0x2c, 0xc7, |
| 1516 | 0xb6, 0x63, 0xf5, 0xad, 0x76, 0xeb, 0xb5, 0x9e, 0x33, 0x7e, 0xce, 0x03, 0xc4, 0x3e, 0x58, 0xd5, |
| 1517 | 0x3c, 0x57, 0x1e, 0x1c, 0xd5, 0x73, 0xd1, 0xc7, 0xb2, 0xea, 0x2a, 0xaf, 0xfa, 0xbd, 0xa8, 0x5e, |
| 1518 | 0xe9, 0x7a, 0xa4, 0xea, 0xfe, 0x19, 0x94, 0x86, 0x92, 0x2a, 0x3e, 0x5b, 0xb7, 0x9b, 0x7b, 0x37, |
| 1519 | 0x51, 0x11, 0x99, 0x12, 0xb9, 0x42, 0xa0, 0x03, 0xc8, 0x87, 0x8c, 0x1c, 0x3e, 0x72, 0x13, 0x77, |
| 1520 | 0xcc, 0x1a, 0x77, 0x12, 0x27, 0x74, 0x99, 0xcb, 0x50, 0x92, 0xc3, 0xa7, 0xf1, 0x46, 0x97, 0x11, |
| 1521 | 0x7d, 0x91, 0xcb, 0x08, 0x81, 0x9e, 0x40, 0x39, 0xc0, 0x5e, 0x48, 0xdc, 0x01, 0x0d, 0xab, 0x05, |
| 1522 | 0xde, 0x1e, 0xb5, 0xba, 0xb8, 0x56, 0xeb, 0xd1, 0xb5, 0x5a, 0xef, 0x47, 0xd7, 0xaa, 0x53, 0x12, |
| 1523 | 0xca, 0xfd, 0x10, 0x3d, 0x03, 0x2d, 0x20, 0x73, 0x3f, 0xa0, 0x02, 0x5a, 0x7c, 0x2f, 0x14, 0x22, |
| 1524 | 0xf5, 0x7e, 0x88, 0x9e, 0x02, 0x0c, 0xc7, 0x78, 0x36, 0x12, 0xd8, 0xd2, 0x7b, 0xb1, 0x65, 0xa9, |
| 1525 | 0xdd, 0x0f, 0xd1, 0x03, 0xe6, 0x37, 0xf4, 0x17, 0x81, 0xb8, 0x7f, 0xca, 0xbc, 0x58, 0x10, 0x89, |
| 1526 | 0x2c, 0x17, 0xed, 0x81, 0xe6, 0x92, 0x70, 0x18, 0x78, 0x73, 0xd6, 0x4a, 0x55, 0xe0, 0x0a, 0x49, |
| 1527 | 0x11, 0x7a, 0x1a, 0xdf, 0x51, 0x1a, 0xef, 0xc4, 0x07, 0x37, 0x09, 0x7b, 0xc7, 0xfd, 0xb4, 0xf1, |
| 1528 | 0x12, 0xad, 0x6c, 0xbe, 0x44, 0x1f, 0xc2, 0x0e, 0x66, 0xf6, 0x06, 0xec, 0x64, 0x0c, 0x66, 0x78, |
| 1529 | 0x4a, 0xaa, 0x5b, 0x5c, 0x73, 0x8b, 0x8b, 0x59, 0x25, 0x6c, 0x3c, 0x25, 0xb7, 0xba, 0xdf, 0x7e, |
| 1530 | 0x57, 0x40, 0x13, 0x0e, 0xc5, 0x09, 0x5e, 0x63, 0x47, 0xb9, 0xc1, 0xce, 0x23, 0xd8, 0x95, 0x81, |
| 1531 | 0xf3, 0x97, 0x98, 0x08, 0x4b, 0x98, 0xdd, 0x71, 0x63, 0x43, 0x2c, 0xb0, 0x75, 0x26, 0xb3, 0x37, |
| 1532 | 0x99, 0x3c, 0x8a, 0x99, 0xcc, 0x71, 0x26, 0x57, 0x47, 0x2f, 0x11, 0xd4, 0x66, 0x2a, 0x6f, 0x95, |
| 1533 | 0xf6, 0x12, 0xb6, 0xd2, 0x63, 0xe9, 0x6f, 0x9a, 0x89, 0x27, 0xa0, 0x8b, 0x76, 0x5a, 0x5c, 0xdc, |
| 1534 | 0x72, 0x22, 0xbe, 0x81, 0x72, 0x3c, 0xd1, 0x5f, 0x46, 0x26, 0x74, 0xa8, 0xb4, 0xbb, 0xf6, 0x57, |
| 1535 | 0xd6, 0x8b, 0x81, 0x79, 0xce, 0x82, 0xcb, 0xb0, 0x58, 0x5f, 0x9d, 0x5a, 0xf2, 0x53, 0x61, 0xe1, |
| 1536 | 0xad, 0x3e, 0x9b, 0xba, 0xca, 0x00, 0xc7, 0x26, 0x0b, 0x5d, 0x6a, 0x64, 0x8d, 0xdf, 0x54, 0xd0, |
| 1537 | 0xb8, 0xe5, 0x13, 0x82, 0x5d, 0x12, 0xdc, 0x98, 0x69, 0x4f, 0x12, 0x13, 0x4a, 0xcc, 0xb5, 0xbb, |
| 1538 | 0x51, 0xcd, 0xfe, 0x7c, 0x38, 0xb5, 0xa0, 0x12, 0x2e, 0x2e, 0x06, 0x6b, 0xe3, 0xed, 0x7e, 0x0a, |
| 1539 | 0x9c, 0xe0, 0x45, 0xe2, 0xb5, 0x30, 0x16, 0xa1, 0xc7, 0x72, 0x9e, 0x8a, 0xf1, 0xf6, 0x9f, 0x14, |
| 1540 | 0xf4, 0xc6, 0x28, 0xfd, 0x3f, 0x54, 0x78, 0xe3, 0x2c, 0x49, 0x10, 0xb2, 0xe3, 0x27, 0x5e, 0x9a, |
| 1541 | 0x1a, 0x93, 0x9d, 0x0b, 0xd1, 0x3f, 0x33, 0xbc, 0x8c, 0x1f, 0x55, 0xc8, 0x8b, 0x6e, 0x7b, 0x0c, |
| 1542 | 0x85, 0x31, 0x67, 0x59, 0xbe, 0xd9, 0xee, 0xa4, 0x32, 0x12, 0x05, 0x70, 0xa4, 0x0a, 0x3a, 0x84, |
| 1543 | 0xca, 0x90, 0xff, 0x57, 0x10, 0x9d, 0x27, 0xdf, 0x22, 0x77, 0x36, 0xfc, 0x8f, 0x38, 0xc9, 0x38, |
| 1544 | 0xda, 0x30, 0xf1, 0xcf, 0xa3, 0x01, 0xe5, 0xab, 0xb9, 0x27, 0x61, 0x59, 0x0e, 0xd3, 0xd7, 0x5f, |
| 1545 | 0x20, 0x27, 0x19, 0xa7, 0x74, 0x15, 0x3d, 0xc7, 0x9a, 0x00, 0x2b, 0x40, 0x93, 0xb3, 0xad, 0x35, |
| 1546 | 0x77, 0xd7, 0x11, 0xcd, 0x93, 0x8c, 0x53, 0xbe, 0x5a, 0xbd, 0x70, 0x0e, 0xa1, 0x92, 0x1c, 0x0c, |
| 1547 | 0x9c, 0xee, 0x44, 0x78, 0x89, 0x7e, 0x66, 0xe1, 0x25, 0x46, 0xc5, 0xf3, 0x0a, 0x80, 0x98, 0x25, |
| 1548 | 0xac, 0x34, 0xcf, 0x4d, 0xb8, 0xe3, 0x07, 0xa3, 0xba, 0x3f, 0x27, 0xb3, 0xa1, 0x1f, 0xb8, 0x12, |
| 1549 | 0xff, 0x6d, 0x7d, 0xe4, 0xd1, 0xf1, 0xe2, 0xa2, 0x3e, 0xf4, 0xa7, 0x8d, 0x68, 0xaf, 0x21, 0xf6, |
| 1550 | 0x3e, 0x92, 0x7f, 0xfb, 0x96, 0x07, 0x8d, 0x91, 0x2f, 0x65, 0x17, 0x05, 0x2e, 0x3c, 0xf8, 0x23, |
| 1551 | 0x00, 0x00, 0xff, 0xff, 0xe5, 0xa6, 0xf9, 0x0e, 0x3f, 0x0e, 0x00, 0x00, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1552 | } |