github.com/cloudwan/edgelq-sdk@v1.15.4/monitoring/resources/v4/alerting_condition/alerting_condition_change.pb.go (about) 1 // Code generated by protoc-gen-goten-go 2 // File: edgelq/monitoring/proto/v4/alerting_condition_change.proto 3 // DO NOT EDIT!!! 4 5 package alerting_condition 6 7 import ( 8 "fmt" 9 "reflect" 10 "sync" 11 12 "google.golang.org/protobuf/encoding/protojson" 13 "google.golang.org/protobuf/proto" 14 preflect "google.golang.org/protobuf/reflect/protoreflect" 15 "google.golang.org/protobuf/runtime/protoimpl" 16 ) 17 18 // proto imports 19 import ( 20 alerting_policy "github.com/cloudwan/edgelq-sdk/monitoring/resources/v4/alerting_policy" 21 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" 22 ) 23 24 // Reference imports to suppress errors if they are not otherwise used. 25 var ( 26 _ = fmt.Errorf 27 _ = reflect.Method{} 28 _ = sync.Once{} 29 30 _ = protojson.MarshalOptions{} 31 _ = proto.MarshalOptions{} 32 _ = preflect.Value{} 33 _ = protoimpl.DescBuilder{} 34 ) 35 36 // make sure we're using proto imports 37 var ( 38 _ = &alerting_policy.AlertingPolicy{} 39 _ = &fieldmaskpb.FieldMask{} 40 ) 41 42 const ( 43 // Verify that this generated code is sufficiently up-to-date. 44 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 45 // Verify that runtime/protoimpl is sufficiently up-to-date. 46 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 47 ) 48 49 // AlertingConditionChange is used by Watch notifications Responses to describe 50 // change of single AlertingCondition One of Added, Modified, Removed 51 type AlertingConditionChange struct { 52 state protoimpl.MessageState 53 sizeCache protoimpl.SizeCache 54 unknownFields protoimpl.UnknownFields 55 // AlertingCondition change 56 // 57 // Types that are valid to be assigned to ChangeType: 58 // *AlertingConditionChange_Added_ 59 // *AlertingConditionChange_Modified_ 60 // *AlertingConditionChange_Current_ 61 // *AlertingConditionChange_Removed_ 62 ChangeType isAlertingConditionChange_ChangeType `protobuf_oneof:"change_type"` 63 } 64 65 func (m *AlertingConditionChange) Reset() { 66 *m = AlertingConditionChange{} 67 if protoimpl.UnsafeEnabled { 68 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[0] 69 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 70 ms.StoreMessageInfo(mi) 71 } 72 } 73 74 func (m *AlertingConditionChange) String() string { 75 return protoimpl.X.MessageStringOf(m) 76 } 77 78 func (*AlertingConditionChange) ProtoMessage() {} 79 80 func (m *AlertingConditionChange) ProtoReflect() preflect.Message { 81 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[0] 82 if protoimpl.UnsafeEnabled && m != nil { 83 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 84 if ms.LoadMessageInfo() == nil { 85 ms.StoreMessageInfo(mi) 86 } 87 return ms 88 } 89 return mi.MessageOf(m) 90 } 91 92 func (*AlertingConditionChange) GotenMessage() {} 93 94 // Deprecated, Use AlertingConditionChange.ProtoReflect.Descriptor instead. 95 func (*AlertingConditionChange) Descriptor() ([]byte, []int) { 96 return edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescGZIP(), []int{0} 97 } 98 99 func (m *AlertingConditionChange) Unmarshal(b []byte) error { 100 return proto.Unmarshal(b, m) 101 } 102 103 func (m *AlertingConditionChange) Marshal() ([]byte, error) { 104 return proto.Marshal(m) 105 } 106 107 func (m *AlertingConditionChange) MarshalJSON() ([]byte, error) { 108 return protojson.MarshalOptions{}.Marshal(m) 109 } 110 111 func (m *AlertingConditionChange) UnmarshalJSON(data []byte) error { 112 return protojson.Unmarshal(data, m) 113 } 114 115 type isAlertingConditionChange_ChangeType interface { 116 isAlertingConditionChange_ChangeType() 117 } 118 119 type AlertingConditionChange_Added_ struct { 120 // Added is returned when watched document is added, either created or 121 // enters Query view 122 Added *AlertingConditionChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof"` 123 } 124 type AlertingConditionChange_Modified_ struct { 125 // Modified is returned when watched document is modified 126 Modified *AlertingConditionChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof"` 127 } 128 type AlertingConditionChange_Current_ struct { 129 // Current is returned in stateless watch when document enters query view or 130 // is modified within. 131 Current *AlertingConditionChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof"` 132 } 133 type AlertingConditionChange_Removed_ struct { 134 // Removed is returned when AlertingCondition is deleted or leaves Query 135 // view 136 Removed *AlertingConditionChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof"` 137 } 138 139 func (*AlertingConditionChange_Added_) isAlertingConditionChange_ChangeType() {} 140 func (*AlertingConditionChange_Modified_) isAlertingConditionChange_ChangeType() {} 141 func (*AlertingConditionChange_Current_) isAlertingConditionChange_ChangeType() {} 142 func (*AlertingConditionChange_Removed_) isAlertingConditionChange_ChangeType() {} 143 func (m *AlertingConditionChange) GetChangeType() isAlertingConditionChange_ChangeType { 144 if m != nil { 145 return m.ChangeType 146 } 147 return nil 148 } 149 func (m *AlertingConditionChange) GetAdded() *AlertingConditionChange_Added { 150 if x, ok := m.GetChangeType().(*AlertingConditionChange_Added_); ok { 151 return x.Added 152 } 153 return nil 154 } 155 func (m *AlertingConditionChange) GetModified() *AlertingConditionChange_Modified { 156 if x, ok := m.GetChangeType().(*AlertingConditionChange_Modified_); ok { 157 return x.Modified 158 } 159 return nil 160 } 161 func (m *AlertingConditionChange) GetCurrent() *AlertingConditionChange_Current { 162 if x, ok := m.GetChangeType().(*AlertingConditionChange_Current_); ok { 163 return x.Current 164 } 165 return nil 166 } 167 func (m *AlertingConditionChange) GetRemoved() *AlertingConditionChange_Removed { 168 if x, ok := m.GetChangeType().(*AlertingConditionChange_Removed_); ok { 169 return x.Removed 170 } 171 return nil 172 } 173 func (m *AlertingConditionChange) SetChangeType(ofv isAlertingConditionChange_ChangeType) { 174 if m == nil { 175 panic(fmt.Errorf("can't set %s on nil %s", "isAlertingConditionChange_ChangeType", "AlertingConditionChange")) 176 } 177 m.ChangeType = ofv 178 } 179 func (m *AlertingConditionChange) SetAdded(fv *AlertingConditionChange_Added) { 180 m.SetChangeType(&AlertingConditionChange_Added_{Added: fv}) 181 } 182 func (m *AlertingConditionChange) SetModified(fv *AlertingConditionChange_Modified) { 183 m.SetChangeType(&AlertingConditionChange_Modified_{Modified: fv}) 184 } 185 func (m *AlertingConditionChange) SetCurrent(fv *AlertingConditionChange_Current) { 186 m.SetChangeType(&AlertingConditionChange_Current_{Current: fv}) 187 } 188 func (m *AlertingConditionChange) SetRemoved(fv *AlertingConditionChange_Removed) { 189 m.SetChangeType(&AlertingConditionChange_Removed_{Removed: fv}) 190 } 191 192 // AlertingCondition has been added to query view 193 type AlertingConditionChange_Added struct { 194 state protoimpl.MessageState 195 sizeCache protoimpl.SizeCache 196 unknownFields protoimpl.UnknownFields 197 AlertingCondition *AlertingCondition `protobuf:"bytes,1,opt,name=alerting_condition,json=alertingCondition,proto3" json:"alerting_condition,omitempty"` 198 // Integer describing index of added AlertingCondition in resulting query 199 // view. 200 ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"` 201 } 202 203 func (m *AlertingConditionChange_Added) Reset() { 204 *m = AlertingConditionChange_Added{} 205 if protoimpl.UnsafeEnabled { 206 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[1] 207 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 208 ms.StoreMessageInfo(mi) 209 } 210 } 211 212 func (m *AlertingConditionChange_Added) String() string { 213 return protoimpl.X.MessageStringOf(m) 214 } 215 216 func (*AlertingConditionChange_Added) ProtoMessage() {} 217 218 func (m *AlertingConditionChange_Added) ProtoReflect() preflect.Message { 219 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[1] 220 if protoimpl.UnsafeEnabled && m != nil { 221 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 222 if ms.LoadMessageInfo() == nil { 223 ms.StoreMessageInfo(mi) 224 } 225 return ms 226 } 227 return mi.MessageOf(m) 228 } 229 230 func (*AlertingConditionChange_Added) GotenMessage() {} 231 232 // Deprecated, Use AlertingConditionChange_Added.ProtoReflect.Descriptor instead. 233 func (*AlertingConditionChange_Added) Descriptor() ([]byte, []int) { 234 return edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescGZIP(), []int{0, 0} 235 } 236 237 func (m *AlertingConditionChange_Added) Unmarshal(b []byte) error { 238 return proto.Unmarshal(b, m) 239 } 240 241 func (m *AlertingConditionChange_Added) Marshal() ([]byte, error) { 242 return proto.Marshal(m) 243 } 244 245 func (m *AlertingConditionChange_Added) MarshalJSON() ([]byte, error) { 246 return protojson.MarshalOptions{}.Marshal(m) 247 } 248 249 func (m *AlertingConditionChange_Added) UnmarshalJSON(data []byte) error { 250 return protojson.Unmarshal(data, m) 251 } 252 253 func (m *AlertingConditionChange_Added) GetAlertingCondition() *AlertingCondition { 254 if m != nil { 255 return m.AlertingCondition 256 } 257 return nil 258 } 259 260 func (m *AlertingConditionChange_Added) GetViewIndex() int32 { 261 if m != nil { 262 return m.ViewIndex 263 } 264 return int32(0) 265 } 266 267 func (m *AlertingConditionChange_Added) SetAlertingCondition(fv *AlertingCondition) { 268 if m == nil { 269 panic(fmt.Errorf("can't set %s on nil %s", "AlertingCondition", "AlertingConditionChange_Added")) 270 } 271 m.AlertingCondition = fv 272 } 273 274 func (m *AlertingConditionChange_Added) SetViewIndex(fv int32) { 275 if m == nil { 276 panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "AlertingConditionChange_Added")) 277 } 278 m.ViewIndex = fv 279 } 280 281 // AlertingCondition changed some of it's fields - contains either full 282 // document or masked change 283 type AlertingConditionChange_Modified struct { 284 state protoimpl.MessageState 285 sizeCache protoimpl.SizeCache 286 unknownFields protoimpl.UnknownFields 287 // Name of modified AlertingCondition 288 Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 289 // New version of AlertingCondition or masked difference, depending on 290 // mask_changes instrumentation of issued [WatchAlertingConditionRequest] or 291 // [WatchAlertingConditionsRequest] 292 AlertingCondition *AlertingCondition `protobuf:"bytes,2,opt,name=alerting_condition,json=alertingCondition,proto3" json:"alerting_condition,omitempty"` 293 // Used when mask_changes is set, contains field paths of modified 294 // properties. 295 FieldMask *AlertingCondition_FieldMask `protobuf:"bytes,3,opt,customtype=AlertingCondition_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 296 // Previous view index specifies previous position of modified 297 // AlertingCondition. When modification doesn't affect sorted order, value 298 // will remain identical to [view_index]. 299 PreviousViewIndex int32 `protobuf:"varint,4,opt,name=previous_view_index,json=previousViewIndex,proto3" json:"previous_view_index,omitempty"` 300 // Integer specifying AlertingCondition new index in resulting query view. 301 ViewIndex int32 `protobuf:"varint,5,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"` 302 } 303 304 func (m *AlertingConditionChange_Modified) Reset() { 305 *m = AlertingConditionChange_Modified{} 306 if protoimpl.UnsafeEnabled { 307 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[2] 308 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 309 ms.StoreMessageInfo(mi) 310 } 311 } 312 313 func (m *AlertingConditionChange_Modified) String() string { 314 return protoimpl.X.MessageStringOf(m) 315 } 316 317 func (*AlertingConditionChange_Modified) ProtoMessage() {} 318 319 func (m *AlertingConditionChange_Modified) ProtoReflect() preflect.Message { 320 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[2] 321 if protoimpl.UnsafeEnabled && m != nil { 322 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 323 if ms.LoadMessageInfo() == nil { 324 ms.StoreMessageInfo(mi) 325 } 326 return ms 327 } 328 return mi.MessageOf(m) 329 } 330 331 func (*AlertingConditionChange_Modified) GotenMessage() {} 332 333 // Deprecated, Use AlertingConditionChange_Modified.ProtoReflect.Descriptor instead. 334 func (*AlertingConditionChange_Modified) Descriptor() ([]byte, []int) { 335 return edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescGZIP(), []int{0, 1} 336 } 337 338 func (m *AlertingConditionChange_Modified) Unmarshal(b []byte) error { 339 return proto.Unmarshal(b, m) 340 } 341 342 func (m *AlertingConditionChange_Modified) Marshal() ([]byte, error) { 343 return proto.Marshal(m) 344 } 345 346 func (m *AlertingConditionChange_Modified) MarshalJSON() ([]byte, error) { 347 return protojson.MarshalOptions{}.Marshal(m) 348 } 349 350 func (m *AlertingConditionChange_Modified) UnmarshalJSON(data []byte) error { 351 return protojson.Unmarshal(data, m) 352 } 353 354 func (m *AlertingConditionChange_Modified) GetName() *Name { 355 if m != nil { 356 return m.Name 357 } 358 return nil 359 } 360 361 func (m *AlertingConditionChange_Modified) GetAlertingCondition() *AlertingCondition { 362 if m != nil { 363 return m.AlertingCondition 364 } 365 return nil 366 } 367 368 func (m *AlertingConditionChange_Modified) GetFieldMask() *AlertingCondition_FieldMask { 369 if m != nil { 370 return m.FieldMask 371 } 372 return nil 373 } 374 375 func (m *AlertingConditionChange_Modified) GetPreviousViewIndex() int32 { 376 if m != nil { 377 return m.PreviousViewIndex 378 } 379 return int32(0) 380 } 381 382 func (m *AlertingConditionChange_Modified) GetViewIndex() int32 { 383 if m != nil { 384 return m.ViewIndex 385 } 386 return int32(0) 387 } 388 389 func (m *AlertingConditionChange_Modified) SetName(fv *Name) { 390 if m == nil { 391 panic(fmt.Errorf("can't set %s on nil %s", "Name", "AlertingConditionChange_Modified")) 392 } 393 m.Name = fv 394 } 395 396 func (m *AlertingConditionChange_Modified) SetAlertingCondition(fv *AlertingCondition) { 397 if m == nil { 398 panic(fmt.Errorf("can't set %s on nil %s", "AlertingCondition", "AlertingConditionChange_Modified")) 399 } 400 m.AlertingCondition = fv 401 } 402 403 func (m *AlertingConditionChange_Modified) SetFieldMask(fv *AlertingCondition_FieldMask) { 404 if m == nil { 405 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "AlertingConditionChange_Modified")) 406 } 407 m.FieldMask = fv 408 } 409 410 func (m *AlertingConditionChange_Modified) SetPreviousViewIndex(fv int32) { 411 if m == nil { 412 panic(fmt.Errorf("can't set %s on nil %s", "PreviousViewIndex", "AlertingConditionChange_Modified")) 413 } 414 m.PreviousViewIndex = fv 415 } 416 417 func (m *AlertingConditionChange_Modified) SetViewIndex(fv int32) { 418 if m == nil { 419 panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "AlertingConditionChange_Modified")) 420 } 421 m.ViewIndex = fv 422 } 423 424 // AlertingCondition has been added or modified in a query view. Version used 425 // for stateless watching 426 type AlertingConditionChange_Current struct { 427 state protoimpl.MessageState 428 sizeCache protoimpl.SizeCache 429 unknownFields protoimpl.UnknownFields 430 AlertingCondition *AlertingCondition `protobuf:"bytes,1,opt,name=alerting_condition,json=alertingCondition,proto3" json:"alerting_condition,omitempty"` 431 } 432 433 func (m *AlertingConditionChange_Current) Reset() { 434 *m = AlertingConditionChange_Current{} 435 if protoimpl.UnsafeEnabled { 436 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[3] 437 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 438 ms.StoreMessageInfo(mi) 439 } 440 } 441 442 func (m *AlertingConditionChange_Current) String() string { 443 return protoimpl.X.MessageStringOf(m) 444 } 445 446 func (*AlertingConditionChange_Current) ProtoMessage() {} 447 448 func (m *AlertingConditionChange_Current) ProtoReflect() preflect.Message { 449 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[3] 450 if protoimpl.UnsafeEnabled && m != nil { 451 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 452 if ms.LoadMessageInfo() == nil { 453 ms.StoreMessageInfo(mi) 454 } 455 return ms 456 } 457 return mi.MessageOf(m) 458 } 459 460 func (*AlertingConditionChange_Current) GotenMessage() {} 461 462 // Deprecated, Use AlertingConditionChange_Current.ProtoReflect.Descriptor instead. 463 func (*AlertingConditionChange_Current) Descriptor() ([]byte, []int) { 464 return edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescGZIP(), []int{0, 2} 465 } 466 467 func (m *AlertingConditionChange_Current) Unmarshal(b []byte) error { 468 return proto.Unmarshal(b, m) 469 } 470 471 func (m *AlertingConditionChange_Current) Marshal() ([]byte, error) { 472 return proto.Marshal(m) 473 } 474 475 func (m *AlertingConditionChange_Current) MarshalJSON() ([]byte, error) { 476 return protojson.MarshalOptions{}.Marshal(m) 477 } 478 479 func (m *AlertingConditionChange_Current) UnmarshalJSON(data []byte) error { 480 return protojson.Unmarshal(data, m) 481 } 482 483 func (m *AlertingConditionChange_Current) GetAlertingCondition() *AlertingCondition { 484 if m != nil { 485 return m.AlertingCondition 486 } 487 return nil 488 } 489 490 func (m *AlertingConditionChange_Current) SetAlertingCondition(fv *AlertingCondition) { 491 if m == nil { 492 panic(fmt.Errorf("can't set %s on nil %s", "AlertingCondition", "AlertingConditionChange_Current")) 493 } 494 m.AlertingCondition = fv 495 } 496 497 // Removed is returned when AlertingCondition is deleted or leaves Query view 498 type AlertingConditionChange_Removed struct { 499 state protoimpl.MessageState 500 sizeCache protoimpl.SizeCache 501 unknownFields protoimpl.UnknownFields 502 Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 503 // Integer specifying removed AlertingCondition index. Not populated in 504 // stateless watch type. 505 ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"` 506 } 507 508 func (m *AlertingConditionChange_Removed) Reset() { 509 *m = AlertingConditionChange_Removed{} 510 if protoimpl.UnsafeEnabled { 511 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[4] 512 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 513 ms.StoreMessageInfo(mi) 514 } 515 } 516 517 func (m *AlertingConditionChange_Removed) String() string { 518 return protoimpl.X.MessageStringOf(m) 519 } 520 521 func (*AlertingConditionChange_Removed) ProtoMessage() {} 522 523 func (m *AlertingConditionChange_Removed) ProtoReflect() preflect.Message { 524 mi := &edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[4] 525 if protoimpl.UnsafeEnabled && m != nil { 526 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 527 if ms.LoadMessageInfo() == nil { 528 ms.StoreMessageInfo(mi) 529 } 530 return ms 531 } 532 return mi.MessageOf(m) 533 } 534 535 func (*AlertingConditionChange_Removed) GotenMessage() {} 536 537 // Deprecated, Use AlertingConditionChange_Removed.ProtoReflect.Descriptor instead. 538 func (*AlertingConditionChange_Removed) Descriptor() ([]byte, []int) { 539 return edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescGZIP(), []int{0, 3} 540 } 541 542 func (m *AlertingConditionChange_Removed) Unmarshal(b []byte) error { 543 return proto.Unmarshal(b, m) 544 } 545 546 func (m *AlertingConditionChange_Removed) Marshal() ([]byte, error) { 547 return proto.Marshal(m) 548 } 549 550 func (m *AlertingConditionChange_Removed) MarshalJSON() ([]byte, error) { 551 return protojson.MarshalOptions{}.Marshal(m) 552 } 553 554 func (m *AlertingConditionChange_Removed) UnmarshalJSON(data []byte) error { 555 return protojson.Unmarshal(data, m) 556 } 557 558 func (m *AlertingConditionChange_Removed) GetName() *Name { 559 if m != nil { 560 return m.Name 561 } 562 return nil 563 } 564 565 func (m *AlertingConditionChange_Removed) GetViewIndex() int32 { 566 if m != nil { 567 return m.ViewIndex 568 } 569 return int32(0) 570 } 571 572 func (m *AlertingConditionChange_Removed) SetName(fv *Name) { 573 if m == nil { 574 panic(fmt.Errorf("can't set %s on nil %s", "Name", "AlertingConditionChange_Removed")) 575 } 576 m.Name = fv 577 } 578 579 func (m *AlertingConditionChange_Removed) SetViewIndex(fv int32) { 580 if m == nil { 581 panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "AlertingConditionChange_Removed")) 582 } 583 m.ViewIndex = fv 584 } 585 586 var edgelq_monitoring_proto_v4_alerting_condition_change_proto preflect.FileDescriptor 587 588 var edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDesc = []byte{ 589 0x0a, 0x3a, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 590 0x69, 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x34, 0x2f, 0x61, 0x6c, 0x65, 591 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 592 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x6e, 0x74, 593 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x34, 0x1a, 594 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 595 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 596 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 597 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 598 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 599 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 600 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 601 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x65, 602 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 603 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x34, 0x2f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 604 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 605 0x74, 0x6f, 0x22, 0xea, 0x07, 0x0a, 0x17, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 606 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x48, 607 0x0a, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 608 0x6e, 0x74, 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x76, 609 0x34, 0x2e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 610 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x65, 0x64, 0x48, 611 0x00, 0x52, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 0x12, 0x51, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x69, 612 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x6e, 0x74, 0x74, 613 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x34, 0x2e, 0x41, 614 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 615 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x48, 616 0x00, 0x52, 0x08, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x4e, 0x0a, 0x07, 0x63, 617 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6e, 618 0x74, 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x34, 619 0x2e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 620 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 621 0x48, 0x00, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x4e, 0x0a, 0x07, 0x72, 622 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6e, 623 0x74, 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x34, 624 0x2e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 625 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 626 0x48, 0x00, 0x52, 0x07, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x1a, 0x7b, 0x0a, 0x05, 0x41, 627 0x64, 0x64, 0x65, 0x64, 0x12, 0x53, 0x0a, 0x12, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 628 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 629 0x32, 0x24, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 630 0x67, 0x2e, 0x76, 0x34, 0x2e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 631 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 632 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 633 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 634 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x1a, 0xb3, 0x02, 0x0a, 0x08, 0x4d, 0x6f, 0x64, 635 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 636 0x01, 0x28, 0x09, 0x42, 0x19, 0xb2, 0xda, 0x21, 0x15, 0x0a, 0x13, 0x0a, 0x11, 0x41, 0x6c, 0x65, 637 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x04, 638 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x53, 0x0a, 0x12, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 639 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 640 0x32, 0x24, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 641 0x67, 0x2e, 0x76, 0x34, 0x2e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 642 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 643 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x54, 0x0a, 0x0a, 0x66, 0x69, 0x65, 644 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 645 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 646 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x19, 0xb2, 0xda, 0x21, 0x15, 0x32, 647 0x13, 0x0a, 0x11, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 648 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 649 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 650 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x70, 0x72, 651 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x56, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 652 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x05, 0x20, 653 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x1a, 0x5e, 654 0x0a, 0x07, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x53, 0x0a, 0x12, 0x61, 0x6c, 0x65, 655 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 656 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6d, 0x6f, 0x6e, 0x69, 657 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x34, 0x2e, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 658 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x61, 0x6c, 0x65, 659 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 660 0x0a, 0x07, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 661 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x19, 0xb2, 0xda, 0x21, 0x15, 0x0a, 0x13, 0x0a, 662 0x11, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 663 0x6f, 0x6e, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 664 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 665 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x3a, 0x17, 0x9a, 0xd9, 0x21, 0x13, 0x0a, 0x11, 0x41, 666 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 667 0x42, 0x0d, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 668 0x98, 0x01, 0xe8, 0xde, 0x21, 0x00, 0x0a, 0x18, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 669 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x34, 670 0x42, 0x1c, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 671 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x00, 672 0x5a, 0x58, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 673 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6d, 0x6f, 0x6e, 674 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 675 0x73, 0x2f, 0x76, 0x34, 0x2f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 676 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 677 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 678 0x6f, 0x33, 679 } 680 681 var ( 682 edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescOnce sync.Once 683 edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescData = edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDesc 684 ) 685 686 func edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescGZIP() []byte { 687 edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescOnce.Do(func() { 688 edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescData) 689 }) 690 return edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDescData 691 } 692 693 var edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes = make([]protoimpl.MessageInfo, 5) 694 var edgelq_monitoring_proto_v4_alerting_condition_change_proto_goTypes = []interface{}{ 695 (*AlertingConditionChange)(nil), // 0: ntt.monitoring.v4.AlertingConditionChange 696 (*AlertingConditionChange_Added)(nil), // 1: ntt.monitoring.v4.AlertingConditionChange.Added 697 (*AlertingConditionChange_Modified)(nil), // 2: ntt.monitoring.v4.AlertingConditionChange.Modified 698 (*AlertingConditionChange_Current)(nil), // 3: ntt.monitoring.v4.AlertingConditionChange.Current 699 (*AlertingConditionChange_Removed)(nil), // 4: ntt.monitoring.v4.AlertingConditionChange.Removed 700 (*AlertingCondition)(nil), // 5: ntt.monitoring.v4.AlertingCondition 701 (*AlertingCondition_FieldMask)(nil), // 6: ntt.monitoring.v4.AlertingCondition_FieldMask 702 } 703 var edgelq_monitoring_proto_v4_alerting_condition_change_proto_depIdxs = []int32{ 704 1, // 0: ntt.monitoring.v4.AlertingConditionChange.added:type_name -> ntt.monitoring.v4.AlertingConditionChange.Added 705 2, // 1: ntt.monitoring.v4.AlertingConditionChange.modified:type_name -> ntt.monitoring.v4.AlertingConditionChange.Modified 706 3, // 2: ntt.monitoring.v4.AlertingConditionChange.current:type_name -> ntt.monitoring.v4.AlertingConditionChange.Current 707 4, // 3: ntt.monitoring.v4.AlertingConditionChange.removed:type_name -> ntt.monitoring.v4.AlertingConditionChange.Removed 708 5, // 4: ntt.monitoring.v4.AlertingConditionChange.Added.alerting_condition:type_name -> ntt.monitoring.v4.AlertingCondition 709 5, // 5: ntt.monitoring.v4.AlertingConditionChange.Modified.alerting_condition:type_name -> ntt.monitoring.v4.AlertingCondition 710 6, // 6: ntt.monitoring.v4.AlertingConditionChange.Modified.field_mask:type_name -> ntt.monitoring.v4.AlertingCondition_FieldMask 711 5, // 7: ntt.monitoring.v4.AlertingConditionChange.Current.alerting_condition:type_name -> ntt.monitoring.v4.AlertingCondition 712 8, // [8:8] is the sub-list for method output_type 713 8, // [8:8] is the sub-list for method input_type 714 8, // [8:8] is the sub-list for extension type_name 715 8, // [8:8] is the sub-list for extension extendee 716 0, // [0:8] is the sub-list for field type_name 717 } 718 719 func init() { edgelq_monitoring_proto_v4_alerting_condition_change_proto_init() } 720 func edgelq_monitoring_proto_v4_alerting_condition_change_proto_init() { 721 if edgelq_monitoring_proto_v4_alerting_condition_change_proto != nil { 722 return 723 } 724 if !protoimpl.UnsafeEnabled { 725 726 edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 727 switch v := v.(*AlertingConditionChange); i { 728 case 0: 729 return &v.state 730 case 1: 731 return &v.sizeCache 732 case 2: 733 return &v.unknownFields 734 default: 735 return nil 736 } 737 } 738 edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { 739 switch v := v.(*AlertingConditionChange_Added); i { 740 case 0: 741 return &v.state 742 case 1: 743 return &v.sizeCache 744 case 2: 745 return &v.unknownFields 746 default: 747 return nil 748 } 749 } 750 edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { 751 switch v := v.(*AlertingConditionChange_Modified); i { 752 case 0: 753 return &v.state 754 case 1: 755 return &v.sizeCache 756 case 2: 757 return &v.unknownFields 758 default: 759 return nil 760 } 761 } 762 edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { 763 switch v := v.(*AlertingConditionChange_Current); i { 764 case 0: 765 return &v.state 766 case 1: 767 return &v.sizeCache 768 case 2: 769 return &v.unknownFields 770 default: 771 return nil 772 } 773 } 774 edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { 775 switch v := v.(*AlertingConditionChange_Removed); i { 776 case 0: 777 return &v.state 778 case 1: 779 return &v.sizeCache 780 case 2: 781 return &v.unknownFields 782 default: 783 return nil 784 } 785 } 786 } 787 788 edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes[0].OneofWrappers = []interface{}{ 789 (*AlertingConditionChange_Added_)(nil), 790 (*AlertingConditionChange_Modified_)(nil), 791 (*AlertingConditionChange_Current_)(nil), 792 (*AlertingConditionChange_Removed_)(nil), 793 } 794 type x struct{} 795 out := protoimpl.TypeBuilder{ 796 File: protoimpl.DescBuilder{ 797 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 798 RawDescriptor: edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDesc, 799 NumEnums: 0, 800 NumMessages: 5, 801 NumExtensions: 0, 802 NumServices: 0, 803 }, 804 GoTypes: edgelq_monitoring_proto_v4_alerting_condition_change_proto_goTypes, 805 DependencyIndexes: edgelq_monitoring_proto_v4_alerting_condition_change_proto_depIdxs, 806 MessageInfos: edgelq_monitoring_proto_v4_alerting_condition_change_proto_msgTypes, 807 }.Build() 808 edgelq_monitoring_proto_v4_alerting_condition_change_proto = out.File 809 edgelq_monitoring_proto_v4_alerting_condition_change_proto_rawDesc = nil 810 edgelq_monitoring_proto_v4_alerting_condition_change_proto_goTypes = nil 811 edgelq_monitoring_proto_v4_alerting_condition_change_proto_depIdxs = nil 812 }