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