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